diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 7a1e8e9..c93f998 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -25,6 +25,7 @@ module.exports = grammar({ conflicts: $ => [ [$.expression, $.qualified_identifier], [$.constant_declaration, $.variable_declaration, $.expression], + [$.constant_declaration, $.variable_declaration, $.expression, $.qualified_identifier], [$.function_declaration], [$.if_statement], [$.enum_literal], @@ -36,7 +37,6 @@ module.exports = grammar({ [$.field_initializer, $.expression], [$.tuple_literal], [$.capture_list, $.expression], - [$.for_statement, $.expression], [$.match_capture, $.expression], ], @@ -149,7 +149,11 @@ module.exports = grammar({ ), record_field: $ => choice( - seq(field('name', $.identifier), field('type', choice($.type, $.struct_type))), + seq( + field('name', $.identifier), + field('type', choice($.type, $.struct_type)), + optional(seq('=', repeat($._newline), field('default', $.expression))), + ), field('type', choice($.type, $.struct_type)), ), @@ -173,7 +177,7 @@ module.exports = grammar({ parameter: $ => seq( optional('$'), field('name', choice($.identifier, $.sink)), - repeat(seq(',', repeat($._newline), field('name', choice($.identifier, $.sink)))), + repeat(seq(',', repeat($._newline), optional('$'), field('name', choice($.identifier, $.sink)))), field('type', $.type), ), @@ -189,8 +193,11 @@ module.exports = grammar({ $.pointer_type, $.array_type, $.function_type, + $.parenthesized_type, ), + parenthesized_type: $ => seq('(', repeat($._newline), $.type, repeat($._newline), ')'), + named_type: $ => prec.right(seq( $.qualified_identifier, optional($.argument_list), @@ -233,7 +240,7 @@ module.exports = grammar({ _type_constant: $ => seq(optional('-'), choice($.integer, $.character)), builtin_type: _ => choice( - 'void', 'anyopaque', 'bool', 'int', 'uint', 'float', 'range', + 'void', 'type', 'anyopaque', 'bool', 'int', 'uint', 'float', 'range', 'i8', 'i16', 'i32', 'i64', 'u8', 'u16', 'u32', 'u64', 'isize', 'usize', 'f32', 'f64', 'c_char', 'c_schar', 'c_uchar', 'c_short', 'c_ushort', @@ -365,16 +372,18 @@ module.exports = grammar({ repeat($._newline), field('iterable', $.expression), repeat($._newline), - '|', + $._for_capture_bar, optional('@'), field('item', $.identifier), optional(seq(',', field('index', $.identifier))), - '|', + $._for_capture_bar, repeat($._newline), optional(seq(field('label', $.identifier), ':', repeat($._newline))), field('body', $.block), ), + _for_capture_bar: _ => token(prec(1, '|')), + match_statement: $ => seq( 'match', repeat($._newline), diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index 1ba2aaa..7ee1d85 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -753,6 +753,38 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "default", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1039,6 +1071,18 @@ "name": "_newline" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -1124,6 +1168,41 @@ { "type": "SYMBOL", "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "parenthesized_type" + } + ] + }, + "parenthesized_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "STRING", + "value": ")" } ] }, @@ -1464,6 +1543,10 @@ "type": "STRING", "value": "void" }, + { + "type": "STRING", + "value": "type" + }, { "type": "STRING", "value": "anyopaque" @@ -2532,8 +2615,8 @@ } }, { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "_for_capture_bar" }, { "type": "CHOICE", @@ -2581,8 +2664,8 @@ ] }, { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "_for_capture_bar" }, { "type": "REPEAT", @@ -2633,6 +2716,17 @@ } ] }, + "_for_capture_bar": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "|" + } + } + }, "match_statement": { "type": "SEQ", "members": [ @@ -4903,6 +4997,12 @@ "variable_declaration", "expression" ], + [ + "constant_declaration", + "variable_declaration", + "expression", + "qualified_identifier" + ], [ "function_declaration" ], @@ -4942,10 +5042,6 @@ "capture_list", "expression" ], - [ - "for_statement", - "expression" - ], [ "match_capture", "expression" diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index 2fa9fb0..749134c 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -1683,6 +1683,21 @@ ] } }, + { + "type": "parenthesized_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, { "type": "pointer_type", "named": true, @@ -1773,6 +1788,16 @@ "type": "record_field", "named": true, "fields": { + "default": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, "name": { "multiple": false, "required": false, @@ -2141,6 +2166,10 @@ "type": "optional_type", "named": true }, + { + "type": "parenthesized_type", + "named": true + }, { "type": "pointer_type", "named": true @@ -2879,6 +2908,10 @@ "type": "try", "named": false }, + { + "type": "type", + "named": false + }, { "type": "u16", "named": false diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index 4c731d7..82b8007 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 3552 -#define LARGE_STATE_COUNT 1723 -#define SYMBOL_COUNT 220 +#define STATE_COUNT 4099 +#define LARGE_STATE_COUNT 1878 +#define SYMBOL_COUNT 224 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 126 +#define TOKEN_COUNT 128 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 39 +#define FIELD_COUNT 40 #define MAX_ALIAS_SEQUENCE_LENGTH 16 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 379 +#define PRODUCTION_ID_COUNT 382 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -53,192 +53,196 @@ enum ts_symbol_identifiers { anon_sym_SEMI = 31, anon_sym_RBRACK = 32, anon_sym_void = 33, - anon_sym_anyopaque = 34, - anon_sym_bool = 35, - anon_sym_int = 36, - anon_sym_uint = 37, - anon_sym_float = 38, - anon_sym_range = 39, - anon_sym_i8 = 40, - anon_sym_i16 = 41, - anon_sym_i32 = 42, - anon_sym_i64 = 43, - anon_sym_u8 = 44, - anon_sym_u16 = 45, - anon_sym_u32 = 46, - anon_sym_u64 = 47, - anon_sym_isize = 48, - anon_sym_usize = 49, - anon_sym_f32 = 50, - anon_sym_f64 = 51, - anon_sym_c_char = 52, - anon_sym_c_schar = 53, - anon_sym_c_uchar = 54, - anon_sym_c_short = 55, - anon_sym_c_ushort = 56, - anon_sym_c_int = 57, - anon_sym_c_uint = 58, - anon_sym_c_long = 59, - anon_sym_c_ulong = 60, - anon_sym_c_longlong = 61, - anon_sym_c_ulonglong = 62, - anon_sym_c_float = 63, - anon_sym_c_double = 64, - anon_sym_c_longdouble = 65, - anon_sym_PLUS_EQ = 66, - anon_sym_DASH_EQ = 67, - anon_sym_STAR_EQ = 68, - anon_sym_SLASH_EQ = 69, - anon_sym_AMP_EQ = 70, - anon_sym_PIPE_EQ = 71, - anon_sym_xor_EQ = 72, - anon_sym_LT_LT_EQ = 73, - anon_sym_GT_GT_EQ = 74, - anon_sym_LT_LT_PIPE_EQ = 75, - anon_sym_return = 76, - anon_sym_yield = 77, - anon_sym_COLON = 78, - anon_sym_break = 79, - anon_sym_continue = 80, - anon_sym_defer = 81, - anon_sym_errdefer = 82, - anon_sym_if = 83, - anon_sym_else = 84, - anon_sym_while = 85, - anon_sym_expand = 86, - anon_sym_for = 87, - anon_sym_match = 88, - anon_sym_DOT_DOT = 89, - anon_sym_DOT_DOT_EQ = 90, - anon_sym_orelse = 91, - anon_sym_catch = 92, - anon_sym_or = 93, - anon_sym_and = 94, - anon_sym_EQ_EQ = 95, - anon_sym_BANG_EQ = 96, - anon_sym_LT = 97, - anon_sym_LT_EQ = 98, - anon_sym_GT = 99, - anon_sym_GT_EQ = 100, - anon_sym_AMP = 101, - anon_sym_xor = 102, - anon_sym_LT_LT = 103, - anon_sym_GT_GT = 104, - anon_sym_LT_LT_PIPE = 105, - anon_sym_PLUS = 106, - anon_sym_SLASH = 107, - anon_sym_TILDE = 108, - anon_sym_try = 109, - anon_sym_DOT = 110, - anon_sym_CARET = 111, - anon_sym_true = 112, - anon_sym_false = 113, - sym_none = 114, - sym_undefined = 115, - sym_sink = 116, - sym_integer = 117, - sym_float = 118, - anon_sym_DQUOTE = 119, - sym_string_content = 120, - sym_escape_sequence = 121, - sym_multiline_string = 122, - sym_character = 123, - sym_comment = 124, - sym__newline = 125, - sym_source_file = 126, - sym__top_level_declaration = 127, - sym_import_declaration = 128, - sym_test_import_declaration = 129, - sym_test_declaration = 130, - sym_function_declaration = 131, - sym_type_declaration = 132, - sym_global_constant_declaration = 133, - sym_global_variable_declaration = 134, - sym_struct_type = 135, - sym_c_struct_type = 136, - sym_distinct_type = 137, - sym_alias_type = 138, - sym_union_type = 139, - sym_enum_type = 140, - sym_record_body = 141, - sym_record_field = 142, - sym_enum_body = 143, - sym_enum_member = 144, - sym_parameter_list = 145, - sym_parameter = 146, - sym_type = 147, - sym__type_atom = 148, - sym_named_type = 149, - sym_optional_type = 150, - sym_pointer_type = 151, - sym_array_type = 152, - sym_function_type = 153, - sym__error_type = 154, - sym__type_constant = 155, - sym_builtin_type = 156, - sym_block = 157, - sym_statement = 158, - sym_constant_declaration = 159, - sym_variable_declaration = 160, - sym_assignment_statement = 161, - sym_expression_statement = 162, - sym_return_statement = 163, - sym_yield_statement = 164, - sym_break_statement = 165, - sym_continue_statement = 166, - sym_defer_statement = 167, - sym_error_capture = 168, - sym_labeled_block = 169, - sym_if_statement = 170, - sym_capture_list = 171, - sym_while_statement = 172, - sym_for_statement = 173, - sym_match_statement = 174, - sym_match_arm = 175, - sym_match_capture = 176, - sym_expand_match_capture = 177, - sym__branch_body = 178, - sym__value = 179, - sym_expression = 180, - sym_binary_expression = 181, - sym_catch_expression = 182, - sym_unary_expression = 183, - sym_field_expression = 184, - sym_intrinsic_call_expression = 185, - sym_call_expression = 186, - sym_argument_list = 187, - sym_index_expression = 188, - sym_slice_expression = 189, - sym_postfix_expression = 190, - sym_struct_literal = 191, - sym_initializer_list = 192, - sym_field_initializer = 193, - sym_tuple_literal = 194, - sym_enum_literal = 195, - sym_variant_payload = 196, - sym_keyed_field_initializer = 197, - sym_array_literal = 198, - sym_parenthesized_expression = 199, - sym_comptime_block = 200, - sym_function_literal = 201, - sym_qualified_identifier = 202, - sym_boolean = 203, - sym_string = 204, - aux_sym_source_file_repeat1 = 205, - aux_sym_import_declaration_repeat1 = 206, - aux_sym_record_body_repeat1 = 207, - aux_sym_enum_body_repeat1 = 208, - aux_sym_parameter_list_repeat1 = 209, - aux_sym_parameter_repeat1 = 210, - aux_sym_type_repeat1 = 211, - aux_sym_block_repeat1 = 212, - aux_sym_capture_list_repeat1 = 213, - aux_sym_match_statement_repeat1 = 214, - aux_sym_match_arm_repeat1 = 215, - aux_sym_initializer_list_repeat1 = 216, - aux_sym_tuple_literal_repeat1 = 217, - aux_sym_variant_payload_repeat1 = 218, - aux_sym_string_repeat1 = 219, + anon_sym_type = 34, + anon_sym_anyopaque = 35, + anon_sym_bool = 36, + anon_sym_int = 37, + anon_sym_uint = 38, + anon_sym_float = 39, + anon_sym_range = 40, + anon_sym_i8 = 41, + anon_sym_i16 = 42, + anon_sym_i32 = 43, + anon_sym_i64 = 44, + anon_sym_u8 = 45, + anon_sym_u16 = 46, + anon_sym_u32 = 47, + anon_sym_u64 = 48, + anon_sym_isize = 49, + anon_sym_usize = 50, + anon_sym_f32 = 51, + anon_sym_f64 = 52, + anon_sym_c_char = 53, + anon_sym_c_schar = 54, + anon_sym_c_uchar = 55, + anon_sym_c_short = 56, + anon_sym_c_ushort = 57, + anon_sym_c_int = 58, + anon_sym_c_uint = 59, + anon_sym_c_long = 60, + anon_sym_c_ulong = 61, + anon_sym_c_longlong = 62, + anon_sym_c_ulonglong = 63, + anon_sym_c_float = 64, + anon_sym_c_double = 65, + anon_sym_c_longdouble = 66, + anon_sym_PLUS_EQ = 67, + anon_sym_DASH_EQ = 68, + anon_sym_STAR_EQ = 69, + anon_sym_SLASH_EQ = 70, + anon_sym_AMP_EQ = 71, + anon_sym_PIPE_EQ = 72, + anon_sym_xor_EQ = 73, + anon_sym_LT_LT_EQ = 74, + anon_sym_GT_GT_EQ = 75, + anon_sym_LT_LT_PIPE_EQ = 76, + anon_sym_return = 77, + anon_sym_yield = 78, + anon_sym_COLON = 79, + anon_sym_break = 80, + anon_sym_continue = 81, + anon_sym_defer = 82, + anon_sym_errdefer = 83, + anon_sym_if = 84, + anon_sym_else = 85, + anon_sym_while = 86, + anon_sym_expand = 87, + anon_sym_for = 88, + anon_sym_PIPE2 = 89, + anon_sym_match = 90, + anon_sym_DOT_DOT = 91, + anon_sym_DOT_DOT_EQ = 92, + anon_sym_orelse = 93, + anon_sym_catch = 94, + anon_sym_or = 95, + anon_sym_and = 96, + anon_sym_EQ_EQ = 97, + anon_sym_BANG_EQ = 98, + anon_sym_LT = 99, + anon_sym_LT_EQ = 100, + anon_sym_GT = 101, + anon_sym_GT_EQ = 102, + anon_sym_AMP = 103, + anon_sym_xor = 104, + anon_sym_LT_LT = 105, + anon_sym_GT_GT = 106, + anon_sym_LT_LT_PIPE = 107, + anon_sym_PLUS = 108, + anon_sym_SLASH = 109, + anon_sym_TILDE = 110, + anon_sym_try = 111, + anon_sym_DOT = 112, + anon_sym_CARET = 113, + anon_sym_true = 114, + anon_sym_false = 115, + sym_none = 116, + sym_undefined = 117, + sym_sink = 118, + sym_integer = 119, + sym_float = 120, + anon_sym_DQUOTE = 121, + sym_string_content = 122, + sym_escape_sequence = 123, + sym_multiline_string = 124, + sym_character = 125, + sym_comment = 126, + sym__newline = 127, + sym_source_file = 128, + sym__top_level_declaration = 129, + sym_import_declaration = 130, + sym_test_import_declaration = 131, + sym_test_declaration = 132, + sym_function_declaration = 133, + sym_type_declaration = 134, + sym_global_constant_declaration = 135, + sym_global_variable_declaration = 136, + sym_struct_type = 137, + sym_c_struct_type = 138, + sym_distinct_type = 139, + sym_alias_type = 140, + sym_union_type = 141, + sym_enum_type = 142, + sym_record_body = 143, + sym_record_field = 144, + sym_enum_body = 145, + sym_enum_member = 146, + sym_parameter_list = 147, + sym_parameter = 148, + sym_type = 149, + sym__type_atom = 150, + sym_parenthesized_type = 151, + sym_named_type = 152, + sym_optional_type = 153, + sym_pointer_type = 154, + sym_array_type = 155, + sym_function_type = 156, + sym__error_type = 157, + sym__type_constant = 158, + sym_builtin_type = 159, + sym_block = 160, + sym_statement = 161, + sym_constant_declaration = 162, + sym_variable_declaration = 163, + sym_assignment_statement = 164, + sym_expression_statement = 165, + sym_return_statement = 166, + sym_yield_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_defer_statement = 170, + sym_error_capture = 171, + sym_labeled_block = 172, + sym_if_statement = 173, + sym_capture_list = 174, + sym_while_statement = 175, + sym_for_statement = 176, + sym__for_capture_bar = 177, + sym_match_statement = 178, + sym_match_arm = 179, + sym_match_capture = 180, + sym_expand_match_capture = 181, + sym__branch_body = 182, + sym__value = 183, + sym_expression = 184, + sym_binary_expression = 185, + sym_catch_expression = 186, + sym_unary_expression = 187, + sym_field_expression = 188, + sym_intrinsic_call_expression = 189, + sym_call_expression = 190, + sym_argument_list = 191, + sym_index_expression = 192, + sym_slice_expression = 193, + sym_postfix_expression = 194, + sym_struct_literal = 195, + sym_initializer_list = 196, + sym_field_initializer = 197, + sym_tuple_literal = 198, + sym_enum_literal = 199, + sym_variant_payload = 200, + sym_keyed_field_initializer = 201, + sym_array_literal = 202, + sym_parenthesized_expression = 203, + sym_comptime_block = 204, + sym_function_literal = 205, + sym_qualified_identifier = 206, + sym_boolean = 207, + sym_string = 208, + aux_sym_source_file_repeat1 = 209, + aux_sym_import_declaration_repeat1 = 210, + aux_sym_record_body_repeat1 = 211, + aux_sym_enum_body_repeat1 = 212, + aux_sym_parameter_list_repeat1 = 213, + aux_sym_parameter_repeat1 = 214, + aux_sym_type_repeat1 = 215, + aux_sym_block_repeat1 = 216, + aux_sym_capture_list_repeat1 = 217, + aux_sym_match_statement_repeat1 = 218, + aux_sym_match_arm_repeat1 = 219, + aux_sym_initializer_list_repeat1 = 220, + aux_sym_tuple_literal_repeat1 = 221, + aux_sym_variant_payload_repeat1 = 222, + aux_sym_string_repeat1 = 223, }; static const char * const ts_symbol_names[] = { @@ -276,6 +280,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_SEMI] = ";", [anon_sym_RBRACK] = "]", [anon_sym_void] = "void", + [anon_sym_type] = "type", [anon_sym_anyopaque] = "anyopaque", [anon_sym_bool] = "bool", [anon_sym_int] = "int", @@ -330,6 +335,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_expand] = "expand", [anon_sym_for] = "for", + [anon_sym_PIPE2] = "|", [anon_sym_match] = "match", [anon_sym_DOT_DOT] = "..", [anon_sym_DOT_DOT_EQ] = "..=", @@ -391,6 +397,7 @@ static const char * const ts_symbol_names[] = { [sym_parameter] = "parameter", [sym_type] = "type", [sym__type_atom] = "_type_atom", + [sym_parenthesized_type] = "parenthesized_type", [sym_named_type] = "named_type", [sym_optional_type] = "optional_type", [sym_pointer_type] = "pointer_type", @@ -416,6 +423,7 @@ static const char * const ts_symbol_names[] = { [sym_capture_list] = "capture_list", [sym_while_statement] = "while_statement", [sym_for_statement] = "for_statement", + [sym__for_capture_bar] = "_for_capture_bar", [sym_match_statement] = "match_statement", [sym_match_arm] = "match_arm", [sym_match_capture] = "match_capture", @@ -499,6 +507,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_void] = anon_sym_void, + [anon_sym_type] = anon_sym_type, [anon_sym_anyopaque] = anon_sym_anyopaque, [anon_sym_bool] = anon_sym_bool, [anon_sym_int] = anon_sym_int, @@ -553,6 +562,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_expand] = anon_sym_expand, [anon_sym_for] = anon_sym_for, + [anon_sym_PIPE2] = anon_sym_PIPE, [anon_sym_match] = anon_sym_match, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_DOT_DOT_EQ] = anon_sym_DOT_DOT_EQ, @@ -614,6 +624,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter] = sym_parameter, [sym_type] = sym_type, [sym__type_atom] = sym__type_atom, + [sym_parenthesized_type] = sym_parenthesized_type, [sym_named_type] = sym_named_type, [sym_optional_type] = sym_optional_type, [sym_pointer_type] = sym_pointer_type, @@ -639,6 +650,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_capture_list] = sym_capture_list, [sym_while_statement] = sym_while_statement, [sym_for_statement] = sym_for_statement, + [sym__for_capture_bar] = sym__for_capture_bar, [sym_match_statement] = sym_match_statement, [sym_match_arm] = sym_match_arm, [sym_match_capture] = sym_match_capture, @@ -824,6 +836,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, [anon_sym_anyopaque] = { .visible = true, .named = false, @@ -1040,6 +1056,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PIPE2] = { + .visible = true, + .named = false, + }, [anon_sym_match] = { .visible = true, .named = false, @@ -1284,6 +1304,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_parenthesized_type] = { + .visible = true, + .named = true, + }, [sym_named_type] = { .visible = true, .named = true, @@ -1384,6 +1408,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__for_capture_bar] = { + .visible = false, + .named = true, + }, [sym_match_statement] = { .visible = true, .named = true, @@ -1579,37 +1607,38 @@ enum ts_field_identifiers { field_capture = 6, field_condition = 7, field_consequence = 8, - field_element = 9, - field_end = 10, - field_error = 11, - field_field = 12, - field_fields = 13, - field_function = 14, - field_guard = 15, - field_index = 16, - field_item = 17, - field_iterable = 18, - field_kind = 19, - field_label = 20, - field_left = 21, - field_length = 22, - field_marker = 23, - field_name = 24, - field_operand = 25, - field_operator = 26, - field_parameters = 27, - field_path = 28, - field_pattern = 29, - field_qualifier = 30, - field_result = 31, - field_right = 32, - field_sentinel = 33, - field_start = 34, - field_subject = 35, - field_tag = 36, - field_type = 37, - field_update = 38, - field_value = 39, + field_default = 9, + field_element = 10, + field_end = 11, + field_error = 12, + field_field = 13, + field_fields = 14, + field_function = 15, + field_guard = 16, + field_index = 17, + field_item = 18, + field_iterable = 19, + field_kind = 20, + field_label = 21, + field_left = 22, + field_length = 23, + field_marker = 24, + field_name = 25, + field_operand = 26, + field_operator = 27, + field_parameters = 28, + field_path = 29, + field_pattern = 30, + field_qualifier = 31, + field_result = 32, + field_right = 33, + field_sentinel = 34, + field_start = 35, + field_subject = 36, + field_tag = 37, + field_type = 38, + field_update = 39, + field_value = 40, }; static const char * const ts_field_names[] = { @@ -1622,6 +1651,7 @@ static const char * const ts_field_names[] = { [field_capture] = "capture", [field_condition] = "condition", [field_consequence] = "consequence", + [field_default] = "default", [field_element] = "element", [field_end] = "end", [field_error] = "error", @@ -1765,11 +1795,11 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [107] = {.index = 250, .length = 5}, [108] = {.index = 255, .length = 3}, [109] = {.index = 258, .length = 2}, - [110] = {.index = 260, .length = 2}, - [111] = {.index = 262, .length = 3}, + [110] = {.index = 260, .length = 3}, + [111] = {.index = 263, .length = 2}, [112] = {.index = 265, .length = 3}, - [113] = {.index = 268, .length = 2}, - [114] = {.index = 270, .length = 3}, + [113] = {.index = 268, .length = 3}, + [114] = {.index = 271, .length = 2}, [115] = {.index = 273, .length = 3}, [116] = {.index = 276, .length = 3}, [117] = {.index = 279, .length = 3}, @@ -1777,263 +1807,266 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [119] = {.index = 285, .length = 3}, [120] = {.index = 288, .length = 3}, [121] = {.index = 291, .length = 3}, - [122] = {.index = 294, .length = 2}, - [123] = {.index = 296, .length = 3}, - [124] = {.index = 299, .length = 2}, - [125] = {.index = 301, .length = 2}, - [126] = {.index = 303, .length = 3}, - [127] = {.index = 306, .length = 6}, - [128] = {.index = 312, .length = 6}, - [129] = {.index = 318, .length = 2}, - [130] = {.index = 320, .length = 2}, - [131] = {.index = 322, .length = 3}, - [132] = {.index = 325, .length = 2}, - [133] = {.index = 327, .length = 3}, - [134] = {.index = 330, .length = 2}, - [135] = {.index = 332, .length = 6}, - [136] = {.index = 338, .length = 6}, - [137] = {.index = 344, .length = 3}, - [138] = {.index = 347, .length = 3}, - [139] = {.index = 350, .length = 1}, + [122] = {.index = 294, .length = 3}, + [123] = {.index = 297, .length = 2}, + [124] = {.index = 299, .length = 3}, + [125] = {.index = 302, .length = 2}, + [126] = {.index = 304, .length = 2}, + [127] = {.index = 306, .length = 3}, + [128] = {.index = 309, .length = 1}, + [129] = {.index = 310, .length = 6}, + [130] = {.index = 316, .length = 6}, + [131] = {.index = 322, .length = 2}, + [132] = {.index = 324, .length = 2}, + [133] = {.index = 326, .length = 3}, + [134] = {.index = 329, .length = 2}, + [135] = {.index = 331, .length = 3}, + [136] = {.index = 334, .length = 2}, + [137] = {.index = 336, .length = 6}, + [138] = {.index = 342, .length = 6}, + [139] = {.index = 348, .length = 3}, [140] = {.index = 351, .length = 3}, [141] = {.index = 354, .length = 3}, - [142] = {.index = 357, .length = 3}, - [143] = {.index = 360, .length = 3}, - [144] = {.index = 363, .length = 3}, - [145] = {.index = 366, .length = 5}, - [146] = {.index = 371, .length = 4}, - [147] = {.index = 375, .length = 3}, - [148] = {.index = 378, .length = 3}, - [149] = {.index = 381, .length = 3}, - [150] = {.index = 384, .length = 3}, - [151] = {.index = 387, .length = 3}, - [152] = {.index = 390, .length = 3}, - [153] = {.index = 393, .length = 3}, - [154] = {.index = 396, .length = 3}, - [155] = {.index = 399, .length = 3}, - [156] = {.index = 402, .length = 2}, - [157] = {.index = 404, .length = 1}, - [158] = {.index = 405, .length = 3}, - [159] = {.index = 408, .length = 3}, - [160] = {.index = 411, .length = 3}, - [161] = {.index = 414, .length = 6}, - [162] = {.index = 420, .length = 2}, - [163] = {.index = 422, .length = 3}, - [164] = {.index = 425, .length = 2}, - [165] = {.index = 427, .length = 3}, - [166] = {.index = 430, .length = 6}, - [167] = {.index = 436, .length = 3}, - [168] = {.index = 439, .length = 1}, - [169] = {.index = 440, .length = 3}, + [142] = {.index = 357, .length = 1}, + [143] = {.index = 358, .length = 3}, + [144] = {.index = 361, .length = 3}, + [145] = {.index = 364, .length = 3}, + [146] = {.index = 367, .length = 3}, + [147] = {.index = 370, .length = 3}, + [148] = {.index = 373, .length = 5}, + [149] = {.index = 378, .length = 4}, + [150] = {.index = 382, .length = 3}, + [151] = {.index = 385, .length = 3}, + [152] = {.index = 388, .length = 3}, + [153] = {.index = 391, .length = 3}, + [154] = {.index = 394, .length = 3}, + [155] = {.index = 397, .length = 3}, + [156] = {.index = 400, .length = 3}, + [157] = {.index = 403, .length = 3}, + [158] = {.index = 406, .length = 3}, + [159] = {.index = 409, .length = 2}, + [160] = {.index = 411, .length = 1}, + [161] = {.index = 412, .length = 3}, + [162] = {.index = 415, .length = 3}, + [163] = {.index = 418, .length = 3}, + [164] = {.index = 421, .length = 6}, + [165] = {.index = 427, .length = 2}, + [166] = {.index = 429, .length = 3}, + [167] = {.index = 432, .length = 2}, + [168] = {.index = 434, .length = 3}, + [169] = {.index = 437, .length = 6}, [170] = {.index = 443, .length = 3}, - [171] = {.index = 446, .length = 3}, - [172] = {.index = 449, .length = 3}, - [173] = {.index = 452, .length = 3}, - [174] = {.index = 455, .length = 5}, - [175] = {.index = 460, .length = 6}, - [176] = {.index = 466, .length = 4}, - [177] = {.index = 470, .length = 4}, - [178] = {.index = 474, .length = 5}, - [179] = {.index = 479, .length = 4}, - [180] = {.index = 483, .length = 5}, - [181] = {.index = 488, .length = 4}, - [182] = {.index = 492, .length = 3}, - [183] = {.index = 495, .length = 3}, - [184] = {.index = 498, .length = 3}, - [185] = {.index = 501, .length = 3}, - [186] = {.index = 504, .length = 3}, - [187] = {.index = 507, .length = 3}, - [188] = {.index = 510, .length = 4}, - [189] = {.index = 514, .length = 4}, - [190] = {.index = 518, .length = 3}, - [191] = {.index = 521, .length = 2}, - [192] = {.index = 523, .length = 1}, - [193] = {.index = 524, .length = 1}, - [194] = {.index = 525, .length = 3}, - [195] = {.index = 528, .length = 2}, - [196] = {.index = 530, .length = 3}, - [197] = {.index = 533, .length = 3}, - [198] = {.index = 536, .length = 3}, - [199] = {.index = 539, .length = 3}, - [200] = {.index = 542, .length = 6}, - [201] = {.index = 548, .length = 6}, - [202] = {.index = 554, .length = 7}, - [203] = {.index = 561, .length = 4}, - [204] = {.index = 565, .length = 5}, - [205] = {.index = 570, .length = 6}, - [206] = {.index = 576, .length = 4}, - [207] = {.index = 580, .length = 4}, - [208] = {.index = 584, .length = 5}, - [209] = {.index = 589, .length = 6}, - [210] = {.index = 595, .length = 4}, - [211] = {.index = 599, .length = 4}, - [212] = {.index = 603, .length = 5}, - [213] = {.index = 608, .length = 4}, - [214] = {.index = 612, .length = 3}, - [215] = {.index = 615, .length = 4}, - [216] = {.index = 619, .length = 4}, - [217] = {.index = 623, .length = 3}, - [218] = {.index = 626, .length = 3}, - [219] = {.index = 629, .length = 3}, - [220] = {.index = 632, .length = 4}, - [221] = {.index = 636, .length = 4}, - [222] = {.index = 640, .length = 4}, - [223] = {.index = 644, .length = 4}, - [224] = {.index = 648, .length = 4}, - [225] = {.index = 652, .length = 3}, - [226] = {.index = 655, .length = 2}, - [227] = {.index = 657, .length = 3}, - [228] = {.index = 660, .length = 3}, - [229] = {.index = 663, .length = 6}, - [230] = {.index = 669, .length = 6}, - [231] = {.index = 675, .length = 7}, - [232] = {.index = 682, .length = 7}, - [233] = {.index = 689, .length = 6}, - [234] = {.index = 695, .length = 6}, - [235] = {.index = 701, .length = 7}, - [236] = {.index = 708, .length = 4}, - [237] = {.index = 712, .length = 6}, - [238] = {.index = 718, .length = 6}, - [239] = {.index = 724, .length = 7}, - [240] = {.index = 731, .length = 4}, - [241] = {.index = 735, .length = 5}, - [242] = {.index = 740, .length = 6}, - [243] = {.index = 746, .length = 4}, - [244] = {.index = 750, .length = 4}, - [245] = {.index = 754, .length = 4}, - [246] = {.index = 758, .length = 4}, - [247] = {.index = 762, .length = 4}, - [248] = {.index = 766, .length = 4}, - [249] = {.index = 770, .length = 4}, - [250] = {.index = 774, .length = 3}, - [251] = {.index = 777, .length = 3}, - [252] = {.index = 780, .length = 4}, - [253] = {.index = 784, .length = 4}, - [254] = {.index = 788, .length = 3}, - [255] = {.index = 791, .length = 4}, - [256] = {.index = 795, .length = 4}, - [257] = {.index = 799, .length = 4}, - [258] = {.index = 803, .length = 5}, - [259] = {.index = 808, .length = 4}, - [260] = {.index = 812, .length = 4}, - [261] = {.index = 816, .length = 4}, - [262] = {.index = 820, .length = 2}, - [263] = {.index = 822, .length = 6}, - [264] = {.index = 828, .length = 7}, - [265] = {.index = 835, .length = 7}, - [266] = {.index = 842, .length = 8}, - [267] = {.index = 850, .length = 6}, - [268] = {.index = 856, .length = 6}, - [269] = {.index = 862, .length = 7}, - [270] = {.index = 869, .length = 7}, - [271] = {.index = 876, .length = 6}, - [272] = {.index = 882, .length = 6}, - [273] = {.index = 888, .length = 7}, - [274] = {.index = 895, .length = 7}, - [275] = {.index = 902, .length = 6}, - [276] = {.index = 908, .length = 6}, - [277] = {.index = 914, .length = 7}, - [278] = {.index = 921, .length = 4}, - [279] = {.index = 925, .length = 4}, - [280] = {.index = 929, .length = 4}, - [281] = {.index = 933, .length = 4}, - [282] = {.index = 937, .length = 5}, - [283] = {.index = 942, .length = 4}, - [284] = {.index = 946, .length = 4}, - [285] = {.index = 950, .length = 4}, - [286] = {.index = 954, .length = 4}, - [287] = {.index = 958, .length = 4}, - [288] = {.index = 962, .length = 4}, - [289] = {.index = 966, .length = 4}, - [290] = {.index = 970, .length = 4}, - [291] = {.index = 974, .length = 3}, - [292] = {.index = 977, .length = 5}, - [293] = {.index = 982, .length = 4}, - [294] = {.index = 986, .length = 5}, - [295] = {.index = 991, .length = 5}, - [296] = {.index = 996, .length = 4}, - [297] = {.index = 1000, .length = 4}, - [298] = {.index = 1004, .length = 4}, - [299] = {.index = 1008, .length = 7}, - [300] = {.index = 1015, .length = 8}, - [301] = {.index = 1023, .length = 8}, - [302] = {.index = 1031, .length = 6}, - [303] = {.index = 1037, .length = 7}, - [304] = {.index = 1044, .length = 7}, - [305] = {.index = 1051, .length = 8}, - [306] = {.index = 1059, .length = 6}, - [307] = {.index = 1065, .length = 7}, - [308] = {.index = 1072, .length = 7}, - [309] = {.index = 1079, .length = 8}, - [310] = {.index = 1087, .length = 6}, - [311] = {.index = 1093, .length = 6}, - [312] = {.index = 1099, .length = 7}, - [313] = {.index = 1106, .length = 7}, - [314] = {.index = 1113, .length = 5}, - [315] = {.index = 1118, .length = 4}, - [316] = {.index = 1122, .length = 5}, - [317] = {.index = 1127, .length = 5}, - [318] = {.index = 1132, .length = 4}, - [319] = {.index = 1136, .length = 4}, - [320] = {.index = 1140, .length = 4}, - [321] = {.index = 1144, .length = 4}, - [322] = {.index = 1148, .length = 4}, - [323] = {.index = 1152, .length = 4}, - [324] = {.index = 1156, .length = 5}, - [325] = {.index = 1161, .length = 4}, - [326] = {.index = 1165, .length = 4}, - [327] = {.index = 1169, .length = 4}, - [328] = {.index = 1173, .length = 5}, - [329] = {.index = 1178, .length = 5}, - [330] = {.index = 1183, .length = 5}, - [331] = {.index = 1188, .length = 5}, - [332] = {.index = 1193, .length = 4}, - [333] = {.index = 1197, .length = 8}, - [334] = {.index = 1205, .length = 7}, - [335] = {.index = 1212, .length = 8}, - [336] = {.index = 1220, .length = 8}, - [337] = {.index = 1228, .length = 7}, - [338] = {.index = 1235, .length = 8}, - [339] = {.index = 1243, .length = 8}, - [340] = {.index = 1251, .length = 6}, - [341] = {.index = 1257, .length = 7}, - [342] = {.index = 1264, .length = 7}, - [343] = {.index = 1271, .length = 8}, - [344] = {.index = 1279, .length = 5}, - [345] = {.index = 1284, .length = 5}, - [346] = {.index = 1289, .length = 5}, - [347] = {.index = 1294, .length = 5}, - [348] = {.index = 1299, .length = 4}, - [349] = {.index = 1303, .length = 5}, - [350] = {.index = 1308, .length = 4}, - [351] = {.index = 1312, .length = 5}, - [352] = {.index = 1317, .length = 5}, - [353] = {.index = 1322, .length = 4}, - [354] = {.index = 1326, .length = 4}, - [355] = {.index = 1330, .length = 4}, - [356] = {.index = 1334, .length = 5}, - [357] = {.index = 1339, .length = 5}, - [358] = {.index = 1344, .length = 5}, - [359] = {.index = 1349, .length = 8}, - [360] = {.index = 1357, .length = 8}, - [361] = {.index = 1365, .length = 7}, - [362] = {.index = 1372, .length = 8}, - [363] = {.index = 1380, .length = 8}, - [364] = {.index = 1388, .length = 5}, - [365] = {.index = 1393, .length = 5}, - [366] = {.index = 1398, .length = 5}, - [367] = {.index = 1403, .length = 5}, - [368] = {.index = 1408, .length = 5}, - [369] = {.index = 1413, .length = 5}, - [370] = {.index = 1418, .length = 5}, - [371] = {.index = 1423, .length = 4}, - [372] = {.index = 1427, .length = 5}, - [373] = {.index = 1432, .length = 8}, - [374] = {.index = 1440, .length = 5}, - [375] = {.index = 1445, .length = 5}, - [376] = {.index = 1450, .length = 5}, - [377] = {.index = 1455, .length = 5}, - [378] = {.index = 1460, .length = 5}, + [171] = {.index = 446, .length = 1}, + [172] = {.index = 447, .length = 3}, + [173] = {.index = 450, .length = 3}, + [174] = {.index = 453, .length = 3}, + [175] = {.index = 456, .length = 3}, + [176] = {.index = 459, .length = 3}, + [177] = {.index = 462, .length = 5}, + [178] = {.index = 467, .length = 6}, + [179] = {.index = 473, .length = 4}, + [180] = {.index = 477, .length = 4}, + [181] = {.index = 481, .length = 5}, + [182] = {.index = 486, .length = 4}, + [183] = {.index = 490, .length = 5}, + [184] = {.index = 495, .length = 4}, + [185] = {.index = 499, .length = 3}, + [186] = {.index = 502, .length = 3}, + [187] = {.index = 505, .length = 3}, + [188] = {.index = 508, .length = 3}, + [189] = {.index = 511, .length = 3}, + [190] = {.index = 514, .length = 3}, + [191] = {.index = 517, .length = 4}, + [192] = {.index = 521, .length = 4}, + [193] = {.index = 525, .length = 3}, + [194] = {.index = 528, .length = 2}, + [195] = {.index = 530, .length = 1}, + [196] = {.index = 531, .length = 1}, + [197] = {.index = 532, .length = 3}, + [198] = {.index = 535, .length = 2}, + [199] = {.index = 537, .length = 3}, + [200] = {.index = 540, .length = 3}, + [201] = {.index = 543, .length = 3}, + [202] = {.index = 546, .length = 3}, + [203] = {.index = 549, .length = 6}, + [204] = {.index = 555, .length = 6}, + [205] = {.index = 561, .length = 7}, + [206] = {.index = 568, .length = 4}, + [207] = {.index = 572, .length = 5}, + [208] = {.index = 577, .length = 6}, + [209] = {.index = 583, .length = 4}, + [210] = {.index = 587, .length = 4}, + [211] = {.index = 591, .length = 5}, + [212] = {.index = 596, .length = 6}, + [213] = {.index = 602, .length = 4}, + [214] = {.index = 606, .length = 4}, + [215] = {.index = 610, .length = 5}, + [216] = {.index = 615, .length = 4}, + [217] = {.index = 619, .length = 3}, + [218] = {.index = 622, .length = 4}, + [219] = {.index = 626, .length = 4}, + [220] = {.index = 630, .length = 3}, + [221] = {.index = 633, .length = 3}, + [222] = {.index = 636, .length = 3}, + [223] = {.index = 639, .length = 4}, + [224] = {.index = 643, .length = 4}, + [225] = {.index = 647, .length = 4}, + [226] = {.index = 651, .length = 4}, + [227] = {.index = 655, .length = 4}, + [228] = {.index = 659, .length = 3}, + [229] = {.index = 662, .length = 2}, + [230] = {.index = 664, .length = 3}, + [231] = {.index = 667, .length = 3}, + [232] = {.index = 670, .length = 6}, + [233] = {.index = 676, .length = 6}, + [234] = {.index = 682, .length = 7}, + [235] = {.index = 689, .length = 7}, + [236] = {.index = 696, .length = 6}, + [237] = {.index = 702, .length = 6}, + [238] = {.index = 708, .length = 7}, + [239] = {.index = 715, .length = 4}, + [240] = {.index = 719, .length = 6}, + [241] = {.index = 725, .length = 6}, + [242] = {.index = 731, .length = 7}, + [243] = {.index = 738, .length = 4}, + [244] = {.index = 742, .length = 5}, + [245] = {.index = 747, .length = 6}, + [246] = {.index = 753, .length = 4}, + [247] = {.index = 757, .length = 4}, + [248] = {.index = 761, .length = 4}, + [249] = {.index = 765, .length = 4}, + [250] = {.index = 769, .length = 4}, + [251] = {.index = 773, .length = 4}, + [252] = {.index = 777, .length = 4}, + [253] = {.index = 781, .length = 3}, + [254] = {.index = 784, .length = 3}, + [255] = {.index = 787, .length = 4}, + [256] = {.index = 791, .length = 4}, + [257] = {.index = 795, .length = 3}, + [258] = {.index = 798, .length = 4}, + [259] = {.index = 802, .length = 4}, + [260] = {.index = 806, .length = 4}, + [261] = {.index = 810, .length = 5}, + [262] = {.index = 815, .length = 4}, + [263] = {.index = 819, .length = 4}, + [264] = {.index = 823, .length = 4}, + [265] = {.index = 827, .length = 2}, + [266] = {.index = 829, .length = 6}, + [267] = {.index = 835, .length = 7}, + [268] = {.index = 842, .length = 7}, + [269] = {.index = 849, .length = 8}, + [270] = {.index = 857, .length = 6}, + [271] = {.index = 863, .length = 6}, + [272] = {.index = 869, .length = 7}, + [273] = {.index = 876, .length = 7}, + [274] = {.index = 883, .length = 6}, + [275] = {.index = 889, .length = 6}, + [276] = {.index = 895, .length = 7}, + [277] = {.index = 902, .length = 7}, + [278] = {.index = 909, .length = 6}, + [279] = {.index = 915, .length = 6}, + [280] = {.index = 921, .length = 7}, + [281] = {.index = 928, .length = 4}, + [282] = {.index = 932, .length = 4}, + [283] = {.index = 936, .length = 4}, + [284] = {.index = 940, .length = 4}, + [285] = {.index = 944, .length = 5}, + [286] = {.index = 949, .length = 4}, + [287] = {.index = 953, .length = 4}, + [288] = {.index = 957, .length = 4}, + [289] = {.index = 961, .length = 4}, + [290] = {.index = 965, .length = 4}, + [291] = {.index = 969, .length = 4}, + [292] = {.index = 973, .length = 4}, + [293] = {.index = 977, .length = 4}, + [294] = {.index = 981, .length = 3}, + [295] = {.index = 984, .length = 5}, + [296] = {.index = 989, .length = 4}, + [297] = {.index = 993, .length = 5}, + [298] = {.index = 998, .length = 5}, + [299] = {.index = 1003, .length = 4}, + [300] = {.index = 1007, .length = 4}, + [301] = {.index = 1011, .length = 4}, + [302] = {.index = 1015, .length = 7}, + [303] = {.index = 1022, .length = 8}, + [304] = {.index = 1030, .length = 8}, + [305] = {.index = 1038, .length = 6}, + [306] = {.index = 1044, .length = 7}, + [307] = {.index = 1051, .length = 7}, + [308] = {.index = 1058, .length = 8}, + [309] = {.index = 1066, .length = 6}, + [310] = {.index = 1072, .length = 7}, + [311] = {.index = 1079, .length = 7}, + [312] = {.index = 1086, .length = 8}, + [313] = {.index = 1094, .length = 6}, + [314] = {.index = 1100, .length = 6}, + [315] = {.index = 1106, .length = 7}, + [316] = {.index = 1113, .length = 7}, + [317] = {.index = 1120, .length = 5}, + [318] = {.index = 1125, .length = 4}, + [319] = {.index = 1129, .length = 5}, + [320] = {.index = 1134, .length = 5}, + [321] = {.index = 1139, .length = 4}, + [322] = {.index = 1143, .length = 4}, + [323] = {.index = 1147, .length = 4}, + [324] = {.index = 1151, .length = 4}, + [325] = {.index = 1155, .length = 4}, + [326] = {.index = 1159, .length = 4}, + [327] = {.index = 1163, .length = 5}, + [328] = {.index = 1168, .length = 4}, + [329] = {.index = 1172, .length = 4}, + [330] = {.index = 1176, .length = 4}, + [331] = {.index = 1180, .length = 5}, + [332] = {.index = 1185, .length = 5}, + [333] = {.index = 1190, .length = 5}, + [334] = {.index = 1195, .length = 5}, + [335] = {.index = 1200, .length = 4}, + [336] = {.index = 1204, .length = 8}, + [337] = {.index = 1212, .length = 7}, + [338] = {.index = 1219, .length = 8}, + [339] = {.index = 1227, .length = 8}, + [340] = {.index = 1235, .length = 7}, + [341] = {.index = 1242, .length = 8}, + [342] = {.index = 1250, .length = 8}, + [343] = {.index = 1258, .length = 6}, + [344] = {.index = 1264, .length = 7}, + [345] = {.index = 1271, .length = 7}, + [346] = {.index = 1278, .length = 8}, + [347] = {.index = 1286, .length = 5}, + [348] = {.index = 1291, .length = 5}, + [349] = {.index = 1296, .length = 5}, + [350] = {.index = 1301, .length = 5}, + [351] = {.index = 1306, .length = 4}, + [352] = {.index = 1310, .length = 5}, + [353] = {.index = 1315, .length = 4}, + [354] = {.index = 1319, .length = 5}, + [355] = {.index = 1324, .length = 5}, + [356] = {.index = 1329, .length = 4}, + [357] = {.index = 1333, .length = 4}, + [358] = {.index = 1337, .length = 4}, + [359] = {.index = 1341, .length = 5}, + [360] = {.index = 1346, .length = 5}, + [361] = {.index = 1351, .length = 5}, + [362] = {.index = 1356, .length = 8}, + [363] = {.index = 1364, .length = 8}, + [364] = {.index = 1372, .length = 7}, + [365] = {.index = 1379, .length = 8}, + [366] = {.index = 1387, .length = 8}, + [367] = {.index = 1395, .length = 5}, + [368] = {.index = 1400, .length = 5}, + [369] = {.index = 1405, .length = 5}, + [370] = {.index = 1410, .length = 5}, + [371] = {.index = 1415, .length = 5}, + [372] = {.index = 1420, .length = 5}, + [373] = {.index = 1425, .length = 5}, + [374] = {.index = 1430, .length = 4}, + [375] = {.index = 1434, .length = 5}, + [376] = {.index = 1439, .length = 8}, + [377] = {.index = 1447, .length = 5}, + [378] = {.index = 1452, .length = 5}, + [379] = {.index = 1457, .length = 5}, + [380] = {.index = 1462, .length = 5}, + [381] = {.index = 1467, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2407,550 +2440,560 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 5}, {field_result, 3}, [260] = + {field_default, 3}, + {field_name, 0}, + {field_type, 1}, + [263] = {field_body, 4}, {field_capture, 2}, - [262] = - {field_alternative, 5}, - {field_condition, 1}, - {field_consequence, 3}, [265] = {field_alternative, 5}, {field_condition, 1}, - {field_consequence, 2}, + {field_consequence, 3}, [268] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 2}, + [271] = {field_condition, 2}, {field_consequence, 5}, - [270] = + [273] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 3}, - [273] = - {field_body, 5}, - {field_condition, 1}, - {field_update, 3}, [276] = {field_body, 5}, {field_condition, 1}, - {field_update, 4}, + {field_update, 3}, [279] = {field_body, 5}, {field_condition, 1}, - {field_label, 2}, + {field_update, 4}, [282] = {field_body, 5}, {field_condition, 1}, - {field_label, 3}, + {field_label, 2}, [285] = {field_body, 5}, - {field_condition, 2}, - {field_update, 4}, + {field_condition, 1}, + {field_label, 3}, [288] = {field_body, 5}, {field_condition, 2}, - {field_label, 3}, + {field_update, 4}, [291] = + {field_body, 5}, + {field_condition, 2}, + {field_label, 3}, + [294] = {field_body, 5}, {field_item, 3}, {field_iterable, 1}, - [294] = + [297] = {field_body, 2}, {field_pattern, 0}, - [296] = + [299] = {field_end, 4}, {field_start, 2}, {field_value, 0}, - [299] = + [302] = {field_end, 4}, {field_value, 0}, - [301] = + [304] = {field_start, 3}, {field_value, 0}, - [303] = + [306] = {field_body, 5}, {field_name, 3}, {field_value, 0}, - [306] = + [309] = + {field_name, 3}, + [310] = {field_body, 7}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [312] = + [316] = {field_body, 7}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [318] = + [322] = {field_element, 6}, {field_sentinel, 3}, - [320] = + [324] = {field_element, 6}, {field_sentinel, 2}, - [322] = + [326] = {field_element, 6}, {field_length, 1}, {field_sentinel, 3}, - [325] = + [329] = {field_element, 6}, {field_sentinel, 4}, - [327] = + [331] = {field_element, 6}, {field_length, 2}, {field_sentinel, 4}, - [330] = + [334] = {field_element, 6}, {field_length, 2}, - [332] = + [336] = {field_body, 8}, {field_error, 6}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 4}, - [338] = + [342] = {field_body, 8}, {field_error, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [344] = + [348] = {field_body, 6}, {field_error, 4}, {field_result, 2}, - [347] = + [351] = {field_body, 6}, {field_error, 5}, {field_result, 3}, - [350] = + [354] = + {field_default, 4}, + {field_name, 0}, + {field_type, 1}, + [357] = {field_guard, 3}, - [351] = + [358] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, - [354] = + [361] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 4}, - [357] = + [364] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 2}, - [360] = + [367] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 4}, - [363] = + [370] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 3}, - [366] = + [373] = {field_body, 6}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [371] = - {field_body, 6}, - {field_condition, 1}, - {field_label, 4}, - {field_update, 3}, - [375] = - {field_body, 6}, - {field_condition, 1}, - {field_update, 4}, [378] = + {field_body, 6}, + {field_condition, 1}, + {field_label, 4}, + {field_update, 3}, + [382] = + {field_body, 6}, + {field_condition, 1}, + {field_update, 4}, + [385] = {field_body, 6}, {field_condition, 1}, {field_label, 3}, - [381] = + [388] = {field_body, 6}, {field_condition, 2}, {field_update, 4}, - [384] = + [391] = {field_body, 6}, {field_condition, 2}, {field_update, 5}, - [387] = + [394] = {field_body, 6}, {field_condition, 2}, {field_label, 3}, - [390] = + [397] = {field_body, 6}, {field_condition, 2}, {field_label, 4}, - [393] = + [400] = {field_body, 6}, {field_item, 4}, {field_iterable, 2}, - [396] = + [403] = {field_body, 6}, {field_item, 4}, {field_iterable, 1}, - [399] = + [406] = {field_body, 6}, {field_item, 3}, {field_iterable, 1}, - [402] = + [409] = {field_body, 3}, {field_pattern, 0}, - [404] = + [411] = {field_body, 3}, - [405] = + [412] = {field_body, 3}, {field_pattern, 0}, {field_pattern, 1}, - [408] = + [415] = {field_end, 5}, {field_start, 3}, {field_value, 0}, - [411] = + [418] = {field_body, 6}, {field_name, 3}, {field_value, 0}, - [414] = + [421] = {field_body, 8}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [420] = + [427] = {field_element, 7}, {field_sentinel, 3}, - [422] = + [429] = {field_element, 7}, {field_length, 1}, {field_sentinel, 3}, - [425] = + [432] = {field_element, 7}, {field_sentinel, 4}, - [427] = + [434] = {field_element, 7}, {field_length, 2}, {field_sentinel, 4}, - [430] = + [437] = {field_body, 9}, {field_error, 7}, {field_kind, 2}, {field_name, 1}, {field_parameters, 3}, {field_result, 5}, - [436] = + [443] = {field_body, 7}, {field_error, 5}, {field_result, 3}, - [439] = + [446] = {field_guard, 4}, - [440] = + [447] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 3}, - [443] = + [450] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 4}, - [446] = + [453] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 4}, - [449] = + [456] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 5}, - [452] = + [459] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 3}, - [455] = + [462] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [460] = + [467] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [466] = + [473] = {field_body, 7}, {field_condition, 1}, {field_label, 4}, {field_update, 3}, - [470] = + [477] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [474] = + [481] = {field_body, 7}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [479] = + [486] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [483] = + [490] = {field_body, 7}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [488] = - {field_body, 7}, - {field_condition, 2}, - {field_label, 5}, - {field_update, 4}, - [492] = - {field_body, 7}, - {field_condition, 2}, - {field_update, 5}, [495] = + {field_body, 7}, + {field_condition, 2}, + {field_label, 5}, + {field_update, 4}, + [499] = + {field_body, 7}, + {field_condition, 2}, + {field_update, 5}, + [502] = {field_body, 7}, {field_condition, 2}, {field_label, 4}, - [498] = + [505] = {field_body, 7}, {field_item, 5}, {field_iterable, 2}, - [501] = + [508] = {field_body, 7}, {field_item, 4}, {field_iterable, 2}, - [504] = + [511] = {field_body, 7}, {field_item, 5}, {field_iterable, 3}, - [507] = + [514] = {field_body, 7}, {field_item, 4}, {field_iterable, 1}, - [510] = + [517] = {field_body, 7}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [514] = + [521] = {field_body, 7}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [518] = + [525] = {field_body, 7}, {field_item, 5}, {field_iterable, 1}, - [521] = + [528] = {field_body, 4}, {field_pattern, 0}, - [523] = + [530] = {field_value, 2}, - [524] = + [531] = {field_body, 4}, - [525] = + [532] = {field_body, 4}, {field_pattern, 0}, {field_pattern, 1}, - [528] = + [535] = {field_element, 8}, {field_sentinel, 4}, - [530] = + [537] = {field_element, 8}, {field_length, 2}, {field_sentinel, 4}, - [533] = + [540] = {field_alternative, 8}, {field_condition, 1}, {field_consequence, 4}, - [536] = + [543] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 4}, - [539] = + [546] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 5}, - [542] = + [549] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [548] = + [555] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [554] = - {field_body, 8}, - {field_condition, 1}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [561] = + {field_body, 8}, + {field_condition, 1}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [568] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [565] = + [572] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [570] = + [577] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [576] = + [583] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [580] = + [587] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 4}, - [584] = + [591] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [589] = + [596] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [595] = + [602] = {field_body, 8}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [599] = + [606] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 4}, - [603] = + [610] = {field_body, 8}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [608] = + [615] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [612] = + [619] = {field_body, 8}, {field_item, 5}, {field_iterable, 2}, - [615] = + [622] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [619] = - {field_body, 8}, - {field_item, 4}, - {field_iterable, 2}, - {field_label, 6}, - [623] = - {field_body, 8}, - {field_item, 6}, - {field_iterable, 2}, [626] = + {field_body, 8}, + {field_item, 4}, + {field_iterable, 2}, + {field_label, 6}, + [630] = + {field_body, 8}, + {field_item, 6}, + {field_iterable, 2}, + [633] = {field_body, 8}, {field_item, 6}, {field_iterable, 3}, - [629] = + [636] = {field_body, 8}, {field_item, 5}, {field_iterable, 3}, - [632] = + [639] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [636] = + [643] = {field_body, 8}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [640] = + [647] = {field_body, 8}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [644] = + [651] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [648] = + [655] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [652] = + [659] = {field_body, 8}, {field_item, 5}, {field_iterable, 1}, - [655] = + [662] = {field_tag, 3}, {field_value, 1}, - [657] = + [664] = {field_body, 5}, {field_pattern, 0}, {field_pattern, 1}, - [660] = + [667] = {field_alternative, 9}, {field_condition, 2}, {field_consequence, 5}, - [663] = + [670] = {field_body, 9}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [669] = + [676] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [675] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, [682] = + {field_body, 9}, + {field_condition, 1}, + {field_label, 7}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [689] = {field_body, 9}, {field_condition, 1}, {field_update, 3}, @@ -2958,188 +3001,180 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [689] = + [696] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [695] = + [702] = {field_body, 9}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [701] = - {field_body, 9}, - {field_condition, 1}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [708] = + {field_body, 9}, + {field_condition, 1}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [715] = {field_body, 9}, {field_condition, 1}, {field_label, 6}, {field_update, 4}, - [712] = + [719] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [718] = + [725] = {field_body, 9}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [724] = - {field_body, 9}, - {field_condition, 2}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [731] = + {field_body, 9}, + {field_condition, 2}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [738] = {field_body, 9}, {field_condition, 2}, {field_label, 6}, {field_update, 4}, - [735] = + [742] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [740] = + [747] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [746] = + [753] = {field_body, 9}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [750] = + [757] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [754] = + [761] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [758] = + [765] = {field_body, 9}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [762] = + [769] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [766] = + [773] = {field_body, 9}, {field_item, 4}, {field_iterable, 2}, {field_label, 6}, - [770] = + [777] = {field_body, 9}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [774] = + [781] = {field_body, 9}, {field_item, 6}, {field_iterable, 2}, - [777] = + [784] = {field_body, 9}, {field_item, 6}, {field_iterable, 3}, - [780] = + [787] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, - [784] = - {field_body, 9}, - {field_item, 5}, - {field_iterable, 3}, - {field_label, 7}, - [788] = - {field_body, 9}, - {field_item, 7}, - {field_iterable, 3}, [791] = + {field_body, 9}, + {field_item, 5}, + {field_iterable, 3}, + {field_label, 7}, + [795] = + {field_body, 9}, + {field_item, 7}, + {field_iterable, 3}, + [798] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [795] = + [802] = {field_body, 9}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [799] = + [806] = {field_body, 9}, {field_item, 4}, {field_iterable, 1}, {field_label, 7}, - [803] = + [810] = {field_body, 9}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [808] = + [815] = {field_body, 9}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [812] = + [819] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [816] = + [823] = {field_body, 9}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [820] = + [827] = {field_tag, 4}, {field_value, 2}, - [822] = + [829] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [828] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, [835] = {field_body, 10}, {field_condition, 1}, - {field_label, 8}, + {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, @@ -3152,30 +3187,38 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, + [849] = + {field_body, 10}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, {field_update, 7}, - [850] = + [857] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [856] = + [863] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [862] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [869] = + {field_body, 10}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [876] = {field_body, 10}, {field_condition, 1}, {field_update, 4}, @@ -3183,29 +3226,29 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [876] = + [883] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [882] = + [889] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [888] = - {field_body, 10}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [895] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [902] = {field_body, 10}, {field_condition, 2}, {field_update, 4}, @@ -3213,21 +3256,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [902] = + [909] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [908] = + [915] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [914] = + [921] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, @@ -3235,122 +3278,114 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [921] = + [928] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [925] = + [932] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [929] = + [936] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [933] = + [940] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [937] = + [944] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [942] = + [949] = {field_body, 10}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [946] = + [953] = {field_body, 10}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [950] = + [957] = {field_body, 10}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [954] = + [961] = {field_body, 10}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, - [958] = + [965] = {field_body, 10}, {field_item, 6}, {field_iterable, 3}, {field_label, 8}, - [962] = + [969] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, - [966] = + [973] = {field_body, 10}, {field_item, 5}, {field_iterable, 3}, {field_label, 7}, - [970] = + [977] = {field_body, 10}, {field_item, 5}, {field_iterable, 3}, {field_label, 8}, - [974] = + [981] = {field_body, 10}, {field_item, 7}, {field_iterable, 3}, - [977] = + [984] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [982] = + [989] = {field_body, 10}, {field_item, 4}, {field_iterable, 1}, {field_label, 7}, - [986] = + [993] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [991] = + [998] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [996] = + [1003] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [1000] = + [1007] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [1004] = + [1011] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [1008] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, [1015] = {field_body, 11}, {field_condition, 1}, @@ -3359,8 +3394,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, + [1022] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, {field_update, 7}, - [1023] = + [1030] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3369,25 +3412,17 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1031] = + [1038] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [1037] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [1044] = {field_body, 11}, {field_condition, 1}, - {field_label, 9}, + {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, @@ -3400,26 +3435,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - {field_update, 8}, - [1059] = + [1058] = {field_body, 11}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [1065] = - {field_body, 11}, - {field_condition, 2}, - {field_label, 8}, + {field_condition, 1}, + {field_label, 9}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, + {field_update, 8}, + [1066] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, [1072] = {field_body, 11}, {field_condition, 2}, - {field_label, 9}, + {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, @@ -3432,22 +3467,30 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, + [1086] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, {field_update, 8}, - [1087] = + [1094] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1093] = + [1100] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1099] = + [1106] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3455,7 +3498,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1106] = + [1113] = {field_body, 11}, {field_condition, 2}, {field_update, 5}, @@ -3463,110 +3506,110 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1113] = + [1120] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1118] = + [1125] = {field_body, 11}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [1122] = + [1129] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [1127] = + [1134] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1132] = + [1139] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [1136] = + [1143] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [1140] = + [1147] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1144] = + [1151] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, - [1148] = + [1155] = {field_body, 11}, {field_item, 6}, {field_iterable, 3}, {field_label, 8}, - [1152] = + [1159] = {field_body, 11}, {field_item, 6}, {field_iterable, 3}, {field_label, 9}, - [1156] = + [1163] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 9}, - [1161] = + [1168] = {field_body, 11}, {field_item, 5}, {field_iterable, 3}, {field_label, 8}, - [1165] = + [1172] = {field_body, 11}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, - [1169] = + [1176] = {field_body, 11}, {field_item, 7}, {field_iterable, 3}, {field_label, 9}, - [1173] = + [1180] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [1178] = + [1185] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [1183] = + [1190] = {field_body, 11}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [1188] = + [1195] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1193] = + [1200] = {field_body, 11}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [1197] = + [1204] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3575,14 +3618,6 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1205] = - {field_body, 12}, - {field_condition, 1}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [1212] = {field_body, 12}, {field_condition, 1}, @@ -3591,8 +3626,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, + [1219] = + {field_body, 12}, + {field_condition, 1}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, {field_update, 8}, - [1220] = + [1227] = {field_body, 12}, {field_condition, 1}, {field_label, 10}, @@ -3601,14 +3644,6 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1228] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, [1235] = {field_body, 12}, {field_condition, 2}, @@ -3617,8 +3652,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, + [1242] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, {field_update, 8}, - [1243] = + [1250] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3627,25 +3670,17 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1251] = + [1258] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1257] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [1264] = {field_body, 12}, {field_condition, 2}, - {field_label, 10}, + {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, @@ -3658,93 +3693,101 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, + [1278] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 10}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, {field_update, 9}, - [1279] = + [1286] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1284] = + [1291] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1289] = + [1296] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1294] = + [1301] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1299] = + [1306] = {field_body, 12}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1303] = + [1310] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 10}, - [1308] = + [1315] = {field_body, 12}, {field_item, 6}, {field_iterable, 3}, {field_label, 9}, - [1312] = + [1319] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 9}, - [1317] = + [1324] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 10}, - [1322] = + [1329] = {field_body, 12}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, - [1326] = + [1333] = {field_body, 12}, {field_item, 7}, {field_iterable, 3}, {field_label, 9}, - [1330] = + [1337] = {field_body, 12}, {field_item, 7}, {field_iterable, 3}, {field_label, 10}, - [1334] = + [1341] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [1339] = + [1346] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1344] = + [1351] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1349] = + [1356] = {field_body, 13}, {field_condition, 1}, {field_label, 10}, @@ -3753,7 +3796,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1357] = + [1364] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3762,14 +3805,6 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1365] = - {field_body, 13}, - {field_condition, 2}, - {field_label, 10}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [1372] = {field_body, 13}, {field_condition, 2}, @@ -3778,8 +3813,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, + [1379] = + {field_body, 13}, + {field_condition, 2}, + {field_label, 10}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, {field_update, 9}, - [1380] = + [1387] = {field_body, 13}, {field_condition, 2}, {field_label, 11}, @@ -3788,60 +3831,60 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1388] = + [1395] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1393] = + [1400] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1398] = + [1405] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1403] = + [1410] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 10}, - [1408] = + [1415] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 11}, - [1413] = + [1420] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 3}, {field_label, 10}, - [1418] = + [1425] = {field_body, 13}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 11}, - [1423] = + [1430] = {field_body, 13}, {field_item, 7}, {field_iterable, 3}, {field_label, 10}, - [1427] = + [1434] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1432] = + [1439] = {field_body, 14}, {field_condition, 2}, {field_label, 11}, @@ -3850,31 +3893,31 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1440] = + [1447] = {field_body, 14}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1445] = + [1452] = {field_body, 14}, {field_index, 8}, {field_item, 6}, {field_iterable, 3}, {field_label, 11}, - [1450] = + [1457] = {field_body, 14}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 11}, - [1455] = + [1462] = {field_body, 14}, {field_index, 9}, {field_item, 7}, {field_iterable, 3}, {field_label, 12}, - [1460] = + [1467] = {field_body, 15}, {field_index, 9}, {field_item, 7}, @@ -3899,18 +3942,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 3, [6] = 2, [7] = 3, - [8] = 3, - [9] = 2, - [10] = 3, - [11] = 2, - [12] = 3, - [13] = 2, - [14] = 3, - [15] = 2, - [16] = 3, - [17] = 2, - [18] = 3, - [19] = 2, + [8] = 2, + [9] = 3, + [10] = 2, + [11] = 3, + [12] = 2, + [13] = 3, + [14] = 2, + [15] = 3, + [16] = 2, + [17] = 3, + [18] = 2, + [19] = 3, [20] = 20, [21] = 21, [22] = 22, @@ -3923,8 +3966,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 30, - [32] = 26, - [33] = 27, + [32] = 27, + [33] = 26, [34] = 29, [35] = 28, [36] = 36, @@ -3936,7 +3979,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [42] = 42, [43] = 43, [44] = 44, - [45] = 45, + [45] = 38, [46] = 46, [47] = 38, [48] = 48, @@ -3944,40 +3987,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [50] = 50, [51] = 51, [52] = 52, - [53] = 38, - [54] = 52, - [55] = 55, - [56] = 52, - [57] = 57, + [53] = 53, + [54] = 54, + [55] = 38, + [56] = 38, + [57] = 54, [58] = 58, [59] = 59, [60] = 60, [61] = 61, [62] = 52, - [63] = 51, + [63] = 63, [64] = 64, - [65] = 65, + [65] = 52, [66] = 66, - [67] = 38, - [68] = 51, - [69] = 38, - [70] = 70, - [71] = 51, - [72] = 51, + [67] = 67, + [68] = 68, + [69] = 54, + [70] = 52, + [71] = 54, + [72] = 72, [73] = 52, - [74] = 38, + [74] = 52, [75] = 52, - [76] = 51, - [77] = 77, - [78] = 38, - [79] = 52, - [80] = 52, - [81] = 38, - [82] = 82, - [83] = 83, - [84] = 52, - [85] = 38, - [86] = 86, + [76] = 54, + [77] = 38, + [78] = 54, + [79] = 38, + [80] = 38, + [81] = 54, + [82] = 54, + [83] = 38, + [84] = 84, + [85] = 85, + [86] = 54, [87] = 87, [88] = 88, [89] = 89, @@ -4003,7 +4046,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 109, [110] = 110, [111] = 111, - [112] = 110, + [112] = 112, [113] = 113, [114] = 114, [115] = 115, @@ -4018,40 +4061,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [124] = 124, [125] = 125, [126] = 126, - [127] = 127, + [127] = 89, [128] = 128, [129] = 129, [130] = 130, [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 91, - [137] = 137, - [138] = 111, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 95, - [157] = 96, - [158] = 97, - [159] = 102, - [160] = 105, + [132] = 90, + [133] = 91, + [134] = 92, + [135] = 93, + [136] = 94, + [137] = 95, + [138] = 96, + [139] = 97, + [140] = 98, + [141] = 100, + [142] = 101, + [143] = 102, + [144] = 103, + [145] = 104, + [146] = 105, + [147] = 106, + [148] = 111, + [149] = 112, + [150] = 113, + [151] = 114, + [152] = 115, + [153] = 116, + [154] = 117, + [155] = 122, + [156] = 123, + [157] = 124, + [158] = 125, + [159] = 89, + [160] = 160, [161] = 161, [162] = 162, [163] = 163, @@ -4062,22 +4105,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [168] = 168, [169] = 169, [170] = 170, - [171] = 171, - [172] = 115, - [173] = 116, - [174] = 117, - [175] = 118, - [176] = 119, - [177] = 120, - [178] = 121, + [171] = 130, + [172] = 131, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, [179] = 179, [180] = 180, [181] = 181, [182] = 182, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 186, + [183] = 90, + [184] = 91, + [185] = 92, + [186] = 93, [187] = 187, [188] = 188, [189] = 189, @@ -4085,13 +4128,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [191] = 191, [192] = 192, [193] = 193, - [194] = 139, - [195] = 140, - [196] = 143, - [197] = 144, - [198] = 145, - [199] = 146, - [200] = 147, + [194] = 194, + [195] = 195, + [196] = 94, + [197] = 95, + [198] = 96, + [199] = 97, + [200] = 98, [201] = 201, [202] = 202, [203] = 203, @@ -4103,14 +4146,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [209] = 209, [210] = 210, [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 88, + [212] = 100, + [213] = 101, + [214] = 102, + [215] = 103, + [216] = 104, + [217] = 105, + [218] = 106, + [219] = 219, [220] = 220, [221] = 221, [222] = 222, @@ -4124,32 +4167,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, + [233] = 111, + [234] = 112, + [235] = 113, + [236] = 114, + [237] = 115, + [238] = 116, + [239] = 117, [240] = 240, [241] = 241, [242] = 242, - [243] = 211, + [243] = 243, [244] = 244, [245] = 245, [246] = 246, [247] = 247, [248] = 248, [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, + [250] = 122, + [251] = 123, + [252] = 124, + [253] = 125, [254] = 254, [255] = 255, [256] = 256, [257] = 257, - [258] = 258, + [258] = 89, [259] = 259, [260] = 260, [261] = 261, @@ -4170,1302 +4213,1302 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [276] = 276, [277] = 277, [278] = 278, - [279] = 88, + [279] = 279, [280] = 280, [281] = 281, [282] = 282, [283] = 283, [284] = 284, - [285] = 212, + [285] = 285, [286] = 286, - [287] = 213, - [288] = 214, + [287] = 287, + [288] = 288, [289] = 289, [290] = 290, - [291] = 88, - [292] = 93, + [291] = 291, + [292] = 292, [293] = 293, - [294] = 110, - [295] = 111, - [296] = 290, - [297] = 133, - [298] = 134, - [299] = 135, - [300] = 91, - [301] = 133, - [302] = 95, - [303] = 96, - [304] = 97, - [305] = 102, - [306] = 105, - [307] = 134, - [308] = 110, - [309] = 115, - [310] = 116, - [311] = 117, - [312] = 118, - [313] = 119, - [314] = 120, - [315] = 121, - [316] = 111, - [317] = 139, - [318] = 140, - [319] = 214, - [320] = 144, - [321] = 145, - [322] = 146, - [323] = 147, - [324] = 211, - [325] = 212, - [326] = 213, - [327] = 214, - [328] = 88, - [329] = 135, - [330] = 110, - [331] = 111, - [332] = 133, - [333] = 133, - [334] = 135, - [335] = 91, - [336] = 102, - [337] = 134, - [338] = 110, - [339] = 111, - [340] = 135, - [341] = 133, - [342] = 135, - [343] = 91, - [344] = 102, - [345] = 91, - [346] = 290, - [347] = 93, - [348] = 95, - [349] = 110, - [350] = 111, - [351] = 96, - [352] = 133, - [353] = 135, - [354] = 91, - [355] = 102, - [356] = 97, - [357] = 102, - [358] = 105, - [359] = 290, - [360] = 93, - [361] = 115, - [362] = 110, - [363] = 111, - [364] = 116, - [365] = 133, - [366] = 135, - [367] = 91, - [368] = 102, - [369] = 117, - [370] = 118, - [371] = 119, - [372] = 120, - [373] = 134, - [374] = 95, - [375] = 96, - [376] = 97, - [377] = 105, - [378] = 115, - [379] = 116, - [380] = 117, - [381] = 118, - [382] = 119, - [383] = 120, - [384] = 121, - [385] = 139, - [386] = 140, - [387] = 143, - [388] = 144, - [389] = 145, - [390] = 146, - [391] = 147, - [392] = 211, - [393] = 212, - [394] = 213, - [395] = 214, - [396] = 88, - [397] = 121, - [398] = 139, - [399] = 140, - [400] = 134, - [401] = 95, - [402] = 96, - [403] = 97, - [404] = 105, - [405] = 115, - [406] = 116, - [407] = 117, - [408] = 118, - [409] = 119, - [410] = 120, - [411] = 121, - [412] = 139, - [413] = 140, - [414] = 143, - [415] = 144, - [416] = 145, - [417] = 146, - [418] = 147, - [419] = 211, - [420] = 212, - [421] = 213, - [422] = 214, - [423] = 88, - [424] = 143, - [425] = 134, - [426] = 95, - [427] = 96, - [428] = 97, - [429] = 105, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 129, + [326] = 175, + [327] = 130, + [328] = 131, + [329] = 90, + [330] = 91, + [331] = 92, + [332] = 93, + [333] = 333, + [334] = 94, + [335] = 95, + [336] = 96, + [337] = 97, + [338] = 98, + [339] = 100, + [340] = 101, + [341] = 102, + [342] = 103, + [343] = 104, + [344] = 105, + [345] = 106, + [346] = 111, + [347] = 112, + [348] = 113, + [349] = 114, + [350] = 115, + [351] = 116, + [352] = 117, + [353] = 122, + [354] = 123, + [355] = 124, + [356] = 125, + [357] = 89, + [358] = 130, + [359] = 131, + [360] = 130, + [361] = 90, + [362] = 92, + [363] = 93, + [364] = 97, + [365] = 131, + [366] = 130, + [367] = 131, + [368] = 90, + [369] = 92, + [370] = 93, + [371] = 97, + [372] = 129, + [373] = 175, + [374] = 130, + [375] = 131, + [376] = 90, + [377] = 92, + [378] = 93, + [379] = 97, + [380] = 129, + [381] = 175, + [382] = 130, + [383] = 131, + [384] = 90, + [385] = 92, + [386] = 93, + [387] = 97, + [388] = 129, + [389] = 175, + [390] = 91, + [391] = 94, + [392] = 95, + [393] = 96, + [394] = 98, + [395] = 100, + [396] = 101, + [397] = 102, + [398] = 103, + [399] = 104, + [400] = 105, + [401] = 106, + [402] = 111, + [403] = 112, + [404] = 113, + [405] = 114, + [406] = 115, + [407] = 116, + [408] = 117, + [409] = 122, + [410] = 123, + [411] = 124, + [412] = 125, + [413] = 89, + [414] = 91, + [415] = 94, + [416] = 95, + [417] = 96, + [418] = 98, + [419] = 100, + [420] = 101, + [421] = 102, + [422] = 103, + [423] = 104, + [424] = 105, + [425] = 106, + [426] = 111, + [427] = 112, + [428] = 113, + [429] = 114, [430] = 115, [431] = 116, [432] = 117, - [433] = 118, - [434] = 119, - [435] = 120, - [436] = 121, - [437] = 139, - [438] = 140, - [439] = 143, - [440] = 144, - [441] = 145, - [442] = 146, - [443] = 147, - [444] = 211, - [445] = 212, - [446] = 213, - [447] = 214, - [448] = 88, - [449] = 144, - [450] = 110, - [451] = 111, - [452] = 133, - [453] = 135, - [454] = 91, - [455] = 102, - [456] = 145, - [457] = 146, - [458] = 134, - [459] = 95, - [460] = 96, - [461] = 97, - [462] = 105, - [463] = 115, - [464] = 116, - [465] = 117, - [466] = 118, - [467] = 119, - [468] = 120, - [469] = 121, - [470] = 139, - [471] = 140, - [472] = 143, - [473] = 144, - [474] = 145, - [475] = 146, - [476] = 147, - [477] = 211, - [478] = 212, - [479] = 213, - [480] = 214, - [481] = 88, - [482] = 147, - [483] = 211, - [484] = 212, - [485] = 213, - [486] = 134, - [487] = 95, - [488] = 96, - [489] = 97, - [490] = 105, - [491] = 115, - [492] = 116, - [493] = 117, - [494] = 118, - [495] = 119, - [496] = 120, - [497] = 121, - [498] = 139, - [499] = 140, - [500] = 143, - [501] = 144, - [502] = 145, - [503] = 146, - [504] = 147, - [505] = 211, - [506] = 212, - [507] = 213, - [508] = 214, - [509] = 143, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 510, + [433] = 122, + [434] = 123, + [435] = 124, + [436] = 125, + [437] = 89, + [438] = 91, + [439] = 94, + [440] = 95, + [441] = 96, + [442] = 98, + [443] = 100, + [444] = 101, + [445] = 102, + [446] = 103, + [447] = 104, + [448] = 105, + [449] = 106, + [450] = 111, + [451] = 112, + [452] = 113, + [453] = 114, + [454] = 115, + [455] = 116, + [456] = 117, + [457] = 122, + [458] = 123, + [459] = 124, + [460] = 125, + [461] = 89, + [462] = 130, + [463] = 131, + [464] = 90, + [465] = 92, + [466] = 93, + [467] = 97, + [468] = 91, + [469] = 94, + [470] = 95, + [471] = 96, + [472] = 98, + [473] = 100, + [474] = 101, + [475] = 102, + [476] = 103, + [477] = 104, + [478] = 105, + [479] = 106, + [480] = 111, + [481] = 112, + [482] = 113, + [483] = 114, + [484] = 115, + [485] = 116, + [486] = 117, + [487] = 122, + [488] = 123, + [489] = 124, + [490] = 125, + [491] = 89, + [492] = 91, + [493] = 94, + [494] = 95, + [495] = 96, + [496] = 98, + [497] = 100, + [498] = 101, + [499] = 102, + [500] = 103, + [501] = 104, + [502] = 105, + [503] = 106, + [504] = 111, + [505] = 112, + [506] = 113, + [507] = 114, + [508] = 115, + [509] = 116, + [510] = 117, + [511] = 122, + [512] = 123, + [513] = 124, + [514] = 125, + [515] = 515, [516] = 516, - [517] = 511, - [518] = 512, - [519] = 512, - [520] = 513, - [521] = 513, - [522] = 514, - [523] = 510, - [524] = 516, - [525] = 514, - [526] = 510, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 516, + [524] = 519, + [525] = 518, + [526] = 522, [527] = 527, [528] = 516, - [529] = 512, - [530] = 513, - [531] = 514, - [532] = 510, + [529] = 519, + [530] = 520, + [531] = 521, + [532] = 522, [533] = 516, - [534] = 534, - [535] = 511, - [536] = 536, - [537] = 511, - [538] = 512, - [539] = 514, - [540] = 510, - [541] = 516, - [542] = 511, - [543] = 512, - [544] = 513, - [545] = 514, - [546] = 546, - [547] = 516, - [548] = 512, - [549] = 513, - [550] = 514, - [551] = 510, - [552] = 516, - [553] = 511, - [554] = 511, - [555] = 511, - [556] = 512, - [557] = 513, - [558] = 514, - [559] = 510, + [534] = 519, + [535] = 520, + [536] = 521, + [537] = 522, + [538] = 522, + [539] = 539, + [540] = 518, + [541] = 518, + [542] = 520, + [543] = 516, + [544] = 519, + [545] = 521, + [546] = 520, + [547] = 521, + [548] = 522, + [549] = 549, + [550] = 518, + [551] = 516, + [552] = 519, + [553] = 516, + [554] = 519, + [555] = 520, + [556] = 521, + [557] = 518, + [558] = 518, + [559] = 518, [560] = 516, - [561] = 511, - [562] = 512, - [563] = 513, - [564] = 514, - [565] = 510, - [566] = 516, - [567] = 513, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 30, - [573] = 36, + [561] = 519, + [562] = 520, + [563] = 521, + [564] = 522, + [565] = 516, + [566] = 519, + [567] = 520, + [568] = 521, + [569] = 522, + [570] = 520, + [571] = 521, + [572] = 522, + [573] = 518, [574] = 574, [575] = 575, - [576] = 571, + [576] = 576, [577] = 577, - [578] = 568, - [579] = 569, - [580] = 570, - [581] = 527, - [582] = 582, + [578] = 30, + [579] = 36, + [580] = 24, + [581] = 581, + [582] = 23, [583] = 583, - [584] = 568, - [585] = 571, - [586] = 25, - [587] = 569, - [588] = 570, - [589] = 23, - [590] = 22, - [591] = 583, - [592] = 20, - [593] = 24, - [594] = 571, - [595] = 568, - [596] = 583, + [584] = 25, + [585] = 20, + [586] = 22, + [587] = 21, + [588] = 574, + [589] = 589, + [590] = 590, + [591] = 549, + [592] = 577, + [593] = 575, + [594] = 577, + [595] = 590, + [596] = 590, [597] = 597, - [598] = 21, - [599] = 569, - [600] = 570, - [601] = 571, - [602] = 568, - [603] = 569, - [604] = 597, - [605] = 570, - [606] = 278, - [607] = 274, - [608] = 275, - [609] = 276, - [610] = 252, - [611] = 253, - [612] = 254, - [613] = 255, - [614] = 256, - [615] = 262, - [616] = 270, - [617] = 263, - [618] = 271, - [619] = 264, - [620] = 223, - [621] = 277, - [622] = 247, - [623] = 261, - [624] = 265, - [625] = 280, - [626] = 281, - [627] = 235, - [628] = 266, - [629] = 238, - [630] = 272, - [631] = 248, - [632] = 249, - [633] = 260, - [634] = 239, - [635] = 273, - [636] = 282, - [637] = 283, - [638] = 284, - [639] = 246, - [640] = 87, - [641] = 641, - [642] = 641, - [643] = 45, - [644] = 55, - [645] = 82, - [646] = 59, - [647] = 50, - [648] = 48, - [649] = 49, - [650] = 46, - [651] = 207, - [652] = 167, - [653] = 230, - [654] = 251, - [655] = 257, - [656] = 258, - [657] = 127, - [658] = 231, - [659] = 128, - [660] = 232, - [661] = 168, - [662] = 169, + [598] = 575, + [599] = 576, + [600] = 574, + [601] = 576, + [602] = 574, + [603] = 590, + [604] = 577, + [605] = 575, + [606] = 576, + [607] = 607, + [608] = 307, + [609] = 320, + [610] = 272, + [611] = 317, + [612] = 305, + [613] = 296, + [614] = 297, + [615] = 306, + [616] = 576, + [617] = 291, + [618] = 302, + [619] = 292, + [620] = 303, + [621] = 304, + [622] = 322, + [623] = 300, + [624] = 574, + [625] = 313, + [626] = 314, + [627] = 323, + [628] = 268, + [629] = 308, + [630] = 293, + [631] = 315, + [632] = 278, + [633] = 299, + [634] = 318, + [635] = 298, + [636] = 310, + [637] = 311, + [638] = 515, + [639] = 312, + [640] = 316, + [641] = 321, + [642] = 288, + [643] = 597, + [644] = 577, + [645] = 575, + [646] = 319, + [647] = 285, + [648] = 85, + [649] = 48, + [650] = 53, + [651] = 51, + [652] = 61, + [653] = 49, + [654] = 58, + [655] = 50, + [656] = 203, + [657] = 249, + [658] = 165, + [659] = 166, + [660] = 181, + [661] = 206, + [662] = 207, [663] = 170, - [664] = 171, - [665] = 94, - [666] = 129, - [667] = 130, - [668] = 179, - [669] = 180, - [670] = 181, - [671] = 182, - [672] = 183, - [673] = 98, - [674] = 184, - [675] = 259, - [676] = 267, - [677] = 185, - [678] = 137, - [679] = 268, - [680] = 141, - [681] = 186, - [682] = 187, - [683] = 188, - [684] = 142, - [685] = 149, - [686] = 99, - [687] = 269, - [688] = 100, - [689] = 641, - [690] = 224, - [691] = 190, - [692] = 191, - [693] = 192, - [694] = 193, - [695] = 150, - [696] = 151, - [697] = 233, - [698] = 221, - [699] = 92, - [700] = 293, - [701] = 234, - [702] = 101, - [703] = 236, - [704] = 103, - [705] = 153, - [706] = 104, - [707] = 237, - [708] = 201, - [709] = 202, - [710] = 203, - [711] = 204, - [712] = 205, - [713] = 206, - [714] = 220, - [715] = 240, - [716] = 241, - [717] = 242, - [718] = 222, - [719] = 154, - [720] = 106, - [721] = 208, - [722] = 209, - [723] = 210, - [724] = 107, - [725] = 226, - [726] = 244, - [727] = 113, - [728] = 114, - [729] = 89, - [730] = 245, - [731] = 90, - [732] = 250, - [733] = 227, - [734] = 124, - [735] = 125, - [736] = 126, - [737] = 161, - [738] = 162, - [739] = 215, - [740] = 216, - [741] = 217, - [742] = 228, - [743] = 163, - [744] = 164, - [745] = 218, - [746] = 165, - [747] = 166, - [748] = 229, - [749] = 152, - [750] = 641, - [751] = 597, - [752] = 30, - [753] = 753, - [754] = 754, - [755] = 641, - [756] = 641, - [757] = 44, - [758] = 758, - [759] = 60, - [760] = 61, - [761] = 86, - [762] = 64, - [763] = 65, - [764] = 66, + [664] = 254, + [665] = 294, + [666] = 295, + [667] = 255, + [668] = 256, + [669] = 188, + [670] = 189, + [671] = 257, + [672] = 259, + [673] = 260, + [674] = 261, + [675] = 262, + [676] = 263, + [677] = 264, + [678] = 265, + [679] = 190, + [680] = 301, + [681] = 266, + [682] = 267, + [683] = 269, + [684] = 270, + [685] = 88, + [686] = 208, + [687] = 209, + [688] = 173, + [689] = 174, + [690] = 176, + [691] = 271, + [692] = 177, + [693] = 210, + [694] = 309, + [695] = 273, + [696] = 178, + [697] = 697, + [698] = 211, + [699] = 160, + [700] = 161, + [701] = 182, + [702] = 191, + [703] = 192, + [704] = 274, + [705] = 275, + [706] = 193, + [707] = 194, + [708] = 276, + [709] = 277, + [710] = 219, + [711] = 179, + [712] = 221, + [713] = 222, + [714] = 223, + [715] = 224, + [716] = 225, + [717] = 226, + [718] = 227, + [719] = 228, + [720] = 195, + [721] = 279, + [722] = 280, + [723] = 281, + [724] = 282, + [725] = 229, + [726] = 180, + [727] = 230, + [728] = 167, + [729] = 231, + [730] = 232, + [731] = 283, + [732] = 284, + [733] = 286, + [734] = 287, + [735] = 168, + [736] = 162, + [737] = 128, + [738] = 187, + [739] = 240, + [740] = 241, + [741] = 163, + [742] = 242, + [743] = 243, + [744] = 244, + [745] = 289, + [746] = 290, + [747] = 245, + [748] = 246, + [749] = 201, + [750] = 202, + [751] = 164, + [752] = 204, + [753] = 205, + [754] = 247, + [755] = 248, + [756] = 169, + [757] = 220, + [758] = 697, + [759] = 697, + [760] = 697, + [761] = 30, + [762] = 597, + [763] = 697, + [764] = 697, [765] = 765, - [766] = 766, + [766] = 30, [767] = 767, - [768] = 768, - [769] = 70, - [770] = 77, - [771] = 83, - [772] = 39, - [773] = 40, - [774] = 41, - [775] = 42, - [776] = 43, + [768] = 46, + [769] = 44, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, [777] = 777, [778] = 778, - [779] = 779, - [780] = 758, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 758, - [785] = 785, + [779] = 770, + [780] = 771, + [781] = 775, + [782] = 776, + [783] = 777, + [784] = 778, + [785] = 775, [786] = 786, [787] = 787, - [788] = 781, - [789] = 765, - [790] = 790, - [791] = 791, - [792] = 766, - [793] = 767, - [794] = 758, - [795] = 781, - [796] = 765, - [797] = 765, - [798] = 766, - [799] = 767, - [800] = 768, - [801] = 766, - [802] = 777, - [803] = 778, - [804] = 767, - [805] = 768, - [806] = 777, - [807] = 768, - [808] = 778, + [788] = 786, + [789] = 787, + [790] = 786, + [791] = 787, + [792] = 786, + [793] = 787, + [794] = 776, + [795] = 795, + [796] = 72, + [797] = 770, + [798] = 771, + [799] = 775, + [800] = 776, + [801] = 777, + [802] = 778, + [803] = 84, + [804] = 39, + [805] = 786, + [806] = 787, + [807] = 40, + [808] = 41, [809] = 809, - [810] = 810, - [811] = 758, - [812] = 781, - [813] = 813, - [814] = 758, - [815] = 781, - [816] = 286, + [810] = 42, + [811] = 43, + [812] = 777, + [813] = 324, + [814] = 814, + [815] = 786, + [816] = 787, [817] = 817, - [818] = 765, - [819] = 766, - [820] = 767, - [821] = 768, - [822] = 777, - [823] = 777, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 770, + [823] = 771, [824] = 778, - [825] = 778, - [826] = 826, - [827] = 827, - [828] = 758, - [829] = 781, - [830] = 765, - [831] = 766, - [832] = 767, - [833] = 768, - [834] = 777, - [835] = 778, - [836] = 777, - [837] = 765, - [838] = 758, - [839] = 781, - [840] = 765, - [841] = 766, - [842] = 767, - [843] = 768, - [844] = 777, - [845] = 778, - [846] = 766, - [847] = 30, - [848] = 641, - [849] = 767, - [850] = 781, - [851] = 765, - [852] = 766, - [853] = 767, - [854] = 768, + [825] = 770, + [826] = 771, + [827] = 775, + [828] = 776, + [829] = 777, + [830] = 67, + [831] = 786, + [832] = 787, + [833] = 770, + [834] = 771, + [835] = 775, + [836] = 776, + [837] = 777, + [838] = 778, + [839] = 786, + [840] = 787, + [841] = 775, + [842] = 776, + [843] = 777, + [844] = 778, + [845] = 22, + [846] = 23, + [847] = 24, + [848] = 20, + [849] = 25, + [850] = 21, + [851] = 775, + [852] = 776, + [853] = 853, + [854] = 697, [855] = 777, - [856] = 778, - [857] = 641, - [858] = 768, - [859] = 778, - [860] = 758, - [861] = 781, - [862] = 57, - [863] = 58, - [864] = 864, - [865] = 864, - [866] = 864, - [867] = 867, - [868] = 864, - [869] = 864, - [870] = 864, - [871] = 25, - [872] = 23, - [873] = 22, - [874] = 641, - [875] = 864, - [876] = 20, - [877] = 24, - [878] = 878, - [879] = 864, - [880] = 864, - [881] = 21, - [882] = 30, - [883] = 883, - [884] = 883, - [885] = 883, - [886] = 883, - [887] = 883, - [888] = 36, - [889] = 883, - [890] = 883, - [891] = 883, - [892] = 883, + [856] = 770, + [857] = 771, + [858] = 775, + [859] = 776, + [860] = 777, + [861] = 778, + [862] = 786, + [863] = 787, + [864] = 778, + [865] = 865, + [866] = 770, + [867] = 697, + [868] = 868, + [869] = 771, + [870] = 770, + [871] = 771, + [872] = 68, + [873] = 59, + [874] = 60, + [875] = 87, + [876] = 63, + [877] = 64, + [878] = 66, + [879] = 778, + [880] = 880, + [881] = 880, + [882] = 880, + [883] = 880, + [884] = 36, + [885] = 885, + [886] = 886, + [887] = 697, + [888] = 880, + [889] = 880, + [890] = 880, + [891] = 880, + [892] = 880, [893] = 30, - [894] = 36, - [895] = 30, - [896] = 30, - [897] = 897, - [898] = 36, - [899] = 25, - [900] = 23, - [901] = 22, - [902] = 20, - [903] = 36, - [904] = 24, - [905] = 21, - [906] = 36, - [907] = 36, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 909, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, + [894] = 894, + [895] = 894, + [896] = 894, + [897] = 894, + [898] = 30, + [899] = 894, + [900] = 36, + [901] = 894, + [902] = 894, + [903] = 30, + [904] = 894, + [905] = 894, + [906] = 30, + [907] = 21, + [908] = 20, + [909] = 36, + [910] = 25, + [911] = 36, + [912] = 22, + [913] = 23, + [914] = 24, + [915] = 36, + [916] = 36, [917] = 917, - [918] = 914, - [919] = 919, + [918] = 918, + [919] = 918, [920] = 920, - [921] = 914, - [922] = 909, + [921] = 921, + [922] = 922, [923] = 923, [924] = 924, - [925] = 924, - [926] = 923, - [927] = 927, - [928] = 927, + [925] = 925, + [926] = 926, + [927] = 918, + [928] = 921, [929] = 929, - [930] = 927, - [931] = 929, - [932] = 924, - [933] = 923, - [934] = 929, - [935] = 924, - [936] = 923, - [937] = 923, - [938] = 927, - [939] = 929, - [940] = 924, - [941] = 927, - [942] = 923, - [943] = 929, - [944] = 929, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 956, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 23, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 945, + [930] = 930, + [931] = 931, + [932] = 921, + [933] = 933, + [934] = 934, + [935] = 24, + [936] = 20, + [937] = 937, + [938] = 25, + [939] = 937, + [940] = 940, + [941] = 937, + [942] = 934, + [943] = 933, + [944] = 940, + [945] = 934, + [946] = 933, + [947] = 933, + [948] = 22, + [949] = 933, + [950] = 937, + [951] = 934, + [952] = 940, + [953] = 940, + [954] = 934, + [955] = 933, + [956] = 937, + [957] = 940, + [958] = 933, + [959] = 934, + [960] = 940, + [961] = 933, + [962] = 937, + [963] = 21, + [964] = 940, + [965] = 23, + [966] = 940, [967] = 967, [968] = 968, [969] = 969, - [970] = 959, + [970] = 970, [971] = 971, [972] = 972, [973] = 973, - [974] = 963, + [974] = 974, [975] = 975, [976] = 976, - [977] = 969, - [978] = 967, - [979] = 958, - [980] = 971, - [981] = 972, - [982] = 948, - [983] = 20, - [984] = 984, - [985] = 24, - [986] = 973, - [987] = 987, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 974, + [983] = 22, + [984] = 980, + [985] = 981, + [986] = 986, + [987] = 968, [988] = 988, - [989] = 989, + [989] = 23, [990] = 990, [991] = 991, - [992] = 984, - [993] = 950, - [994] = 975, - [995] = 951, - [996] = 22, - [997] = 955, - [998] = 955, - [999] = 956, - [1000] = 959, - [1001] = 958, - [1002] = 984, - [1003] = 990, - [1004] = 991, - [1005] = 971, - [1006] = 950, - [1007] = 972, - [1008] = 973, - [1009] = 975, - [1010] = 952, - [1011] = 953, - [1012] = 954, - [1013] = 952, - [1014] = 953, - [1015] = 949, - [1016] = 954, - [1017] = 951, - [1018] = 25, - [1019] = 963, - [1020] = 976, - [1021] = 945, - [1022] = 21, - [1023] = 949, - [1024] = 990, - [1025] = 967, - [1026] = 1026, - [1027] = 976, - [1028] = 948, - [1029] = 969, - [1030] = 1030, - [1031] = 991, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1033, + [992] = 992, + [993] = 993, + [994] = 988, + [995] = 986, + [996] = 990, + [997] = 990, + [998] = 992, + [999] = 988, + [1000] = 986, + [1001] = 975, + [1002] = 968, + [1003] = 969, + [1004] = 976, + [1005] = 977, + [1006] = 979, + [1007] = 986, + [1008] = 971, + [1009] = 972, + [1010] = 21, + [1011] = 972, + [1012] = 25, + [1013] = 988, + [1014] = 969, + [1015] = 973, + [1016] = 974, + [1017] = 1017, + [1018] = 1018, + [1019] = 978, + [1020] = 978, + [1021] = 1021, + [1022] = 1022, + [1023] = 993, + [1024] = 1024, + [1025] = 971, + [1026] = 993, + [1027] = 1017, + [1028] = 973, + [1029] = 1022, + [1030] = 974, + [1031] = 975, + [1032] = 975, + [1033] = 976, + [1034] = 972, + [1035] = 976, [1036] = 1036, [1037] = 1037, - [1038] = 1038, - [1039] = 21, - [1040] = 25, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, + [1038] = 977, + [1039] = 979, + [1040] = 1040, + [1041] = 24, + [1042] = 991, + [1043] = 980, + [1044] = 977, + [1045] = 979, [1046] = 1046, - [1047] = 1047, - [1048] = 1048, - [1049] = 1033, - [1050] = 1050, - [1051] = 1042, + [1047] = 992, + [1048] = 968, + [1049] = 1018, + [1050] = 20, + [1051] = 969, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1055, + [1055] = 1018, [1056] = 1056, - [1057] = 1057, - [1058] = 1058, + [1057] = 981, + [1058] = 980, [1059] = 1059, - [1060] = 1060, - [1061] = 1042, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1036, - [1068] = 1037, - [1069] = 1038, - [1070] = 1041, - [1071] = 1050, - [1072] = 1054, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1045, + [1060] = 971, + [1061] = 981, + [1062] = 991, + [1063] = 978, + [1064] = 1022, + [1065] = 1037, + [1066] = 990, + [1067] = 991, + [1068] = 992, + [1069] = 1022, + [1070] = 1037, + [1071] = 1017, + [1072] = 1018, + [1073] = 973, + [1074] = 1017, + [1075] = 993, + [1076] = 1037, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1052, - [1081] = 1073, - [1082] = 1074, - [1083] = 1075, - [1084] = 1032, - [1085] = 1085, - [1086] = 1086, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1077, + [1085] = 1080, + [1086] = 1083, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1033, - [1091] = 1091, - [1092] = 1077, - [1093] = 1078, - [1094] = 1079, - [1095] = 1046, - [1096] = 1045, - [1097] = 1033, - [1098] = 1042, - [1099] = 1047, - [1100] = 1042, - [1101] = 1045, - [1102] = 1046, - [1103] = 1047, - [1104] = 1048, - [1105] = 1033, - [1106] = 1042, - [1107] = 1052, - [1108] = 1053, - [1109] = 1055, - [1110] = 1056, - [1111] = 1058, - [1112] = 1059, - [1113] = 1060, - [1114] = 1062, - [1115] = 1063, - [1116] = 1064, - [1117] = 1065, - [1118] = 1066, - [1119] = 1036, + [1090] = 1080, + [1091] = 1083, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1078, + [1102] = 1079, + [1103] = 1081, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, [1120] = 1120, - [1121] = 1038, - [1122] = 1041, - [1123] = 1050, - [1124] = 1054, - [1125] = 1073, - [1126] = 1074, - [1127] = 1075, - [1128] = 1032, + [1121] = 1121, + [1122] = 1122, + [1123] = 1077, + [1124] = 1077, + [1125] = 1080, + [1126] = 1083, + [1127] = 1080, + [1128] = 1087, [1129] = 1077, - [1130] = 1078, - [1131] = 1079, - [1132] = 1085, - [1133] = 1053, - [1134] = 23, - [1135] = 1086, - [1136] = 1087, - [1137] = 1088, - [1138] = 1089, - [1139] = 22, - [1140] = 1140, - [1141] = 1091, - [1142] = 1047, - [1143] = 1052, - [1144] = 1056, - [1145] = 1064, - [1146] = 1065, - [1147] = 1066, - [1148] = 1073, - [1149] = 1074, - [1150] = 1075, - [1151] = 1032, - [1152] = 1086, - [1153] = 1087, - [1154] = 1088, - [1155] = 1091, - [1156] = 1045, - [1157] = 1157, - [1158] = 1057, - [1159] = 1159, - [1160] = 1085, - [1161] = 1055, - [1162] = 1159, - [1163] = 1163, - [1164] = 1086, - [1165] = 1087, - [1166] = 1088, - [1167] = 1045, - [1168] = 1056, - [1169] = 1033, - [1170] = 1042, - [1171] = 1089, - [1172] = 1045, - [1173] = 1033, - [1174] = 1042, - [1175] = 1058, - [1176] = 1059, - [1177] = 20, - [1178] = 1060, - [1179] = 24, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1091, - [1185] = 1057, - [1186] = 1062, - [1187] = 1063, - [1188] = 1159, - [1189] = 1064, - [1190] = 1045, - [1191] = 1065, - [1192] = 1066, - [1193] = 1033, - [1194] = 1042, - [1195] = 1048, - [1196] = 1045, - [1197] = 1037, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1201, - [1217] = 1217, - [1218] = 1218, - [1219] = 1203, - [1220] = 1206, - [1221] = 1207, - [1222] = 1208, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1211, - [1228] = 1212, - [1229] = 1218, - [1230] = 1223, - [1231] = 1211, - [1232] = 1212, - [1233] = 1213, - [1234] = 1215, - [1235] = 1201, - [1236] = 1203, - [1237] = 1206, - [1238] = 1207, - [1239] = 1208, - [1240] = 1213, - [1241] = 1198, - [1242] = 1242, - [1243] = 1202, - [1244] = 1204, - [1245] = 1209, - [1246] = 1210, - [1247] = 1214, - [1248] = 1217, - [1249] = 1224, - [1250] = 1215, - [1251] = 1201, - [1252] = 1218, - [1253] = 1203, - [1254] = 1254, - [1255] = 1206, - [1256] = 1207, - [1257] = 1223, - [1258] = 1208, - [1259] = 1259, - [1260] = 1211, - [1261] = 1212, - [1262] = 1213, - [1263] = 1215, - [1264] = 1201, - [1265] = 1203, - [1266] = 1206, - [1267] = 1207, - [1268] = 1208, - [1269] = 1269, - [1270] = 1270, - [1271] = 1198, - [1272] = 1242, - [1273] = 1202, - [1274] = 1204, - [1275] = 1209, - [1276] = 1210, - [1277] = 1214, - [1278] = 1217, - [1279] = 1224, + [1130] = 1083, + [1131] = 1087, + [1132] = 1088, + [1133] = 1089, + [1134] = 1080, + [1135] = 1083, + [1136] = 1136, + [1137] = 1092, + [1138] = 1093, + [1139] = 1094, + [1140] = 1095, + [1141] = 1093, + [1142] = 1104, + [1143] = 1105, + [1144] = 1096, + [1145] = 1097, + [1146] = 1098, + [1147] = 1106, + [1148] = 1107, + [1149] = 1099, + [1150] = 1100, + [1151] = 1151, + [1152] = 1078, + [1153] = 1079, + [1154] = 1081, + [1155] = 1104, + [1156] = 1105, + [1157] = 1106, + [1158] = 1107, + [1159] = 1108, + [1160] = 1109, + [1161] = 1089, + [1162] = 1110, + [1163] = 1111, + [1164] = 1112, + [1165] = 1113, + [1166] = 1114, + [1167] = 1115, + [1168] = 1116, + [1169] = 1117, + [1170] = 1118, + [1171] = 1119, + [1172] = 1120, + [1173] = 1121, + [1174] = 1122, + [1175] = 1087, + [1176] = 1088, + [1177] = 1089, + [1178] = 1077, + [1179] = 1080, + [1180] = 1080, + [1181] = 1083, + [1182] = 1092, + [1183] = 1093, + [1184] = 1088, + [1185] = 1077, + [1186] = 1095, + [1187] = 1187, + [1188] = 1096, + [1189] = 1097, + [1190] = 1098, + [1191] = 1099, + [1192] = 1100, + [1193] = 1078, + [1194] = 1079, + [1195] = 1081, + [1196] = 1104, + [1197] = 1105, + [1198] = 1106, + [1199] = 1107, + [1200] = 1108, + [1201] = 1109, + [1202] = 1110, + [1203] = 1111, + [1204] = 1112, + [1205] = 1113, + [1206] = 1114, + [1207] = 1115, + [1208] = 1116, + [1209] = 1117, + [1210] = 1094, + [1211] = 1108, + [1212] = 1118, + [1213] = 1119, + [1214] = 1120, + [1215] = 1121, + [1216] = 1216, + [1217] = 1109, + [1218] = 1122, + [1219] = 1088, + [1220] = 1092, + [1221] = 1095, + [1222] = 1078, + [1223] = 1079, + [1224] = 1081, + [1225] = 1110, + [1226] = 1111, + [1227] = 1112, + [1228] = 1113, + [1229] = 1118, + [1230] = 1119, + [1231] = 1120, + [1232] = 1122, + [1233] = 1077, + [1234] = 1234, + [1235] = 1110, + [1236] = 1111, + [1237] = 1112, + [1238] = 1113, + [1239] = 1216, + [1240] = 1077, + [1241] = 1114, + [1242] = 1080, + [1243] = 1115, + [1244] = 1116, + [1245] = 1083, + [1246] = 1077, + [1247] = 1080, + [1248] = 1083, + [1249] = 1095, + [1250] = 1234, + [1251] = 1083, + [1252] = 1077, + [1253] = 1080, + [1254] = 1083, + [1255] = 1117, + [1256] = 1256, + [1257] = 1096, + [1258] = 1097, + [1259] = 1098, + [1260] = 1260, + [1261] = 1118, + [1262] = 1119, + [1263] = 1120, + [1264] = 1121, + [1265] = 1234, + [1266] = 1216, + [1267] = 1092, + [1268] = 1234, + [1269] = 1216, + [1270] = 1099, + [1271] = 1100, + [1272] = 1272, + [1273] = 1273, + [1274] = 1122, + [1275] = 1094, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, [1280] = 1280, - [1281] = 1259, + [1281] = 1281, [1282] = 1282, [1283] = 1283, - [1284] = 1199, - [1285] = 1218, - [1286] = 1198, - [1287] = 1242, - [1288] = 1202, - [1289] = 1204, - [1290] = 1209, - [1291] = 1218, - [1292] = 1210, - [1293] = 1214, - [1294] = 1254, - [1295] = 1217, - [1296] = 1224, - [1297] = 1223, + [1284] = 1284, + [1285] = 1280, + [1286] = 1281, + [1287] = 1283, + [1288] = 1276, + [1289] = 1289, + [1290] = 1289, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1282, + [1296] = 1291, + [1297] = 1297, [1298] = 1298, - [1299] = 1198, - [1300] = 1259, - [1301] = 1242, - [1302] = 1211, - [1303] = 1212, - [1304] = 1202, - [1305] = 1269, - [1306] = 1204, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1292, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, [1307] = 1307, - [1308] = 1254, - [1309] = 1209, - [1310] = 1213, - [1311] = 1223, - [1312] = 1210, - [1313] = 1259, - [1314] = 1215, - [1315] = 1269, - [1316] = 1270, - [1317] = 1270, - [1318] = 1201, - [1319] = 1283, - [1320] = 1199, - [1321] = 1321, - [1322] = 1214, - [1323] = 1203, - [1324] = 1206, - [1325] = 1217, - [1326] = 1207, - [1327] = 1208, - [1328] = 1215, - [1329] = 1254, - [1330] = 1259, - [1331] = 1269, - [1332] = 1270, - [1333] = 1283, - [1334] = 1199, - [1335] = 1335, - [1336] = 1254, - [1337] = 1259, - [1338] = 1298, - [1339] = 1254, - [1340] = 1340, - [1341] = 1259, - [1342] = 1269, - [1343] = 1198, - [1344] = 1242, - [1345] = 1270, - [1346] = 1202, - [1347] = 1204, - [1348] = 1209, - [1349] = 1210, - [1350] = 1214, - [1351] = 1217, - [1352] = 1224, - [1353] = 1353, - [1354] = 1354, - [1355] = 1218, - [1356] = 1198, - [1357] = 1223, - [1358] = 1358, - [1359] = 1359, - [1360] = 1242, - [1361] = 1211, - [1362] = 1212, - [1363] = 1213, - [1364] = 1215, - [1365] = 1201, - [1366] = 1202, - [1367] = 1203, - [1368] = 1206, - [1369] = 1207, - [1370] = 1208, - [1371] = 1198, - [1372] = 1242, - [1373] = 1202, - [1374] = 1204, - [1375] = 1209, - [1376] = 1210, - [1377] = 1214, - [1378] = 1217, - [1379] = 1224, - [1380] = 1340, - [1381] = 1218, - [1382] = 1211, - [1383] = 1223, - [1384] = 1204, - [1385] = 1211, - [1386] = 1212, - [1387] = 1213, - [1388] = 1215, - [1389] = 1201, - [1390] = 1203, - [1391] = 1206, - [1392] = 1207, - [1393] = 1208, - [1394] = 1198, - [1395] = 1242, - [1396] = 1202, - [1397] = 1204, - [1398] = 1209, - [1399] = 1210, - [1400] = 1214, - [1401] = 1217, - [1402] = 1224, - [1403] = 1209, - [1404] = 1210, - [1405] = 1214, - [1406] = 1217, - [1407] = 1283, - [1408] = 1199, - [1409] = 1254, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1224, - [1414] = 1298, - [1415] = 1254, - [1416] = 1340, - [1417] = 1259, - [1418] = 1418, - [1419] = 1218, - [1420] = 1212, - [1421] = 1254, - [1422] = 1259, - [1423] = 1213, - [1424] = 1223, - [1425] = 1223, - [1426] = 1218, - [1427] = 1211, - [1428] = 1212, - [1429] = 1213, - [1430] = 1215, - [1431] = 1201, - [1432] = 1203, - [1433] = 1206, - [1434] = 1207, - [1435] = 1208, - [1436] = 1242, - [1437] = 1283, - [1438] = 1224, - [1439] = 1439, + [1308] = 1308, + [1309] = 1293, + [1310] = 1294, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1299, + [1315] = 1300, + [1316] = 1301, + [1317] = 1303, + [1318] = 1304, + [1319] = 1305, + [1320] = 1306, + [1321] = 1307, + [1322] = 1308, + [1323] = 1278, + [1324] = 1282, + [1325] = 1278, + [1326] = 1282, + [1327] = 1280, + [1328] = 1281, + [1329] = 1283, + [1330] = 1276, + [1331] = 1289, + [1332] = 1291, + [1333] = 1292, + [1334] = 1293, + [1335] = 1294, + [1336] = 1299, + [1337] = 1300, + [1338] = 1301, + [1339] = 1303, + [1340] = 1304, + [1341] = 1305, + [1342] = 1306, + [1343] = 1307, + [1344] = 1308, + [1345] = 1280, + [1346] = 1281, + [1347] = 1283, + [1348] = 1278, + [1349] = 1276, + [1350] = 1289, + [1351] = 1279, + [1352] = 1291, + [1353] = 1282, + [1354] = 1292, + [1355] = 1293, + [1356] = 1294, + [1357] = 1284, + [1358] = 1280, + [1359] = 1281, + [1360] = 1283, + [1361] = 1276, + [1362] = 1289, + [1363] = 1291, + [1364] = 1292, + [1365] = 1293, + [1366] = 1294, + [1367] = 1297, + [1368] = 1298, + [1369] = 1299, + [1370] = 1300, + [1371] = 1301, + [1372] = 1303, + [1373] = 1304, + [1374] = 1305, + [1375] = 1306, + [1376] = 1307, + [1377] = 1308, + [1378] = 1311, + [1379] = 1312, + [1380] = 1380, + [1381] = 1297, + [1382] = 1382, + [1383] = 1299, + [1384] = 1300, + [1385] = 1301, + [1386] = 1303, + [1387] = 1304, + [1388] = 1305, + [1389] = 1306, + [1390] = 1307, + [1391] = 1308, + [1392] = 1279, + [1393] = 1298, + [1394] = 1282, + [1395] = 1284, + [1396] = 1280, + [1397] = 1281, + [1398] = 1283, + [1399] = 1276, + [1400] = 1289, + [1401] = 1291, + [1402] = 1292, + [1403] = 1293, + [1404] = 1294, + [1405] = 1279, + [1406] = 1297, + [1407] = 1298, + [1408] = 1408, + [1409] = 1299, + [1410] = 1300, + [1411] = 1301, + [1412] = 1303, + [1413] = 1304, + [1414] = 1305, + [1415] = 1306, + [1416] = 1307, + [1417] = 1308, + [1418] = 1278, + [1419] = 1311, + [1420] = 1312, + [1421] = 1284, + [1422] = 1422, + [1423] = 1282, + [1424] = 1280, + [1425] = 1281, + [1426] = 1283, + [1427] = 1299, + [1428] = 1428, + [1429] = 1276, + [1430] = 1289, + [1431] = 1291, + [1432] = 1278, + [1433] = 1292, + [1434] = 1293, + [1435] = 1294, + [1436] = 1436, + [1437] = 1301, + [1438] = 1303, + [1439] = 1279, [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, + [1441] = 1304, + [1442] = 1305, + [1443] = 1284, + [1444] = 1297, + [1445] = 1298, + [1446] = 1299, + [1447] = 1311, + [1448] = 1312, + [1449] = 1300, + [1450] = 1301, + [1451] = 1303, + [1452] = 1304, + [1453] = 1305, + [1454] = 1306, + [1455] = 1307, + [1456] = 1308, + [1457] = 1306, + [1458] = 1307, + [1459] = 1279, + [1460] = 1308, + [1461] = 1284, [1462] = 1462, - [1463] = 233, - [1464] = 1464, + [1463] = 1278, + [1464] = 1277, [1465] = 1465, - [1466] = 1466, + [1466] = 1279, [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, + [1468] = 1280, + [1469] = 1284, + [1470] = 1278, [1471] = 1471, - [1472] = 1472, - [1473] = 1473, + [1472] = 1282, + [1473] = 1281, [1474] = 1474, [1475] = 1475, - [1476] = 1476, - [1477] = 1477, + [1476] = 1280, + [1477] = 1281, [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, + [1479] = 1283, + [1480] = 1276, + [1481] = 1289, + [1482] = 1291, + [1483] = 1292, + [1484] = 1278, + [1485] = 1282, + [1486] = 1293, + [1487] = 1294, + [1488] = 1280, + [1489] = 1281, + [1490] = 1283, + [1491] = 1276, + [1492] = 1289, + [1493] = 1291, + [1494] = 1292, + [1495] = 1293, + [1496] = 1294, + [1497] = 1299, + [1498] = 1300, + [1499] = 1301, + [1500] = 1303, + [1501] = 1304, + [1502] = 1305, + [1503] = 1306, + [1504] = 1307, + [1505] = 1308, + [1506] = 1283, + [1507] = 1276, + [1508] = 1289, + [1509] = 1299, + [1510] = 1300, + [1511] = 1301, + [1512] = 1303, + [1513] = 1304, + [1514] = 1305, + [1515] = 1278, + [1516] = 1282, + [1517] = 1280, + [1518] = 1281, + [1519] = 1283, + [1520] = 1276, + [1521] = 1289, + [1522] = 1291, + [1523] = 1292, + [1524] = 1293, + [1525] = 1294, + [1526] = 1306, + [1527] = 1307, + [1528] = 1299, + [1529] = 1300, + [1530] = 1301, + [1531] = 1303, + [1532] = 1304, + [1533] = 1305, + [1534] = 1306, + [1535] = 1307, + [1536] = 1308, [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, + [1538] = 1308, + [1539] = 1291, + [1540] = 1292, + [1541] = 1293, + [1542] = 1294, [1543] = 1543, [1544] = 1544, - [1545] = 1545, + [1545] = 1311, [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, + [1547] = 1312, + [1548] = 1277, + [1549] = 1279, + [1550] = 1467, + [1551] = 1284, + [1552] = 1282, + [1553] = 1278, + [1554] = 1277, + [1555] = 1279, + [1556] = 1467, + [1557] = 1284, + [1558] = 1467, [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, + [1560] = 1300, + [1561] = 22, + [1562] = 24, [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, + [1564] = 25, + [1565] = 20, + [1566] = 21, [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, + [1568] = 23, + [1569] = 22, + [1570] = 20, + [1571] = 25, + [1572] = 23, + [1573] = 21, + [1574] = 24, [1575] = 1575, [1576] = 1576, [1577] = 1577, @@ -5502,7 +5545,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1608] = 1608, [1609] = 1609, [1610] = 1610, - [1611] = 244, + [1611] = 1611, [1612] = 1612, [1613] = 1613, [1614] = 1614, @@ -5574,7 +5617,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1680] = 1680, [1681] = 1681, [1682] = 1682, - [1683] = 1683, + [1683] = 46, [1684] = 1684, [1685] = 1685, [1686] = 1686, @@ -5600,34 +5643,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1708, + [1709] = 1709, [1710] = 1710, - [1711] = 1710, - [1712] = 1707, + [1711] = 1711, + [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1714, - [1717] = 1713, - [1718] = 1715, + [1716] = 1716, + [1717] = 324, + [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, [1723] = 1723, - [1724] = 1723, - [1725] = 897, - [1726] = 1723, - [1727] = 1723, - [1728] = 1723, - [1729] = 1707, - [1730] = 1715, - [1731] = 1708, - [1732] = 1723, - [1733] = 1714, - [1734] = 1710, - [1735] = 1713, - [1736] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, [1737] = 1737, [1738] = 1738, [1739] = 1739, @@ -5639,1243 +5682,1243 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1745] = 1745, [1746] = 1746, [1747] = 1747, - [1748] = 1745, - [1749] = 1746, - [1750] = 1746, - [1751] = 1751, - [1752] = 1745, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 271, + [1752] = 1752, [1753] = 1753, - [1754] = 224, + [1754] = 1754, [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1755, - [1759] = 1757, - [1760] = 1757, - [1761] = 46, - [1762] = 1757, - [1763] = 236, - [1764] = 1755, - [1765] = 1755, - [1766] = 268, - [1767] = 240, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 48, - [1771] = 1768, + [1770] = 1770, + [1771] = 266, [1772] = 1772, - [1773] = 229, - [1774] = 237, - [1775] = 1768, - [1776] = 267, - [1777] = 257, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, - [1779] = 258, - [1780] = 49, - [1781] = 1768, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, [1782] = 1782, - [1783] = 241, - [1784] = 1782, - [1785] = 269, - [1786] = 242, - [1787] = 234, - [1788] = 228, - [1789] = 50, - [1790] = 1768, - [1791] = 232, - [1792] = 1778, - [1793] = 227, - [1794] = 1782, - [1795] = 1772, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, [1796] = 1796, - [1797] = 1778, - [1798] = 1772, + [1797] = 1797, + [1798] = 1798, [1799] = 1799, - [1800] = 1772, + [1800] = 1800, [1801] = 1801, - [1802] = 250, - [1803] = 1772, - [1804] = 259, - [1805] = 231, - [1806] = 271, - [1807] = 249, - [1808] = 235, - [1809] = 238, - [1810] = 246, - [1811] = 247, - [1812] = 248, - [1813] = 252, - [1814] = 253, - [1815] = 254, - [1816] = 255, - [1817] = 256, - [1818] = 260, - [1819] = 261, - [1820] = 262, - [1821] = 263, - [1822] = 264, - [1823] = 265, - [1824] = 266, - [1825] = 270, - [1826] = 272, - [1827] = 273, - [1828] = 274, - [1829] = 275, - [1830] = 276, - [1831] = 277, - [1832] = 278, - [1833] = 87, - [1834] = 280, - [1835] = 281, - [1836] = 282, - [1837] = 283, - [1838] = 284, - [1839] = 245, - [1840] = 251, - [1841] = 239, - [1842] = 223, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, [1843] = 1843, [1844] = 1844, - [1845] = 1844, + [1845] = 1845, [1846] = 1846, - [1847] = 1847, - [1848] = 1844, - [1849] = 1847, + [1847] = 1844, + [1848] = 1845, + [1849] = 1846, [1850] = 1850, - [1851] = 1851, + [1851] = 1850, [1852] = 1852, - [1853] = 1853, - [1854] = 1844, + [1853] = 1852, + [1854] = 1843, [1855] = 1855, - [1856] = 1856, - [1857] = 1855, - [1858] = 1851, - [1859] = 1844, - [1860] = 1847, - [1861] = 1861, - [1862] = 1862, - [1863] = 1847, - [1864] = 1864, - [1865] = 1847, - [1866] = 1866, - [1867] = 1855, - [1868] = 1851, - [1869] = 1869, - [1870] = 1869, + [1856] = 59, + [1857] = 67, + [1858] = 68, + [1859] = 39, + [1860] = 87, + [1861] = 72, + [1862] = 84, + [1863] = 1863, + [1864] = 40, + [1865] = 41, + [1866] = 42, + [1867] = 43, + [1868] = 44, + [1869] = 63, + [1870] = 64, [1871] = 1871, - [1872] = 1872, - [1873] = 1873, + [1872] = 66, + [1873] = 60, [1874] = 1874, [1875] = 1875, [1876] = 1876, - [1877] = 1877, + [1877] = 917, [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1871, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1873, - [1889] = 1872, - [1890] = 1890, - [1891] = 1877, - [1892] = 1873, - [1893] = 1874, - [1894] = 1875, - [1895] = 1876, - [1896] = 1877, - [1897] = 1878, - [1898] = 1879, - [1899] = 1880, - [1900] = 1881, - [1901] = 1882, - [1902] = 1883, - [1903] = 1871, - [1904] = 1885, - [1905] = 1886, - [1906] = 1872, - [1907] = 1907, - [1908] = 48, - [1909] = 1877, - [1910] = 1878, - [1911] = 1879, - [1912] = 1869, - [1913] = 1878, - [1914] = 1880, - [1915] = 1879, - [1916] = 1885, - [1917] = 1890, - [1918] = 1890, - [1919] = 1907, - [1920] = 1886, - [1921] = 1887, - [1922] = 1907, - [1923] = 50, - [1924] = 1907, - [1925] = 1874, - [1926] = 1869, - [1927] = 1887, - [1928] = 1881, - [1929] = 1882, - [1930] = 1883, - [1931] = 1871, - [1932] = 1880, - [1933] = 1872, - [1934] = 1869, - [1935] = 1875, - [1936] = 1876, - [1937] = 1881, - [1938] = 1887, - [1939] = 1873, - [1940] = 1874, - [1941] = 1875, - [1942] = 1876, - [1943] = 1886, - [1944] = 1882, - [1945] = 1873, - [1946] = 1885, - [1947] = 1877, - [1948] = 1878, - [1949] = 1879, - [1950] = 1880, - [1951] = 1874, - [1952] = 1887, - [1953] = 1883, - [1954] = 1875, - [1955] = 1881, - [1956] = 1882, - [1957] = 1883, - [1958] = 1871, - [1959] = 1876, - [1960] = 1890, - [1961] = 1885, - [1962] = 1886, - [1963] = 1872, - [1964] = 1890, - [1965] = 1907, - [1966] = 1966, - [1967] = 1966, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, + [1879] = 1878, + [1880] = 1846, + [1881] = 1878, + [1882] = 1878, + [1883] = 1844, + [1884] = 1845, + [1885] = 1878, + [1886] = 1850, + [1887] = 1852, + [1888] = 1843, + [1889] = 1878, + [1890] = 1878, + [1891] = 1878, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1901, + [1904] = 1901, + [1905] = 1900, + [1906] = 1900, + [1907] = 1900, + [1908] = 1908, + [1909] = 1901, + [1910] = 1910, + [1911] = 1911, + [1912] = 1911, + [1913] = 1913, + [1914] = 1913, + [1915] = 1911, + [1916] = 1913, + [1917] = 1917, + [1918] = 1913, + [1919] = 1911, + [1920] = 1911, + [1921] = 1913, + [1922] = 1922, + [1923] = 1923, + [1924] = 1922, + [1925] = 1922, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1922, + [1930] = 1923, + [1931] = 279, + [1932] = 1932, + [1933] = 1927, + [1934] = 1923, + [1935] = 1926, + [1936] = 1923, + [1937] = 1926, + [1938] = 1922, + [1939] = 1939, + [1940] = 1927, + [1941] = 1927, + [1942] = 1926, + [1943] = 1922, + [1944] = 1927, + [1945] = 1927, + [1946] = 1946, + [1947] = 290, + [1948] = 275, + [1949] = 265, + [1950] = 269, + [1951] = 309, + [1952] = 273, + [1953] = 283, + [1954] = 270, + [1955] = 281, + [1956] = 276, + [1957] = 274, + [1958] = 277, + [1959] = 284, + [1960] = 264, + [1961] = 51, + [1962] = 295, + [1963] = 88, + [1964] = 301, + [1965] = 287, + [1966] = 50, + [1967] = 48, + [1968] = 49, + [1969] = 282, + [1970] = 280, + [1971] = 286, + [1972] = 300, [1973] = 1973, - [1974] = 1974, - [1975] = 1971, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [1980] = 1980, - [1981] = 1968, - [1982] = 1970, - [1983] = 1983, - [1984] = 1978, - [1985] = 1968, - [1986] = 1970, - [1987] = 1972, - [1988] = 1973, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1989, - [1994] = 1974, - [1995] = 1990, - [1996] = 1971, - [1997] = 1972, - [1998] = 1976, - [1999] = 1973, - [2000] = 1974, - [2001] = 1991, - [2002] = 48, - [2003] = 1976, - [2004] = 1991, - [2005] = 1989, - [2006] = 1992, - [2007] = 1990, - [2008] = 2008, - [2009] = 2009, + [1974] = 288, + [1975] = 293, + [1976] = 296, + [1977] = 311, + [1978] = 303, + [1979] = 323, + [1980] = 515, + [1981] = 312, + [1982] = 304, + [1983] = 321, + [1984] = 313, + [1985] = 291, + [1986] = 320, + [1987] = 285, + [1988] = 294, + [1989] = 297, + [1990] = 305, + [1991] = 298, + [1992] = 314, + [1993] = 322, + [1994] = 289, + [1995] = 315, + [1996] = 292, + [1997] = 306, + [1998] = 307, + [1999] = 316, + [2000] = 317, + [2001] = 308, + [2002] = 318, + [2003] = 299, + [2004] = 302, + [2005] = 310, + [2006] = 268, + [2007] = 319, + [2008] = 278, + [2009] = 272, [2010] = 2010, - [2011] = 1992, + [2011] = 2011, [2012] = 2012, - [2013] = 1992, - [2014] = 1977, - [2015] = 1992, - [2016] = 49, - [2017] = 2012, - [2018] = 1991, - [2019] = 1977, - [2020] = 1966, - [2021] = 1979, - [2022] = 2008, - [2023] = 1979, - [2024] = 1969, - [2025] = 1980, - [2026] = 1983, - [2027] = 2012, - [2028] = 1971, - [2029] = 1969, - [2030] = 1973, - [2031] = 1974, - [2032] = 1966, - [2033] = 1976, - [2034] = 1969, - [2035] = 1977, - [2036] = 1979, - [2037] = 1980, - [2038] = 1983, - [2039] = 1966, - [2040] = 1971, - [2041] = 1983, - [2042] = 1978, - [2043] = 1973, - [2044] = 1974, - [2045] = 1968, - [2046] = 1976, - [2047] = 1970, - [2048] = 1969, - [2049] = 2012, - [2050] = 1972, - [2051] = 1977, - [2052] = 1989, - [2053] = 1979, - [2054] = 1980, - [2055] = 1990, - [2056] = 1991, - [2057] = 1983, - [2058] = 1978, - [2059] = 50, - [2060] = 2008, - [2061] = 1968, - [2062] = 1970, - [2063] = 1972, - [2064] = 2012, - [2065] = 1989, - [2066] = 1990, - [2067] = 46, - [2068] = 2008, - [2069] = 1978, - [2070] = 1980, - [2071] = 278, - [2072] = 286, - [2073] = 252, - [2074] = 251, - [2075] = 44, - [2076] = 253, - [2077] = 228, - [2078] = 254, - [2079] = 234, - [2080] = 255, - [2081] = 235, - [2082] = 229, - [2083] = 256, - [2084] = 223, - [2085] = 238, - [2086] = 45, - [2087] = 245, - [2088] = 267, - [2089] = 236, - [2090] = 260, - [2091] = 59, - [2092] = 261, - [2093] = 232, - [2094] = 258, - [2095] = 262, - [2096] = 237, - [2097] = 263, - [2098] = 246, - [2099] = 268, - [2100] = 264, - [2101] = 2101, - [2102] = 265, - [2103] = 266, - [2104] = 2101, - [2105] = 270, - [2106] = 247, - [2107] = 241, - [2108] = 257, - [2109] = 271, - [2110] = 272, - [2111] = 55, - [2112] = 231, - [2113] = 273, - [2114] = 250, - [2115] = 248, - [2116] = 274, - [2117] = 2101, - [2118] = 275, - [2119] = 276, - [2120] = 277, - [2121] = 227, - [2122] = 87, - [2123] = 242, - [2124] = 280, - [2125] = 259, - [2126] = 281, - [2127] = 282, - [2128] = 283, - [2129] = 284, - [2130] = 269, - [2131] = 224, - [2132] = 82, - [2133] = 240, - [2134] = 2101, - [2135] = 239, - [2136] = 249, - [2137] = 2101, - [2138] = 222, - [2139] = 286, - [2140] = 44, - [2141] = 226, - [2142] = 89, - [2143] = 90, - [2144] = 92, - [2145] = 94, - [2146] = 98, - [2147] = 99, - [2148] = 100, - [2149] = 103, - [2150] = 104, - [2151] = 106, - [2152] = 107, - [2153] = 113, - [2154] = 114, - [2155] = 124, - [2156] = 125, - [2157] = 126, - [2158] = 101, - [2159] = 127, - [2160] = 128, - [2161] = 129, - [2162] = 130, - [2163] = 137, - [2164] = 141, - [2165] = 142, - [2166] = 149, - [2167] = 230, - [2168] = 233, - [2169] = 293, - [2170] = 150, - [2171] = 151, - [2172] = 152, - [2173] = 153, - [2174] = 154, - [2175] = 161, - [2176] = 162, - [2177] = 163, - [2178] = 244, - [2179] = 165, - [2180] = 166, - [2181] = 167, - [2182] = 168, - [2183] = 169, - [2184] = 170, - [2185] = 171, - [2186] = 179, - [2187] = 180, - [2188] = 181, - [2189] = 182, - [2190] = 183, - [2191] = 184, - [2192] = 185, - [2193] = 186, - [2194] = 187, - [2195] = 188, - [2196] = 190, - [2197] = 191, - [2198] = 192, - [2199] = 193, - [2200] = 201, - [2201] = 202, - [2202] = 203, - [2203] = 204, - [2204] = 205, - [2205] = 206, - [2206] = 207, - [2207] = 208, - [2208] = 209, - [2209] = 210, - [2210] = 215, - [2211] = 216, - [2212] = 217, - [2213] = 218, - [2214] = 220, - [2215] = 221, - [2216] = 164, - [2217] = 597, - [2218] = 43, - [2219] = 57, - [2220] = 58, - [2221] = 60, - [2222] = 61, - [2223] = 86, - [2224] = 64, - [2225] = 65, - [2226] = 66, - [2227] = 70, - [2228] = 77, - [2229] = 83, - [2230] = 39, - [2231] = 40, - [2232] = 41, - [2233] = 42, - [2234] = 597, - [2235] = 92, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 103, - [2240] = 77, - [2241] = 70, - [2242] = 39, - [2243] = 83, - [2244] = 41, - [2245] = 42, - [2246] = 43, - [2247] = 40, - [2248] = 597, - [2249] = 2249, - [2250] = 58, - [2251] = 57, - [2252] = 60, - [2253] = 61, - [2254] = 86, - [2255] = 64, - [2256] = 65, - [2257] = 66, - [2258] = 66, - [2259] = 2259, - [2260] = 597, - [2261] = 597, - [2262] = 57, - [2263] = 58, - [2264] = 60, - [2265] = 61, - [2266] = 86, - [2267] = 64, - [2268] = 65, - [2269] = 70, - [2270] = 77, - [2271] = 83, - [2272] = 39, - [2273] = 40, - [2274] = 41, - [2275] = 42, - [2276] = 43, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 597, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, - [2284] = 2284, - [2285] = 2285, + [2013] = 2013, + [2014] = 2014, + [2015] = 2011, + [2016] = 2016, + [2017] = 2017, + [2018] = 2010, + [2019] = 2013, + [2020] = 2016, + [2021] = 2017, + [2022] = 2022, + [2023] = 2013, + [2024] = 2014, + [2025] = 2011, + [2026] = 2026, + [2027] = 2016, + [2028] = 2017, + [2029] = 2029, + [2030] = 2010, + [2031] = 2013, + [2032] = 2010, + [2033] = 2033, + [2034] = 2034, + [2035] = 2011, + [2036] = 2036, + [2037] = 2037, + [2038] = 2016, + [2039] = 2013, + [2040] = 2011, + [2041] = 2014, + [2042] = 2016, + [2043] = 2017, + [2044] = 2044, + [2045] = 2014, + [2046] = 2014, + [2047] = 2011, + [2048] = 2014, + [2049] = 2049, + [2050] = 2050, + [2051] = 2051, + [2052] = 2052, + [2053] = 2053, + [2054] = 2053, + [2055] = 2055, + [2056] = 2049, + [2057] = 2050, + [2058] = 2058, + [2059] = 2051, + [2060] = 2060, + [2061] = 2049, + [2062] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 2060, + [2066] = 2066, + [2067] = 2052, + [2068] = 2068, + [2069] = 51, + [2070] = 2070, + [2071] = 2052, + [2072] = 2070, + [2073] = 2073, + [2074] = 2051, + [2075] = 2050, + [2076] = 2049, + [2077] = 2060, + [2078] = 2068, + [2079] = 2079, + [2080] = 2080, + [2081] = 2052, + [2082] = 2068, + [2083] = 2060, + [2084] = 2070, + [2085] = 2062, + [2086] = 2086, + [2087] = 2068, + [2088] = 2080, + [2089] = 2089, + [2090] = 2050, + [2091] = 2055, + [2092] = 2080, + [2093] = 2063, + [2094] = 50, + [2095] = 2068, + [2096] = 2058, + [2097] = 2079, + [2098] = 2049, + [2099] = 2073, + [2100] = 2089, + [2101] = 2062, + [2102] = 2064, + [2103] = 2063, + [2104] = 2089, + [2105] = 2053, + [2106] = 2063, + [2107] = 2089, + [2108] = 2055, + [2109] = 2058, + [2110] = 2058, + [2111] = 2051, + [2112] = 2066, + [2113] = 2050, + [2114] = 2052, + [2115] = 2062, + [2116] = 2080, + [2117] = 2055, + [2118] = 2086, + [2119] = 2066, + [2120] = 2064, + [2121] = 2089, + [2122] = 2089, + [2123] = 2062, + [2124] = 2060, + [2125] = 2063, + [2126] = 2063, + [2127] = 2086, + [2128] = 2064, + [2129] = 2053, + [2130] = 2064, + [2131] = 2053, + [2132] = 2066, + [2133] = 2058, + [2134] = 2073, + [2135] = 2073, + [2136] = 2052, + [2137] = 2086, + [2138] = 2070, + [2139] = 2062, + [2140] = 2080, + [2141] = 2066, + [2142] = 2053, + [2143] = 2086, + [2144] = 2058, + [2145] = 2086, + [2146] = 2055, + [2147] = 2049, + [2148] = 2066, + [2149] = 2073, + [2150] = 2070, + [2151] = 2073, + [2152] = 2051, + [2153] = 2060, + [2154] = 2051, + [2155] = 2080, + [2156] = 2079, + [2157] = 2050, + [2158] = 2070, + [2159] = 2055, + [2160] = 2079, + [2161] = 2064, + [2162] = 2079, + [2163] = 2079, + [2164] = 2068, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2166, + [2173] = 2167, + [2174] = 2169, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2168, + [2188] = 2170, + [2189] = 2171, + [2190] = 2166, + [2191] = 2167, + [2192] = 2169, + [2193] = 2175, + [2194] = 2176, + [2195] = 2177, + [2196] = 2178, + [2197] = 2179, + [2198] = 2180, + [2199] = 2181, + [2200] = 2182, + [2201] = 2183, + [2202] = 2184, + [2203] = 2185, + [2204] = 2186, + [2205] = 2185, + [2206] = 2168, + [2207] = 2170, + [2208] = 2171, + [2209] = 2166, + [2210] = 2167, + [2211] = 2169, + [2212] = 2175, + [2213] = 2176, + [2214] = 2177, + [2215] = 2178, + [2216] = 2179, + [2217] = 2180, + [2218] = 2181, + [2219] = 2182, + [2220] = 2183, + [2221] = 2184, + [2222] = 2222, + [2223] = 2175, + [2224] = 2176, + [2225] = 2177, + [2226] = 2178, + [2227] = 2185, + [2228] = 2168, + [2229] = 2170, + [2230] = 2222, + [2231] = 2168, + [2232] = 2170, + [2233] = 2222, + [2234] = 2171, + [2235] = 2166, + [2236] = 2167, + [2237] = 2169, + [2238] = 2175, + [2239] = 2176, + [2240] = 2177, + [2241] = 2178, + [2242] = 2186, + [2243] = 2179, + [2244] = 2180, + [2245] = 2181, + [2246] = 2182, + [2247] = 2222, + [2248] = 2183, + [2249] = 2184, + [2250] = 2222, + [2251] = 2251, + [2252] = 2185, + [2253] = 2179, + [2254] = 2254, + [2255] = 2180, + [2256] = 2181, + [2257] = 2182, + [2258] = 2186, + [2259] = 2168, + [2260] = 2170, + [2261] = 2171, + [2262] = 2166, + [2263] = 2167, + [2264] = 2169, + [2265] = 2222, + [2266] = 2175, + [2267] = 2176, + [2268] = 2177, + [2269] = 2178, + [2270] = 2183, + [2271] = 2184, + [2272] = 2179, + [2273] = 2180, + [2274] = 2181, + [2275] = 2182, + [2276] = 2183, + [2277] = 2184, + [2278] = 2165, + [2279] = 2185, + [2280] = 2165, + [2281] = 2171, + [2282] = 2165, + [2283] = 2186, + [2284] = 2165, + [2285] = 2186, [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 779, - [2290] = 44, - [2291] = 57, - [2292] = 58, - [2293] = 60, - [2294] = 61, - [2295] = 86, - [2296] = 64, - [2297] = 65, - [2298] = 66, - [2299] = 83, - [2300] = 39, - [2301] = 40, - [2302] = 41, - [2303] = 77, - [2304] = 43, - [2305] = 70, - [2306] = 42, - [2307] = 286, - [2308] = 57, - [2309] = 70, - [2310] = 790, - [2311] = 60, - [2312] = 77, - [2313] = 61, - [2314] = 86, - [2315] = 64, - [2316] = 65, - [2317] = 66, - [2318] = 83, - [2319] = 58, - [2320] = 39, - [2321] = 40, - [2322] = 41, - [2323] = 42, - [2324] = 43, - [2325] = 2325, - [2326] = 2325, - [2327] = 2325, - [2328] = 2325, - [2329] = 2329, - [2330] = 2330, - [2331] = 2329, - [2332] = 2332, - [2333] = 2325, - [2334] = 2329, - [2335] = 2325, - [2336] = 2336, - [2337] = 2329, - [2338] = 2338, - [2339] = 2329, - [2340] = 2330, - [2341] = 2336, - [2342] = 2329, - [2343] = 2343, - [2344] = 2344, - [2345] = 2344, - [2346] = 2346, - [2347] = 2347, - [2348] = 2346, - [2349] = 2349, - [2350] = 779, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2344, - [2359] = 2346, - [2360] = 2360, - [2361] = 2353, - [2362] = 2346, - [2363] = 57, - [2364] = 2364, - [2365] = 60, - [2366] = 61, - [2367] = 86, - [2368] = 64, - [2369] = 65, - [2370] = 66, - [2371] = 2353, - [2372] = 2372, - [2373] = 2344, - [2374] = 70, - [2375] = 77, - [2376] = 83, - [2377] = 39, - [2378] = 40, - [2379] = 2347, - [2380] = 41, - [2381] = 42, - [2382] = 43, - [2383] = 2347, - [2384] = 2384, - [2385] = 2385, - [2386] = 58, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2389, - [2393] = 2393, - [2394] = 2390, - [2395] = 2395, - [2396] = 2393, - [2397] = 790, - [2398] = 2398, - [2399] = 2395, - [2400] = 2393, - [2401] = 2395, - [2402] = 2402, - [2403] = 2387, - [2404] = 2393, - [2405] = 2402, - [2406] = 2387, - [2407] = 2387, - [2408] = 2402, - [2409] = 2393, - [2410] = 2387, - [2411] = 2388, - [2412] = 2391, - [2413] = 2413, - [2414] = 2388, - [2415] = 2389, - [2416] = 2391, - [2417] = 2390, - [2418] = 2418, - [2419] = 2419, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2402, - [2425] = 2425, - [2426] = 2355, - [2427] = 2427, - [2428] = 790, - [2429] = 2422, - [2430] = 2430, - [2431] = 2372, - [2432] = 2432, - [2433] = 2422, - [2434] = 2423, - [2435] = 2435, - [2436] = 2402, - [2437] = 2437, - [2438] = 2438, - [2439] = 2395, - [2440] = 2427, - [2441] = 2438, - [2442] = 2438, + [2287] = 2286, + [2288] = 2286, + [2289] = 2286, + [2290] = 2286, + [2291] = 2286, + [2292] = 48, + [2293] = 50, + [2294] = 49, + [2295] = 51, + [2296] = 287, + [2297] = 324, + [2298] = 58, + [2299] = 46, + [2300] = 53, + [2301] = 61, + [2302] = 85, + [2303] = 278, + [2304] = 294, + [2305] = 264, + [2306] = 265, + [2307] = 295, + [2308] = 285, + [2309] = 288, + [2310] = 268, + [2311] = 269, + [2312] = 270, + [2313] = 88, + [2314] = 291, + [2315] = 292, + [2316] = 293, + [2317] = 272, + [2318] = 273, + [2319] = 296, + [2320] = 297, + [2321] = 298, + [2322] = 301, + [2323] = 299, + [2324] = 300, + [2325] = 274, + [2326] = 275, + [2327] = 302, + [2328] = 303, + [2329] = 304, + [2330] = 305, + [2331] = 306, + [2332] = 284, + [2333] = 308, + [2334] = 276, + [2335] = 277, + [2336] = 289, + [2337] = 310, + [2338] = 309, + [2339] = 311, + [2340] = 515, + [2341] = 312, + [2342] = 313, + [2343] = 314, + [2344] = 315, + [2345] = 316, + [2346] = 317, + [2347] = 318, + [2348] = 319, + [2349] = 290, + [2350] = 320, + [2351] = 321, + [2352] = 322, + [2353] = 323, + [2354] = 279, + [2355] = 286, + [2356] = 280, + [2357] = 281, + [2358] = 282, + [2359] = 283, + [2360] = 307, + [2361] = 261, + [2362] = 170, + [2363] = 2363, + [2364] = 173, + [2365] = 174, + [2366] = 176, + [2367] = 177, + [2368] = 169, + [2369] = 179, + [2370] = 180, + [2371] = 181, + [2372] = 182, + [2373] = 187, + [2374] = 188, + [2375] = 189, + [2376] = 190, + [2377] = 191, + [2378] = 192, + [2379] = 193, + [2380] = 194, + [2381] = 195, + [2382] = 267, + [2383] = 201, + [2384] = 202, + [2385] = 203, + [2386] = 204, + [2387] = 205, + [2388] = 206, + [2389] = 207, + [2390] = 208, + [2391] = 209, + [2392] = 210, + [2393] = 211, + [2394] = 219, + [2395] = 220, + [2396] = 221, + [2397] = 222, + [2398] = 223, + [2399] = 224, + [2400] = 225, + [2401] = 226, + [2402] = 227, + [2403] = 228, + [2404] = 229, + [2405] = 230, + [2406] = 231, + [2407] = 232, + [2408] = 240, + [2409] = 241, + [2410] = 242, + [2411] = 243, + [2412] = 244, + [2413] = 245, + [2414] = 246, + [2415] = 247, + [2416] = 248, + [2417] = 249, + [2418] = 254, + [2419] = 255, + [2420] = 256, + [2421] = 257, + [2422] = 259, + [2423] = 260, + [2424] = 262, + [2425] = 263, + [2426] = 128, + [2427] = 162, + [2428] = 266, + [2429] = 271, + [2430] = 167, + [2431] = 160, + [2432] = 161, + [2433] = 162, + [2434] = 163, + [2435] = 324, + [2436] = 164, + [2437] = 165, + [2438] = 166, + [2439] = 46, + [2440] = 167, + [2441] = 168, + [2442] = 178, [2443] = 2443, - [2444] = 2419, - [2445] = 2445, - [2446] = 2432, - [2447] = 2447, - [2448] = 2420, - [2449] = 2449, - [2450] = 2450, - [2451] = 2419, - [2452] = 2432, - [2453] = 2427, - [2454] = 2454, - [2455] = 2420, - [2456] = 2372, - [2457] = 2423, - [2458] = 2355, - [2459] = 2430, - [2460] = 2460, - [2461] = 2395, - [2462] = 2430, - [2463] = 40, - [2464] = 64, + [2444] = 63, + [2445] = 597, + [2446] = 59, + [2447] = 64, + [2448] = 60, + [2449] = 87, + [2450] = 66, + [2451] = 67, + [2452] = 68, + [2453] = 72, + [2454] = 84, + [2455] = 39, + [2456] = 40, + [2457] = 41, + [2458] = 42, + [2459] = 43, + [2460] = 44, + [2461] = 2461, + [2462] = 2462, + [2463] = 597, + [2464] = 2464, [2465] = 2465, - [2466] = 83, - [2467] = 2467, - [2468] = 39, - [2469] = 60, - [2470] = 66, - [2471] = 61, - [2472] = 41, - [2473] = 42, - [2474] = 57, - [2475] = 70, + [2466] = 67, + [2467] = 41, + [2468] = 42, + [2469] = 43, + [2470] = 597, + [2471] = 44, + [2472] = 2472, + [2473] = 68, + [2474] = 2474, + [2475] = 2475, [2476] = 2476, - [2477] = 2477, - [2478] = 65, - [2479] = 86, - [2480] = 44, - [2481] = 43, - [2482] = 77, - [2483] = 58, - [2484] = 286, - [2485] = 2485, - [2486] = 2486, - [2487] = 2485, - [2488] = 2486, - [2489] = 2489, - [2490] = 2486, - [2491] = 2485, - [2492] = 2492, + [2477] = 72, + [2478] = 84, + [2479] = 39, + [2480] = 2480, + [2481] = 2481, + [2482] = 2482, + [2483] = 2483, + [2484] = 40, + [2485] = 66, + [2486] = 59, + [2487] = 2487, + [2488] = 60, + [2489] = 87, + [2490] = 63, + [2491] = 64, + [2492] = 68, [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 46, - [2505] = 50, - [2506] = 48, - [2507] = 48, - [2508] = 50, - [2509] = 49, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 1715, - [2515] = 1708, - [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 1714, - [2520] = 1714, - [2521] = 245, - [2522] = 1707, - [2523] = 2523, - [2524] = 2524, - [2525] = 1710, - [2526] = 1713, - [2527] = 2527, - [2528] = 1713, - [2529] = 1715, - [2530] = 1708, - [2531] = 1710, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 1707, - [2537] = 2537, - [2538] = 251, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, + [2494] = 59, + [2495] = 60, + [2496] = 87, + [2497] = 63, + [2498] = 64, + [2499] = 66, + [2500] = 67, + [2501] = 72, + [2502] = 84, + [2503] = 39, + [2504] = 40, + [2505] = 41, + [2506] = 42, + [2507] = 43, + [2508] = 44, + [2509] = 2509, + [2510] = 597, + [2511] = 597, + [2512] = 597, + [2513] = 809, + [2514] = 40, + [2515] = 43, + [2516] = 41, + [2517] = 44, + [2518] = 42, + [2519] = 59, + [2520] = 60, + [2521] = 66, + [2522] = 87, + [2523] = 63, + [2524] = 64, + [2525] = 72, + [2526] = 67, + [2527] = 84, + [2528] = 68, + [2529] = 39, + [2530] = 60, + [2531] = 68, + [2532] = 72, + [2533] = 44, + [2534] = 67, + [2535] = 84, + [2536] = 66, + [2537] = 43, + [2538] = 39, + [2539] = 40, + [2540] = 41, + [2541] = 64, + [2542] = 87, + [2543] = 63, + [2544] = 42, + [2545] = 59, + [2546] = 774, [2547] = 2547, - [2548] = 226, + [2548] = 2548, [2549] = 2549, [2550] = 2550, - [2551] = 2551, - [2552] = 2552, + [2551] = 2547, + [2552] = 2548, [2553] = 2553, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, + [2554] = 2553, + [2555] = 2548, + [2556] = 2553, [2557] = 2557, - [2558] = 2558, - [2559] = 2559, - [2560] = 2560, - [2561] = 2561, + [2558] = 2548, + [2559] = 2553, + [2560] = 2550, + [2561] = 2553, [2562] = 2562, - [2563] = 2563, - [2564] = 2564, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2568, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, - [2573] = 230, - [2574] = 2574, + [2563] = 2548, + [2564] = 2553, + [2565] = 2553, + [2566] = 2548, + [2567] = 2553, + [2568] = 2548, + [2569] = 2548, + [2570] = 66, + [2571] = 63, + [2572] = 43, + [2573] = 2573, + [2574] = 44, [2575] = 2575, [2576] = 2576, - [2577] = 2577, - [2578] = 2578, + [2577] = 2576, + [2578] = 72, [2579] = 2579, [2580] = 2580, [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, - [2588] = 2588, + [2582] = 2573, + [2583] = 2580, + [2584] = 2573, + [2585] = 84, + [2586] = 87, + [2587] = 68, + [2588] = 67, [2589] = 2589, - [2590] = 2590, + [2590] = 42, [2591] = 2591, [2592] = 2592, [2593] = 2593, [2594] = 2594, [2595] = 2595, - [2596] = 2596, - [2597] = 2597, - [2598] = 2598, + [2596] = 39, + [2597] = 64, + [2598] = 2593, [2599] = 2599, - [2600] = 2600, + [2600] = 2593, [2601] = 2601, - [2602] = 2602, - [2603] = 2603, - [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 2607, - [2608] = 1714, - [2609] = 1707, - [2610] = 2610, - [2611] = 2610, - [2612] = 2612, - [2613] = 2613, - [2614] = 1713, - [2615] = 2613, + [2602] = 2593, + [2603] = 2576, + [2604] = 2576, + [2605] = 2580, + [2606] = 2573, + [2607] = 2580, + [2608] = 2576, + [2609] = 809, + [2610] = 40, + [2611] = 41, + [2612] = 2573, + [2613] = 59, + [2614] = 60, + [2615] = 2615, [2616] = 2616, [2617] = 2617, [2618] = 2618, [2619] = 2619, - [2620] = 1715, - [2621] = 1708, + [2620] = 2619, + [2621] = 2621, [2622] = 2622, [2623] = 2623, - [2624] = 2624, + [2624] = 2621, [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2600, - [2629] = 2616, - [2630] = 2630, - [2631] = 2631, - [2632] = 2632, + [2626] = 2623, + [2627] = 2617, + [2628] = 2617, + [2629] = 2629, + [2630] = 2622, + [2631] = 2625, + [2632] = 2623, [2633] = 2633, - [2634] = 2634, - [2635] = 1710, + [2634] = 2623, + [2635] = 2617, [2636] = 2636, - [2637] = 2637, - [2638] = 2638, + [2637] = 2622, + [2638] = 2622, [2639] = 2639, - [2640] = 2640, + [2640] = 2639, [2641] = 2641, [2642] = 2642, - [2643] = 2643, - [2644] = 2644, - [2645] = 2645, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2623, - [2654] = 2625, - [2655] = 2655, - [2656] = 2656, - [2657] = 2627, - [2658] = 2658, - [2659] = 2622, - [2660] = 2600, - [2661] = 2623, - [2662] = 2642, + [2643] = 2639, + [2644] = 2625, + [2645] = 2629, + [2646] = 2623, + [2647] = 2619, + [2648] = 774, + [2649] = 2629, + [2650] = 2619, + [2651] = 2621, + [2652] = 2622, + [2653] = 2629, + [2654] = 2621, + [2655] = 2622, + [2656] = 2625, + [2657] = 2623, + [2658] = 2639, + [2659] = 2659, + [2660] = 2660, + [2661] = 50, + [2662] = 2660, [2663] = 2663, - [2664] = 2664, + [2664] = 2659, [2665] = 2625, - [2666] = 2618, - [2667] = 2667, - [2668] = 2631, - [2669] = 2669, - [2670] = 2663, - [2671] = 2627, - [2672] = 2622, - [2673] = 2673, - [2674] = 1714, - [2675] = 2618, - [2676] = 2601, + [2666] = 2666, + [2667] = 2660, + [2668] = 2668, + [2669] = 2663, + [2670] = 2670, + [2671] = 2621, + [2672] = 2672, + [2673] = 2660, + [2674] = 2659, + [2675] = 2666, + [2676] = 2663, [2677] = 2677, - [2678] = 2642, - [2679] = 2679, - [2680] = 2680, - [2681] = 2656, + [2678] = 2678, + [2679] = 2659, + [2680] = 2591, + [2681] = 2681, [2682] = 2682, - [2683] = 2642, - [2684] = 2636, + [2683] = 2683, + [2684] = 2663, [2685] = 2685, - [2686] = 2624, - [2687] = 2687, - [2688] = 1715, - [2689] = 1708, - [2690] = 2616, - [2691] = 2691, + [2686] = 2625, + [2687] = 2685, + [2688] = 2685, + [2689] = 48, + [2690] = 2595, + [2691] = 2685, [2692] = 2692, - [2693] = 2637, - [2694] = 2638, - [2695] = 2639, - [2696] = 2663, - [2697] = 2640, - [2698] = 2656, - [2699] = 2699, - [2700] = 2700, - [2701] = 2701, - [2702] = 2636, - [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 2706, - [2707] = 2707, - [2708] = 2708, - [2709] = 2658, - [2710] = 2710, - [2711] = 2638, - [2712] = 2651, - [2713] = 2713, - [2714] = 2645, - [2715] = 2646, - [2716] = 2647, - [2717] = 2648, - [2718] = 2718, - [2719] = 2719, - [2720] = 2631, - [2721] = 2721, - [2722] = 2649, - [2723] = 1710, - [2724] = 2724, - [2725] = 2725, - [2726] = 2618, - [2727] = 2727, - [2728] = 2728, - [2729] = 2637, - [2730] = 2730, - [2731] = 2650, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2624, - [2736] = 2736, - [2737] = 2610, - [2738] = 2600, - [2739] = 2622, - [2740] = 2656, - [2741] = 2639, - [2742] = 2742, - [2743] = 2651, - [2744] = 2652, - [2745] = 2745, - [2746] = 2658, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2745, - [2752] = 2613, - [2753] = 2753, - [2754] = 2745, - [2755] = 1707, - [2756] = 2756, - [2757] = 2757, - [2758] = 1713, - [2759] = 2652, - [2760] = 2601, - [2761] = 2761, - [2762] = 2650, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2640, - [2767] = 2616, - [2768] = 2768, - [2769] = 2622, - [2770] = 2770, - [2771] = 2771, - [2772] = 2645, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2649, - [2777] = 2646, - [2778] = 2778, - [2779] = 2779, - [2780] = 2647, - [2781] = 2781, - [2782] = 2782, - [2783] = 2648, - [2784] = 2784, - [2785] = 2785, - [2786] = 2786, - [2787] = 2787, - [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 2792, - [2793] = 2793, - [2794] = 2794, - [2795] = 2795, - [2796] = 2796, - [2797] = 2797, - [2798] = 2798, - [2799] = 2799, - [2800] = 2800, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, - [2807] = 2807, - [2808] = 2785, + [2693] = 2595, + [2694] = 2694, + [2695] = 2695, + [2696] = 2696, + [2697] = 2666, + [2698] = 2696, + [2699] = 2678, + [2700] = 2678, + [2701] = 2696, + [2702] = 2591, + [2703] = 774, + [2704] = 49, + [2705] = 46, + [2706] = 2682, + [2707] = 2621, + [2708] = 2595, + [2709] = 2678, + [2710] = 324, + [2711] = 51, + [2712] = 2666, + [2713] = 2591, + [2714] = 2696, + [2715] = 2682, + [2716] = 2682, + [2717] = 59, + [2718] = 306, + [2719] = 39, + [2720] = 64, + [2721] = 87, + [2722] = 307, + [2723] = 308, + [2724] = 88, + [2725] = 269, + [2726] = 294, + [2727] = 295, + [2728] = 59, + [2729] = 40, + [2730] = 296, + [2731] = 297, + [2732] = 41, + [2733] = 63, + [2734] = 66, + [2735] = 298, + [2736] = 272, + [2737] = 299, + [2738] = 44, + [2739] = 283, + [2740] = 284, + [2741] = 278, + [2742] = 67, + [2743] = 273, + [2744] = 39, + [2745] = 300, + [2746] = 293, + [2747] = 279, + [2748] = 292, + [2749] = 321, + [2750] = 274, + [2751] = 67, + [2752] = 68, + [2753] = 322, + [2754] = 268, + [2755] = 309, + [2756] = 310, + [2757] = 41, + [2758] = 285, + [2759] = 311, + [2760] = 323, + [2761] = 515, + [2762] = 42, + [2763] = 43, + [2764] = 312, + [2765] = 68, + [2766] = 280, + [2767] = 44, + [2768] = 60, + [2769] = 291, + [2770] = 314, + [2771] = 315, + [2772] = 281, + [2773] = 87, + [2774] = 324, + [2775] = 265, + [2776] = 46, + [2777] = 64, + [2778] = 66, + [2779] = 53, + [2780] = 282, + [2781] = 63, + [2782] = 286, + [2783] = 276, + [2784] = 40, + [2785] = 301, + [2786] = 264, + [2787] = 270, + [2788] = 275, + [2789] = 302, + [2790] = 287, + [2791] = 316, + [2792] = 317, + [2793] = 43, + [2794] = 303, + [2795] = 318, + [2796] = 289, + [2797] = 42, + [2798] = 319, + [2799] = 290, + [2800] = 72, + [2801] = 84, + [2802] = 320, + [2803] = 304, + [2804] = 277, + [2805] = 58, + [2806] = 85, + [2807] = 60, + [2808] = 72, [2809] = 2809, - [2810] = 2810, - [2811] = 2811, - [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2822, - [2823] = 2823, - [2824] = 2824, - [2825] = 2825, - [2826] = 2826, + [2810] = 305, + [2811] = 84, + [2812] = 288, + [2813] = 61, + [2814] = 313, + [2815] = 174, + [2816] = 255, + [2817] = 256, + [2818] = 257, + [2819] = 259, + [2820] = 260, + [2821] = 261, + [2822] = 262, + [2823] = 179, + [2824] = 263, + [2825] = 180, + [2826] = 266, [2827] = 2827, - [2828] = 2799, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2839, - [2840] = 2840, - [2841] = 2841, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2845, - [2846] = 2845, + [2828] = 181, + [2829] = 182, + [2830] = 271, + [2831] = 187, + [2832] = 167, + [2833] = 188, + [2834] = 189, + [2835] = 168, + [2836] = 190, + [2837] = 191, + [2838] = 192, + [2839] = 193, + [2840] = 194, + [2841] = 195, + [2842] = 201, + [2843] = 202, + [2844] = 203, + [2845] = 204, + [2846] = 205, [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2850, - [2851] = 2800, - [2852] = 2787, - [2853] = 2853, - [2854] = 2854, - [2855] = 2855, - [2856] = 2792, - [2857] = 2857, - [2858] = 2858, - [2859] = 2859, - [2860] = 2860, - [2861] = 2827, - [2862] = 2862, - [2863] = 2863, - [2864] = 2791, - [2865] = 2865, - [2866] = 2866, - [2867] = 2867, - [2868] = 2791, - [2869] = 2869, - [2870] = 2870, - [2871] = 2871, - [2872] = 2792, - [2873] = 2873, - [2874] = 2794, - [2875] = 2785, - [2876] = 2876, - [2877] = 2855, - [2878] = 2825, - [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2791, - [2884] = 2884, - [2885] = 2794, - [2886] = 2785, - [2887] = 2800, - [2888] = 2888, - [2889] = 2889, - [2890] = 2890, - [2891] = 2891, - [2892] = 2892, - [2893] = 2814, - [2894] = 2894, - [2895] = 2817, - [2896] = 2818, - [2897] = 2897, - [2898] = 2829, - [2899] = 2899, - [2900] = 2835, - [2901] = 2799, - [2902] = 2800, + [2848] = 206, + [2849] = 207, + [2850] = 169, + [2851] = 2851, + [2852] = 176, + [2853] = 177, + [2854] = 178, + [2855] = 254, + [2856] = 209, + [2857] = 210, + [2858] = 211, + [2859] = 219, + [2860] = 220, + [2861] = 221, + [2862] = 222, + [2863] = 223, + [2864] = 224, + [2865] = 225, + [2866] = 226, + [2867] = 227, + [2868] = 228, + [2869] = 170, + [2870] = 2847, + [2871] = 2851, + [2872] = 267, + [2873] = 229, + [2874] = 230, + [2875] = 231, + [2876] = 232, + [2877] = 240, + [2878] = 241, + [2879] = 242, + [2880] = 243, + [2881] = 244, + [2882] = 245, + [2883] = 246, + [2884] = 2847, + [2885] = 2851, + [2886] = 173, + [2887] = 2847, + [2888] = 2851, + [2889] = 160, + [2890] = 161, + [2891] = 247, + [2892] = 162, + [2893] = 128, + [2894] = 163, + [2895] = 248, + [2896] = 164, + [2897] = 165, + [2898] = 166, + [2899] = 249, + [2900] = 208, + [2901] = 2901, + [2902] = 2902, [2903] = 2903, [2904] = 2904, [2905] = 2905, [2906] = 2906, - [2907] = 2814, + [2907] = 2907, [2908] = 2908, - [2909] = 2867, + [2909] = 2909, [2910] = 2910, - [2911] = 2831, + [2911] = 2911, [2912] = 2912, - [2913] = 2825, - [2914] = 2914, - [2915] = 2794, - [2916] = 2800, - [2917] = 2917, - [2918] = 2918, - [2919] = 2817, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, - [2923] = 2825, - [2924] = 2800, + [2913] = 48, + [2914] = 51, + [2915] = 50, + [2916] = 50, + [2917] = 51, + [2918] = 49, + [2919] = 2919, + [2920] = 1843, + [2921] = 1844, + [2922] = 1843, + [2923] = 2923, + [2924] = 2924, [2925] = 2925, - [2926] = 2841, - [2927] = 2927, - [2928] = 2928, - [2929] = 2929, - [2930] = 2930, + [2926] = 2926, + [2927] = 1845, + [2928] = 1845, + [2929] = 1846, + [2930] = 1846, [2931] = 2931, [2932] = 2932, - [2933] = 2933, - [2934] = 2812, - [2935] = 2935, - [2936] = 2879, - [2937] = 2812, - [2938] = 1714, + [2933] = 1850, + [2934] = 2934, + [2935] = 1852, + [2936] = 2936, + [2937] = 2937, + [2938] = 2938, [2939] = 2939, - [2940] = 2940, - [2941] = 2815, - [2942] = 2814, - [2943] = 2815, + [2940] = 1844, + [2941] = 289, + [2942] = 2942, + [2943] = 1850, [2944] = 2944, - [2945] = 2816, - [2946] = 2817, - [2947] = 1707, - [2948] = 2818, - [2949] = 1713, + [2945] = 1852, + [2946] = 294, + [2947] = 2947, + [2948] = 2948, + [2949] = 2949, [2950] = 2950, [2951] = 2951, [2952] = 2952, [2953] = 2953, [2954] = 2954, - [2955] = 1715, - [2956] = 1708, + [2955] = 2955, + [2956] = 2956, [2957] = 2957, - [2958] = 2816, - [2959] = 1710, - [2960] = 2824, + [2958] = 2958, + [2959] = 263, + [2960] = 2960, [2961] = 2961, - [2962] = 2817, - [2963] = 2835, + [2962] = 2962, + [2963] = 2963, [2964] = 2964, - [2965] = 2840, - [2966] = 2827, - [2967] = 2836, - [2968] = 2837, + [2965] = 2965, + [2966] = 2966, + [2967] = 2967, + [2968] = 262, [2969] = 2969, [2970] = 2970, [2971] = 2971, [2972] = 2972, - [2973] = 2818, - [2974] = 2829, + [2973] = 2973, + [2974] = 2974, [2975] = 2975, - [2976] = 2831, + [2976] = 2976, [2977] = 2977, [2978] = 2978, [2979] = 2979, [2980] = 2980, [2981] = 2981, - [2982] = 2835, - [2983] = 2836, - [2984] = 2837, + [2982] = 2982, + [2983] = 2983, + [2984] = 2984, [2985] = 2985, [2986] = 2986, [2987] = 2987, @@ -6887,562 +6930,1109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2993] = 2993, [2994] = 2994, [2995] = 2995, - [2996] = 2794, - [2997] = 2858, - [2998] = 2840, + [2996] = 2996, + [2997] = 2997, + [2998] = 2998, [2999] = 2999, [3000] = 3000, [3001] = 3001, [3002] = 3002, - [3003] = 2843, + [3003] = 3003, [3004] = 3004, - [3005] = 2849, + [3005] = 3005, [3006] = 3006, [3007] = 3007, [3008] = 3008, - [3009] = 2845, - [3010] = 2849, + [3009] = 3009, + [3010] = 3010, [3011] = 3011, [3012] = 3012, [3013] = 3013, [3014] = 3014, - [3015] = 2957, + [3015] = 3015, [3016] = 3016, [3017] = 3017, - [3018] = 2787, + [3018] = 3018, [3019] = 3019, [3020] = 3020, - [3021] = 2843, + [3021] = 3021, [3022] = 3022, [3023] = 3023, [3024] = 3024, - [3025] = 2859, - [3026] = 2866, + [3025] = 3025, + [3026] = 3026, [3027] = 3027, [3028] = 3028, - [3029] = 1714, - [3030] = 3030, - [3031] = 1707, + [3029] = 3029, + [3030] = 3020, + [3031] = 3031, [3032] = 3032, [3033] = 3033, - [3034] = 1713, - [3035] = 3035, - [3036] = 1715, - [3037] = 1708, + [3034] = 1843, + [3035] = 3010, + [3036] = 3036, + [3037] = 3011, [3038] = 3038, - [3039] = 1710, + [3039] = 3039, [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, + [3041] = 3011, + [3042] = 3038, + [3043] = 3032, [3044] = 3044, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 2824, - [3049] = 3049, + [3045] = 3017, + [3046] = 3023, + [3047] = 3033, + [3048] = 3044, + [3049] = 3039, [3050] = 3050, - [3051] = 3051, + [3051] = 3016, [3052] = 3052, [3053] = 3053, - [3054] = 2867, - [3055] = 2939, - [3056] = 3056, - [3057] = 3057, - [3058] = 2841, - [3059] = 2940, + [3054] = 3054, + [3055] = 3040, + [3056] = 3012, + [3057] = 3014, + [3058] = 3012, + [3059] = 3014, [3060] = 3060, [3061] = 3061, [3062] = 3062, - [3063] = 2935, - [3064] = 2879, - [3065] = 2935, + [3063] = 1845, + [3064] = 1846, + [3065] = 3065, [3066] = 3066, - [3067] = 3067, - [3068] = 3068, - [3069] = 2939, - [3070] = 2940, + [3067] = 3029, + [3068] = 3013, + [3069] = 3061, + [3070] = 3021, [3071] = 3071, - [3072] = 2855, - [3073] = 3073, - [3074] = 2855, - [3075] = 2825, - [3076] = 2858, - [3077] = 3077, - [3078] = 2859, - [3079] = 3079, - [3080] = 3080, - [3081] = 3081, - [3082] = 2944, - [3083] = 2858, + [3072] = 3072, + [3073] = 3052, + [3074] = 3074, + [3075] = 3061, + [3076] = 3076, + [3077] = 3053, + [3078] = 3078, + [3079] = 3012, + [3080] = 3018, + [3081] = 3019, + [3082] = 3082, + [3083] = 3083, [3084] = 3084, [3085] = 3085, - [3086] = 2859, + [3086] = 3021, [3087] = 3087, [3088] = 3088, - [3089] = 2952, - [3090] = 2866, - [3091] = 2867, - [3092] = 3092, - [3093] = 3093, - [3094] = 2869, - [3095] = 2841, + [3089] = 1850, + [3090] = 1852, + [3091] = 3066, + [3092] = 3025, + [3093] = 3026, + [3094] = 3094, + [3095] = 3028, [3096] = 3096, - [3097] = 2935, - [3098] = 2879, - [3099] = 2939, - [3100] = 2940, - [3101] = 2841, - [3102] = 2935, - [3103] = 2879, - [3104] = 2939, - [3105] = 2940, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3109, - [3110] = 2944, - [3111] = 3111, + [3097] = 3010, + [3098] = 3098, + [3099] = 3012, + [3100] = 3100, + [3101] = 3101, + [3102] = 3032, + [3103] = 3103, + [3104] = 3029, + [3105] = 3105, + [3106] = 1843, + [3107] = 3011, + [3108] = 3038, + [3109] = 3014, + [3110] = 3039, + [3111] = 3040, [3112] = 3112, - [3113] = 3113, + [3113] = 3054, [3114] = 3114, - [3115] = 2869, - [3116] = 3116, - [3117] = 3117, + [3115] = 3115, + [3116] = 3038, + [3117] = 3084, [3118] = 3118, - [3119] = 2825, - [3120] = 2866, - [3121] = 2867, + [3119] = 3119, + [3120] = 3017, + [3121] = 3121, [3122] = 3122, - [3123] = 2869, + [3123] = 1844, [3124] = 3124, [3125] = 3125, [3126] = 3126, [3127] = 3127, - [3128] = 3128, - [3129] = 3129, + [3128] = 3023, + [3129] = 3033, [3130] = 3130, [3131] = 3131, - [3132] = 3132, + [3132] = 3029, [3133] = 3133, [3134] = 3134, - [3135] = 3135, + [3135] = 3044, [3136] = 3136, [3137] = 3137, [3138] = 3138, - [3139] = 3139, - [3140] = 3140, + [3139] = 3020, + [3140] = 3013, [3141] = 3141, - [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, - [3149] = 3139, - [3150] = 3150, - [3151] = 3132, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3141, - [3156] = 3154, - [3157] = 3157, - [3158] = 3137, + [3142] = 3025, + [3143] = 3039, + [3144] = 3026, + [3145] = 3010, + [3146] = 3016, + [3147] = 3028, + [3148] = 3052, + [3149] = 3053, + [3150] = 3013, + [3151] = 3017, + [3152] = 3023, + [3153] = 3033, + [3154] = 3044, + [3155] = 3054, + [3156] = 3016, + [3157] = 3012, + [3158] = 3014, [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, - [3164] = 3150, - [3165] = 3134, - [3166] = 3166, - [3167] = 3143, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, + [3160] = 3052, + [3161] = 3018, + [3162] = 3019, + [3163] = 1845, + [3164] = 3164, + [3165] = 3165, + [3166] = 3022, + [3167] = 3167, + [3168] = 3053, + [3169] = 3061, + [3170] = 3018, [3171] = 3171, - [3172] = 3139, - [3173] = 3168, - [3174] = 3174, - [3175] = 3175, - [3176] = 3171, - [3177] = 3171, - [3178] = 3141, - [3179] = 3160, - [3180] = 3154, - [3181] = 3145, - [3182] = 3174, - [3183] = 3147, + [3172] = 3172, + [3173] = 3021, + [3174] = 3019, + [3175] = 1850, + [3176] = 1852, + [3177] = 3054, + [3178] = 3178, + [3179] = 3179, + [3180] = 3084, + [3181] = 3181, + [3182] = 1846, + [3183] = 3183, [3184] = 3184, [3185] = 3185, [3186] = 3186, - [3187] = 3170, - [3188] = 3136, - [3189] = 3160, - [3190] = 3190, - [3191] = 3150, + [3187] = 3187, + [3188] = 3188, + [3189] = 3066, + [3190] = 3084, + [3191] = 3100, [3192] = 3192, - [3193] = 3152, - [3194] = 3157, - [3195] = 3161, + [3193] = 3193, + [3194] = 3194, + [3195] = 3195, [3196] = 3196, - [3197] = 3162, - [3198] = 3198, - [3199] = 3199, - [3200] = 3163, - [3201] = 3175, - [3202] = 3132, - [3203] = 3150, - [3204] = 3198, - [3205] = 3146, - [3206] = 3206, - [3207] = 3145, - [3208] = 3196, + [3197] = 3197, + [3198] = 3066, + [3199] = 3066, + [3200] = 3200, + [3201] = 3040, + [3202] = 3025, + [3203] = 3026, + [3204] = 3204, + [3205] = 3028, + [3206] = 3100, + [3207] = 3207, + [3208] = 3208, [3209] = 3209, - [3210] = 3152, - [3211] = 3211, - [3212] = 3135, - [3213] = 3137, - [3214] = 3133, - [3215] = 3147, - [3216] = 3209, - [3217] = 3162, - [3218] = 3157, - [3219] = 3219, - [3220] = 3175, - [3221] = 3192, - [3222] = 3143, - [3223] = 3169, - [3224] = 3143, - [3225] = 3169, - [3226] = 3163, - [3227] = 3219, + [3210] = 3210, + [3211] = 1844, + [3212] = 3212, + [3213] = 3100, + [3214] = 3214, + [3215] = 3021, + [3216] = 3216, + [3217] = 3217, + [3218] = 3218, + [3219] = 3061, + [3220] = 3022, + [3221] = 3029, + [3222] = 3222, + [3223] = 3032, + [3224] = 3020, + [3225] = 3022, + [3226] = 3226, + [3227] = 3227, [3228] = 3228, [3229] = 3229, [3230] = 3230, [3231] = 3231, - [3232] = 3152, + [3232] = 3232, [3233] = 3233, - [3234] = 3234, - [3235] = 3168, - [3236] = 3157, + [3234] = 3232, + [3235] = 3235, + [3236] = 3236, [3237] = 3237, [3238] = 3238, - [3239] = 3134, - [3240] = 3134, - [3241] = 3134, - [3242] = 3139, - [3243] = 3141, - [3244] = 3145, - [3245] = 3147, - [3246] = 3132, - [3247] = 3145, + [3239] = 3239, + [3240] = 3240, + [3241] = 3241, + [3242] = 3242, + [3243] = 3243, + [3244] = 3244, + [3245] = 3245, + [3246] = 3246, + [3247] = 3247, [3248] = 3248, - [3249] = 3174, - [3250] = 3175, - [3251] = 3134, - [3252] = 3139, - [3253] = 3141, - [3254] = 3145, - [3255] = 3147, - [3256] = 3132, - [3257] = 3147, + [3249] = 3249, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, + [3253] = 3240, + [3254] = 3241, + [3255] = 3255, + [3256] = 3243, + [3257] = 3257, [3258] = 3258, [3259] = 3259, [3260] = 3260, - [3261] = 3150, - [3262] = 3152, - [3263] = 3157, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, [3264] = 3264, - [3265] = 3161, - [3266] = 3266, - [3267] = 3161, + [3265] = 3265, + [3266] = 3243, + [3267] = 3267, [3268] = 3268, - [3269] = 3170, - [3270] = 3146, - [3271] = 3196, - [3272] = 3211, - [3273] = 3135, - [3274] = 3211, - [3275] = 3143, - [3276] = 3169, - [3277] = 3136, + [3269] = 3269, + [3270] = 3270, + [3271] = 3259, + [3272] = 3272, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3277, [3278] = 3278, [3279] = 3279, [3280] = 3280, [3281] = 3281, - [3282] = 3161, - [3283] = 3190, + [3282] = 3282, + [3283] = 3283, [3284] = 3284, - [3285] = 3153, - [3286] = 3192, - [3287] = 3219, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, [3288] = 3288, [3289] = 3289, [3290] = 3290, [3291] = 3291, - [3292] = 3134, - [3293] = 3139, - [3294] = 3141, - [3295] = 3145, - [3296] = 3147, - [3297] = 3132, - [3298] = 3190, + [3292] = 3292, + [3293] = 3293, + [3294] = 3294, + [3295] = 3229, + [3296] = 3296, + [3297] = 3297, + [3298] = 3298, [3299] = 3299, - [3300] = 3146, - [3301] = 3196, - [3302] = 3198, - [3303] = 3211, - [3304] = 3134, - [3305] = 3139, - [3306] = 3141, - [3307] = 3145, - [3308] = 3147, - [3309] = 3132, - [3310] = 3139, + [3300] = 3235, + [3301] = 3286, + [3302] = 3302, + [3303] = 3303, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, + [3310] = 3255, [3311] = 3311, - [3312] = 3132, - [3313] = 3133, - [3314] = 3174, - [3315] = 3175, - [3316] = 3174, + [3312] = 3312, + [3313] = 3302, + [3314] = 3314, + [3315] = 3315, + [3316] = 3316, [3317] = 3317, - [3318] = 3146, - [3319] = 3153, + [3318] = 3318, + [3319] = 1844, [3320] = 3320, - [3321] = 3196, - [3322] = 3211, - [3323] = 3135, - [3324] = 3135, - [3325] = 3141, - [3326] = 3132, + [3321] = 3281, + [3322] = 3293, + [3323] = 3299, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, [3327] = 3327, - [3328] = 3328, - [3329] = 3134, - [3330] = 3139, - [3331] = 3141, - [3332] = 3145, - [3333] = 3147, + [3328] = 1845, + [3329] = 3315, + [3330] = 3330, + [3331] = 3331, + [3332] = 3332, + [3333] = 3333, [3334] = 3334, - [3335] = 3209, - [3336] = 3169, + [3335] = 3335, + [3336] = 3336, [3337] = 3337, [3338] = 3338, [3339] = 3339, [3340] = 3340, - [3341] = 3341, - [3342] = 3339, + [3341] = 1846, + [3342] = 3249, [3343] = 3343, - [3344] = 3344, - [3345] = 3340, - [3346] = 3346, - [3347] = 3341, - [3348] = 3337, - [3349] = 3349, + [3344] = 1850, + [3345] = 3315, + [3346] = 1852, + [3347] = 3273, + [3348] = 3228, + [3349] = 1843, [3350] = 3337, [3351] = 3351, - [3352] = 3352, - [3353] = 3353, + [3352] = 3228, + [3353] = 3229, [3354] = 3354, - [3355] = 3355, - [3356] = 3356, + [3355] = 3228, + [3356] = 3229, [3357] = 3357, - [3358] = 3337, + [3358] = 3358, [3359] = 3359, - [3360] = 3360, - [3361] = 3361, - [3362] = 3362, - [3363] = 3339, + [3360] = 3240, + [3361] = 3241, + [3362] = 3243, + [3363] = 3232, [3364] = 3364, - [3365] = 3365, - [3366] = 3339, - [3367] = 3356, - [3368] = 3339, - [3369] = 3369, - [3370] = 3356, - [3371] = 3371, - [3372] = 3341, - [3373] = 3361, - [3374] = 3353, - [3375] = 3369, - [3376] = 3339, - [3377] = 3339, - [3378] = 3378, - [3379] = 3337, - [3380] = 3380, + [3365] = 3255, + [3366] = 3366, + [3367] = 3367, + [3368] = 3259, + [3369] = 3240, + [3370] = 3274, + [3371] = 3275, + [3372] = 3280, + [3373] = 3241, + [3374] = 3259, + [3375] = 3375, + [3376] = 3298, + [3377] = 3377, + [3378] = 3302, + [3379] = 3303, + [3380] = 3243, [3381] = 3381, - [3382] = 3382, - [3383] = 3361, - [3384] = 3353, - [3385] = 3339, + [3382] = 3281, + [3383] = 3383, + [3384] = 3384, + [3385] = 3273, [3386] = 3386, - [3387] = 3387, - [3388] = 3339, - [3389] = 3340, + [3387] = 3281, + [3388] = 3274, + [3389] = 3389, [3390] = 3390, - [3391] = 3391, - [3392] = 3392, + [3391] = 3241, + [3392] = 3275, [3393] = 3393, [3394] = 3394, [3395] = 3395, - [3396] = 3396, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, + [3396] = 3255, + [3397] = 3274, + [3398] = 3280, + [3399] = 3302, [3400] = 3400, - [3401] = 3401, - [3402] = 3396, - [3403] = 3403, - [3404] = 3404, - [3405] = 3405, + [3401] = 3255, + [3402] = 3280, + [3403] = 3331, + [3404] = 3255, + [3405] = 3280, [3406] = 3406, - [3407] = 3407, + [3407] = 3337, [3408] = 3408, [3409] = 3409, [3410] = 3410, - [3411] = 3394, + [3411] = 3359, [3412] = 3412, - [3413] = 3394, + [3413] = 3279, [3414] = 3414, - [3415] = 3415, - [3416] = 3416, + [3415] = 3279, + [3416] = 3280, [3417] = 3417, - [3418] = 3418, + [3418] = 3335, [3419] = 3419, - [3420] = 3420, - [3421] = 3421, - [3422] = 3422, + [3420] = 3277, + [3421] = 3297, + [3422] = 3331, [3423] = 3423, - [3424] = 3424, - [3425] = 3425, + [3424] = 1844, + [3425] = 3274, [3426] = 3426, [3427] = 3427, [3428] = 3428, [3429] = 3429, [3430] = 3430, - [3431] = 3431, + [3431] = 3280, [3432] = 3432, - [3433] = 3433, - [3434] = 3394, + [3433] = 1845, + [3434] = 1846, [3435] = 3435, [3436] = 3436, [3437] = 3437, - [3438] = 3438, - [3439] = 3439, + [3438] = 3263, + [3439] = 3255, [3440] = 3440, - [3441] = 3441, - [3442] = 3400, - [3443] = 3393, - [3444] = 3430, - [3445] = 3430, - [3446] = 3446, + [3441] = 1850, + [3442] = 3337, + [3443] = 1852, + [3444] = 3334, + [3445] = 3445, + [3446] = 1843, [3447] = 3447, - [3448] = 3422, - [3449] = 3400, + [3448] = 3448, + [3449] = 3449, [3450] = 3450, - [3451] = 3451, - [3452] = 3452, + [3451] = 3335, + [3452] = 3338, [3453] = 3453, [3454] = 3454, [3455] = 3455, [3456] = 3456, [3457] = 3457, - [3458] = 3458, - [3459] = 3431, - [3460] = 3430, - [3461] = 3393, + [3458] = 3292, + [3459] = 3459, + [3460] = 3240, + [3461] = 3461, [3462] = 3462, [3463] = 3463, [3464] = 3464, - [3465] = 3465, + [3465] = 3293, [3466] = 3466, [3467] = 3467, [3468] = 3468, [3469] = 3469, - [3470] = 3422, + [3470] = 3470, [3471] = 3471, - [3472] = 3394, + [3472] = 3472, [3473] = 3473, - [3474] = 3400, - [3475] = 3393, - [3476] = 3430, - [3477] = 3477, + [3474] = 3232, + [3475] = 3298, + [3476] = 3476, + [3477] = 3235, [3478] = 3478, [3479] = 3479, - [3480] = 3480, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, + [3480] = 3286, + [3481] = 3302, + [3482] = 3303, + [3483] = 3259, [3484] = 3484, - [3485] = 3485, + [3485] = 3299, [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3489, - [3490] = 3490, - [3491] = 3491, - [3492] = 3492, + [3489] = 3273, + [3490] = 3274, + [3491] = 3308, + [3492] = 3275, [3493] = 3493, [3494] = 3494, - [3495] = 3495, - [3496] = 3422, + [3495] = 3338, + [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3499, - [3500] = 3500, - [3501] = 3430, + [3499] = 3309, + [3500] = 3279, + [3501] = 3280, [3502] = 3502, [3503] = 3503, - [3504] = 3504, + [3504] = 3255, [3505] = 3505, [3506] = 3506, - [3507] = 3507, + [3507] = 3309, [3508] = 3508, [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, + [3510] = 3249, + [3511] = 3241, + [3512] = 3298, [3513] = 3513, [3514] = 3514, - [3515] = 3515, + [3515] = 3312, [3516] = 3516, - [3517] = 3517, + [3517] = 3303, [3518] = 3518, [3519] = 3519, - [3520] = 3520, + [3520] = 3292, [3521] = 3521, [3522] = 3522, - [3523] = 3523, - [3524] = 3430, + [3523] = 3359, + [3524] = 3316, [3525] = 3525, [3526] = 3526, - [3527] = 3394, - [3528] = 3400, - [3529] = 3529, - [3530] = 3430, - [3531] = 3531, - [3532] = 3532, - [3533] = 3453, - [3534] = 3534, - [3535] = 3535, + [3527] = 3277, + [3528] = 3297, + [3529] = 3298, + [3530] = 3292, + [3531] = 3281, + [3532] = 3293, + [3533] = 3299, + [3534] = 3426, + [3535] = 3427, [3536] = 3536, [3537] = 3537, - [3538] = 3538, - [3539] = 3431, - [3540] = 3430, + [3538] = 3235, + [3539] = 3275, + [3540] = 3540, [3541] = 3541, - [3542] = 3453, - [3543] = 3453, - [3544] = 3396, + [3542] = 3286, + [3543] = 3302, + [3544] = 3303, [3545] = 3545, - [3546] = 3431, - [3547] = 3453, + [3546] = 3546, + [3547] = 3547, [3548] = 3548, - [3549] = 3431, + [3549] = 3312, [3550] = 3550, [3551] = 3551, + [3552] = 3426, + [3553] = 3553, + [3554] = 3554, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3315, + [3559] = 3359, + [3560] = 3560, + [3561] = 3561, + [3562] = 3308, + [3563] = 3563, + [3564] = 3277, + [3565] = 3297, + [3566] = 3426, + [3567] = 3427, + [3568] = 3568, + [3569] = 3569, + [3570] = 3570, + [3571] = 3359, + [3572] = 3277, + [3573] = 3297, + [3574] = 3426, + [3575] = 3427, + [3576] = 3359, + [3577] = 3277, + [3578] = 3297, + [3579] = 3426, + [3580] = 3427, + [3581] = 3331, + [3582] = 3582, + [3583] = 3583, + [3584] = 3584, + [3585] = 3585, + [3586] = 3586, + [3587] = 3587, + [3588] = 3316, + [3589] = 3589, + [3590] = 3316, + [3591] = 3335, + [3592] = 3592, + [3593] = 3308, + [3594] = 3309, + [3595] = 3338, + [3596] = 3596, + [3597] = 3337, + [3598] = 3598, + [3599] = 3599, + [3600] = 3427, + [3601] = 3249, + [3602] = 3228, + [3603] = 3603, + [3604] = 3604, + [3605] = 3229, + [3606] = 3606, + [3607] = 3607, + [3608] = 3312, + [3609] = 3609, + [3610] = 3610, + [3611] = 3611, + [3612] = 3612, + [3613] = 3613, + [3614] = 3614, + [3615] = 3615, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, + [3620] = 3620, + [3621] = 3621, + [3622] = 3616, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3626, + [3627] = 3627, + [3628] = 3628, + [3629] = 3629, + [3630] = 3630, + [3631] = 3631, + [3632] = 3624, + [3633] = 3625, + [3634] = 3621, + [3635] = 3635, + [3636] = 3631, + [3637] = 3627, + [3638] = 3638, + [3639] = 3639, + [3640] = 3640, + [3641] = 3641, + [3642] = 3642, + [3643] = 3643, + [3644] = 3644, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3628, + [3649] = 3649, + [3650] = 3650, + [3651] = 3616, + [3652] = 3652, + [3653] = 3653, + [3654] = 3624, + [3655] = 3653, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3650, + [3664] = 3664, + [3665] = 3665, + [3666] = 3666, + [3667] = 3619, + [3668] = 3668, + [3669] = 3621, + [3670] = 3670, + [3671] = 3671, + [3672] = 3640, + [3673] = 3617, + [3674] = 3631, + [3675] = 3675, + [3676] = 3676, + [3677] = 3644, + [3678] = 3664, + [3679] = 3679, + [3680] = 3656, + [3681] = 3625, + [3682] = 3682, + [3683] = 3627, + [3684] = 3613, + [3685] = 3628, + [3686] = 3686, + [3687] = 3629, + [3688] = 3688, + [3689] = 3630, + [3690] = 3638, + [3691] = 3691, + [3692] = 3692, + [3693] = 3658, + [3694] = 3694, + [3695] = 3695, + [3696] = 3696, + [3697] = 3621, + [3698] = 3664, + [3699] = 3666, + [3700] = 3643, + [3701] = 3649, + [3702] = 3646, + [3703] = 3640, + [3704] = 3704, + [3705] = 3626, + [3706] = 3639, + [3707] = 3618, + [3708] = 3625, + [3709] = 3656, + [3710] = 3642, + [3711] = 3613, + [3712] = 3658, + [3713] = 3704, + [3714] = 3664, + [3715] = 3621, + [3716] = 3624, + [3717] = 3717, + [3718] = 3653, + [3719] = 3643, + [3720] = 3720, + [3721] = 3629, + [3722] = 3717, + [3723] = 3627, + [3724] = 3628, + [3725] = 3725, + [3726] = 3629, + [3727] = 3646, + [3728] = 3659, + [3729] = 3618, + [3730] = 3658, + [3731] = 3731, + [3732] = 3643, + [3733] = 3733, + [3734] = 3646, + [3735] = 3624, + [3736] = 3736, + [3737] = 3659, + [3738] = 3640, + [3739] = 3642, + [3740] = 3644, + [3741] = 3645, + [3742] = 3650, + [3743] = 3743, + [3744] = 3625, + [3745] = 3627, + [3746] = 3628, + [3747] = 3629, + [3748] = 3731, + [3749] = 3624, + [3750] = 3640, + [3751] = 3642, + [3752] = 3644, + [3753] = 3645, + [3754] = 3650, + [3755] = 3630, + [3756] = 3756, + [3757] = 3630, + [3758] = 3660, + [3759] = 3759, + [3760] = 3661, + [3761] = 3666, + [3762] = 3616, + [3763] = 3619, + [3764] = 3617, + [3765] = 3649, + [3766] = 3660, + [3767] = 3661, + [3768] = 3666, + [3769] = 3619, + [3770] = 3638, + [3771] = 3660, + [3772] = 3626, + [3773] = 3671, + [3774] = 3661, + [3775] = 3666, + [3776] = 3619, + [3777] = 3777, + [3778] = 3778, + [3779] = 3616, + [3780] = 3617, + [3781] = 3639, + [3782] = 3694, + [3783] = 3736, + [3784] = 3784, + [3785] = 3644, + [3786] = 3645, + [3787] = 3644, + [3788] = 3694, + [3789] = 3661, + [3790] = 3790, + [3791] = 3791, + [3792] = 3624, + [3793] = 3640, + [3794] = 3642, + [3795] = 3644, + [3796] = 3645, + [3797] = 3650, + [3798] = 3631, + [3799] = 3799, + [3800] = 3618, + [3801] = 3649, + [3802] = 3638, + [3803] = 3803, + [3804] = 3640, + [3805] = 3639, + [3806] = 3806, + [3807] = 3658, + [3808] = 3664, + [3809] = 3645, + [3810] = 3810, + [3811] = 3627, + [3812] = 3628, + [3813] = 3629, + [3814] = 3630, + [3815] = 3642, + [3816] = 3704, + [3817] = 3660, + [3818] = 3818, + [3819] = 3661, + [3820] = 3666, + [3821] = 3821, + [3822] = 3822, + [3823] = 3624, + [3824] = 3640, + [3825] = 3642, + [3826] = 3644, + [3827] = 3645, + [3828] = 3650, + [3829] = 3619, + [3830] = 3617, + [3831] = 3616, + [3832] = 3617, + [3833] = 3671, + [3834] = 3834, + [3835] = 3835, + [3836] = 3642, + [3837] = 3704, + [3838] = 3838, + [3839] = 3645, + [3840] = 3656, + [3841] = 3653, + [3842] = 3626, + [3843] = 3717, + [3844] = 3650, + [3845] = 3717, + [3846] = 3613, + [3847] = 3694, + [3848] = 3658, + [3849] = 3664, + [3850] = 3659, + [3851] = 3656, + [3852] = 3613, + [3853] = 3853, + [3854] = 3854, + [3855] = 3671, + [3856] = 3731, + [3857] = 3660, + [3858] = 3650, + [3859] = 3859, + [3860] = 3860, + [3861] = 3624, + [3862] = 3640, + [3863] = 3642, + [3864] = 3644, + [3865] = 3645, + [3866] = 3650, + [3867] = 3731, + [3868] = 3736, + [3869] = 3736, + [3870] = 3630, + [3871] = 3871, + [3872] = 3872, + [3873] = 3873, + [3874] = 3874, + [3875] = 3875, + [3876] = 3876, + [3877] = 3877, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 3873, + [3882] = 3882, + [3883] = 3883, + [3884] = 3873, + [3885] = 3885, + [3886] = 3879, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3891, + [3892] = 3892, + [3893] = 3893, + [3894] = 3894, + [3895] = 3894, + [3896] = 3879, + [3897] = 3897, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3893, + [3903] = 3879, + [3904] = 3877, + [3905] = 3905, + [3906] = 3873, + [3907] = 3907, + [3908] = 3908, + [3909] = 3878, + [3910] = 3910, + [3911] = 3873, + [3912] = 3878, + [3913] = 3913, + [3914] = 3914, + [3915] = 3875, + [3916] = 3873, + [3917] = 3879, + [3918] = 3918, + [3919] = 3875, + [3920] = 3920, + [3921] = 3872, + [3922] = 3922, + [3923] = 3923, + [3924] = 3878, + [3925] = 3925, + [3926] = 3873, + [3927] = 3875, + [3928] = 3873, + [3929] = 3929, + [3930] = 3930, + [3931] = 3877, + [3932] = 3932, + [3933] = 3894, + [3934] = 3934, + [3935] = 3873, + [3936] = 3872, + [3937] = 3877, + [3938] = 3894, + [3939] = 3872, + [3940] = 3940, + [3941] = 3879, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3950, + [3951] = 3951, + [3952] = 3952, + [3953] = 3953, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3957, + [3958] = 3958, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3952, + [3963] = 3963, + [3964] = 3964, + [3965] = 3965, + [3966] = 3966, + [3967] = 3967, + [3968] = 3968, + [3969] = 3964, + [3970] = 3970, + [3971] = 3970, + [3972] = 3972, + [3973] = 3959, + [3974] = 3974, + [3975] = 3975, + [3976] = 3976, + [3977] = 3977, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3952, + [3982] = 3982, + [3983] = 3964, + [3984] = 3970, + [3985] = 3956, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 3964, + [3991] = 3991, + [3992] = 3956, + [3993] = 3993, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 3964, + [3998] = 3994, + [3999] = 3999, + [4000] = 3945, + [4001] = 3959, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, + [4005] = 3956, + [4006] = 4006, + [4007] = 3970, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 3964, + [4013] = 4013, + [4014] = 4014, + [4015] = 3956, + [4016] = 4016, + [4017] = 3959, + [4018] = 4018, + [4019] = 3976, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 3959, + [4028] = 4028, + [4029] = 4029, + [4030] = 3956, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 3976, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 4041, + [4042] = 4042, + [4043] = 3952, + [4044] = 4044, + [4045] = 4045, + [4046] = 4046, + [4047] = 3959, + [4048] = 4048, + [4049] = 4049, + [4050] = 4050, + [4051] = 4051, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 3959, + [4056] = 4056, + [4057] = 3976, + [4058] = 4058, + [4059] = 4059, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 3959, + [4066] = 4066, + [4067] = 4067, + [4068] = 3952, + [4069] = 3956, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 3994, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 4079, + [4080] = 3945, + [4081] = 3959, + [4082] = 4082, + [4083] = 3970, + [4084] = 4084, + [4085] = 3994, + [4086] = 4086, + [4087] = 4087, + [4088] = 3945, + [4089] = 4089, + [4090] = 3994, + [4091] = 4091, + [4092] = 4092, + [4093] = 3945, + [4094] = 3994, + [4095] = 4095, + [4096] = 3945, + [4097] = 4097, + [4098] = 4098, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7450,588 +8040,695 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(15); + if (eof) ADVANCE(19); ADVANCE_MAP( - '\n', 95, - '!', 18, - '"', 88, - '#', 94, - '$', 29, - '&', 62, - '\'', 7, - '(', 21, - ')', 22, - '*', 35, - '+', 72, - ',', 24, - '-', 27, - '.', 76, - '/', 74, - ':', 49, - ';', 37, - '<', 55, - '=', 20, - '>', 58, - '?', 32, - '@', 33, - '[', 36, - '\\', 9, - ']', 38, - '^', 79, - '`', 92, - 'x', 80, - '{', 23, - '|', 31, - '}', 25, - '~', 75, + '\n', 100, + '!', 22, + '"', 93, + '#', 99, + '$', 33, + '&', 67, + '\'', 10, + '(', 25, + ')', 26, + '*', 39, + '+', 77, + ',', 28, + '-', 31, + '.', 81, + '/', 79, + ':', 53, + ';', 41, + '<', 60, + '=', 24, + '>', 63, + '?', 36, + '@', 37, + '[', 40, + '\\', 12, + ']', 42, + '^', 84, + '`', 97, + 'x', 85, + '{', 27, + '|', 54, + '}', 29, + '~', 80, ); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(84); + lookahead == ' ') SKIP(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 1: ADVANCE_MAP( - '\n', 95, - '!', 17, - '"', 88, - '#', 94, - '$', 29, - '&', 61, - '\'', 7, - '(', 21, - ')', 22, - '*', 34, - ',', 24, - '-', 26, - '.', 78, - ';', 37, - '?', 32, - '@', 33, - '[', 36, - ']', 38, - '`', 92, - '{', 23, - '|', 30, - '}', 25, - '~', 75, + '\n', 100, + '!', 22, + '#', 99, + '&', 66, + '\'', 10, + '(', 25, + '*', 38, + '+', 76, + ',', 28, + '-', 30, + '.', 81, + '/', 78, + '<', 61, + '=', 9, + '>', 64, + '?', 36, + '@', 37, + '[', 40, + '^', 84, + 'x', 86, + '{', 27, + '|', 54, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(95); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '$') ADVANCE(29); - if (lookahead == '\'') ADVANCE(7); - if (lookahead == ')') ADVANCE(22); - if (lookahead == '-') ADVANCE(26); - if (lookahead == '.') ADVANCE(5); + ADVANCE_MAP( + '\n', 100, + '!', 21, + '"', 93, + '#', 99, + '$', 33, + '&', 66, + '\'', 10, + '(', 25, + ')', 26, + '*', 38, + ',', 28, + '-', 30, + '.', 83, + ';', 41, + '?', 36, + '@', 37, + '[', 40, + ']', 42, + '`', 97, + '{', 27, + '|', 34, + '}', 29, + '~', 80, + ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(88); - if (lookahead == '#') ADVANCE(90); - if (lookahead == '\\') ADVANCE(9); + ADVANCE_MAP( + '\n', 100, + '!', 21, + '"', 93, + '#', 99, + '$', 33, + '&', 66, + '\'', 10, + '(', 25, + '*', 38, + '-', 30, + '.', 82, + ';', 41, + '[', 40, + ']', 42, + '`', 97, + '{', 27, + '|', 54, + '~', 80, + ); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(89); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(90); + lookahead == ' ') SKIP(3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 4: - if (lookahead == '\'') ADVANCE(93); + if (lookahead == '\n') ADVANCE(100); + if (lookahead == '#') ADVANCE(99); + if (lookahead == '$') ADVANCE(33); + if (lookahead == ')') ADVANCE(26); + if (lookahead == '.') ADVANCE(7); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(6); + if (lookahead == '"') ADVANCE(93); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(94); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(95); END_STATE(); case 6: - if (lookahead == '.') ADVANCE(28); + if (lookahead == '\'') ADVANCE(98); END_STATE(); case 7: - if (lookahead == '\\') ADVANCE(10); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\'') ADVANCE(4); + if (lookahead == '.') ADVANCE(8); END_STATE(); case 8: - if (lookahead == '`') ADVANCE(92); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(8); + if (lookahead == '.') ADVANCE(32); END_STATE(); case 9: + if (lookahead == '=') ADVANCE(58); + END_STATE(); + case 10: + if (lookahead == '\\') ADVANCE(13); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'') ADVANCE(6); + END_STATE(); + case 11: + if (lookahead == '`') ADVANCE(97); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(11); + END_STATE(); + case 12: if (lookahead == '"' || lookahead == '0' || lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(91); + lookahead == 't') ADVANCE(96); END_STATE(); - case 10: + case 13: if (lookahead == '\'' || lookahead == '0' || lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(4); - END_STATE(); - case 11: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - END_STATE(); - case 12: - if (eof) ADVANCE(15); - ADVANCE_MAP( - '\n', 95, - '!', 18, - '"', 88, - '#', 94, - '$', 29, - '&', 62, - '\'', 7, - '(', 21, - ')', 22, - '*', 35, - '+', 72, - ',', 24, - '-', 27, - '.', 76, - '/', 74, - ':', 49, - ';', 37, - '<', 55, - '=', 20, - '>', 58, - '?', 32, - '@', 33, - '[', 36, - ']', 38, - '^', 79, - '`', 92, - 'x', 80, - '{', 23, - '|', 31, - '}', 25, - '~', 75, - ); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); - END_STATE(); - case 13: - if (eof) ADVANCE(15); - ADVANCE_MAP( - '\n', 95, - '!', 18, - '"', 88, - '#', 94, - '$', 29, - '&', 61, - '\'', 7, - '(', 21, - ')', 22, - '*', 34, - '+', 71, - ',', 24, - '-', 26, - '.', 76, - '/', 73, - ':', 49, - ';', 37, - '<', 56, - '=', 20, - '>', 59, - '?', 32, - '@', 33, - '[', 36, - ']', 38, - '^', 79, - '`', 92, - 'x', 81, - '{', 23, - '|', 30, - '}', 25, - '~', 75, - ); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(13); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); + lookahead == 't') ADVANCE(6); END_STATE(); case 14: - if (eof) ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); + END_STATE(); + case 15: + if (eof) ADVANCE(19); ADVANCE_MAP( - '\n', 95, - '!', 17, - '"', 88, - '#', 94, - '$', 29, - '&', 61, - '\'', 7, - '(', 21, - ')', 22, - '*', 34, - ',', 24, - '-', 26, - '.', 77, - ':', 49, - ';', 37, - '=', 19, - '?', 32, - '@', 33, - '[', 36, - ']', 38, - '`', 92, - '{', 23, - '|', 30, - '}', 25, - '~', 75, + '\n', 100, + '!', 22, + '"', 93, + '#', 99, + '$', 33, + '&', 67, + '\'', 10, + '(', 25, + ')', 26, + '*', 39, + '+', 77, + ',', 28, + '-', 31, + '.', 81, + '/', 79, + ':', 53, + ';', 41, + '<', 60, + '=', 24, + '>', 63, + '?', 36, + '@', 37, + '[', 40, + ']', 42, + '^', 84, + '`', 97, + 'x', 85, + '{', 27, + '|', 54, + '}', 29, + '~', 80, ); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + lookahead == ' ') SKIP(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); - END_STATE(); - case 15: - ACCEPT_TOKEN(ts_builtin_sym_end); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 16: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (eof) ADVANCE(19); + ADVANCE_MAP( + '\n', 100, + '!', 22, + '"', 93, + '#', 99, + '$', 33, + '&', 67, + '\'', 10, + '(', 25, + ')', 26, + '*', 39, + '+', 77, + ',', 28, + '-', 31, + '.', 81, + '/', 79, + ':', 53, + ';', 41, + '<', 60, + '=', 24, + '>', 63, + '?', 36, + '@', 37, + '[', 40, + ']', 42, + '^', 84, + '`', 97, + 'x', 85, + '{', 27, + '|', 35, + '}', 29, + '~', 80, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_BANG); + if (eof) ADVANCE(19); + ADVANCE_MAP( + '\n', 100, + '!', 22, + '"', 93, + '#', 99, + '$', 33, + '&', 66, + '\'', 10, + '(', 25, + ')', 26, + '*', 38, + '+', 76, + ',', 28, + '-', 30, + '.', 81, + '/', 78, + ':', 53, + ';', 41, + '<', 61, + '=', 24, + '>', 64, + '?', 36, + '@', 37, + '[', 40, + ']', 42, + '^', 84, + '`', 97, + 'x', 86, + '{', 27, + '|', 34, + '}', 29, + '~', 80, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(54); + if (eof) ADVANCE(19); + ADVANCE_MAP( + '\n', 100, + '!', 21, + '"', 93, + '#', 99, + '$', 33, + '&', 66, + '\'', 10, + '(', 25, + ')', 26, + '*', 38, + ',', 28, + '-', 30, + '.', 82, + ':', 53, + ';', 41, + '=', 23, + '?', 36, + '@', 37, + '[', 40, + ']', 42, + '`', 97, + '{', 27, + '|', 34, + '}', 29, + '~', 80, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 20: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(53); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 21: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(59); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(58); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(44); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(41); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(48); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(45); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_xor_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_LT_LT_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(16); + ACCEPT_TOKEN(anon_sym_xor_EQ); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '=') ADVANCE(52); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE_EQ); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(20); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PIPE2); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(65); - if (lookahead == '=') ADVANCE(57); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '=') ADVANCE(57); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(60); - if (lookahead == '>') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(60); - if (lookahead == '>') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(62); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(71); + if (lookahead == '=') ADVANCE(62); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '=') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(65); + if (lookahead == '>') ADVANCE(73); END_STATE(); case 64: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(65); + if (lookahead == '>') ADVANCE(72); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(47); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '=') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + END_STATE(); + case 69: ACCEPT_TOKEN(anon_sym_xor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '|') ADVANCE(70); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '|') ADVANCE(69); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(47); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); - if (lookahead == '=') ADVANCE(48); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '|') ADVANCE(75); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '|') ADVANCE(74); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(39); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(51); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + if (lookahead == '=') ADVANCE(52); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(51); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(50); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(43); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(6); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(46); END_STATE(); case 80: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 81: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(56); END_STATE(); case 82: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(55); END_STATE(); case 83: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(8); END_STATE(); case 84: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 85: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + END_STATE(); + case 86: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + END_STATE(); + case 87: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + END_STATE(); + case 89: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); - case 85: + case 90: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + if (lookahead == '.') ADVANCE(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 86: + case 91: ACCEPT_TOKEN(sym_integer); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); - case 87: + case 92: ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); END_STATE(); - case 88: + case 93: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 89: + case 94: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '#') ADVANCE(90); + if (lookahead == '#') ADVANCE(95); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(89); + lookahead == ' ') ADVANCE(94); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(90); + lookahead != '\\') ADVANCE(95); END_STATE(); - case 90: + case 95: ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(90); + lookahead != '\\') ADVANCE(95); END_STATE(); - case 91: + case 96: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 92: + case 97: ACCEPT_TOKEN(sym_multiline_string); - if (lookahead == '\n') ADVANCE(8); - if (lookahead != 0) ADVANCE(92); + if (lookahead == '\n') ADVANCE(11); + if (lookahead != 0) ADVANCE(97); END_STATE(); - case 93: + case 98: ACCEPT_TOKEN(sym_character); END_STATE(); - case 94: + case 99: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(94); + lookahead != '\n') ADVANCE(99); END_STATE(); - case 95: + case 100: ACCEPT_TOKEN(sym__newline); END_STATE(); default: @@ -8139,100 +8836,101 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 15: if (lookahead == 'e') ADVANCE(56); if (lookahead == 'r') ADVANCE(57); + if (lookahead == 'y') ADVANCE(58); END_STATE(); case 16: - if (lookahead == '1') ADVANCE(58); - if (lookahead == '3') ADVANCE(59); - if (lookahead == '6') ADVANCE(60); - if (lookahead == '8') ADVANCE(61); - if (lookahead == 'i') ADVANCE(62); - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 's') ADVANCE(64); + if (lookahead == '1') ADVANCE(59); + if (lookahead == '3') ADVANCE(60); + if (lookahead == '6') ADVANCE(61); + if (lookahead == '8') ADVANCE(62); + if (lookahead == 'i') ADVANCE(63); + if (lookahead == 'n') ADVANCE(64); + if (lookahead == 's') ADVANCE(65); END_STATE(); case 17: - if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'o') ADVANCE(66); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'h') ADVANCE(67); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(67); - END_STATE(); - case 20: if (lookahead == 'i') ADVANCE(68); END_STATE(); + case 20: + if (lookahead == 'i') ADVANCE(69); + END_STATE(); case 21: - if (lookahead == 'd') ADVANCE(69); - if (lookahead == 'y') ADVANCE(70); + if (lookahead == 'd') ADVANCE(70); + if (lookahead == 'y') ADVANCE(71); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(72); + if (lookahead == 'e') ADVANCE(73); END_STATE(); case 24: - if (lookahead == 'c') ADVANCE(73); - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'f') ADVANCE(75); - if (lookahead == 'i') ADVANCE(76); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 's') ADVANCE(78); - if (lookahead == 'u') ADVANCE(79); + if (lookahead == 'c') ADVANCE(74); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'f') ADVANCE(76); + if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 's') ADVANCE(79); + if (lookahead == 'u') ADVANCE(80); END_STATE(); case 25: - if (lookahead == 't') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(82); + if (lookahead == 'f') ADVANCE(83); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(83); - END_STATE(); - case 29: if (lookahead == 's') ADVANCE(84); END_STATE(); + case 29: + if (lookahead == 's') ADVANCE(85); + END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(85); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 31: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'r') ADVANCE(87); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(87); + if (lookahead == 'p') ADVANCE(88); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(88); + if (lookahead == '2') ADVANCE(89); END_STATE(); case 34: - if (lookahead == '4') ADVANCE(89); + if (lookahead == '4') ADVANCE(90); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 36: - if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'o') ADVANCE(92); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(93); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 39: - if (lookahead == 'd') ADVANCE(94); + if (lookahead == 'd') ADVANCE(95); END_STATE(); case 40: - if (lookahead == '6') ADVANCE(95); + if (lookahead == '6') ADVANCE(96); END_STATE(); case 41: - if (lookahead == '2') ADVANCE(96); + if (lookahead == '2') ADVANCE(97); END_STATE(); case 42: - if (lookahead == '4') ADVANCE(97); + if (lookahead == '4') ADVANCE(98); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_i8); @@ -8241,678 +8939,687 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(98); + if (lookahead == 'p') ADVANCE(99); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(99); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(100); + if (lookahead == 'i') ADVANCE(101); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(101); - END_STATE(); - case 49: if (lookahead == 't') ADVANCE(102); END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(103); + END_STATE(); case 50: - if (lookahead == 'n') ADVANCE(103); + if (lookahead == 'n') ADVANCE(104); END_STATE(); case 51: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'a') ADVANCE(105); END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 53: - if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'n') ADVANCE(107); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 55: - if (lookahead == 'r') ADVANCE(108); + if (lookahead == 'r') ADVANCE(109); END_STATE(); case 56: - if (lookahead == 's') ADVANCE(109); + if (lookahead == 's') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(110); - if (lookahead == 'y') ADVANCE(111); + if (lookahead == 'u') ADVANCE(111); + if (lookahead == 'y') ADVANCE(112); END_STATE(); case 58: - if (lookahead == '6') ADVANCE(112); + if (lookahead == 'p') ADVANCE(113); END_STATE(); case 59: - if (lookahead == '2') ADVANCE(113); + if (lookahead == '6') ADVANCE(114); END_STATE(); case 60: - if (lookahead == '4') ADVANCE(114); + if (lookahead == '2') ADVANCE(115); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '4') ADVANCE(116); END_STATE(); case 62: - if (lookahead == 'n') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 63: - if (lookahead == 'd') ADVANCE(116); - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'n') ADVANCE(117); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(118); - END_STATE(); - case 65: + if (lookahead == 'd') ADVANCE(118); if (lookahead == 'i') ADVANCE(119); END_STATE(); - case 66: + case 65: if (lookahead == 'i') ADVANCE(120); END_STATE(); + case 66: + if (lookahead == 'i') ADVANCE(121); + END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'i') ADVANCE(122); END_STATE(); case 68: - if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'e') ADVANCE(123); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'a') ADVANCE(124); END_STATE(); case 70: - if (lookahead == 'o') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 71: - if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 72: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 73: - if (lookahead == 'h') ADVANCE(126); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 74: - if (lookahead == 'o') ADVANCE(127); + if (lookahead == 'h') ADVANCE(128); END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(128); - if (lookahead == 'u') ADVANCE(129); + if (lookahead == 'o') ADVANCE(129); END_STATE(); case 76: - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'u') ADVANCE(131); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'n') ADVANCE(132); END_STATE(); case 78: - if (lookahead == 'c') ADVANCE(132); - if (lookahead == 'h') ADVANCE(133); - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 79: - if (lookahead == 'c') ADVANCE(135); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'l') ADVANCE(137); - if (lookahead == 's') ADVANCE(138); + if (lookahead == 'c') ADVANCE(134); + if (lookahead == 'h') ADVANCE(135); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 80: - if (lookahead == 'c') ADVANCE(139); + if (lookahead == 'c') ADVANCE(137); + if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'l') ADVANCE(139); + if (lookahead == 's') ADVANCE(140); END_STATE(); case 81: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'c') ADVANCE(141); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(141); - END_STATE(); - case 83: if (lookahead == 't') ADVANCE(142); END_STATE(); - case 84: + case 83: if (lookahead == 'e') ADVANCE(143); END_STATE(); + case 84: + if (lookahead == 't') ADVANCE(144); + END_STATE(); case 85: - if (lookahead == 'm') ADVANCE(144); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 86: - if (lookahead == 'd') ADVANCE(145); + if (lookahead == 'm') ADVANCE(146); END_STATE(); case 87: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'd') ADVANCE(147); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_f32); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_f64); - END_STATE(); - case 90: - if (lookahead == 's') ADVANCE(147); - END_STATE(); - case 91: if (lookahead == 'a') ADVANCE(148); END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_f32); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_f64); + END_STATE(); + case 91: + if (lookahead == 's') ADVANCE(149); + END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 93: - if (lookahead == 'c') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'c') ADVANCE(151); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'o') ADVANCE(153); END_STATE(); case 100: - if (lookahead == 'z') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 101: - if (lookahead == 'c') ADVANCE(153); + if (lookahead == 'z') ADVANCE(154); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == 'c') ADVANCE(155); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 104: - if (lookahead == 'q') ADVANCE(155); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 105: - if (lookahead == 'l') ADVANCE(156); + if (lookahead == 'q') ADVANCE(157); END_STATE(); case 106: - if (lookahead == 'g') ADVANCE(157); + if (lookahead == 'l') ADVANCE(158); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'g') ADVANCE(159); END_STATE(); case 108: - if (lookahead == 'u') ADVANCE(159); + if (lookahead == 'u') ADVANCE(160); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(160); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(161); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_u16); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_u32); - END_STATE(); - case 114: - ACCEPT_TOKEN(anon_sym_u64); - END_STATE(); - case 115: if (lookahead == 't') ADVANCE(162); END_STATE(); - case 116: + case 111: if (lookahead == 'e') ADVANCE(163); END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(164); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); case 117: - if (lookahead == 'o') ADVANCE(164); + if (lookahead == 't') ADVANCE(165); END_STATE(); case 118: - if (lookahead == 'z') ADVANCE(165); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 119: - if (lookahead == 'd') ADVANCE(166); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 120: - if (lookahead == 'l') ADVANCE(167); + if (lookahead == 'z') ADVANCE(168); END_STATE(); case 121: - if (lookahead == 'l') ADVANCE(168); + if (lookahead == 'd') ADVANCE(169); END_STATE(); case 122: - if (lookahead == 's') ADVANCE(169); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 123: - if (lookahead == 'p') ADVANCE(170); + if (lookahead == 'l') ADVANCE(171); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 's') ADVANCE(172); END_STATE(); case 125: - if (lookahead == 'k') ADVANCE(171); + if (lookahead == 'p') ADVANCE(173); END_STATE(); case 126: - if (lookahead == 'a') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 127: - if (lookahead == 'u') ADVANCE(173); + if (lookahead == 'k') ADVANCE(174); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(174); + if (lookahead == 'a') ADVANCE(175); END_STATE(); case 129: - if (lookahead == 'n') ADVANCE(175); + if (lookahead == 'u') ADVANCE(176); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 'o') ADVANCE(177); END_STATE(); case 131: - if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'n') ADVANCE(178); END_STATE(); case 132: - if (lookahead == 'h') ADVANCE(178); + if (lookahead == 't') ADVANCE(179); END_STATE(); case 133: - if (lookahead == 'o') ADVANCE(179); + if (lookahead == 'n') ADVANCE(180); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(180); - END_STATE(); - case 135: if (lookahead == 'h') ADVANCE(181); END_STATE(); + case 135: + if (lookahead == 'o') ADVANCE(182); + END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(182); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 137: - if (lookahead == 'o') ADVANCE(183); - END_STATE(); - case 138: if (lookahead == 'h') ADVANCE(184); END_STATE(); + case 138: + if (lookahead == 'n') ADVANCE(185); + END_STATE(); case 139: - if (lookahead == 'h') ADVANCE(185); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(186); + if (lookahead == 'h') ADVANCE(187); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(187); + if (lookahead == 'h') ADVANCE(188); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'r') ADVANCE(190); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 146: - if (lookahead == 'n') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(192); + if (lookahead == 'n') ADVANCE(193); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_func); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_hide); - END_STATE(); - case 151: - if (lookahead == 'r') ADVANCE(193); - END_STATE(); - case 152: if (lookahead == 'e') ADVANCE(194); END_STATE(); + case 150: + if (lookahead == 't') ADVANCE(195); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_func); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_hide); + END_STATE(); case 153: - if (lookahead == 'h') ADVANCE(195); + if (lookahead == 'r') ADVANCE(196); END_STATE(); case 154: - ACCEPT_TOKEN(sym_none); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 155: - if (lookahead == 'u') ADVANCE(196); + if (lookahead == 'h') ADVANCE(198); END_STATE(); case 156: - if (lookahead == 's') ADVANCE(197); + ACCEPT_TOKEN(sym_none); END_STATE(); case 157: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'u') ADVANCE(199); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(199); + if (lookahead == 's') ADVANCE(200); END_STATE(); case 159: - if (lookahead == 'c') ADVANCE(200); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_test); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(203); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_uint); + ACCEPT_TOKEN(anon_sym_test); END_STATE(); case 163: - if (lookahead == 'f') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 164: - if (lookahead == 'n') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 165: - if (lookahead == 'e') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_uint); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'f') ADVANCE(204); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 168: - if (lookahead == 'd') ADVANCE(205); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 170: - if (lookahead == 'a') ADVANCE(206); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'd') ADVANCE(208); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 173: - if (lookahead == 'b') ADVANCE(208); - END_STATE(); - case 174: if (lookahead == 'a') ADVANCE(209); END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); case 175: - if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'r') ADVANCE(210); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_c_int); + if (lookahead == 'b') ADVANCE(211); END_STATE(); case 177: - if (lookahead == 'g') ADVANCE(211); - END_STATE(); - case 178: if (lookahead == 'a') ADVANCE(212); END_STATE(); + case 178: + if (lookahead == 'c') ADVANCE(213); + END_STATE(); case 179: - if (lookahead == 'r') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_c_int); END_STATE(); case 180: - if (lookahead == 'u') ADVANCE(214); + if (lookahead == 'g') ADVANCE(214); END_STATE(); case 181: if (lookahead == 'a') ADVANCE(215); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(216); + if (lookahead == 'r') ADVANCE(216); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(217); + if (lookahead == 'u') ADVANCE(217); END_STATE(); case 184: - if (lookahead == 'o') ADVANCE(218); + if (lookahead == 'a') ADVANCE(218); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(219); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_defer); - END_STATE(); - case 188: if (lookahead == 'n') ADVANCE(220); END_STATE(); + case 187: + if (lookahead == 'o') ADVANCE(221); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); case 189: - if (lookahead == 'f') ADVANCE(221); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 190: - if (lookahead == 'd') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_defer); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'n') ADVANCE(223); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_float); + if (lookahead == 'f') ADVANCE(224); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(223); + if (lookahead == 'd') ADVANCE(225); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_float); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 't') ADVANCE(226); END_STATE(); case 197: - if (lookahead == 'e') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_range); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(227); + if (lookahead == 'e') ADVANCE(228); END_STATE(); case 201: - if (lookahead == 'i') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_range); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'n') ADVANCE(229); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'i') ADVANCE(231); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 206: - if (lookahead == 'q') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_c_char); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 208: - if (lookahead == 'l') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 209: - if (lookahead == 't') ADVANCE(231); + if (lookahead == 'q') ADVANCE(232); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_c_func); + ACCEPT_TOKEN(anon_sym_c_char); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_c_long); - if (lookahead == 'd') ADVANCE(232); if (lookahead == 'l') ADVANCE(233); END_STATE(); case 212: - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 213: - if (lookahead == 't') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_c_func); END_STATE(); case 214: - if (lookahead == 'c') ADVANCE(236); + ACCEPT_TOKEN(anon_sym_c_long); + if (lookahead == 'd') ADVANCE(235); + if (lookahead == 'l') ADVANCE(236); END_STATE(); case 215: if (lookahead == 'r') ADVANCE(237); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_c_uint); + if (lookahead == 't') ADVANCE(238); END_STATE(); case 217: - if (lookahead == 'g') ADVANCE(238); + if (lookahead == 'c') ADVANCE(239); END_STATE(); case 218: - if (lookahead == 'r') ADVANCE(239); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 219: - if (lookahead == 'u') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_c_uint); END_STATE(); case 220: - if (lookahead == 'c') ADVANCE(241); + if (lookahead == 'g') ADVANCE(241); END_STATE(); case 221: - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'r') ADVANCE(242); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_expand); + if (lookahead == 'u') ADVANCE(243); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'c') ADVANCE(244); END_STATE(); case 224: - ACCEPT_TOKEN(sym_opaque_type); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_orelse); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 228: - if (lookahead == 'n') ADVANCE(243); - END_STATE(); - case 229: - if (lookahead == 'u') ADVANCE(244); - END_STATE(); - case 230: if (lookahead == 'e') ADVANCE(245); END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_expand); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_opaque_type); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_orelse); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_c_float); + if (lookahead == 'n') ADVANCE(246); END_STATE(); case 232: - if (lookahead == 'o') ADVANCE(246); + if (lookahead == 'u') ADVANCE(247); END_STATE(); case 233: - if (lookahead == 'o') ADVANCE(247); + if (lookahead == 'e') ADVANCE(248); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_c_schar); + ACCEPT_TOKEN(anon_sym_c_float); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_c_short); + if (lookahead == 'o') ADVANCE(249); END_STATE(); case 236: - if (lookahead == 't') ADVANCE(248); + if (lookahead == 'o') ADVANCE(250); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_c_uchar); + ACCEPT_TOKEN(anon_sym_c_schar); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_c_ulong); - if (lookahead == 'l') ADVANCE(249); + ACCEPT_TOKEN(anon_sym_c_short); END_STATE(); case 239: - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(251); END_STATE(); case 240: - if (lookahead == 'e') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_c_uchar); END_STATE(); case 241: - if (lookahead == 't') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_c_ulong); + if (lookahead == 'l') ADVANCE(252); END_STATE(); case 242: - if (lookahead == 'r') ADVANCE(253); + if (lookahead == 't') ADVANCE(253); END_STATE(); case 243: if (lookahead == 'e') ADVANCE(254); END_STATE(); case 244: - if (lookahead == 'e') ADVANCE(255); + if (lookahead == 't') ADVANCE(255); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_c_double); + if (lookahead == 'r') ADVANCE(256); END_STATE(); case 246: - if (lookahead == 'u') ADVANCE(256); + if (lookahead == 'e') ADVANCE(257); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'e') ADVANCE(258); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_c_struct); + ACCEPT_TOKEN(anon_sym_c_double); END_STATE(); case 249: - if (lookahead == 'o') ADVANCE(258); + if (lookahead == 'u') ADVANCE(259); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_c_ushort); + if (lookahead == 'n') ADVANCE(260); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_c_struct); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_distinct); + if (lookahead == 'o') ADVANCE(261); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_errdefer); + ACCEPT_TOKEN(anon_sym_c_ushort); END_STATE(); case 254: - if (lookahead == 'd') ADVANCE(259); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_anyopaque); + ACCEPT_TOKEN(anon_sym_distinct); END_STATE(); case 256: - if (lookahead == 'b') ADVANCE(260); + ACCEPT_TOKEN(anon_sym_errdefer); END_STATE(); case 257: - if (lookahead == 'g') ADVANCE(261); + if (lookahead == 'd') ADVANCE(262); END_STATE(); case 258: - if (lookahead == 'n') ADVANCE(262); + ACCEPT_TOKEN(anon_sym_anyopaque); END_STATE(); case 259: - ACCEPT_TOKEN(sym_undefined); + if (lookahead == 'b') ADVANCE(263); END_STATE(); case 260: - if (lookahead == 'l') ADVANCE(263); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_c_longlong); - END_STATE(); - case 262: if (lookahead == 'g') ADVANCE(264); END_STATE(); + case 261: + if (lookahead == 'n') ADVANCE(265); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); case 263: - if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'l') ADVANCE(266); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_c_ulonglong); + ACCEPT_TOKEN(anon_sym_c_longlong); END_STATE(); case 265: + if (lookahead == 'g') ADVANCE(267); + END_STATE(); + case 266: + if (lookahead == 'e') ADVANCE(268); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_c_ulonglong); + END_STATE(); + case 268: ACCEPT_TOKEN(anon_sym_c_longdouble); END_STATE(); default: @@ -8922,3234 +9629,3234 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 14}, - [2] = {.lex_state = 13}, - [3] = {.lex_state = 13}, - [4] = {.lex_state = 13}, - [5] = {.lex_state = 13}, - [6] = {.lex_state = 13}, - [7] = {.lex_state = 13}, - [8] = {.lex_state = 13}, - [9] = {.lex_state = 13}, - [10] = {.lex_state = 13}, - [11] = {.lex_state = 13}, - [12] = {.lex_state = 13}, - [13] = {.lex_state = 13}, - [14] = {.lex_state = 13}, - [15] = {.lex_state = 13}, - [16] = {.lex_state = 13}, - [17] = {.lex_state = 13}, - [18] = {.lex_state = 13}, - [19] = {.lex_state = 13}, - [20] = {.lex_state = 0}, - [21] = {.lex_state = 0}, - [22] = {.lex_state = 0}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 0}, - [25] = {.lex_state = 0}, - [26] = {.lex_state = 0}, - [27] = {.lex_state = 0}, - [28] = {.lex_state = 0}, - [29] = {.lex_state = 0}, - [30] = {.lex_state = 0}, - [31] = {.lex_state = 0}, - [32] = {.lex_state = 0}, - [33] = {.lex_state = 0}, - [34] = {.lex_state = 0}, - [35] = {.lex_state = 0}, - [36] = {.lex_state = 0}, - [37] = {.lex_state = 0}, - [38] = {.lex_state = 14}, - [39] = {.lex_state = 0}, - [40] = {.lex_state = 0}, - [41] = {.lex_state = 0}, - [42] = {.lex_state = 0}, - [43] = {.lex_state = 0}, - [44] = {.lex_state = 0}, - [45] = {.lex_state = 0}, - [46] = {.lex_state = 0}, - [47] = {.lex_state = 14}, - [48] = {.lex_state = 0}, - [49] = {.lex_state = 0}, - [50] = {.lex_state = 0}, - [51] = {.lex_state = 14}, - [52] = {.lex_state = 14}, - [53] = {.lex_state = 14}, - [54] = {.lex_state = 14}, - [55] = {.lex_state = 0}, - [56] = {.lex_state = 14}, - [57] = {.lex_state = 0}, - [58] = {.lex_state = 0}, - [59] = {.lex_state = 0}, - [60] = {.lex_state = 0}, - [61] = {.lex_state = 0}, - [62] = {.lex_state = 14}, - [63] = {.lex_state = 14}, - [64] = {.lex_state = 0}, - [65] = {.lex_state = 0}, - [66] = {.lex_state = 0}, - [67] = {.lex_state = 14}, - [68] = {.lex_state = 14}, - [69] = {.lex_state = 14}, - [70] = {.lex_state = 0}, - [71] = {.lex_state = 14}, - [72] = {.lex_state = 14}, - [73] = {.lex_state = 14}, - [74] = {.lex_state = 14}, - [75] = {.lex_state = 14}, - [76] = {.lex_state = 14}, - [77] = {.lex_state = 0}, - [78] = {.lex_state = 14}, - [79] = {.lex_state = 14}, - [80] = {.lex_state = 14}, - [81] = {.lex_state = 14}, - [82] = {.lex_state = 0}, - [83] = {.lex_state = 0}, - [84] = {.lex_state = 14}, - [85] = {.lex_state = 14}, - [86] = {.lex_state = 0}, - [87] = {.lex_state = 0}, - [88] = {.lex_state = 14}, - [89] = {.lex_state = 0}, - [90] = {.lex_state = 0}, - [91] = {.lex_state = 14}, - [92] = {.lex_state = 0}, - [93] = {.lex_state = 14}, - [94] = {.lex_state = 0}, - [95] = {.lex_state = 14}, - [96] = {.lex_state = 14}, - [97] = {.lex_state = 14}, - [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, - [100] = {.lex_state = 0}, - [101] = {.lex_state = 0}, - [102] = {.lex_state = 14}, - [103] = {.lex_state = 0}, - [104] = {.lex_state = 0}, - [105] = {.lex_state = 14}, - [106] = {.lex_state = 0}, - [107] = {.lex_state = 0}, - [108] = {.lex_state = 14}, - [109] = {.lex_state = 14}, - [110] = {.lex_state = 14}, - [111] = {.lex_state = 14}, - [112] = {.lex_state = 14}, - [113] = {.lex_state = 0}, - [114] = {.lex_state = 0}, - [115] = {.lex_state = 14}, - [116] = {.lex_state = 14}, - [117] = {.lex_state = 14}, - [118] = {.lex_state = 14}, - [119] = {.lex_state = 14}, - [120] = {.lex_state = 14}, - [121] = {.lex_state = 14}, - [122] = {.lex_state = 14}, - [123] = {.lex_state = 14}, - [124] = {.lex_state = 0}, - [125] = {.lex_state = 0}, - [126] = {.lex_state = 0}, - [127] = {.lex_state = 0}, - [128] = {.lex_state = 0}, - [129] = {.lex_state = 0}, - [130] = {.lex_state = 0}, - [131] = {.lex_state = 14}, - [132] = {.lex_state = 14}, - [133] = {.lex_state = 14}, - [134] = {.lex_state = 14}, - [135] = {.lex_state = 14}, - [136] = {.lex_state = 14}, - [137] = {.lex_state = 0}, - [138] = {.lex_state = 14}, - [139] = {.lex_state = 14}, - [140] = {.lex_state = 14}, - [141] = {.lex_state = 0}, - [142] = {.lex_state = 0}, - [143] = {.lex_state = 14}, - [144] = {.lex_state = 14}, - [145] = {.lex_state = 14}, - [146] = {.lex_state = 14}, - [147] = {.lex_state = 14}, - [148] = {.lex_state = 14}, - [149] = {.lex_state = 0}, - [150] = {.lex_state = 0}, - [151] = {.lex_state = 0}, - [152] = {.lex_state = 0}, - [153] = {.lex_state = 0}, - [154] = {.lex_state = 0}, - [155] = {.lex_state = 14}, - [156] = {.lex_state = 14}, - [157] = {.lex_state = 14}, - [158] = {.lex_state = 14}, - [159] = {.lex_state = 14}, - [160] = {.lex_state = 14}, - [161] = {.lex_state = 0}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 0}, - [165] = {.lex_state = 0}, - [166] = {.lex_state = 0}, - [167] = {.lex_state = 0}, - [168] = {.lex_state = 0}, - [169] = {.lex_state = 0}, - [170] = {.lex_state = 0}, - [171] = {.lex_state = 0}, - [172] = {.lex_state = 14}, - [173] = {.lex_state = 14}, - [174] = {.lex_state = 14}, - [175] = {.lex_state = 14}, - [176] = {.lex_state = 14}, - [177] = {.lex_state = 14}, - [178] = {.lex_state = 14}, - [179] = {.lex_state = 0}, - [180] = {.lex_state = 0}, - [181] = {.lex_state = 0}, - [182] = {.lex_state = 0}, - [183] = {.lex_state = 0}, - [184] = {.lex_state = 0}, - [185] = {.lex_state = 0}, - [186] = {.lex_state = 0}, - [187] = {.lex_state = 0}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 14}, - [190] = {.lex_state = 0}, - [191] = {.lex_state = 0}, - [192] = {.lex_state = 0}, - [193] = {.lex_state = 0}, - [194] = {.lex_state = 14}, - [195] = {.lex_state = 14}, - [196] = {.lex_state = 14}, - [197] = {.lex_state = 14}, - [198] = {.lex_state = 14}, - [199] = {.lex_state = 14}, - [200] = {.lex_state = 14}, - [201] = {.lex_state = 0}, - [202] = {.lex_state = 0}, - [203] = {.lex_state = 0}, - [204] = {.lex_state = 0}, - [205] = {.lex_state = 0}, - [206] = {.lex_state = 0}, - [207] = {.lex_state = 0}, - [208] = {.lex_state = 0}, - [209] = {.lex_state = 0}, - [210] = {.lex_state = 0}, - [211] = {.lex_state = 14}, - [212] = {.lex_state = 14}, - [213] = {.lex_state = 14}, - [214] = {.lex_state = 14}, - [215] = {.lex_state = 0}, - [216] = {.lex_state = 0}, - [217] = {.lex_state = 0}, - [218] = {.lex_state = 0}, - [219] = {.lex_state = 14}, - [220] = {.lex_state = 0}, - [221] = {.lex_state = 0}, - [222] = {.lex_state = 0}, - [223] = {.lex_state = 0}, - [224] = {.lex_state = 0}, - [225] = {.lex_state = 14}, - [226] = {.lex_state = 0}, - [227] = {.lex_state = 0}, - [228] = {.lex_state = 0}, - [229] = {.lex_state = 0}, - [230] = {.lex_state = 0}, - [231] = {.lex_state = 0}, - [232] = {.lex_state = 0}, - [233] = {.lex_state = 0}, - [234] = {.lex_state = 0}, - [235] = {.lex_state = 0}, - [236] = {.lex_state = 0}, - [237] = {.lex_state = 0}, - [238] = {.lex_state = 0}, - [239] = {.lex_state = 0}, - [240] = {.lex_state = 0}, - [241] = {.lex_state = 0}, - [242] = {.lex_state = 0}, - [243] = {.lex_state = 14}, - [244] = {.lex_state = 0}, - [245] = {.lex_state = 0}, - [246] = {.lex_state = 0}, - [247] = {.lex_state = 0}, - [248] = {.lex_state = 0}, - [249] = {.lex_state = 0}, - [250] = {.lex_state = 0}, - [251] = {.lex_state = 0}, - [252] = {.lex_state = 0}, - [253] = {.lex_state = 0}, - [254] = {.lex_state = 0}, - [255] = {.lex_state = 0}, - [256] = {.lex_state = 0}, - [257] = {.lex_state = 0}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 0}, - [260] = {.lex_state = 0}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 0}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 0}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, - [270] = {.lex_state = 0}, - [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 0}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 0}, - [276] = {.lex_state = 0}, - [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 0}, - [281] = {.lex_state = 0}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 0}, - [285] = {.lex_state = 14}, - [286] = {.lex_state = 0}, - [287] = {.lex_state = 14}, - [288] = {.lex_state = 14}, - [289] = {.lex_state = 14}, - [290] = {.lex_state = 14}, - [291] = {.lex_state = 14}, - [292] = {.lex_state = 14}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 14}, - [295] = {.lex_state = 14}, - [296] = {.lex_state = 14}, - [297] = {.lex_state = 14}, - [298] = {.lex_state = 14}, - [299] = {.lex_state = 14}, - [300] = {.lex_state = 14}, - [301] = {.lex_state = 14}, - [302] = {.lex_state = 14}, - [303] = {.lex_state = 14}, - [304] = {.lex_state = 14}, - [305] = {.lex_state = 14}, - [306] = {.lex_state = 14}, - [307] = {.lex_state = 14}, - [308] = {.lex_state = 14}, - [309] = {.lex_state = 14}, - [310] = {.lex_state = 14}, - [311] = {.lex_state = 14}, - [312] = {.lex_state = 14}, - [313] = {.lex_state = 14}, - [314] = {.lex_state = 14}, - [315] = {.lex_state = 14}, - [316] = {.lex_state = 14}, - [317] = {.lex_state = 14}, - [318] = {.lex_state = 14}, - [319] = {.lex_state = 14}, - [320] = {.lex_state = 14}, - [321] = {.lex_state = 14}, - [322] = {.lex_state = 14}, - [323] = {.lex_state = 14}, - [324] = {.lex_state = 14}, - [325] = {.lex_state = 14}, - [326] = {.lex_state = 14}, - [327] = {.lex_state = 14}, - [328] = {.lex_state = 14}, - [329] = {.lex_state = 14}, - [330] = {.lex_state = 14}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 14}, - [333] = {.lex_state = 14}, - [334] = {.lex_state = 14}, - [335] = {.lex_state = 14}, - [336] = {.lex_state = 14}, - [337] = {.lex_state = 14}, - [338] = {.lex_state = 14}, - [339] = {.lex_state = 14}, - [340] = {.lex_state = 14}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 14}, - [344] = {.lex_state = 14}, - [345] = {.lex_state = 14}, - [346] = {.lex_state = 14}, - [347] = {.lex_state = 14}, - [348] = {.lex_state = 14}, - [349] = {.lex_state = 14}, - [350] = {.lex_state = 14}, - [351] = {.lex_state = 14}, - [352] = {.lex_state = 14}, - [353] = {.lex_state = 14}, - [354] = {.lex_state = 14}, - [355] = {.lex_state = 14}, - [356] = {.lex_state = 14}, - [357] = {.lex_state = 14}, - [358] = {.lex_state = 14}, - [359] = {.lex_state = 14}, - [360] = {.lex_state = 14}, - [361] = {.lex_state = 14}, - [362] = {.lex_state = 14}, - [363] = {.lex_state = 14}, - [364] = {.lex_state = 14}, - [365] = {.lex_state = 14}, - [366] = {.lex_state = 14}, - [367] = {.lex_state = 14}, - [368] = {.lex_state = 14}, - [369] = {.lex_state = 14}, - [370] = {.lex_state = 14}, - [371] = {.lex_state = 14}, - [372] = {.lex_state = 14}, - [373] = {.lex_state = 14}, - [374] = {.lex_state = 14}, - [375] = {.lex_state = 14}, - [376] = {.lex_state = 14}, - [377] = {.lex_state = 14}, - [378] = {.lex_state = 14}, - [379] = {.lex_state = 14}, - [380] = {.lex_state = 14}, - [381] = {.lex_state = 14}, - [382] = {.lex_state = 14}, - [383] = {.lex_state = 14}, - [384] = {.lex_state = 14}, - [385] = {.lex_state = 14}, - [386] = {.lex_state = 14}, - [387] = {.lex_state = 14}, - [388] = {.lex_state = 14}, - [389] = {.lex_state = 14}, - [390] = {.lex_state = 14}, - [391] = {.lex_state = 14}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 14}, - [394] = {.lex_state = 14}, - [395] = {.lex_state = 14}, - [396] = {.lex_state = 14}, - [397] = {.lex_state = 14}, - [398] = {.lex_state = 14}, - [399] = {.lex_state = 14}, - [400] = {.lex_state = 14}, - [401] = {.lex_state = 14}, - [402] = {.lex_state = 14}, - [403] = {.lex_state = 14}, - [404] = {.lex_state = 14}, - [405] = {.lex_state = 14}, - [406] = {.lex_state = 14}, - [407] = {.lex_state = 14}, - [408] = {.lex_state = 14}, - [409] = {.lex_state = 14}, - [410] = {.lex_state = 14}, - [411] = {.lex_state = 14}, - [412] = {.lex_state = 14}, - [413] = {.lex_state = 14}, - [414] = {.lex_state = 14}, - [415] = {.lex_state = 14}, - [416] = {.lex_state = 14}, - [417] = {.lex_state = 14}, - [418] = {.lex_state = 14}, - [419] = {.lex_state = 14}, - [420] = {.lex_state = 14}, - [421] = {.lex_state = 14}, - [422] = {.lex_state = 14}, - [423] = {.lex_state = 14}, - [424] = {.lex_state = 14}, - [425] = {.lex_state = 14}, - [426] = {.lex_state = 14}, - [427] = {.lex_state = 14}, - [428] = {.lex_state = 14}, - [429] = {.lex_state = 14}, - [430] = {.lex_state = 14}, - [431] = {.lex_state = 14}, - [432] = {.lex_state = 14}, - [433] = {.lex_state = 14}, - [434] = {.lex_state = 14}, - [435] = {.lex_state = 14}, - [436] = {.lex_state = 14}, - [437] = {.lex_state = 14}, - [438] = {.lex_state = 14}, - [439] = {.lex_state = 14}, - [440] = {.lex_state = 14}, - [441] = {.lex_state = 14}, - [442] = {.lex_state = 14}, - [443] = {.lex_state = 14}, - [444] = {.lex_state = 14}, - [445] = {.lex_state = 14}, - [446] = {.lex_state = 14}, - [447] = {.lex_state = 14}, - [448] = {.lex_state = 14}, - [449] = {.lex_state = 14}, - [450] = {.lex_state = 14}, - [451] = {.lex_state = 14}, - [452] = {.lex_state = 14}, - [453] = {.lex_state = 14}, - [454] = {.lex_state = 14}, - [455] = {.lex_state = 14}, - [456] = {.lex_state = 14}, - [457] = {.lex_state = 14}, - [458] = {.lex_state = 14}, - [459] = {.lex_state = 14}, - [460] = {.lex_state = 14}, - [461] = {.lex_state = 14}, - [462] = {.lex_state = 14}, - [463] = {.lex_state = 14}, - [464] = {.lex_state = 14}, - [465] = {.lex_state = 14}, - [466] = {.lex_state = 14}, - [467] = {.lex_state = 14}, - [468] = {.lex_state = 14}, - [469] = {.lex_state = 14}, - [470] = {.lex_state = 14}, - [471] = {.lex_state = 14}, - [472] = {.lex_state = 14}, - [473] = {.lex_state = 14}, - [474] = {.lex_state = 14}, - [475] = {.lex_state = 14}, - [476] = {.lex_state = 14}, - [477] = {.lex_state = 14}, - [478] = {.lex_state = 14}, - [479] = {.lex_state = 14}, - [480] = {.lex_state = 14}, - [481] = {.lex_state = 14}, - [482] = {.lex_state = 14}, - [483] = {.lex_state = 14}, - [484] = {.lex_state = 14}, - [485] = {.lex_state = 14}, - [486] = {.lex_state = 14}, - [487] = {.lex_state = 14}, - [488] = {.lex_state = 14}, - [489] = {.lex_state = 14}, - [490] = {.lex_state = 14}, - [491] = {.lex_state = 14}, - [492] = {.lex_state = 14}, - [493] = {.lex_state = 14}, - [494] = {.lex_state = 14}, - [495] = {.lex_state = 14}, - [496] = {.lex_state = 14}, - [497] = {.lex_state = 14}, - [498] = {.lex_state = 14}, - [499] = {.lex_state = 14}, - [500] = {.lex_state = 14}, - [501] = {.lex_state = 14}, - [502] = {.lex_state = 14}, - [503] = {.lex_state = 14}, - [504] = {.lex_state = 14}, - [505] = {.lex_state = 14}, - [506] = {.lex_state = 14}, - [507] = {.lex_state = 14}, - [508] = {.lex_state = 14}, - [509] = {.lex_state = 14}, - [510] = {.lex_state = 14}, - [511] = {.lex_state = 14}, - [512] = {.lex_state = 14}, - [513] = {.lex_state = 14}, - [514] = {.lex_state = 14}, - [515] = {.lex_state = 14}, - [516] = {.lex_state = 14}, - [517] = {.lex_state = 14}, - [518] = {.lex_state = 14}, - [519] = {.lex_state = 14}, - [520] = {.lex_state = 14}, - [521] = {.lex_state = 14}, - [522] = {.lex_state = 14}, - [523] = {.lex_state = 14}, - [524] = {.lex_state = 14}, - [525] = {.lex_state = 14}, - [526] = {.lex_state = 14}, - [527] = {.lex_state = 0}, - [528] = {.lex_state = 14}, - [529] = {.lex_state = 14}, - [530] = {.lex_state = 14}, - [531] = {.lex_state = 14}, - [532] = {.lex_state = 14}, - [533] = {.lex_state = 14}, - [534] = {.lex_state = 0}, - [535] = {.lex_state = 14}, - [536] = {.lex_state = 0}, - [537] = {.lex_state = 14}, - [538] = {.lex_state = 14}, - [539] = {.lex_state = 14}, - [540] = {.lex_state = 14}, - [541] = {.lex_state = 14}, - [542] = {.lex_state = 14}, - [543] = {.lex_state = 14}, - [544] = {.lex_state = 14}, - [545] = {.lex_state = 14}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 14}, - [548] = {.lex_state = 14}, - [549] = {.lex_state = 14}, - [550] = {.lex_state = 14}, - [551] = {.lex_state = 14}, - [552] = {.lex_state = 14}, - [553] = {.lex_state = 14}, - [554] = {.lex_state = 14}, - [555] = {.lex_state = 14}, - [556] = {.lex_state = 14}, - [557] = {.lex_state = 14}, - [558] = {.lex_state = 14}, - [559] = {.lex_state = 14}, - [560] = {.lex_state = 14}, - [561] = {.lex_state = 14}, - [562] = {.lex_state = 14}, - [563] = {.lex_state = 14}, - [564] = {.lex_state = 14}, - [565] = {.lex_state = 14}, - [566] = {.lex_state = 14}, - [567] = {.lex_state = 14}, - [568] = {.lex_state = 0}, - [569] = {.lex_state = 0}, - [570] = {.lex_state = 0}, - [571] = {.lex_state = 0}, - [572] = {.lex_state = 0}, - [573] = {.lex_state = 0}, - [574] = {.lex_state = 14}, - [575] = {.lex_state = 14}, - [576] = {.lex_state = 0}, - [577] = {.lex_state = 14}, - [578] = {.lex_state = 0}, - [579] = {.lex_state = 0}, - [580] = {.lex_state = 0}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 14}, - [583] = {.lex_state = 0}, - [584] = {.lex_state = 0}, - [585] = {.lex_state = 0}, - [586] = {.lex_state = 13}, - [587] = {.lex_state = 0}, - [588] = {.lex_state = 0}, - [589] = {.lex_state = 13}, - [590] = {.lex_state = 13}, - [591] = {.lex_state = 0}, - [592] = {.lex_state = 13}, - [593] = {.lex_state = 13}, - [594] = {.lex_state = 0}, - [595] = {.lex_state = 0}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 0}, - [598] = {.lex_state = 13}, - [599] = {.lex_state = 0}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 0}, - [602] = {.lex_state = 0}, - [603] = {.lex_state = 0}, - [604] = {.lex_state = 0}, - [605] = {.lex_state = 0}, - [606] = {.lex_state = 13}, - [607] = {.lex_state = 13}, - [608] = {.lex_state = 13}, - [609] = {.lex_state = 13}, - [610] = {.lex_state = 13}, - [611] = {.lex_state = 13}, - [612] = {.lex_state = 13}, - [613] = {.lex_state = 13}, - [614] = {.lex_state = 13}, - [615] = {.lex_state = 13}, - [616] = {.lex_state = 13}, - [617] = {.lex_state = 13}, - [618] = {.lex_state = 13}, - [619] = {.lex_state = 13}, - [620] = {.lex_state = 13}, - [621] = {.lex_state = 13}, - [622] = {.lex_state = 13}, - [623] = {.lex_state = 13}, - [624] = {.lex_state = 13}, - [625] = {.lex_state = 13}, - [626] = {.lex_state = 13}, - [627] = {.lex_state = 13}, - [628] = {.lex_state = 13}, - [629] = {.lex_state = 13}, - [630] = {.lex_state = 13}, - [631] = {.lex_state = 13}, - [632] = {.lex_state = 13}, - [633] = {.lex_state = 13}, - [634] = {.lex_state = 13}, - [635] = {.lex_state = 13}, - [636] = {.lex_state = 13}, - [637] = {.lex_state = 13}, - [638] = {.lex_state = 13}, - [639] = {.lex_state = 13}, - [640] = {.lex_state = 13}, - [641] = {.lex_state = 14}, - [642] = {.lex_state = 14}, - [643] = {.lex_state = 13}, - [644] = {.lex_state = 13}, - [645] = {.lex_state = 13}, - [646] = {.lex_state = 13}, - [647] = {.lex_state = 13}, - [648] = {.lex_state = 13}, - [649] = {.lex_state = 13}, - [650] = {.lex_state = 13}, - [651] = {.lex_state = 13}, - [652] = {.lex_state = 13}, - [653] = {.lex_state = 13}, - [654] = {.lex_state = 13}, - [655] = {.lex_state = 13}, - [656] = {.lex_state = 13}, - [657] = {.lex_state = 13}, - [658] = {.lex_state = 13}, - [659] = {.lex_state = 13}, - [660] = {.lex_state = 13}, - [661] = {.lex_state = 13}, - [662] = {.lex_state = 13}, - [663] = {.lex_state = 13}, - [664] = {.lex_state = 13}, - [665] = {.lex_state = 13}, - [666] = {.lex_state = 13}, - [667] = {.lex_state = 13}, - [668] = {.lex_state = 13}, - [669] = {.lex_state = 13}, - [670] = {.lex_state = 13}, - [671] = {.lex_state = 13}, - [672] = {.lex_state = 13}, - [673] = {.lex_state = 13}, - [674] = {.lex_state = 13}, - [675] = {.lex_state = 13}, - [676] = {.lex_state = 13}, - [677] = {.lex_state = 13}, - [678] = {.lex_state = 13}, - [679] = {.lex_state = 13}, - [680] = {.lex_state = 13}, - [681] = {.lex_state = 13}, - [682] = {.lex_state = 13}, - [683] = {.lex_state = 13}, - [684] = {.lex_state = 13}, - [685] = {.lex_state = 13}, - [686] = {.lex_state = 13}, - [687] = {.lex_state = 13}, - [688] = {.lex_state = 13}, - [689] = {.lex_state = 14}, - [690] = {.lex_state = 13}, - [691] = {.lex_state = 13}, - [692] = {.lex_state = 13}, - [693] = {.lex_state = 13}, - [694] = {.lex_state = 13}, - [695] = {.lex_state = 13}, - [696] = {.lex_state = 13}, - [697] = {.lex_state = 13}, - [698] = {.lex_state = 13}, - [699] = {.lex_state = 13}, - [700] = {.lex_state = 13}, - [701] = {.lex_state = 13}, - [702] = {.lex_state = 13}, - [703] = {.lex_state = 13}, - [704] = {.lex_state = 13}, - [705] = {.lex_state = 13}, - [706] = {.lex_state = 13}, - [707] = {.lex_state = 13}, - [708] = {.lex_state = 13}, - [709] = {.lex_state = 13}, - [710] = {.lex_state = 13}, - [711] = {.lex_state = 13}, - [712] = {.lex_state = 13}, - [713] = {.lex_state = 13}, - [714] = {.lex_state = 13}, - [715] = {.lex_state = 13}, - [716] = {.lex_state = 13}, - [717] = {.lex_state = 13}, - [718] = {.lex_state = 13}, - [719] = {.lex_state = 13}, - [720] = {.lex_state = 13}, - [721] = {.lex_state = 13}, - [722] = {.lex_state = 13}, - [723] = {.lex_state = 13}, - [724] = {.lex_state = 13}, - [725] = {.lex_state = 13}, - [726] = {.lex_state = 13}, - [727] = {.lex_state = 13}, - [728] = {.lex_state = 13}, - [729] = {.lex_state = 13}, - [730] = {.lex_state = 13}, - [731] = {.lex_state = 13}, - [732] = {.lex_state = 13}, - [733] = {.lex_state = 13}, - [734] = {.lex_state = 13}, - [735] = {.lex_state = 13}, - [736] = {.lex_state = 13}, - [737] = {.lex_state = 13}, - [738] = {.lex_state = 13}, - [739] = {.lex_state = 13}, - [740] = {.lex_state = 13}, - [741] = {.lex_state = 13}, - [742] = {.lex_state = 13}, - [743] = {.lex_state = 13}, - [744] = {.lex_state = 13}, - [745] = {.lex_state = 13}, - [746] = {.lex_state = 13}, - [747] = {.lex_state = 13}, - [748] = {.lex_state = 13}, - [749] = {.lex_state = 13}, - [750] = {.lex_state = 14}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 13}, - [754] = {.lex_state = 13}, - [755] = {.lex_state = 14}, - [756] = {.lex_state = 14}, - [757] = {.lex_state = 13}, - [758] = {.lex_state = 14}, - [759] = {.lex_state = 13}, - [760] = {.lex_state = 13}, - [761] = {.lex_state = 13}, - [762] = {.lex_state = 13}, - [763] = {.lex_state = 13}, - [764] = {.lex_state = 13}, - [765] = {.lex_state = 14}, - [766] = {.lex_state = 14}, - [767] = {.lex_state = 14}, - [768] = {.lex_state = 14}, - [769] = {.lex_state = 13}, - [770] = {.lex_state = 13}, - [771] = {.lex_state = 13}, - [772] = {.lex_state = 13}, - [773] = {.lex_state = 13}, - [774] = {.lex_state = 13}, - [775] = {.lex_state = 13}, - [776] = {.lex_state = 13}, - [777] = {.lex_state = 14}, - [778] = {.lex_state = 14}, - [779] = {.lex_state = 13}, - [780] = {.lex_state = 14}, - [781] = {.lex_state = 14}, - [782] = {.lex_state = 14}, - [783] = {.lex_state = 14}, - [784] = {.lex_state = 14}, - [785] = {.lex_state = 14}, - [786] = {.lex_state = 14}, - [787] = {.lex_state = 14}, - [788] = {.lex_state = 14}, - [789] = {.lex_state = 14}, - [790] = {.lex_state = 13}, - [791] = {.lex_state = 14}, - [792] = {.lex_state = 14}, - [793] = {.lex_state = 14}, - [794] = {.lex_state = 14}, - [795] = {.lex_state = 14}, - [796] = {.lex_state = 14}, - [797] = {.lex_state = 14}, - [798] = {.lex_state = 14}, - [799] = {.lex_state = 14}, - [800] = {.lex_state = 14}, - [801] = {.lex_state = 14}, - [802] = {.lex_state = 14}, - [803] = {.lex_state = 14}, - [804] = {.lex_state = 14}, - [805] = {.lex_state = 14}, - [806] = {.lex_state = 14}, - [807] = {.lex_state = 14}, - [808] = {.lex_state = 14}, - [809] = {.lex_state = 14}, - [810] = {.lex_state = 14}, - [811] = {.lex_state = 14}, - [812] = {.lex_state = 14}, - [813] = {.lex_state = 14}, - [814] = {.lex_state = 14}, - [815] = {.lex_state = 14}, - [816] = {.lex_state = 13}, - [817] = {.lex_state = 14}, - [818] = {.lex_state = 14}, - [819] = {.lex_state = 14}, - [820] = {.lex_state = 14}, - [821] = {.lex_state = 14}, - [822] = {.lex_state = 14}, - [823] = {.lex_state = 14}, - [824] = {.lex_state = 14}, - [825] = {.lex_state = 14}, - [826] = {.lex_state = 14}, - [827] = {.lex_state = 14}, - [828] = {.lex_state = 14}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 14}, - [836] = {.lex_state = 14}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 13}, - [863] = {.lex_state = 13}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 14}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 14}, - [884] = {.lex_state = 14}, - [885] = {.lex_state = 14}, - [886] = {.lex_state = 14}, - [887] = {.lex_state = 14}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 14}, - [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 14}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 1}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 14}, - [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 14}, - [912] = {.lex_state = 14}, - [913] = {.lex_state = 14}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 14}, - [916] = {.lex_state = 14}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 14}, - [922] = {.lex_state = 14}, - [923] = {.lex_state = 14}, - [924] = {.lex_state = 14}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 14}, - [928] = {.lex_state = 14}, - [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 14}, - [932] = {.lex_state = 14}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 14}, - [939] = {.lex_state = 14}, - [940] = {.lex_state = 14}, - [941] = {.lex_state = 14}, - [942] = {.lex_state = 14}, - [943] = {.lex_state = 14}, - [944] = {.lex_state = 14}, - [945] = {.lex_state = 14}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, - [950] = {.lex_state = 14}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 14}, - [953] = {.lex_state = 14}, - [954] = {.lex_state = 14}, - [955] = {.lex_state = 14}, - [956] = {.lex_state = 14}, - [957] = {.lex_state = 14}, - [958] = {.lex_state = 14}, - [959] = {.lex_state = 14}, - [960] = {.lex_state = 14}, - [961] = {.lex_state = 14}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 14}, - [964] = {.lex_state = 14}, - [965] = {.lex_state = 14}, - [966] = {.lex_state = 14}, - [967] = {.lex_state = 14}, - [968] = {.lex_state = 14}, - [969] = {.lex_state = 14}, - [970] = {.lex_state = 14}, - [971] = {.lex_state = 14}, - [972] = {.lex_state = 14}, - [973] = {.lex_state = 14}, - [974] = {.lex_state = 14}, - [975] = {.lex_state = 14}, - [976] = {.lex_state = 14}, - [977] = {.lex_state = 14}, - [978] = {.lex_state = 14}, - [979] = {.lex_state = 14}, - [980] = {.lex_state = 14}, - [981] = {.lex_state = 14}, - [982] = {.lex_state = 14}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 14}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 14}, - [987] = {.lex_state = 14}, - [988] = {.lex_state = 14}, - [989] = {.lex_state = 14}, - [990] = {.lex_state = 14}, - [991] = {.lex_state = 14}, - [992] = {.lex_state = 14}, - [993] = {.lex_state = 14}, - [994] = {.lex_state = 14}, - [995] = {.lex_state = 14}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 14}, - [998] = {.lex_state = 14}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 14}, - [1003] = {.lex_state = 14}, - [1004] = {.lex_state = 14}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 14}, - [1007] = {.lex_state = 14}, - [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 14}, - [1011] = {.lex_state = 14}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 14}, - [1014] = {.lex_state = 14}, - [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 14}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 14}, - [1020] = {.lex_state = 14}, - [1021] = {.lex_state = 14}, - [1022] = {.lex_state = 13}, - [1023] = {.lex_state = 14}, - [1024] = {.lex_state = 14}, - [1025] = {.lex_state = 14}, - [1026] = {.lex_state = 14}, - [1027] = {.lex_state = 14}, - [1028] = {.lex_state = 14}, - [1029] = {.lex_state = 14}, - [1030] = {.lex_state = 14}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 14}, - [1033] = {.lex_state = 14}, - [1034] = {.lex_state = 14}, - [1035] = {.lex_state = 14}, - [1036] = {.lex_state = 14}, - [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 14}, - [1039] = {.lex_state = 13}, - [1040] = {.lex_state = 13}, - [1041] = {.lex_state = 14}, - [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 14}, - [1044] = {.lex_state = 14}, - [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 14}, - [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 14}, - [1050] = {.lex_state = 14}, - [1051] = {.lex_state = 14}, - [1052] = {.lex_state = 14}, - [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 14}, - [1055] = {.lex_state = 14}, - [1056] = {.lex_state = 14}, - [1057] = {.lex_state = 14}, - [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 14}, - [1060] = {.lex_state = 14}, - [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 14}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 14}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 14}, - [1069] = {.lex_state = 14}, - [1070] = {.lex_state = 14}, - [1071] = {.lex_state = 14}, - [1072] = {.lex_state = 14}, - [1073] = {.lex_state = 14}, - [1074] = {.lex_state = 14}, - [1075] = {.lex_state = 14}, - [1076] = {.lex_state = 14}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 14}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 14}, - [1081] = {.lex_state = 14}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 14}, - [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 14}, - [1087] = {.lex_state = 14}, - [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 14}, - [1090] = {.lex_state = 14}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 14}, - [1093] = {.lex_state = 14}, - [1094] = {.lex_state = 14}, - [1095] = {.lex_state = 14}, - [1096] = {.lex_state = 14}, - [1097] = {.lex_state = 14}, - [1098] = {.lex_state = 14}, - [1099] = {.lex_state = 14}, - [1100] = {.lex_state = 14}, - [1101] = {.lex_state = 14}, - [1102] = {.lex_state = 14}, - [1103] = {.lex_state = 14}, - [1104] = {.lex_state = 14}, - [1105] = {.lex_state = 14}, - [1106] = {.lex_state = 14}, - [1107] = {.lex_state = 14}, - [1108] = {.lex_state = 14}, - [1109] = {.lex_state = 14}, - [1110] = {.lex_state = 14}, - [1111] = {.lex_state = 14}, - [1112] = {.lex_state = 14}, - [1113] = {.lex_state = 14}, - [1114] = {.lex_state = 14}, - [1115] = {.lex_state = 14}, - [1116] = {.lex_state = 14}, - [1117] = {.lex_state = 14}, - [1118] = {.lex_state = 14}, - [1119] = {.lex_state = 14}, - [1120] = {.lex_state = 14}, - [1121] = {.lex_state = 14}, - [1122] = {.lex_state = 14}, - [1123] = {.lex_state = 14}, - [1124] = {.lex_state = 14}, - [1125] = {.lex_state = 14}, - [1126] = {.lex_state = 14}, - [1127] = {.lex_state = 14}, - [1128] = {.lex_state = 14}, - [1129] = {.lex_state = 14}, - [1130] = {.lex_state = 14}, - [1131] = {.lex_state = 14}, - [1132] = {.lex_state = 14}, - [1133] = {.lex_state = 14}, - [1134] = {.lex_state = 13}, - [1135] = {.lex_state = 14}, - [1136] = {.lex_state = 14}, - [1137] = {.lex_state = 14}, - [1138] = {.lex_state = 14}, - [1139] = {.lex_state = 13}, - [1140] = {.lex_state = 14}, - [1141] = {.lex_state = 14}, - [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 14}, - [1144] = {.lex_state = 14}, - [1145] = {.lex_state = 14}, - [1146] = {.lex_state = 14}, - [1147] = {.lex_state = 14}, - [1148] = {.lex_state = 14}, - [1149] = {.lex_state = 14}, - [1150] = {.lex_state = 14}, - [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 14}, - [1153] = {.lex_state = 14}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 14}, - [1156] = {.lex_state = 14}, - [1157] = {.lex_state = 14}, - [1158] = {.lex_state = 14}, - [1159] = {.lex_state = 14}, - [1160] = {.lex_state = 14}, - [1161] = {.lex_state = 14}, - [1162] = {.lex_state = 14}, - [1163] = {.lex_state = 14}, - [1164] = {.lex_state = 14}, - [1165] = {.lex_state = 14}, - [1166] = {.lex_state = 14}, - [1167] = {.lex_state = 14}, - [1168] = {.lex_state = 14}, - [1169] = {.lex_state = 14}, - [1170] = {.lex_state = 14}, - [1171] = {.lex_state = 14}, - [1172] = {.lex_state = 14}, - [1173] = {.lex_state = 14}, - [1174] = {.lex_state = 14}, - [1175] = {.lex_state = 14}, - [1176] = {.lex_state = 14}, - [1177] = {.lex_state = 13}, - [1178] = {.lex_state = 14}, - [1179] = {.lex_state = 13}, - [1180] = {.lex_state = 14}, - [1181] = {.lex_state = 14}, - [1182] = {.lex_state = 14}, - [1183] = {.lex_state = 14}, - [1184] = {.lex_state = 14}, - [1185] = {.lex_state = 14}, - [1186] = {.lex_state = 14}, - [1187] = {.lex_state = 14}, - [1188] = {.lex_state = 14}, - [1189] = {.lex_state = 14}, - [1190] = {.lex_state = 14}, - [1191] = {.lex_state = 14}, - [1192] = {.lex_state = 14}, - [1193] = {.lex_state = 14}, - [1194] = {.lex_state = 14}, - [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 14}, - [1197] = {.lex_state = 14}, - [1198] = {.lex_state = 14}, - [1199] = {.lex_state = 14}, - [1200] = {.lex_state = 14}, - [1201] = {.lex_state = 14}, - [1202] = {.lex_state = 14}, - [1203] = {.lex_state = 14}, - [1204] = {.lex_state = 14}, - [1205] = {.lex_state = 14}, - [1206] = {.lex_state = 14}, - [1207] = {.lex_state = 14}, - [1208] = {.lex_state = 14}, - [1209] = {.lex_state = 14}, - [1210] = {.lex_state = 14}, - [1211] = {.lex_state = 14}, - [1212] = {.lex_state = 14}, - [1213] = {.lex_state = 14}, - [1214] = {.lex_state = 14}, - [1215] = {.lex_state = 14}, - [1216] = {.lex_state = 14}, - [1217] = {.lex_state = 14}, - [1218] = {.lex_state = 14}, - [1219] = {.lex_state = 14}, - [1220] = {.lex_state = 14}, - [1221] = {.lex_state = 14}, - [1222] = {.lex_state = 14}, - [1223] = {.lex_state = 14}, - [1224] = {.lex_state = 14}, - [1225] = {.lex_state = 14}, - [1226] = {.lex_state = 14}, - [1227] = {.lex_state = 14}, - [1228] = {.lex_state = 14}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 14}, - [1232] = {.lex_state = 14}, - [1233] = {.lex_state = 14}, - [1234] = {.lex_state = 14}, - [1235] = {.lex_state = 14}, - [1236] = {.lex_state = 14}, - [1237] = {.lex_state = 14}, - [1238] = {.lex_state = 14}, - [1239] = {.lex_state = 14}, - [1240] = {.lex_state = 14}, - [1241] = {.lex_state = 14}, - [1242] = {.lex_state = 14}, - [1243] = {.lex_state = 14}, - [1244] = {.lex_state = 14}, - [1245] = {.lex_state = 14}, - [1246] = {.lex_state = 14}, - [1247] = {.lex_state = 14}, - [1248] = {.lex_state = 14}, - [1249] = {.lex_state = 14}, - [1250] = {.lex_state = 14}, - [1251] = {.lex_state = 14}, - [1252] = {.lex_state = 14}, - [1253] = {.lex_state = 14}, - [1254] = {.lex_state = 14}, - [1255] = {.lex_state = 14}, - [1256] = {.lex_state = 14}, - [1257] = {.lex_state = 14}, - [1258] = {.lex_state = 14}, - [1259] = {.lex_state = 14}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 14}, - [1262] = {.lex_state = 14}, - [1263] = {.lex_state = 14}, - [1264] = {.lex_state = 14}, - [1265] = {.lex_state = 14}, - [1266] = {.lex_state = 14}, - [1267] = {.lex_state = 14}, - [1268] = {.lex_state = 14}, - [1269] = {.lex_state = 14}, - [1270] = {.lex_state = 14}, - [1271] = {.lex_state = 14}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 14}, - [1274] = {.lex_state = 14}, - [1275] = {.lex_state = 14}, - [1276] = {.lex_state = 14}, - [1277] = {.lex_state = 14}, - [1278] = {.lex_state = 14}, - [1279] = {.lex_state = 14}, - [1280] = {.lex_state = 14}, - [1281] = {.lex_state = 14}, - [1282] = {.lex_state = 14}, - [1283] = {.lex_state = 14}, - [1284] = {.lex_state = 14}, - [1285] = {.lex_state = 14}, - [1286] = {.lex_state = 14}, - [1287] = {.lex_state = 14}, - [1288] = {.lex_state = 14}, - [1289] = {.lex_state = 14}, - [1290] = {.lex_state = 14}, - [1291] = {.lex_state = 14}, - [1292] = {.lex_state = 14}, - [1293] = {.lex_state = 14}, - [1294] = {.lex_state = 14}, - [1295] = {.lex_state = 14}, - [1296] = {.lex_state = 14}, - [1297] = {.lex_state = 14}, - [1298] = {.lex_state = 14}, - [1299] = {.lex_state = 14}, - [1300] = {.lex_state = 14}, - [1301] = {.lex_state = 14}, - [1302] = {.lex_state = 14}, - [1303] = {.lex_state = 14}, - [1304] = {.lex_state = 14}, - [1305] = {.lex_state = 14}, - [1306] = {.lex_state = 14}, - [1307] = {.lex_state = 14}, - [1308] = {.lex_state = 14}, - [1309] = {.lex_state = 14}, - [1310] = {.lex_state = 14}, - [1311] = {.lex_state = 14}, - [1312] = {.lex_state = 14}, - [1313] = {.lex_state = 14}, - [1314] = {.lex_state = 14}, - [1315] = {.lex_state = 14}, - [1316] = {.lex_state = 14}, - [1317] = {.lex_state = 14}, - [1318] = {.lex_state = 14}, - [1319] = {.lex_state = 14}, - [1320] = {.lex_state = 14}, - [1321] = {.lex_state = 14}, - [1322] = {.lex_state = 14}, - [1323] = {.lex_state = 14}, - [1324] = {.lex_state = 14}, - [1325] = {.lex_state = 14}, - [1326] = {.lex_state = 14}, - [1327] = {.lex_state = 14}, - [1328] = {.lex_state = 14}, - [1329] = {.lex_state = 14}, - [1330] = {.lex_state = 14}, - [1331] = {.lex_state = 14}, - [1332] = {.lex_state = 14}, - [1333] = {.lex_state = 14}, - [1334] = {.lex_state = 14}, - [1335] = {.lex_state = 14}, - [1336] = {.lex_state = 14}, - [1337] = {.lex_state = 14}, - [1338] = {.lex_state = 14}, - [1339] = {.lex_state = 14}, - [1340] = {.lex_state = 14}, - [1341] = {.lex_state = 14}, - [1342] = {.lex_state = 14}, - [1343] = {.lex_state = 14}, - [1344] = {.lex_state = 14}, - [1345] = {.lex_state = 14}, - [1346] = {.lex_state = 14}, - [1347] = {.lex_state = 14}, - [1348] = {.lex_state = 14}, - [1349] = {.lex_state = 14}, - [1350] = {.lex_state = 14}, - [1351] = {.lex_state = 14}, - [1352] = {.lex_state = 14}, - [1353] = {.lex_state = 14}, - [1354] = {.lex_state = 14}, - [1355] = {.lex_state = 14}, - [1356] = {.lex_state = 14}, - [1357] = {.lex_state = 14}, - [1358] = {.lex_state = 14}, - [1359] = {.lex_state = 14}, - [1360] = {.lex_state = 14}, - [1361] = {.lex_state = 14}, - [1362] = {.lex_state = 14}, - [1363] = {.lex_state = 14}, - [1364] = {.lex_state = 14}, - [1365] = {.lex_state = 14}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, - [1368] = {.lex_state = 14}, - [1369] = {.lex_state = 14}, - [1370] = {.lex_state = 14}, - [1371] = {.lex_state = 14}, - [1372] = {.lex_state = 14}, - [1373] = {.lex_state = 14}, - [1374] = {.lex_state = 14}, - [1375] = {.lex_state = 14}, - [1376] = {.lex_state = 14}, - [1377] = {.lex_state = 14}, - [1378] = {.lex_state = 14}, - [1379] = {.lex_state = 14}, - [1380] = {.lex_state = 14}, - [1381] = {.lex_state = 14}, - [1382] = {.lex_state = 14}, - [1383] = {.lex_state = 14}, - [1384] = {.lex_state = 14}, - [1385] = {.lex_state = 14}, - [1386] = {.lex_state = 14}, - [1387] = {.lex_state = 14}, - [1388] = {.lex_state = 14}, - [1389] = {.lex_state = 14}, - [1390] = {.lex_state = 14}, - [1391] = {.lex_state = 14}, - [1392] = {.lex_state = 14}, - [1393] = {.lex_state = 14}, - [1394] = {.lex_state = 14}, - [1395] = {.lex_state = 14}, - [1396] = {.lex_state = 14}, - [1397] = {.lex_state = 14}, - [1398] = {.lex_state = 14}, - [1399] = {.lex_state = 14}, - [1400] = {.lex_state = 14}, - [1401] = {.lex_state = 14}, - [1402] = {.lex_state = 14}, - [1403] = {.lex_state = 14}, - [1404] = {.lex_state = 14}, - [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 14}, - [1408] = {.lex_state = 14}, - [1409] = {.lex_state = 14}, - [1410] = {.lex_state = 14}, - [1411] = {.lex_state = 14}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 14}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 14}, - [1416] = {.lex_state = 14}, - [1417] = {.lex_state = 14}, - [1418] = {.lex_state = 14}, - [1419] = {.lex_state = 14}, - [1420] = {.lex_state = 14}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 14}, - [1424] = {.lex_state = 14}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 14}, - [1428] = {.lex_state = 14}, - [1429] = {.lex_state = 14}, - [1430] = {.lex_state = 14}, - [1431] = {.lex_state = 14}, - [1432] = {.lex_state = 14}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 14}, - [1435] = {.lex_state = 14}, - [1436] = {.lex_state = 14}, - [1437] = {.lex_state = 14}, - [1438] = {.lex_state = 14}, - [1439] = {.lex_state = 14}, - [1440] = {.lex_state = 14}, - [1441] = {.lex_state = 14}, - [1442] = {.lex_state = 14}, - [1443] = {.lex_state = 14}, - [1444] = {.lex_state = 14}, - [1445] = {.lex_state = 14}, - [1446] = {.lex_state = 14}, - [1447] = {.lex_state = 14}, - [1448] = {.lex_state = 14}, - [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 14}, - [1451] = {.lex_state = 14}, - [1452] = {.lex_state = 14}, - [1453] = {.lex_state = 14}, - [1454] = {.lex_state = 14}, - [1455] = {.lex_state = 14}, - [1456] = {.lex_state = 14}, - [1457] = {.lex_state = 14}, - [1458] = {.lex_state = 14}, - [1459] = {.lex_state = 14}, - [1460] = {.lex_state = 14}, - [1461] = {.lex_state = 14}, - [1462] = {.lex_state = 14}, - [1463] = {.lex_state = 14}, - [1464] = {.lex_state = 14}, - [1465] = {.lex_state = 14}, - [1466] = {.lex_state = 14}, - [1467] = {.lex_state = 14}, - [1468] = {.lex_state = 14}, - [1469] = {.lex_state = 14}, - [1470] = {.lex_state = 14}, - [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 14}, - [1474] = {.lex_state = 14}, - [1475] = {.lex_state = 14}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 14}, - [1478] = {.lex_state = 14}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 14}, - [1483] = {.lex_state = 14}, - [1484] = {.lex_state = 14}, - [1485] = {.lex_state = 14}, - [1486] = {.lex_state = 14}, - [1487] = {.lex_state = 14}, - [1488] = {.lex_state = 14}, - [1489] = {.lex_state = 14}, - [1490] = {.lex_state = 14}, - [1491] = {.lex_state = 14}, - [1492] = {.lex_state = 14}, - [1493] = {.lex_state = 14}, - [1494] = {.lex_state = 14}, - [1495] = {.lex_state = 14}, - [1496] = {.lex_state = 14}, - [1497] = {.lex_state = 14}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 14}, - [1500] = {.lex_state = 14}, - [1501] = {.lex_state = 14}, - [1502] = {.lex_state = 14}, - [1503] = {.lex_state = 14}, - [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 14}, - [1506] = {.lex_state = 14}, - [1507] = {.lex_state = 14}, - [1508] = {.lex_state = 14}, - [1509] = {.lex_state = 14}, - [1510] = {.lex_state = 14}, - [1511] = {.lex_state = 14}, - [1512] = {.lex_state = 14}, - [1513] = {.lex_state = 14}, - [1514] = {.lex_state = 14}, - [1515] = {.lex_state = 14}, - [1516] = {.lex_state = 14}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 14}, - [1519] = {.lex_state = 14}, - [1520] = {.lex_state = 14}, - [1521] = {.lex_state = 14}, - [1522] = {.lex_state = 14}, - [1523] = {.lex_state = 14}, - [1524] = {.lex_state = 14}, - [1525] = {.lex_state = 14}, - [1526] = {.lex_state = 14}, - [1527] = {.lex_state = 14}, - [1528] = {.lex_state = 14}, - [1529] = {.lex_state = 14}, - [1530] = {.lex_state = 14}, - [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 14}, - [1533] = {.lex_state = 14}, - [1534] = {.lex_state = 14}, - [1535] = {.lex_state = 14}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 14}, - [1538] = {.lex_state = 14}, - [1539] = {.lex_state = 14}, - [1540] = {.lex_state = 14}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 14}, - [1543] = {.lex_state = 14}, - [1544] = {.lex_state = 14}, - [1545] = {.lex_state = 14}, - [1546] = {.lex_state = 14}, - [1547] = {.lex_state = 14}, - [1548] = {.lex_state = 14}, - [1549] = {.lex_state = 14}, - [1550] = {.lex_state = 14}, - [1551] = {.lex_state = 14}, - [1552] = {.lex_state = 14}, - [1553] = {.lex_state = 14}, - [1554] = {.lex_state = 14}, - [1555] = {.lex_state = 14}, - [1556] = {.lex_state = 14}, - [1557] = {.lex_state = 14}, - [1558] = {.lex_state = 14}, - [1559] = {.lex_state = 14}, - [1560] = {.lex_state = 14}, - [1561] = {.lex_state = 14}, - [1562] = {.lex_state = 14}, - [1563] = {.lex_state = 14}, - [1564] = {.lex_state = 14}, - [1565] = {.lex_state = 14}, - [1566] = {.lex_state = 14}, - [1567] = {.lex_state = 14}, - [1568] = {.lex_state = 14}, - [1569] = {.lex_state = 14}, - [1570] = {.lex_state = 14}, - [1571] = {.lex_state = 14}, - [1572] = {.lex_state = 14}, - [1573] = {.lex_state = 14}, - [1574] = {.lex_state = 14}, - [1575] = {.lex_state = 14}, - [1576] = {.lex_state = 14}, - [1577] = {.lex_state = 14}, - [1578] = {.lex_state = 14}, - [1579] = {.lex_state = 14}, - [1580] = {.lex_state = 14}, - [1581] = {.lex_state = 14}, - [1582] = {.lex_state = 14}, - [1583] = {.lex_state = 14}, - [1584] = {.lex_state = 14}, - [1585] = {.lex_state = 14}, - [1586] = {.lex_state = 14}, - [1587] = {.lex_state = 14}, - [1588] = {.lex_state = 14}, - [1589] = {.lex_state = 14}, - [1590] = {.lex_state = 14}, - [1591] = {.lex_state = 14}, - [1592] = {.lex_state = 14}, - [1593] = {.lex_state = 14}, - [1594] = {.lex_state = 14}, - [1595] = {.lex_state = 14}, - [1596] = {.lex_state = 14}, - [1597] = {.lex_state = 14}, - [1598] = {.lex_state = 14}, - [1599] = {.lex_state = 14}, - [1600] = {.lex_state = 14}, - [1601] = {.lex_state = 14}, - [1602] = {.lex_state = 14}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 14}, - [1605] = {.lex_state = 14}, - [1606] = {.lex_state = 14}, - [1607] = {.lex_state = 14}, - [1608] = {.lex_state = 14}, - [1609] = {.lex_state = 14}, - [1610] = {.lex_state = 14}, - [1611] = {.lex_state = 14}, - [1612] = {.lex_state = 14}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 14}, - [1615] = {.lex_state = 14}, - [1616] = {.lex_state = 14}, - [1617] = {.lex_state = 14}, - [1618] = {.lex_state = 14}, - [1619] = {.lex_state = 14}, - [1620] = {.lex_state = 14}, - [1621] = {.lex_state = 14}, - [1622] = {.lex_state = 14}, - [1623] = {.lex_state = 14}, - [1624] = {.lex_state = 14}, - [1625] = {.lex_state = 14}, - [1626] = {.lex_state = 14}, - [1627] = {.lex_state = 14}, - [1628] = {.lex_state = 14}, - [1629] = {.lex_state = 14}, - [1630] = {.lex_state = 14}, - [1631] = {.lex_state = 14}, - [1632] = {.lex_state = 14}, - [1633] = {.lex_state = 14}, - [1634] = {.lex_state = 14}, - [1635] = {.lex_state = 14}, - [1636] = {.lex_state = 14}, - [1637] = {.lex_state = 14}, - [1638] = {.lex_state = 14}, - [1639] = {.lex_state = 14}, - [1640] = {.lex_state = 14}, - [1641] = {.lex_state = 14}, - [1642] = {.lex_state = 14}, - [1643] = {.lex_state = 14}, - [1644] = {.lex_state = 14}, - [1645] = {.lex_state = 14}, - [1646] = {.lex_state = 14}, - [1647] = {.lex_state = 14}, - [1648] = {.lex_state = 14}, - [1649] = {.lex_state = 14}, - [1650] = {.lex_state = 14}, - [1651] = {.lex_state = 14}, - [1652] = {.lex_state = 14}, - [1653] = {.lex_state = 14}, - [1654] = {.lex_state = 14}, - [1655] = {.lex_state = 14}, - [1656] = {.lex_state = 14}, - [1657] = {.lex_state = 14}, - [1658] = {.lex_state = 14}, - [1659] = {.lex_state = 14}, - [1660] = {.lex_state = 14}, - [1661] = {.lex_state = 14}, - [1662] = {.lex_state = 14}, - [1663] = {.lex_state = 14}, - [1664] = {.lex_state = 14}, - [1665] = {.lex_state = 14}, - [1666] = {.lex_state = 14}, - [1667] = {.lex_state = 14}, - [1668] = {.lex_state = 14}, - [1669] = {.lex_state = 14}, - [1670] = {.lex_state = 14}, - [1671] = {.lex_state = 14}, - [1672] = {.lex_state = 14}, - [1673] = {.lex_state = 14}, - [1674] = {.lex_state = 14}, - [1675] = {.lex_state = 14}, - [1676] = {.lex_state = 14}, - [1677] = {.lex_state = 14}, - [1678] = {.lex_state = 14}, - [1679] = {.lex_state = 14}, - [1680] = {.lex_state = 14}, - [1681] = {.lex_state = 14}, - [1682] = {.lex_state = 14}, - [1683] = {.lex_state = 14}, - [1684] = {.lex_state = 14}, - [1685] = {.lex_state = 14}, - [1686] = {.lex_state = 14}, - [1687] = {.lex_state = 14}, - [1688] = {.lex_state = 14}, - [1689] = {.lex_state = 14}, - [1690] = {.lex_state = 14}, - [1691] = {.lex_state = 14}, - [1692] = {.lex_state = 14}, - [1693] = {.lex_state = 14}, - [1694] = {.lex_state = 14}, - [1695] = {.lex_state = 14}, - [1696] = {.lex_state = 14}, - [1697] = {.lex_state = 14}, - [1698] = {.lex_state = 14}, - [1699] = {.lex_state = 14}, - [1700] = {.lex_state = 14}, - [1701] = {.lex_state = 14}, - [1702] = {.lex_state = 14}, - [1703] = {.lex_state = 14}, - [1704] = {.lex_state = 14}, - [1705] = {.lex_state = 14}, - [1706] = {.lex_state = 14}, - [1707] = {.lex_state = 14}, - [1708] = {.lex_state = 14}, - [1709] = {.lex_state = 14}, - [1710] = {.lex_state = 14}, - [1711] = {.lex_state = 14}, - [1712] = {.lex_state = 14}, - [1713] = {.lex_state = 14}, - [1714] = {.lex_state = 14}, - [1715] = {.lex_state = 14}, - [1716] = {.lex_state = 14}, - [1717] = {.lex_state = 14}, - [1718] = {.lex_state = 14}, - [1719] = {.lex_state = 14}, - [1720] = {.lex_state = 14}, - [1721] = {.lex_state = 14}, - [1722] = {.lex_state = 14}, - [1723] = {.lex_state = 14}, - [1724] = {.lex_state = 14}, - [1725] = {.lex_state = 14}, - [1726] = {.lex_state = 14}, - [1727] = {.lex_state = 14}, - [1728] = {.lex_state = 14}, - [1729] = {.lex_state = 14}, - [1730] = {.lex_state = 14}, - [1731] = {.lex_state = 14}, - [1732] = {.lex_state = 14}, - [1733] = {.lex_state = 14}, - [1734] = {.lex_state = 14}, - [1735] = {.lex_state = 14}, - [1736] = {.lex_state = 14}, - [1737] = {.lex_state = 14}, - [1738] = {.lex_state = 14}, - [1739] = {.lex_state = 14}, - [1740] = {.lex_state = 14}, - [1741] = {.lex_state = 14}, - [1742] = {.lex_state = 14}, - [1743] = {.lex_state = 14}, - [1744] = {.lex_state = 14}, - [1745] = {.lex_state = 14}, - [1746] = {.lex_state = 14}, - [1747] = {.lex_state = 14}, - [1748] = {.lex_state = 14}, - [1749] = {.lex_state = 14}, - [1750] = {.lex_state = 14}, - [1751] = {.lex_state = 14}, - [1752] = {.lex_state = 14}, - [1753] = {.lex_state = 14}, - [1754] = {.lex_state = 14}, - [1755] = {.lex_state = 14}, - [1756] = {.lex_state = 14}, - [1757] = {.lex_state = 14}, - [1758] = {.lex_state = 14}, - [1759] = {.lex_state = 14}, - [1760] = {.lex_state = 14}, - [1761] = {.lex_state = 14}, - [1762] = {.lex_state = 14}, - [1763] = {.lex_state = 14}, - [1764] = {.lex_state = 14}, - [1765] = {.lex_state = 14}, - [1766] = {.lex_state = 14}, - [1767] = {.lex_state = 14}, - [1768] = {.lex_state = 14}, - [1769] = {.lex_state = 14}, - [1770] = {.lex_state = 14}, - [1771] = {.lex_state = 14}, - [1772] = {.lex_state = 14}, - [1773] = {.lex_state = 14}, - [1774] = {.lex_state = 14}, - [1775] = {.lex_state = 14}, - [1776] = {.lex_state = 14}, - [1777] = {.lex_state = 14}, - [1778] = {.lex_state = 14}, - [1779] = {.lex_state = 14}, - [1780] = {.lex_state = 14}, - [1781] = {.lex_state = 14}, - [1782] = {.lex_state = 14}, - [1783] = {.lex_state = 14}, - [1784] = {.lex_state = 14}, - [1785] = {.lex_state = 14}, - [1786] = {.lex_state = 14}, - [1787] = {.lex_state = 14}, - [1788] = {.lex_state = 14}, - [1789] = {.lex_state = 14}, - [1790] = {.lex_state = 14}, - [1791] = {.lex_state = 14}, - [1792] = {.lex_state = 14}, - [1793] = {.lex_state = 14}, - [1794] = {.lex_state = 14}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 14}, - [1797] = {.lex_state = 14}, - [1798] = {.lex_state = 14}, - [1799] = {.lex_state = 14}, - [1800] = {.lex_state = 14}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 14}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 14}, - [1805] = {.lex_state = 14}, - [1806] = {.lex_state = 14}, - [1807] = {.lex_state = 14}, - [1808] = {.lex_state = 14}, - [1809] = {.lex_state = 14}, - [1810] = {.lex_state = 14}, - [1811] = {.lex_state = 14}, - [1812] = {.lex_state = 14}, - [1813] = {.lex_state = 14}, - [1814] = {.lex_state = 14}, - [1815] = {.lex_state = 14}, - [1816] = {.lex_state = 14}, - [1817] = {.lex_state = 14}, - [1818] = {.lex_state = 14}, - [1819] = {.lex_state = 14}, - [1820] = {.lex_state = 14}, - [1821] = {.lex_state = 14}, - [1822] = {.lex_state = 14}, - [1823] = {.lex_state = 14}, - [1824] = {.lex_state = 14}, - [1825] = {.lex_state = 14}, - [1826] = {.lex_state = 14}, - [1827] = {.lex_state = 14}, - [1828] = {.lex_state = 14}, - [1829] = {.lex_state = 14}, - [1830] = {.lex_state = 14}, - [1831] = {.lex_state = 14}, - [1832] = {.lex_state = 14}, - [1833] = {.lex_state = 14}, - [1834] = {.lex_state = 14}, - [1835] = {.lex_state = 14}, - [1836] = {.lex_state = 14}, - [1837] = {.lex_state = 14}, - [1838] = {.lex_state = 14}, - [1839] = {.lex_state = 14}, - [1840] = {.lex_state = 14}, - [1841] = {.lex_state = 14}, - [1842] = {.lex_state = 14}, - [1843] = {.lex_state = 14}, - [1844] = {.lex_state = 14}, - [1845] = {.lex_state = 14}, - [1846] = {.lex_state = 14}, - [1847] = {.lex_state = 14}, - [1848] = {.lex_state = 14}, - [1849] = {.lex_state = 14}, - [1850] = {.lex_state = 14}, - [1851] = {.lex_state = 14}, - [1852] = {.lex_state = 14}, - [1853] = {.lex_state = 14}, - [1854] = {.lex_state = 14}, - [1855] = {.lex_state = 14}, - [1856] = {.lex_state = 14}, - [1857] = {.lex_state = 14}, - [1858] = {.lex_state = 14}, - [1859] = {.lex_state = 14}, - [1860] = {.lex_state = 14}, - [1861] = {.lex_state = 14}, - [1862] = {.lex_state = 14}, - [1863] = {.lex_state = 14}, - [1864] = {.lex_state = 14}, - [1865] = {.lex_state = 14}, - [1866] = {.lex_state = 14}, - [1867] = {.lex_state = 14}, - [1868] = {.lex_state = 14}, - [1869] = {.lex_state = 14}, - [1870] = {.lex_state = 14}, - [1871] = {.lex_state = 14}, - [1872] = {.lex_state = 14}, - [1873] = {.lex_state = 14}, - [1874] = {.lex_state = 14}, - [1875] = {.lex_state = 14}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 14}, - [1878] = {.lex_state = 14}, - [1879] = {.lex_state = 14}, - [1880] = {.lex_state = 14}, - [1881] = {.lex_state = 14}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 14}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 14}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 14}, - [1888] = {.lex_state = 14}, - [1889] = {.lex_state = 14}, - [1890] = {.lex_state = 14}, - [1891] = {.lex_state = 14}, - [1892] = {.lex_state = 14}, - [1893] = {.lex_state = 14}, - [1894] = {.lex_state = 14}, - [1895] = {.lex_state = 14}, - [1896] = {.lex_state = 14}, - [1897] = {.lex_state = 14}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 14}, - [1900] = {.lex_state = 14}, - [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 14}, - [1903] = {.lex_state = 14}, - [1904] = {.lex_state = 14}, - [1905] = {.lex_state = 14}, - [1906] = {.lex_state = 14}, - [1907] = {.lex_state = 14}, - [1908] = {.lex_state = 14}, - [1909] = {.lex_state = 14}, - [1910] = {.lex_state = 14}, - [1911] = {.lex_state = 14}, - [1912] = {.lex_state = 14}, - [1913] = {.lex_state = 14}, - [1914] = {.lex_state = 14}, - [1915] = {.lex_state = 14}, - [1916] = {.lex_state = 14}, - [1917] = {.lex_state = 14}, - [1918] = {.lex_state = 14}, - [1919] = {.lex_state = 14}, - [1920] = {.lex_state = 14}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 14}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 14}, - [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 14}, - [1927] = {.lex_state = 14}, - [1928] = {.lex_state = 14}, - [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 14}, - [1931] = {.lex_state = 14}, - [1932] = {.lex_state = 14}, - [1933] = {.lex_state = 14}, - [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 14}, - [1936] = {.lex_state = 14}, - [1937] = {.lex_state = 14}, - [1938] = {.lex_state = 14}, - [1939] = {.lex_state = 14}, - [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 14}, - [1942] = {.lex_state = 14}, - [1943] = {.lex_state = 14}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 14}, - [1946] = {.lex_state = 14}, - [1947] = {.lex_state = 14}, - [1948] = {.lex_state = 14}, - [1949] = {.lex_state = 14}, - [1950] = {.lex_state = 14}, - [1951] = {.lex_state = 14}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 14}, - [1954] = {.lex_state = 14}, - [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 14}, - [1957] = {.lex_state = 14}, - [1958] = {.lex_state = 14}, - [1959] = {.lex_state = 14}, - [1960] = {.lex_state = 14}, - [1961] = {.lex_state = 14}, - [1962] = {.lex_state = 14}, - [1963] = {.lex_state = 14}, - [1964] = {.lex_state = 14}, - [1965] = {.lex_state = 14}, - [1966] = {.lex_state = 14}, - [1967] = {.lex_state = 14}, - [1968] = {.lex_state = 14}, - [1969] = {.lex_state = 14}, - [1970] = {.lex_state = 14}, - [1971] = {.lex_state = 14}, - [1972] = {.lex_state = 14}, - [1973] = {.lex_state = 14}, - [1974] = {.lex_state = 14}, - [1975] = {.lex_state = 14}, - [1976] = {.lex_state = 14}, - [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 14}, - [1979] = {.lex_state = 14}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 14}, - [1982] = {.lex_state = 14}, - [1983] = {.lex_state = 14}, - [1984] = {.lex_state = 14}, - [1985] = {.lex_state = 14}, - [1986] = {.lex_state = 14}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 14}, - [1989] = {.lex_state = 14}, - [1990] = {.lex_state = 14}, - [1991] = {.lex_state = 14}, - [1992] = {.lex_state = 14}, - [1993] = {.lex_state = 14}, - [1994] = {.lex_state = 14}, - [1995] = {.lex_state = 14}, - [1996] = {.lex_state = 14}, - [1997] = {.lex_state = 14}, - [1998] = {.lex_state = 14}, - [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 14}, - [2001] = {.lex_state = 14}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 14}, - [2004] = {.lex_state = 14}, - [2005] = {.lex_state = 14}, - [2006] = {.lex_state = 14}, - [2007] = {.lex_state = 14}, - [2008] = {.lex_state = 14}, - [2009] = {.lex_state = 14}, - [2010] = {.lex_state = 14}, - [2011] = {.lex_state = 14}, - [2012] = {.lex_state = 14}, - [2013] = {.lex_state = 14}, - [2014] = {.lex_state = 14}, - [2015] = {.lex_state = 14}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 14}, - [2018] = {.lex_state = 14}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 14}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 14}, - [2025] = {.lex_state = 14}, - [2026] = {.lex_state = 14}, - [2027] = {.lex_state = 14}, - [2028] = {.lex_state = 14}, - [2029] = {.lex_state = 14}, - [2030] = {.lex_state = 14}, - [2031] = {.lex_state = 14}, - [2032] = {.lex_state = 14}, - [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 14}, - [2035] = {.lex_state = 14}, - [2036] = {.lex_state = 14}, - [2037] = {.lex_state = 14}, - [2038] = {.lex_state = 14}, - [2039] = {.lex_state = 14}, - [2040] = {.lex_state = 14}, - [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 14}, - [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 14}, - [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 14}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 14}, - [2050] = {.lex_state = 14}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 14}, - [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 14}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 14}, - [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 14}, - [2065] = {.lex_state = 14}, - [2066] = {.lex_state = 14}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 14}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 14}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 0}, - [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 14}, - [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 14}, - [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 14}, - [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 14}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 14}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, - [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0}, - [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 14}, - [2236] = {.lex_state = 14}, - [2237] = {.lex_state = 14}, - [2238] = {.lex_state = 14}, - [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 14}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 14}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 14}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 14}, - [2282] = {.lex_state = 14}, - [2283] = {.lex_state = 14}, - [2284] = {.lex_state = 14}, - [2285] = {.lex_state = 14}, - [2286] = {.lex_state = 14}, - [2287] = {.lex_state = 14}, - [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 13}, - [2290] = {.lex_state = 13}, - [2291] = {.lex_state = 13}, - [2292] = {.lex_state = 13}, - [2293] = {.lex_state = 13}, - [2294] = {.lex_state = 13}, - [2295] = {.lex_state = 13}, - [2296] = {.lex_state = 13}, - [2297] = {.lex_state = 13}, - [2298] = {.lex_state = 13}, - [2299] = {.lex_state = 13}, - [2300] = {.lex_state = 13}, - [2301] = {.lex_state = 13}, - [2302] = {.lex_state = 13}, - [2303] = {.lex_state = 13}, - [2304] = {.lex_state = 13}, - [2305] = {.lex_state = 13}, - [2306] = {.lex_state = 13}, - [2307] = {.lex_state = 13}, - [2308] = {.lex_state = 13}, - [2309] = {.lex_state = 13}, - [2310] = {.lex_state = 13}, - [2311] = {.lex_state = 13}, - [2312] = {.lex_state = 13}, - [2313] = {.lex_state = 13}, - [2314] = {.lex_state = 13}, - [2315] = {.lex_state = 13}, - [2316] = {.lex_state = 13}, - [2317] = {.lex_state = 13}, - [2318] = {.lex_state = 13}, - [2319] = {.lex_state = 13}, - [2320] = {.lex_state = 13}, - [2321] = {.lex_state = 13}, - [2322] = {.lex_state = 13}, - [2323] = {.lex_state = 13}, - [2324] = {.lex_state = 13}, - [2325] = {.lex_state = 13}, - [2326] = {.lex_state = 13}, - [2327] = {.lex_state = 13}, - [2328] = {.lex_state = 13}, - [2329] = {.lex_state = 13}, - [2330] = {.lex_state = 13}, - [2331] = {.lex_state = 13}, - [2332] = {.lex_state = 13}, - [2333] = {.lex_state = 13}, - [2334] = {.lex_state = 13}, - [2335] = {.lex_state = 13}, - [2336] = {.lex_state = 13}, - [2337] = {.lex_state = 13}, - [2338] = {.lex_state = 13}, - [2339] = {.lex_state = 13}, - [2340] = {.lex_state = 13}, - [2341] = {.lex_state = 13}, - [2342] = {.lex_state = 13}, - [2343] = {.lex_state = 13}, - [2344] = {.lex_state = 13}, - [2345] = {.lex_state = 13}, - [2346] = {.lex_state = 13}, - [2347] = {.lex_state = 13}, - [2348] = {.lex_state = 13}, - [2349] = {.lex_state = 13}, - [2350] = {.lex_state = 13}, - [2351] = {.lex_state = 13}, - [2352] = {.lex_state = 13}, - [2353] = {.lex_state = 13}, - [2354] = {.lex_state = 13}, - [2355] = {.lex_state = 13}, - [2356] = {.lex_state = 13}, - [2357] = {.lex_state = 13}, - [2358] = {.lex_state = 13}, - [2359] = {.lex_state = 13}, - [2360] = {.lex_state = 13}, - [2361] = {.lex_state = 13}, - [2362] = {.lex_state = 13}, - [2363] = {.lex_state = 13}, - [2364] = {.lex_state = 13}, - [2365] = {.lex_state = 13}, - [2366] = {.lex_state = 13}, - [2367] = {.lex_state = 13}, - [2368] = {.lex_state = 13}, - [2369] = {.lex_state = 13}, - [2370] = {.lex_state = 13}, - [2371] = {.lex_state = 13}, - [2372] = {.lex_state = 13}, - [2373] = {.lex_state = 13}, - [2374] = {.lex_state = 13}, - [2375] = {.lex_state = 13}, - [2376] = {.lex_state = 13}, - [2377] = {.lex_state = 13}, - [2378] = {.lex_state = 13}, - [2379] = {.lex_state = 13}, - [2380] = {.lex_state = 13}, - [2381] = {.lex_state = 13}, - [2382] = {.lex_state = 13}, - [2383] = {.lex_state = 13}, - [2384] = {.lex_state = 13}, - [2385] = {.lex_state = 13}, - [2386] = {.lex_state = 13}, - [2387] = {.lex_state = 13}, - [2388] = {.lex_state = 13}, - [2389] = {.lex_state = 13}, - [2390] = {.lex_state = 13}, - [2391] = {.lex_state = 13}, - [2392] = {.lex_state = 13}, - [2393] = {.lex_state = 13}, - [2394] = {.lex_state = 13}, - [2395] = {.lex_state = 13}, - [2396] = {.lex_state = 13}, - [2397] = {.lex_state = 13}, - [2398] = {.lex_state = 13}, - [2399] = {.lex_state = 13}, - [2400] = {.lex_state = 13}, - [2401] = {.lex_state = 13}, - [2402] = {.lex_state = 13}, - [2403] = {.lex_state = 13}, - [2404] = {.lex_state = 13}, - [2405] = {.lex_state = 13}, - [2406] = {.lex_state = 13}, - [2407] = {.lex_state = 13}, - [2408] = {.lex_state = 13}, - [2409] = {.lex_state = 13}, - [2410] = {.lex_state = 13}, - [2411] = {.lex_state = 13}, - [2412] = {.lex_state = 13}, - [2413] = {.lex_state = 13}, - [2414] = {.lex_state = 13}, - [2415] = {.lex_state = 13}, - [2416] = {.lex_state = 13}, - [2417] = {.lex_state = 13}, - [2418] = {.lex_state = 13}, - [2419] = {.lex_state = 13}, - [2420] = {.lex_state = 13}, - [2421] = {.lex_state = 13}, - [2422] = {.lex_state = 13}, - [2423] = {.lex_state = 13}, - [2424] = {.lex_state = 13}, - [2425] = {.lex_state = 13}, - [2426] = {.lex_state = 13}, - [2427] = {.lex_state = 13}, - [2428] = {.lex_state = 13}, - [2429] = {.lex_state = 13}, - [2430] = {.lex_state = 13}, - [2431] = {.lex_state = 13}, - [2432] = {.lex_state = 13}, - [2433] = {.lex_state = 13}, - [2434] = {.lex_state = 13}, - [2435] = {.lex_state = 13}, - [2436] = {.lex_state = 13}, - [2437] = {.lex_state = 13}, - [2438] = {.lex_state = 13}, - [2439] = {.lex_state = 13}, - [2440] = {.lex_state = 13}, - [2441] = {.lex_state = 13}, - [2442] = {.lex_state = 13}, - [2443] = {.lex_state = 13}, - [2444] = {.lex_state = 13}, - [2445] = {.lex_state = 13}, - [2446] = {.lex_state = 13}, - [2447] = {.lex_state = 13}, - [2448] = {.lex_state = 13}, - [2449] = {.lex_state = 13}, - [2450] = {.lex_state = 13}, - [2451] = {.lex_state = 13}, - [2452] = {.lex_state = 13}, - [2453] = {.lex_state = 13}, - [2454] = {.lex_state = 13}, - [2455] = {.lex_state = 13}, - [2456] = {.lex_state = 13}, - [2457] = {.lex_state = 13}, - [2458] = {.lex_state = 13}, - [2459] = {.lex_state = 13}, - [2460] = {.lex_state = 13}, - [2461] = {.lex_state = 13}, - [2462] = {.lex_state = 13}, - [2463] = {.lex_state = 13}, - [2464] = {.lex_state = 13}, - [2465] = {.lex_state = 13}, - [2466] = {.lex_state = 13}, - [2467] = {.lex_state = 13}, - [2468] = {.lex_state = 13}, - [2469] = {.lex_state = 13}, - [2470] = {.lex_state = 13}, - [2471] = {.lex_state = 13}, - [2472] = {.lex_state = 13}, - [2473] = {.lex_state = 13}, - [2474] = {.lex_state = 13}, - [2475] = {.lex_state = 13}, - [2476] = {.lex_state = 13}, - [2477] = {.lex_state = 13}, - [2478] = {.lex_state = 13}, - [2479] = {.lex_state = 13}, - [2480] = {.lex_state = 13}, - [2481] = {.lex_state = 13}, - [2482] = {.lex_state = 13}, - [2483] = {.lex_state = 13}, - [2484] = {.lex_state = 13}, - [2485] = {.lex_state = 13}, - [2486] = {.lex_state = 13}, - [2487] = {.lex_state = 13}, - [2488] = {.lex_state = 13}, - [2489] = {.lex_state = 13}, - [2490] = {.lex_state = 13}, - [2491] = {.lex_state = 13}, - [2492] = {.lex_state = 13}, - [2493] = {.lex_state = 13}, - [2494] = {.lex_state = 14}, - [2495] = {.lex_state = 14}, - [2496] = {.lex_state = 14}, - [2497] = {.lex_state = 14}, - [2498] = {.lex_state = 14}, - [2499] = {.lex_state = 14}, - [2500] = {.lex_state = 14}, - [2501] = {.lex_state = 14}, - [2502] = {.lex_state = 14}, - [2503] = {.lex_state = 14}, - [2504] = {.lex_state = 0}, - [2505] = {.lex_state = 0}, - [2506] = {.lex_state = 0}, - [2507] = {.lex_state = 0}, - [2508] = {.lex_state = 0}, - [2509] = {.lex_state = 0}, - [2510] = {.lex_state = 2}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 2}, - [2513] = {.lex_state = 2}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 2}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 2}, - [2519] = {.lex_state = 14}, - [2520] = {.lex_state = 14}, - [2521] = {.lex_state = 0}, - [2522] = {.lex_state = 14}, - [2523] = {.lex_state = 2}, - [2524] = {.lex_state = 2}, - [2525] = {.lex_state = 14}, - [2526] = {.lex_state = 14}, - [2527] = {.lex_state = 0}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 14}, - [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 14}, - [2532] = {.lex_state = 2}, - [2533] = {.lex_state = 2}, - [2534] = {.lex_state = 2}, - [2535] = {.lex_state = 2}, - [2536] = {.lex_state = 14}, - [2537] = {.lex_state = 2}, - [2538] = {.lex_state = 0}, - [2539] = {.lex_state = 0}, - [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 2}, - [2543] = {.lex_state = 2}, - [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 14}, - [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 14}, - [2549] = {.lex_state = 14}, - [2550] = {.lex_state = 14}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 14}, - [2553] = {.lex_state = 14}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 14}, - [2556] = {.lex_state = 14}, - [2557] = {.lex_state = 14}, - [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 14}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 14}, - [2563] = {.lex_state = 14}, - [2564] = {.lex_state = 14}, - [2565] = {.lex_state = 14}, - [2566] = {.lex_state = 14}, - [2567] = {.lex_state = 0}, - [2568] = {.lex_state = 14}, - [2569] = {.lex_state = 14}, - [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 14}, - [2573] = {.lex_state = 14}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 14}, - [2576] = {.lex_state = 14}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 14}, - [2579] = {.lex_state = 14}, - [2580] = {.lex_state = 14}, - [2581] = {.lex_state = 14}, - [2582] = {.lex_state = 14}, - [2583] = {.lex_state = 14}, - [2584] = {.lex_state = 14}, - [2585] = {.lex_state = 14}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 14}, - [2588] = {.lex_state = 14}, - [2589] = {.lex_state = 14}, - [2590] = {.lex_state = 14}, - [2591] = {.lex_state = 14}, - [2592] = {.lex_state = 14}, - [2593] = {.lex_state = 14}, - [2594] = {.lex_state = 14}, - [2595] = {.lex_state = 14}, - [2596] = {.lex_state = 14}, - [2597] = {.lex_state = 14}, - [2598] = {.lex_state = 14}, - [2599] = {.lex_state = 14}, - [2600] = {.lex_state = 0}, - [2601] = {.lex_state = 0}, - [2602] = {.lex_state = 0}, - [2603] = {.lex_state = 14}, - [2604] = {.lex_state = 14}, - [2605] = {.lex_state = 0}, - [2606] = {.lex_state = 14}, - [2607] = {.lex_state = 14}, - [2608] = {.lex_state = 14}, - [2609] = {.lex_state = 14}, - [2610] = {.lex_state = 0}, - [2611] = {.lex_state = 0}, - [2612] = {.lex_state = 14}, - [2613] = {.lex_state = 0}, - [2614] = {.lex_state = 14}, - [2615] = {.lex_state = 0}, - [2616] = {.lex_state = 0}, - [2617] = {.lex_state = 14}, - [2618] = {.lex_state = 14}, - [2619] = {.lex_state = 14}, - [2620] = {.lex_state = 14}, - [2621] = {.lex_state = 14}, - [2622] = {.lex_state = 0}, - [2623] = {.lex_state = 14}, - [2624] = {.lex_state = 0}, - [2625] = {.lex_state = 0}, - [2626] = {.lex_state = 14}, - [2627] = {.lex_state = 0}, - [2628] = {.lex_state = 0}, - [2629] = {.lex_state = 0}, - [2630] = {.lex_state = 14}, - [2631] = {.lex_state = 0}, - [2632] = {.lex_state = 14}, - [2633] = {.lex_state = 14}, - [2634] = {.lex_state = 14}, - [2635] = {.lex_state = 14}, - [2636] = {.lex_state = 14}, - [2637] = {.lex_state = 14}, - [2638] = {.lex_state = 14}, - [2639] = {.lex_state = 0}, - [2640] = {.lex_state = 0}, - [2641] = {.lex_state = 14}, - [2642] = {.lex_state = 14}, - [2643] = {.lex_state = 14}, - [2644] = {.lex_state = 14}, - [2645] = {.lex_state = 14}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 14}, - [2649] = {.lex_state = 14}, - [2650] = {.lex_state = 14}, - [2651] = {.lex_state = 14}, - [2652] = {.lex_state = 14}, - [2653] = {.lex_state = 14}, - [2654] = {.lex_state = 0}, - [2655] = {.lex_state = 14}, - [2656] = {.lex_state = 0}, - [2657] = {.lex_state = 0}, - [2658] = {.lex_state = 0}, - [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 0}, - [2661] = {.lex_state = 14}, - [2662] = {.lex_state = 14}, - [2663] = {.lex_state = 0}, - [2664] = {.lex_state = 14}, - [2665] = {.lex_state = 0}, - [2666] = {.lex_state = 14}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 0}, - [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 0}, - [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 0}, - [2673] = {.lex_state = 14}, - [2674] = {.lex_state = 14}, - [2675] = {.lex_state = 14}, - [2676] = {.lex_state = 0}, - [2677] = {.lex_state = 14}, - [2678] = {.lex_state = 14}, - [2679] = {.lex_state = 14}, - [2680] = {.lex_state = 14}, - [2681] = {.lex_state = 0}, - [2682] = {.lex_state = 14}, - [2683] = {.lex_state = 14}, - [2684] = {.lex_state = 14}, - [2685] = {.lex_state = 14}, - [2686] = {.lex_state = 0}, - [2687] = {.lex_state = 14}, - [2688] = {.lex_state = 14}, - [2689] = {.lex_state = 14}, - [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 14}, - [2692] = {.lex_state = 14}, - [2693] = {.lex_state = 14}, - [2694] = {.lex_state = 14}, - [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 0}, - [2697] = {.lex_state = 0}, - [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 14}, - [2700] = {.lex_state = 14}, - [2701] = {.lex_state = 14}, - [2702] = {.lex_state = 14}, - [2703] = {.lex_state = 0}, - [2704] = {.lex_state = 0}, - [2705] = {.lex_state = 14}, - [2706] = {.lex_state = 14}, - [2707] = {.lex_state = 14}, - [2708] = {.lex_state = 14}, - [2709] = {.lex_state = 0}, - [2710] = {.lex_state = 14}, - [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 14}, - [2713] = {.lex_state = 14}, - [2714] = {.lex_state = 14}, - [2715] = {.lex_state = 14}, - [2716] = {.lex_state = 14}, - [2717] = {.lex_state = 14}, - [2718] = {.lex_state = 0}, - [2719] = {.lex_state = 14}, - [2720] = {.lex_state = 0}, - [2721] = {.lex_state = 14}, - [2722] = {.lex_state = 14}, - [2723] = {.lex_state = 14}, - [2724] = {.lex_state = 14}, - [2725] = {.lex_state = 14}, - [2726] = {.lex_state = 14}, - [2727] = {.lex_state = 14}, - [2728] = {.lex_state = 14}, - [2729] = {.lex_state = 14}, - [2730] = {.lex_state = 14}, - [2731] = {.lex_state = 14}, - [2732] = {.lex_state = 14}, - [2733] = {.lex_state = 14}, - [2734] = {.lex_state = 14}, - [2735] = {.lex_state = 0}, - [2736] = {.lex_state = 14}, - [2737] = {.lex_state = 0}, - [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 0}, - [2740] = {.lex_state = 0}, - [2741] = {.lex_state = 0}, - [2742] = {.lex_state = 14}, - [2743] = {.lex_state = 14}, - [2744] = {.lex_state = 14}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 0}, - [2747] = {.lex_state = 14}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 14}, - [2750] = {.lex_state = 14}, - [2751] = {.lex_state = 0}, - [2752] = {.lex_state = 0}, - [2753] = {.lex_state = 14}, - [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 14}, - [2756] = {.lex_state = 14}, - [2757] = {.lex_state = 14}, - [2758] = {.lex_state = 14}, - [2759] = {.lex_state = 14}, - [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 14}, - [2762] = {.lex_state = 14}, - [2763] = {.lex_state = 14}, - [2764] = {.lex_state = 14}, - [2765] = {.lex_state = 14}, - [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 0}, - [2768] = {.lex_state = 14}, - [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 14}, - [2771] = {.lex_state = 14}, - [2772] = {.lex_state = 14}, - [2773] = {.lex_state = 14}, - [2774] = {.lex_state = 14}, - [2775] = {.lex_state = 14}, - [2776] = {.lex_state = 14}, - [2777] = {.lex_state = 14}, - [2778] = {.lex_state = 14}, - [2779] = {.lex_state = 14}, - [2780] = {.lex_state = 14}, - [2781] = {.lex_state = 14}, - [2782] = {.lex_state = 0}, - [2783] = {.lex_state = 14}, - [2784] = {.lex_state = 14}, - [2785] = {.lex_state = 0}, - [2786] = {.lex_state = 0}, - [2787] = {.lex_state = 0}, - [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 14}, - [2790] = {.lex_state = 0}, - [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 0}, - [2793] = {.lex_state = 0}, - [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 0}, - [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 0}, - [2799] = {.lex_state = 0}, - [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 0}, - [2802] = {.lex_state = 0}, - [2803] = {.lex_state = 0}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 0}, - [2806] = {.lex_state = 0}, - [2807] = {.lex_state = 0}, - [2808] = {.lex_state = 0}, - [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 0}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 0}, - [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 0}, - [2816] = {.lex_state = 0}, - [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 0}, - [2820] = {.lex_state = 0}, - [2821] = {.lex_state = 0}, - [2822] = {.lex_state = 0}, - [2823] = {.lex_state = 0}, - [2824] = {.lex_state = 0}, - [2825] = {.lex_state = 0}, - [2826] = {.lex_state = 0}, - [2827] = {.lex_state = 0}, - [2828] = {.lex_state = 0}, - [2829] = {.lex_state = 0}, - [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0}, - [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 0}, - [2835] = {.lex_state = 0}, - [2836] = {.lex_state = 0}, - [2837] = {.lex_state = 0}, - [2838] = {.lex_state = 0}, - [2839] = {.lex_state = 0}, - [2840] = {.lex_state = 0}, - [2841] = {.lex_state = 2}, - [2842] = {.lex_state = 0}, - [2843] = {.lex_state = 0}, - [2844] = {.lex_state = 0}, - [2845] = {.lex_state = 0}, - [2846] = {.lex_state = 0}, - [2847] = {.lex_state = 0}, - [2848] = {.lex_state = 0}, - [2849] = {.lex_state = 0}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 0}, - [2852] = {.lex_state = 0}, - [2853] = {.lex_state = 0}, - [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 3}, - [2856] = {.lex_state = 0}, - [2857] = {.lex_state = 0}, - [2858] = {.lex_state = 3}, - [2859] = {.lex_state = 0}, - [2860] = {.lex_state = 0}, - [2861] = {.lex_state = 0}, - [2862] = {.lex_state = 0}, - [2863] = {.lex_state = 0}, - [2864] = {.lex_state = 0}, - [2865] = {.lex_state = 0}, - [2866] = {.lex_state = 0}, - [2867] = {.lex_state = 0}, - [2868] = {.lex_state = 0}, - [2869] = {.lex_state = 0}, - [2870] = {.lex_state = 0}, - [2871] = {.lex_state = 0}, - [2872] = {.lex_state = 0}, - [2873] = {.lex_state = 0}, - [2874] = {.lex_state = 0}, - [2875] = {.lex_state = 0}, - [2876] = {.lex_state = 0}, - [2877] = {.lex_state = 3}, - [2878] = {.lex_state = 0}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 0}, - [2881] = {.lex_state = 0}, - [2882] = {.lex_state = 0}, - [2883] = {.lex_state = 0}, - [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 0}, - [2886] = {.lex_state = 0}, - [2887] = {.lex_state = 0}, - [2888] = {.lex_state = 0}, - [2889] = {.lex_state = 0}, - [2890] = {.lex_state = 0}, - [2891] = {.lex_state = 0}, - [2892] = {.lex_state = 0}, - [2893] = {.lex_state = 0}, - [2894] = {.lex_state = 0}, - [2895] = {.lex_state = 0}, - [2896] = {.lex_state = 0}, - [2897] = {.lex_state = 0}, - [2898] = {.lex_state = 0}, - [2899] = {.lex_state = 0}, - [2900] = {.lex_state = 0}, - [2901] = {.lex_state = 0}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 0}, - [2905] = {.lex_state = 14}, - [2906] = {.lex_state = 0}, - [2907] = {.lex_state = 0}, - [2908] = {.lex_state = 0}, - [2909] = {.lex_state = 0}, - [2910] = {.lex_state = 0}, - [2911] = {.lex_state = 0}, - [2912] = {.lex_state = 0}, - [2913] = {.lex_state = 0}, - [2914] = {.lex_state = 0}, - [2915] = {.lex_state = 0}, - [2916] = {.lex_state = 0}, - [2917] = {.lex_state = 0}, - [2918] = {.lex_state = 0}, - [2919] = {.lex_state = 0}, - [2920] = {.lex_state = 0}, - [2921] = {.lex_state = 0}, - [2922] = {.lex_state = 0}, - [2923] = {.lex_state = 0}, - [2924] = {.lex_state = 0}, - [2925] = {.lex_state = 0}, - [2926] = {.lex_state = 2}, - [2927] = {.lex_state = 3}, - [2928] = {.lex_state = 0}, - [2929] = {.lex_state = 0}, - [2930] = {.lex_state = 0}, - [2931] = {.lex_state = 0}, - [2932] = {.lex_state = 0}, - [2933] = {.lex_state = 0}, - [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 2}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 14}, - [2939] = {.lex_state = 2}, - [2940] = {.lex_state = 2}, - [2941] = {.lex_state = 0}, - [2942] = {.lex_state = 0}, - [2943] = {.lex_state = 0}, - [2944] = {.lex_state = 0}, - [2945] = {.lex_state = 0}, - [2946] = {.lex_state = 0}, - [2947] = {.lex_state = 14}, - [2948] = {.lex_state = 0}, - [2949] = {.lex_state = 14}, - [2950] = {.lex_state = 0}, - [2951] = {.lex_state = 0}, - [2952] = {.lex_state = 0}, - [2953] = {.lex_state = 0}, - [2954] = {.lex_state = 0}, - [2955] = {.lex_state = 14}, - [2956] = {.lex_state = 14}, - [2957] = {.lex_state = 0}, - [2958] = {.lex_state = 0}, - [2959] = {.lex_state = 14}, - [2960] = {.lex_state = 0}, - [2961] = {.lex_state = 0}, - [2962] = {.lex_state = 0}, - [2963] = {.lex_state = 0}, - [2964] = {.lex_state = 0}, - [2965] = {.lex_state = 0}, - [2966] = {.lex_state = 0}, - [2967] = {.lex_state = 0}, - [2968] = {.lex_state = 0}, - [2969] = {.lex_state = 0}, - [2970] = {.lex_state = 0}, - [2971] = {.lex_state = 0}, - [2972] = {.lex_state = 14}, - [2973] = {.lex_state = 0}, - [2974] = {.lex_state = 0}, - [2975] = {.lex_state = 0}, - [2976] = {.lex_state = 0}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 0}, - [2979] = {.lex_state = 14}, - [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 0}, - [2982] = {.lex_state = 0}, - [2983] = {.lex_state = 0}, - [2984] = {.lex_state = 0}, - [2985] = {.lex_state = 0}, - [2986] = {.lex_state = 0}, - [2987] = {.lex_state = 14}, - [2988] = {.lex_state = 14}, - [2989] = {.lex_state = 0}, - [2990] = {.lex_state = 0}, - [2991] = {.lex_state = 0}, - [2992] = {.lex_state = 14}, - [2993] = {.lex_state = 14}, - [2994] = {.lex_state = 0}, - [2995] = {.lex_state = 0}, - [2996] = {.lex_state = 0}, - [2997] = {.lex_state = 3}, - [2998] = {.lex_state = 0}, - [2999] = {.lex_state = 0}, - [3000] = {.lex_state = 0}, - [3001] = {.lex_state = 14}, - [3002] = {.lex_state = 0}, - [3003] = {.lex_state = 0}, - [3004] = {.lex_state = 14}, - [3005] = {.lex_state = 0}, - [3006] = {.lex_state = 0}, - [3007] = {.lex_state = 0}, - [3008] = {.lex_state = 0}, - [3009] = {.lex_state = 0}, + [1] = {.lex_state = 18}, + [2] = {.lex_state = 17}, + [3] = {.lex_state = 17}, + [4] = {.lex_state = 17}, + [5] = {.lex_state = 17}, + [6] = {.lex_state = 17}, + [7] = {.lex_state = 17}, + [8] = {.lex_state = 17}, + [9] = {.lex_state = 17}, + [10] = {.lex_state = 17}, + [11] = {.lex_state = 17}, + [12] = {.lex_state = 17}, + [13] = {.lex_state = 17}, + [14] = {.lex_state = 17}, + [15] = {.lex_state = 17}, + [16] = {.lex_state = 17}, + [17] = {.lex_state = 17}, + [18] = {.lex_state = 17}, + [19] = {.lex_state = 17}, + [20] = {.lex_state = 16}, + [21] = {.lex_state = 16}, + [22] = {.lex_state = 16}, + [23] = {.lex_state = 16}, + [24] = {.lex_state = 16}, + [25] = {.lex_state = 16}, + [26] = {.lex_state = 16}, + [27] = {.lex_state = 16}, + [28] = {.lex_state = 16}, + [29] = {.lex_state = 16}, + [30] = {.lex_state = 16}, + [31] = {.lex_state = 16}, + [32] = {.lex_state = 16}, + [33] = {.lex_state = 16}, + [34] = {.lex_state = 16}, + [35] = {.lex_state = 16}, + [36] = {.lex_state = 16}, + [37] = {.lex_state = 16}, + [38] = {.lex_state = 18}, + [39] = {.lex_state = 16}, + [40] = {.lex_state = 16}, + [41] = {.lex_state = 16}, + [42] = {.lex_state = 16}, + [43] = {.lex_state = 16}, + [44] = {.lex_state = 16}, + [45] = {.lex_state = 18}, + [46] = {.lex_state = 16}, + [47] = {.lex_state = 18}, + [48] = {.lex_state = 16}, + [49] = {.lex_state = 16}, + [50] = {.lex_state = 16}, + [51] = {.lex_state = 16}, + [52] = {.lex_state = 18}, + [53] = {.lex_state = 16}, + [54] = {.lex_state = 18}, + [55] = {.lex_state = 18}, + [56] = {.lex_state = 18}, + [57] = {.lex_state = 18}, + [58] = {.lex_state = 16}, + [59] = {.lex_state = 16}, + [60] = {.lex_state = 16}, + [61] = {.lex_state = 16}, + [62] = {.lex_state = 18}, + [63] = {.lex_state = 16}, + [64] = {.lex_state = 16}, + [65] = {.lex_state = 18}, + [66] = {.lex_state = 16}, + [67] = {.lex_state = 16}, + [68] = {.lex_state = 16}, + [69] = {.lex_state = 18}, + [70] = {.lex_state = 18}, + [71] = {.lex_state = 18}, + [72] = {.lex_state = 16}, + [73] = {.lex_state = 18}, + [74] = {.lex_state = 18}, + [75] = {.lex_state = 18}, + [76] = {.lex_state = 18}, + [77] = {.lex_state = 18}, + [78] = {.lex_state = 18}, + [79] = {.lex_state = 18}, + [80] = {.lex_state = 18}, + [81] = {.lex_state = 18}, + [82] = {.lex_state = 18}, + [83] = {.lex_state = 18}, + [84] = {.lex_state = 16}, + [85] = {.lex_state = 16}, + [86] = {.lex_state = 18}, + [87] = {.lex_state = 16}, + [88] = {.lex_state = 16}, + [89] = {.lex_state = 18}, + [90] = {.lex_state = 18}, + [91] = {.lex_state = 18}, + [92] = {.lex_state = 18}, + [93] = {.lex_state = 18}, + [94] = {.lex_state = 18}, + [95] = {.lex_state = 18}, + [96] = {.lex_state = 18}, + [97] = {.lex_state = 18}, + [98] = {.lex_state = 18}, + [99] = {.lex_state = 18}, + [100] = {.lex_state = 18}, + [101] = {.lex_state = 18}, + [102] = {.lex_state = 18}, + [103] = {.lex_state = 18}, + [104] = {.lex_state = 18}, + [105] = {.lex_state = 18}, + [106] = {.lex_state = 18}, + [107] = {.lex_state = 18}, + [108] = {.lex_state = 18}, + [109] = {.lex_state = 18}, + [110] = {.lex_state = 18}, + [111] = {.lex_state = 18}, + [112] = {.lex_state = 18}, + [113] = {.lex_state = 18}, + [114] = {.lex_state = 18}, + [115] = {.lex_state = 18}, + [116] = {.lex_state = 18}, + [117] = {.lex_state = 18}, + [118] = {.lex_state = 18}, + [119] = {.lex_state = 18}, + [120] = {.lex_state = 18}, + [121] = {.lex_state = 18}, + [122] = {.lex_state = 18}, + [123] = {.lex_state = 18}, + [124] = {.lex_state = 18}, + [125] = {.lex_state = 18}, + [126] = {.lex_state = 18}, + [127] = {.lex_state = 18}, + [128] = {.lex_state = 16}, + [129] = {.lex_state = 18}, + [130] = {.lex_state = 18}, + [131] = {.lex_state = 18}, + [132] = {.lex_state = 18}, + [133] = {.lex_state = 18}, + [134] = {.lex_state = 18}, + [135] = {.lex_state = 18}, + [136] = {.lex_state = 18}, + [137] = {.lex_state = 18}, + [138] = {.lex_state = 18}, + [139] = {.lex_state = 18}, + [140] = {.lex_state = 18}, + [141] = {.lex_state = 18}, + [142] = {.lex_state = 18}, + [143] = {.lex_state = 18}, + [144] = {.lex_state = 18}, + [145] = {.lex_state = 18}, + [146] = {.lex_state = 18}, + [147] = {.lex_state = 18}, + [148] = {.lex_state = 18}, + [149] = {.lex_state = 18}, + [150] = {.lex_state = 18}, + [151] = {.lex_state = 18}, + [152] = {.lex_state = 18}, + [153] = {.lex_state = 18}, + [154] = {.lex_state = 18}, + [155] = {.lex_state = 18}, + [156] = {.lex_state = 18}, + [157] = {.lex_state = 18}, + [158] = {.lex_state = 18}, + [159] = {.lex_state = 18}, + [160] = {.lex_state = 16}, + [161] = {.lex_state = 16}, + [162] = {.lex_state = 16}, + [163] = {.lex_state = 16}, + [164] = {.lex_state = 16}, + [165] = {.lex_state = 16}, + [166] = {.lex_state = 16}, + [167] = {.lex_state = 16}, + [168] = {.lex_state = 16}, + [169] = {.lex_state = 16}, + [170] = {.lex_state = 16}, + [171] = {.lex_state = 18}, + [172] = {.lex_state = 18}, + [173] = {.lex_state = 16}, + [174] = {.lex_state = 16}, + [175] = {.lex_state = 18}, + [176] = {.lex_state = 16}, + [177] = {.lex_state = 16}, + [178] = {.lex_state = 16}, + [179] = {.lex_state = 16}, + [180] = {.lex_state = 16}, + [181] = {.lex_state = 16}, + [182] = {.lex_state = 16}, + [183] = {.lex_state = 18}, + [184] = {.lex_state = 18}, + [185] = {.lex_state = 18}, + [186] = {.lex_state = 18}, + [187] = {.lex_state = 16}, + [188] = {.lex_state = 16}, + [189] = {.lex_state = 16}, + [190] = {.lex_state = 16}, + [191] = {.lex_state = 16}, + [192] = {.lex_state = 16}, + [193] = {.lex_state = 16}, + [194] = {.lex_state = 16}, + [195] = {.lex_state = 16}, + [196] = {.lex_state = 18}, + [197] = {.lex_state = 18}, + [198] = {.lex_state = 18}, + [199] = {.lex_state = 18}, + [200] = {.lex_state = 18}, + [201] = {.lex_state = 16}, + [202] = {.lex_state = 16}, + [203] = {.lex_state = 16}, + [204] = {.lex_state = 16}, + [205] = {.lex_state = 16}, + [206] = {.lex_state = 16}, + [207] = {.lex_state = 16}, + [208] = {.lex_state = 16}, + [209] = {.lex_state = 16}, + [210] = {.lex_state = 16}, + [211] = {.lex_state = 16}, + [212] = {.lex_state = 18}, + [213] = {.lex_state = 18}, + [214] = {.lex_state = 18}, + [215] = {.lex_state = 18}, + [216] = {.lex_state = 18}, + [217] = {.lex_state = 18}, + [218] = {.lex_state = 18}, + [219] = {.lex_state = 16}, + [220] = {.lex_state = 16}, + [221] = {.lex_state = 16}, + [222] = {.lex_state = 16}, + [223] = {.lex_state = 16}, + [224] = {.lex_state = 16}, + [225] = {.lex_state = 16}, + [226] = {.lex_state = 16}, + [227] = {.lex_state = 16}, + [228] = {.lex_state = 16}, + [229] = {.lex_state = 16}, + [230] = {.lex_state = 16}, + [231] = {.lex_state = 16}, + [232] = {.lex_state = 16}, + [233] = {.lex_state = 18}, + [234] = {.lex_state = 18}, + [235] = {.lex_state = 18}, + [236] = {.lex_state = 18}, + [237] = {.lex_state = 18}, + [238] = {.lex_state = 18}, + [239] = {.lex_state = 18}, + [240] = {.lex_state = 16}, + [241] = {.lex_state = 16}, + [242] = {.lex_state = 16}, + [243] = {.lex_state = 16}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 16}, + [246] = {.lex_state = 16}, + [247] = {.lex_state = 16}, + [248] = {.lex_state = 16}, + [249] = {.lex_state = 16}, + [250] = {.lex_state = 18}, + [251] = {.lex_state = 18}, + [252] = {.lex_state = 18}, + [253] = {.lex_state = 18}, + [254] = {.lex_state = 16}, + [255] = {.lex_state = 16}, + [256] = {.lex_state = 16}, + [257] = {.lex_state = 16}, + [258] = {.lex_state = 18}, + [259] = {.lex_state = 16}, + [260] = {.lex_state = 16}, + [261] = {.lex_state = 16}, + [262] = {.lex_state = 16}, + [263] = {.lex_state = 16}, + [264] = {.lex_state = 16}, + [265] = {.lex_state = 16}, + [266] = {.lex_state = 16}, + [267] = {.lex_state = 16}, + [268] = {.lex_state = 16}, + [269] = {.lex_state = 16}, + [270] = {.lex_state = 16}, + [271] = {.lex_state = 16}, + [272] = {.lex_state = 16}, + [273] = {.lex_state = 16}, + [274] = {.lex_state = 16}, + [275] = {.lex_state = 16}, + [276] = {.lex_state = 16}, + [277] = {.lex_state = 16}, + [278] = {.lex_state = 16}, + [279] = {.lex_state = 16}, + [280] = {.lex_state = 16}, + [281] = {.lex_state = 16}, + [282] = {.lex_state = 16}, + [283] = {.lex_state = 16}, + [284] = {.lex_state = 16}, + [285] = {.lex_state = 16}, + [286] = {.lex_state = 16}, + [287] = {.lex_state = 16}, + [288] = {.lex_state = 16}, + [289] = {.lex_state = 16}, + [290] = {.lex_state = 16}, + [291] = {.lex_state = 16}, + [292] = {.lex_state = 16}, + [293] = {.lex_state = 16}, + [294] = {.lex_state = 16}, + [295] = {.lex_state = 16}, + [296] = {.lex_state = 16}, + [297] = {.lex_state = 16}, + [298] = {.lex_state = 16}, + [299] = {.lex_state = 16}, + [300] = {.lex_state = 16}, + [301] = {.lex_state = 16}, + [302] = {.lex_state = 16}, + [303] = {.lex_state = 16}, + [304] = {.lex_state = 16}, + [305] = {.lex_state = 16}, + [306] = {.lex_state = 16}, + [307] = {.lex_state = 16}, + [308] = {.lex_state = 16}, + [309] = {.lex_state = 16}, + [310] = {.lex_state = 16}, + [311] = {.lex_state = 16}, + [312] = {.lex_state = 16}, + [313] = {.lex_state = 16}, + [314] = {.lex_state = 16}, + [315] = {.lex_state = 16}, + [316] = {.lex_state = 16}, + [317] = {.lex_state = 16}, + [318] = {.lex_state = 16}, + [319] = {.lex_state = 16}, + [320] = {.lex_state = 16}, + [321] = {.lex_state = 16}, + [322] = {.lex_state = 16}, + [323] = {.lex_state = 16}, + [324] = {.lex_state = 16}, + [325] = {.lex_state = 18}, + [326] = {.lex_state = 18}, + [327] = {.lex_state = 18}, + [328] = {.lex_state = 18}, + [329] = {.lex_state = 18}, + [330] = {.lex_state = 18}, + [331] = {.lex_state = 18}, + [332] = {.lex_state = 18}, + [333] = {.lex_state = 18}, + [334] = {.lex_state = 18}, + [335] = {.lex_state = 18}, + [336] = {.lex_state = 18}, + [337] = {.lex_state = 18}, + [338] = {.lex_state = 18}, + [339] = {.lex_state = 18}, + [340] = {.lex_state = 18}, + [341] = {.lex_state = 18}, + [342] = {.lex_state = 18}, + [343] = {.lex_state = 18}, + [344] = {.lex_state = 18}, + [345] = {.lex_state = 18}, + [346] = {.lex_state = 18}, + [347] = {.lex_state = 18}, + [348] = {.lex_state = 18}, + [349] = {.lex_state = 18}, + [350] = {.lex_state = 18}, + [351] = {.lex_state = 18}, + [352] = {.lex_state = 18}, + [353] = {.lex_state = 18}, + [354] = {.lex_state = 18}, + [355] = {.lex_state = 18}, + [356] = {.lex_state = 18}, + [357] = {.lex_state = 18}, + [358] = {.lex_state = 18}, + [359] = {.lex_state = 18}, + [360] = {.lex_state = 18}, + [361] = {.lex_state = 18}, + [362] = {.lex_state = 18}, + [363] = {.lex_state = 18}, + [364] = {.lex_state = 18}, + [365] = {.lex_state = 18}, + [366] = {.lex_state = 18}, + [367] = {.lex_state = 18}, + [368] = {.lex_state = 18}, + [369] = {.lex_state = 18}, + [370] = {.lex_state = 18}, + [371] = {.lex_state = 18}, + [372] = {.lex_state = 18}, + [373] = {.lex_state = 18}, + [374] = {.lex_state = 18}, + [375] = {.lex_state = 18}, + [376] = {.lex_state = 18}, + [377] = {.lex_state = 18}, + [378] = {.lex_state = 18}, + [379] = {.lex_state = 18}, + [380] = {.lex_state = 18}, + [381] = {.lex_state = 18}, + [382] = {.lex_state = 18}, + [383] = {.lex_state = 18}, + [384] = {.lex_state = 18}, + [385] = {.lex_state = 18}, + [386] = {.lex_state = 18}, + [387] = {.lex_state = 18}, + [388] = {.lex_state = 18}, + [389] = {.lex_state = 18}, + [390] = {.lex_state = 18}, + [391] = {.lex_state = 18}, + [392] = {.lex_state = 18}, + [393] = {.lex_state = 18}, + [394] = {.lex_state = 18}, + [395] = {.lex_state = 18}, + [396] = {.lex_state = 18}, + [397] = {.lex_state = 18}, + [398] = {.lex_state = 18}, + [399] = {.lex_state = 18}, + [400] = {.lex_state = 18}, + [401] = {.lex_state = 18}, + [402] = {.lex_state = 18}, + [403] = {.lex_state = 18}, + [404] = {.lex_state = 18}, + [405] = {.lex_state = 18}, + [406] = {.lex_state = 18}, + [407] = {.lex_state = 18}, + [408] = {.lex_state = 18}, + [409] = {.lex_state = 18}, + [410] = {.lex_state = 18}, + [411] = {.lex_state = 18}, + [412] = {.lex_state = 18}, + [413] = {.lex_state = 18}, + [414] = {.lex_state = 18}, + [415] = {.lex_state = 18}, + [416] = {.lex_state = 18}, + [417] = {.lex_state = 18}, + [418] = {.lex_state = 18}, + [419] = {.lex_state = 18}, + [420] = {.lex_state = 18}, + [421] = {.lex_state = 18}, + [422] = {.lex_state = 18}, + [423] = {.lex_state = 18}, + [424] = {.lex_state = 18}, + [425] = {.lex_state = 18}, + [426] = {.lex_state = 18}, + [427] = {.lex_state = 18}, + [428] = {.lex_state = 18}, + [429] = {.lex_state = 18}, + [430] = {.lex_state = 18}, + [431] = {.lex_state = 18}, + [432] = {.lex_state = 18}, + [433] = {.lex_state = 18}, + [434] = {.lex_state = 18}, + [435] = {.lex_state = 18}, + [436] = {.lex_state = 18}, + [437] = {.lex_state = 18}, + [438] = {.lex_state = 18}, + [439] = {.lex_state = 18}, + [440] = {.lex_state = 18}, + [441] = {.lex_state = 18}, + [442] = {.lex_state = 18}, + [443] = {.lex_state = 18}, + [444] = {.lex_state = 18}, + [445] = {.lex_state = 18}, + [446] = {.lex_state = 18}, + [447] = {.lex_state = 18}, + [448] = {.lex_state = 18}, + [449] = {.lex_state = 18}, + [450] = {.lex_state = 18}, + [451] = {.lex_state = 18}, + [452] = {.lex_state = 18}, + [453] = {.lex_state = 18}, + [454] = {.lex_state = 18}, + [455] = {.lex_state = 18}, + [456] = {.lex_state = 18}, + [457] = {.lex_state = 18}, + [458] = {.lex_state = 18}, + [459] = {.lex_state = 18}, + [460] = {.lex_state = 18}, + [461] = {.lex_state = 18}, + [462] = {.lex_state = 18}, + [463] = {.lex_state = 18}, + [464] = {.lex_state = 18}, + [465] = {.lex_state = 18}, + [466] = {.lex_state = 18}, + [467] = {.lex_state = 18}, + [468] = {.lex_state = 18}, + [469] = {.lex_state = 18}, + [470] = {.lex_state = 18}, + [471] = {.lex_state = 18}, + [472] = {.lex_state = 18}, + [473] = {.lex_state = 18}, + [474] = {.lex_state = 18}, + [475] = {.lex_state = 18}, + [476] = {.lex_state = 18}, + [477] = {.lex_state = 18}, + [478] = {.lex_state = 18}, + [479] = {.lex_state = 18}, + [480] = {.lex_state = 18}, + [481] = {.lex_state = 18}, + [482] = {.lex_state = 18}, + [483] = {.lex_state = 18}, + [484] = {.lex_state = 18}, + [485] = {.lex_state = 18}, + [486] = {.lex_state = 18}, + [487] = {.lex_state = 18}, + [488] = {.lex_state = 18}, + [489] = {.lex_state = 18}, + [490] = {.lex_state = 18}, + [491] = {.lex_state = 18}, + [492] = {.lex_state = 18}, + [493] = {.lex_state = 18}, + [494] = {.lex_state = 18}, + [495] = {.lex_state = 18}, + [496] = {.lex_state = 18}, + [497] = {.lex_state = 18}, + [498] = {.lex_state = 18}, + [499] = {.lex_state = 18}, + [500] = {.lex_state = 18}, + [501] = {.lex_state = 18}, + [502] = {.lex_state = 18}, + [503] = {.lex_state = 18}, + [504] = {.lex_state = 18}, + [505] = {.lex_state = 18}, + [506] = {.lex_state = 18}, + [507] = {.lex_state = 18}, + [508] = {.lex_state = 18}, + [509] = {.lex_state = 18}, + [510] = {.lex_state = 18}, + [511] = {.lex_state = 18}, + [512] = {.lex_state = 18}, + [513] = {.lex_state = 18}, + [514] = {.lex_state = 18}, + [515] = {.lex_state = 16}, + [516] = {.lex_state = 18}, + [517] = {.lex_state = 16}, + [518] = {.lex_state = 18}, + [519] = {.lex_state = 18}, + [520] = {.lex_state = 18}, + [521] = {.lex_state = 18}, + [522] = {.lex_state = 18}, + [523] = {.lex_state = 18}, + [524] = {.lex_state = 18}, + [525] = {.lex_state = 18}, + [526] = {.lex_state = 18}, + [527] = {.lex_state = 16}, + [528] = {.lex_state = 18}, + [529] = {.lex_state = 18}, + [530] = {.lex_state = 18}, + [531] = {.lex_state = 18}, + [532] = {.lex_state = 18}, + [533] = {.lex_state = 18}, + [534] = {.lex_state = 18}, + [535] = {.lex_state = 18}, + [536] = {.lex_state = 18}, + [537] = {.lex_state = 18}, + [538] = {.lex_state = 18}, + [539] = {.lex_state = 16}, + [540] = {.lex_state = 18}, + [541] = {.lex_state = 18}, + [542] = {.lex_state = 18}, + [543] = {.lex_state = 18}, + [544] = {.lex_state = 18}, + [545] = {.lex_state = 18}, + [546] = {.lex_state = 18}, + [547] = {.lex_state = 18}, + [548] = {.lex_state = 18}, + [549] = {.lex_state = 16}, + [550] = {.lex_state = 18}, + [551] = {.lex_state = 18}, + [552] = {.lex_state = 18}, + [553] = {.lex_state = 18}, + [554] = {.lex_state = 18}, + [555] = {.lex_state = 18}, + [556] = {.lex_state = 18}, + [557] = {.lex_state = 18}, + [558] = {.lex_state = 18}, + [559] = {.lex_state = 18}, + [560] = {.lex_state = 18}, + [561] = {.lex_state = 18}, + [562] = {.lex_state = 18}, + [563] = {.lex_state = 18}, + [564] = {.lex_state = 18}, + [565] = {.lex_state = 18}, + [566] = {.lex_state = 18}, + [567] = {.lex_state = 18}, + [568] = {.lex_state = 18}, + [569] = {.lex_state = 18}, + [570] = {.lex_state = 18}, + [571] = {.lex_state = 18}, + [572] = {.lex_state = 18}, + [573] = {.lex_state = 18}, + [574] = {.lex_state = 16}, + [575] = {.lex_state = 16}, + [576] = {.lex_state = 16}, + [577] = {.lex_state = 16}, + [578] = {.lex_state = 16}, + [579] = {.lex_state = 16}, + [580] = {.lex_state = 17}, + [581] = {.lex_state = 18}, + [582] = {.lex_state = 17}, + [583] = {.lex_state = 18}, + [584] = {.lex_state = 17}, + [585] = {.lex_state = 17}, + [586] = {.lex_state = 17}, + [587] = {.lex_state = 17}, + [588] = {.lex_state = 16}, + [589] = {.lex_state = 18}, + [590] = {.lex_state = 16}, + [591] = {.lex_state = 16}, + [592] = {.lex_state = 16}, + [593] = {.lex_state = 16}, + [594] = {.lex_state = 16}, + [595] = {.lex_state = 16}, + [596] = {.lex_state = 16}, + [597] = {.lex_state = 16}, + [598] = {.lex_state = 16}, + [599] = {.lex_state = 16}, + [600] = {.lex_state = 16}, + [601] = {.lex_state = 16}, + [602] = {.lex_state = 16}, + [603] = {.lex_state = 16}, + [604] = {.lex_state = 16}, + [605] = {.lex_state = 16}, + [606] = {.lex_state = 16}, + [607] = {.lex_state = 18}, + [608] = {.lex_state = 17}, + [609] = {.lex_state = 17}, + [610] = {.lex_state = 17}, + [611] = {.lex_state = 17}, + [612] = {.lex_state = 17}, + [613] = {.lex_state = 17}, + [614] = {.lex_state = 17}, + [615] = {.lex_state = 17}, + [616] = {.lex_state = 16}, + [617] = {.lex_state = 17}, + [618] = {.lex_state = 17}, + [619] = {.lex_state = 17}, + [620] = {.lex_state = 17}, + [621] = {.lex_state = 17}, + [622] = {.lex_state = 17}, + [623] = {.lex_state = 17}, + [624] = {.lex_state = 16}, + [625] = {.lex_state = 17}, + [626] = {.lex_state = 17}, + [627] = {.lex_state = 17}, + [628] = {.lex_state = 17}, + [629] = {.lex_state = 17}, + [630] = {.lex_state = 17}, + [631] = {.lex_state = 17}, + [632] = {.lex_state = 17}, + [633] = {.lex_state = 17}, + [634] = {.lex_state = 17}, + [635] = {.lex_state = 17}, + [636] = {.lex_state = 17}, + [637] = {.lex_state = 17}, + [638] = {.lex_state = 17}, + [639] = {.lex_state = 17}, + [640] = {.lex_state = 17}, + [641] = {.lex_state = 17}, + [642] = {.lex_state = 17}, + [643] = {.lex_state = 16}, + [644] = {.lex_state = 16}, + [645] = {.lex_state = 16}, + [646] = {.lex_state = 17}, + [647] = {.lex_state = 17}, + [648] = {.lex_state = 17}, + [649] = {.lex_state = 17}, + [650] = {.lex_state = 17}, + [651] = {.lex_state = 17}, + [652] = {.lex_state = 17}, + [653] = {.lex_state = 17}, + [654] = {.lex_state = 17}, + [655] = {.lex_state = 17}, + [656] = {.lex_state = 17}, + [657] = {.lex_state = 17}, + [658] = {.lex_state = 17}, + [659] = {.lex_state = 17}, + [660] = {.lex_state = 17}, + [661] = {.lex_state = 17}, + [662] = {.lex_state = 17}, + [663] = {.lex_state = 17}, + [664] = {.lex_state = 17}, + [665] = {.lex_state = 17}, + [666] = {.lex_state = 17}, + [667] = {.lex_state = 17}, + [668] = {.lex_state = 17}, + [669] = {.lex_state = 17}, + [670] = {.lex_state = 17}, + [671] = {.lex_state = 17}, + [672] = {.lex_state = 17}, + [673] = {.lex_state = 17}, + [674] = {.lex_state = 17}, + [675] = {.lex_state = 17}, + [676] = {.lex_state = 17}, + [677] = {.lex_state = 17}, + [678] = {.lex_state = 17}, + [679] = {.lex_state = 17}, + [680] = {.lex_state = 17}, + [681] = {.lex_state = 17}, + [682] = {.lex_state = 17}, + [683] = {.lex_state = 17}, + [684] = {.lex_state = 17}, + [685] = {.lex_state = 17}, + [686] = {.lex_state = 17}, + [687] = {.lex_state = 17}, + [688] = {.lex_state = 17}, + [689] = {.lex_state = 17}, + [690] = {.lex_state = 17}, + [691] = {.lex_state = 17}, + [692] = {.lex_state = 17}, + [693] = {.lex_state = 17}, + [694] = {.lex_state = 17}, + [695] = {.lex_state = 17}, + [696] = {.lex_state = 17}, + [697] = {.lex_state = 18}, + [698] = {.lex_state = 17}, + [699] = {.lex_state = 17}, + [700] = {.lex_state = 17}, + [701] = {.lex_state = 17}, + [702] = {.lex_state = 17}, + [703] = {.lex_state = 17}, + [704] = {.lex_state = 17}, + [705] = {.lex_state = 17}, + [706] = {.lex_state = 17}, + [707] = {.lex_state = 17}, + [708] = {.lex_state = 17}, + [709] = {.lex_state = 17}, + [710] = {.lex_state = 17}, + [711] = {.lex_state = 17}, + [712] = {.lex_state = 17}, + [713] = {.lex_state = 17}, + [714] = {.lex_state = 17}, + [715] = {.lex_state = 17}, + [716] = {.lex_state = 17}, + [717] = {.lex_state = 17}, + [718] = {.lex_state = 17}, + [719] = {.lex_state = 17}, + [720] = {.lex_state = 17}, + [721] = {.lex_state = 17}, + [722] = {.lex_state = 17}, + [723] = {.lex_state = 17}, + [724] = {.lex_state = 17}, + [725] = {.lex_state = 17}, + [726] = {.lex_state = 17}, + [727] = {.lex_state = 17}, + [728] = {.lex_state = 17}, + [729] = {.lex_state = 17}, + [730] = {.lex_state = 17}, + [731] = {.lex_state = 17}, + [732] = {.lex_state = 17}, + [733] = {.lex_state = 17}, + [734] = {.lex_state = 17}, + [735] = {.lex_state = 17}, + [736] = {.lex_state = 17}, + [737] = {.lex_state = 17}, + [738] = {.lex_state = 17}, + [739] = {.lex_state = 17}, + [740] = {.lex_state = 17}, + [741] = {.lex_state = 17}, + [742] = {.lex_state = 17}, + [743] = {.lex_state = 17}, + [744] = {.lex_state = 17}, + [745] = {.lex_state = 17}, + [746] = {.lex_state = 17}, + [747] = {.lex_state = 17}, + [748] = {.lex_state = 17}, + [749] = {.lex_state = 17}, + [750] = {.lex_state = 17}, + [751] = {.lex_state = 17}, + [752] = {.lex_state = 17}, + [753] = {.lex_state = 17}, + [754] = {.lex_state = 17}, + [755] = {.lex_state = 17}, + [756] = {.lex_state = 17}, + [757] = {.lex_state = 17}, + [758] = {.lex_state = 18}, + [759] = {.lex_state = 18}, + [760] = {.lex_state = 18}, + [761] = {.lex_state = 16}, + [762] = {.lex_state = 16}, + [763] = {.lex_state = 18}, + [764] = {.lex_state = 18}, + [765] = {.lex_state = 17}, + [766] = {.lex_state = 16}, + [767] = {.lex_state = 17}, + [768] = {.lex_state = 17}, + [769] = {.lex_state = 17}, + [770] = {.lex_state = 18}, + [771] = {.lex_state = 18}, + [772] = {.lex_state = 18}, + [773] = {.lex_state = 18}, + [774] = {.lex_state = 17}, + [775] = {.lex_state = 18}, + [776] = {.lex_state = 18}, + [777] = {.lex_state = 18}, + [778] = {.lex_state = 18}, + [779] = {.lex_state = 18}, + [780] = {.lex_state = 18}, + [781] = {.lex_state = 18}, + [782] = {.lex_state = 18}, + [783] = {.lex_state = 18}, + [784] = {.lex_state = 18}, + [785] = {.lex_state = 18}, + [786] = {.lex_state = 18}, + [787] = {.lex_state = 18}, + [788] = {.lex_state = 18}, + [789] = {.lex_state = 18}, + [790] = {.lex_state = 18}, + [791] = {.lex_state = 18}, + [792] = {.lex_state = 18}, + [793] = {.lex_state = 18}, + [794] = {.lex_state = 18}, + [795] = {.lex_state = 18}, + [796] = {.lex_state = 17}, + [797] = {.lex_state = 18}, + [798] = {.lex_state = 18}, + [799] = {.lex_state = 18}, + [800] = {.lex_state = 18}, + [801] = {.lex_state = 18}, + [802] = {.lex_state = 18}, + [803] = {.lex_state = 17}, + [804] = {.lex_state = 17}, + [805] = {.lex_state = 18}, + [806] = {.lex_state = 18}, + [807] = {.lex_state = 17}, + [808] = {.lex_state = 17}, + [809] = {.lex_state = 17}, + [810] = {.lex_state = 17}, + [811] = {.lex_state = 17}, + [812] = {.lex_state = 18}, + [813] = {.lex_state = 17}, + [814] = {.lex_state = 18}, + [815] = {.lex_state = 18}, + [816] = {.lex_state = 18}, + [817] = {.lex_state = 18}, + [818] = {.lex_state = 18}, + [819] = {.lex_state = 18}, + [820] = {.lex_state = 18}, + [821] = {.lex_state = 18}, + [822] = {.lex_state = 18}, + [823] = {.lex_state = 18}, + [824] = {.lex_state = 18}, + [825] = {.lex_state = 18}, + [826] = {.lex_state = 18}, + [827] = {.lex_state = 18}, + [828] = {.lex_state = 18}, + [829] = {.lex_state = 18}, + [830] = {.lex_state = 17}, + [831] = {.lex_state = 18}, + [832] = {.lex_state = 18}, + [833] = {.lex_state = 18}, + [834] = {.lex_state = 18}, + [835] = {.lex_state = 18}, + [836] = {.lex_state = 18}, + [837] = {.lex_state = 18}, + [838] = {.lex_state = 18}, + [839] = {.lex_state = 18}, + [840] = {.lex_state = 18}, + [841] = {.lex_state = 18}, + [842] = {.lex_state = 18}, + [843] = {.lex_state = 18}, + [844] = {.lex_state = 18}, + [845] = {.lex_state = 16}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 16}, + [848] = {.lex_state = 16}, + [849] = {.lex_state = 16}, + [850] = {.lex_state = 16}, + [851] = {.lex_state = 18}, + [852] = {.lex_state = 18}, + [853] = {.lex_state = 18}, + [854] = {.lex_state = 18}, + [855] = {.lex_state = 18}, + [856] = {.lex_state = 18}, + [857] = {.lex_state = 18}, + [858] = {.lex_state = 18}, + [859] = {.lex_state = 18}, + [860] = {.lex_state = 18}, + [861] = {.lex_state = 18}, + [862] = {.lex_state = 18}, + [863] = {.lex_state = 18}, + [864] = {.lex_state = 18}, + [865] = {.lex_state = 18}, + [866] = {.lex_state = 18}, + [867] = {.lex_state = 18}, + [868] = {.lex_state = 18}, + [869] = {.lex_state = 18}, + [870] = {.lex_state = 18}, + [871] = {.lex_state = 18}, + [872] = {.lex_state = 17}, + [873] = {.lex_state = 17}, + [874] = {.lex_state = 17}, + [875] = {.lex_state = 17}, + [876] = {.lex_state = 17}, + [877] = {.lex_state = 17}, + [878] = {.lex_state = 17}, + [879] = {.lex_state = 18}, + [880] = {.lex_state = 18}, + [881] = {.lex_state = 18}, + [882] = {.lex_state = 18}, + [883] = {.lex_state = 18}, + [884] = {.lex_state = 16}, + [885] = {.lex_state = 18}, + [886] = {.lex_state = 18}, + [887] = {.lex_state = 18}, + [888] = {.lex_state = 18}, + [889] = {.lex_state = 18}, + [890] = {.lex_state = 18}, + [891] = {.lex_state = 18}, + [892] = {.lex_state = 18}, + [893] = {.lex_state = 16}, + [894] = {.lex_state = 18}, + [895] = {.lex_state = 18}, + [896] = {.lex_state = 18}, + [897] = {.lex_state = 18}, + [898] = {.lex_state = 16}, + [899] = {.lex_state = 18}, + [900] = {.lex_state = 16}, + [901] = {.lex_state = 18}, + [902] = {.lex_state = 18}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 18}, + [905] = {.lex_state = 18}, + [906] = {.lex_state = 16}, + [907] = {.lex_state = 16}, + [908] = {.lex_state = 16}, + [909] = {.lex_state = 16}, + [910] = {.lex_state = 16}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, + [915] = {.lex_state = 16}, + [916] = {.lex_state = 16}, + [917] = {.lex_state = 2}, + [918] = {.lex_state = 18}, + [919] = {.lex_state = 18}, + [920] = {.lex_state = 18}, + [921] = {.lex_state = 18}, + [922] = {.lex_state = 18}, + [923] = {.lex_state = 18}, + [924] = {.lex_state = 18}, + [925] = {.lex_state = 18}, + [926] = {.lex_state = 18}, + [927] = {.lex_state = 18}, + [928] = {.lex_state = 18}, + [929] = {.lex_state = 18}, + [930] = {.lex_state = 18}, + [931] = {.lex_state = 18}, + [932] = {.lex_state = 18}, + [933] = {.lex_state = 18}, + [934] = {.lex_state = 18}, + [935] = {.lex_state = 17}, + [936] = {.lex_state = 17}, + [937] = {.lex_state = 18}, + [938] = {.lex_state = 17}, + [939] = {.lex_state = 18}, + [940] = {.lex_state = 18}, + [941] = {.lex_state = 18}, + [942] = {.lex_state = 18}, + [943] = {.lex_state = 18}, + [944] = {.lex_state = 18}, + [945] = {.lex_state = 18}, + [946] = {.lex_state = 18}, + [947] = {.lex_state = 18}, + [948] = {.lex_state = 17}, + [949] = {.lex_state = 18}, + [950] = {.lex_state = 18}, + [951] = {.lex_state = 18}, + [952] = {.lex_state = 18}, + [953] = {.lex_state = 18}, + [954] = {.lex_state = 18}, + [955] = {.lex_state = 18}, + [956] = {.lex_state = 18}, + [957] = {.lex_state = 18}, + [958] = {.lex_state = 18}, + [959] = {.lex_state = 18}, + [960] = {.lex_state = 18}, + [961] = {.lex_state = 18}, + [962] = {.lex_state = 18}, + [963] = {.lex_state = 17}, + [964] = {.lex_state = 18}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 18}, + [967] = {.lex_state = 18}, + [968] = {.lex_state = 18}, + [969] = {.lex_state = 18}, + [970] = {.lex_state = 18}, + [971] = {.lex_state = 18}, + [972] = {.lex_state = 18}, + [973] = {.lex_state = 18}, + [974] = {.lex_state = 18}, + [975] = {.lex_state = 18}, + [976] = {.lex_state = 18}, + [977] = {.lex_state = 18}, + [978] = {.lex_state = 18}, + [979] = {.lex_state = 18}, + [980] = {.lex_state = 18}, + [981] = {.lex_state = 18}, + [982] = {.lex_state = 18}, + [983] = {.lex_state = 17}, + [984] = {.lex_state = 18}, + [985] = {.lex_state = 18}, + [986] = {.lex_state = 18}, + [987] = {.lex_state = 18}, + [988] = {.lex_state = 18}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 18}, + [991] = {.lex_state = 18}, + [992] = {.lex_state = 18}, + [993] = {.lex_state = 18}, + [994] = {.lex_state = 18}, + [995] = {.lex_state = 18}, + [996] = {.lex_state = 18}, + [997] = {.lex_state = 18}, + [998] = {.lex_state = 18}, + [999] = {.lex_state = 18}, + [1000] = {.lex_state = 18}, + [1001] = {.lex_state = 18}, + [1002] = {.lex_state = 18}, + [1003] = {.lex_state = 18}, + [1004] = {.lex_state = 18}, + [1005] = {.lex_state = 18}, + [1006] = {.lex_state = 18}, + [1007] = {.lex_state = 18}, + [1008] = {.lex_state = 18}, + [1009] = {.lex_state = 18}, + [1010] = {.lex_state = 17}, + [1011] = {.lex_state = 18}, + [1012] = {.lex_state = 17}, + [1013] = {.lex_state = 18}, + [1014] = {.lex_state = 18}, + [1015] = {.lex_state = 18}, + [1016] = {.lex_state = 18}, + [1017] = {.lex_state = 18}, + [1018] = {.lex_state = 18}, + [1019] = {.lex_state = 18}, + [1020] = {.lex_state = 18}, + [1021] = {.lex_state = 18}, + [1022] = {.lex_state = 18}, + [1023] = {.lex_state = 18}, + [1024] = {.lex_state = 18}, + [1025] = {.lex_state = 18}, + [1026] = {.lex_state = 18}, + [1027] = {.lex_state = 18}, + [1028] = {.lex_state = 18}, + [1029] = {.lex_state = 18}, + [1030] = {.lex_state = 18}, + [1031] = {.lex_state = 18}, + [1032] = {.lex_state = 18}, + [1033] = {.lex_state = 18}, + [1034] = {.lex_state = 18}, + [1035] = {.lex_state = 18}, + [1036] = {.lex_state = 18}, + [1037] = {.lex_state = 18}, + [1038] = {.lex_state = 18}, + [1039] = {.lex_state = 18}, + [1040] = {.lex_state = 18}, + [1041] = {.lex_state = 17}, + [1042] = {.lex_state = 18}, + [1043] = {.lex_state = 18}, + [1044] = {.lex_state = 18}, + [1045] = {.lex_state = 18}, + [1046] = {.lex_state = 18}, + [1047] = {.lex_state = 18}, + [1048] = {.lex_state = 18}, + [1049] = {.lex_state = 18}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 18}, + [1052] = {.lex_state = 18}, + [1053] = {.lex_state = 18}, + [1054] = {.lex_state = 18}, + [1055] = {.lex_state = 18}, + [1056] = {.lex_state = 18}, + [1057] = {.lex_state = 18}, + [1058] = {.lex_state = 18}, + [1059] = {.lex_state = 18}, + [1060] = {.lex_state = 18}, + [1061] = {.lex_state = 18}, + [1062] = {.lex_state = 18}, + [1063] = {.lex_state = 18}, + [1064] = {.lex_state = 18}, + [1065] = {.lex_state = 18}, + [1066] = {.lex_state = 18}, + [1067] = {.lex_state = 18}, + [1068] = {.lex_state = 18}, + [1069] = {.lex_state = 18}, + [1070] = {.lex_state = 18}, + [1071] = {.lex_state = 18}, + [1072] = {.lex_state = 18}, + [1073] = {.lex_state = 18}, + [1074] = {.lex_state = 18}, + [1075] = {.lex_state = 18}, + [1076] = {.lex_state = 18}, + [1077] = {.lex_state = 18}, + [1078] = {.lex_state = 18}, + [1079] = {.lex_state = 18}, + [1080] = {.lex_state = 18}, + [1081] = {.lex_state = 18}, + [1082] = {.lex_state = 18}, + [1083] = {.lex_state = 18}, + [1084] = {.lex_state = 18}, + [1085] = {.lex_state = 18}, + [1086] = {.lex_state = 18}, + [1087] = {.lex_state = 18}, + [1088] = {.lex_state = 18}, + [1089] = {.lex_state = 18}, + [1090] = {.lex_state = 18}, + [1091] = {.lex_state = 18}, + [1092] = {.lex_state = 18}, + [1093] = {.lex_state = 18}, + [1094] = {.lex_state = 18}, + [1095] = {.lex_state = 18}, + [1096] = {.lex_state = 18}, + [1097] = {.lex_state = 18}, + [1098] = {.lex_state = 18}, + [1099] = {.lex_state = 18}, + [1100] = {.lex_state = 18}, + [1101] = {.lex_state = 18}, + [1102] = {.lex_state = 18}, + [1103] = {.lex_state = 18}, + [1104] = {.lex_state = 18}, + [1105] = {.lex_state = 18}, + [1106] = {.lex_state = 18}, + [1107] = {.lex_state = 18}, + [1108] = {.lex_state = 18}, + [1109] = {.lex_state = 18}, + [1110] = {.lex_state = 18}, + [1111] = {.lex_state = 18}, + [1112] = {.lex_state = 18}, + [1113] = {.lex_state = 18}, + [1114] = {.lex_state = 18}, + [1115] = {.lex_state = 18}, + [1116] = {.lex_state = 18}, + [1117] = {.lex_state = 18}, + [1118] = {.lex_state = 18}, + [1119] = {.lex_state = 18}, + [1120] = {.lex_state = 18}, + [1121] = {.lex_state = 18}, + [1122] = {.lex_state = 18}, + [1123] = {.lex_state = 18}, + [1124] = {.lex_state = 18}, + [1125] = {.lex_state = 18}, + [1126] = {.lex_state = 18}, + [1127] = {.lex_state = 18}, + [1128] = {.lex_state = 18}, + [1129] = {.lex_state = 18}, + [1130] = {.lex_state = 18}, + [1131] = {.lex_state = 18}, + [1132] = {.lex_state = 18}, + [1133] = {.lex_state = 18}, + [1134] = {.lex_state = 18}, + [1135] = {.lex_state = 18}, + [1136] = {.lex_state = 18}, + [1137] = {.lex_state = 18}, + [1138] = {.lex_state = 18}, + [1139] = {.lex_state = 18}, + [1140] = {.lex_state = 18}, + [1141] = {.lex_state = 18}, + [1142] = {.lex_state = 18}, + [1143] = {.lex_state = 18}, + [1144] = {.lex_state = 18}, + [1145] = {.lex_state = 18}, + [1146] = {.lex_state = 18}, + [1147] = {.lex_state = 18}, + [1148] = {.lex_state = 18}, + [1149] = {.lex_state = 18}, + [1150] = {.lex_state = 18}, + [1151] = {.lex_state = 18}, + [1152] = {.lex_state = 18}, + [1153] = {.lex_state = 18}, + [1154] = {.lex_state = 18}, + [1155] = {.lex_state = 18}, + [1156] = {.lex_state = 18}, + [1157] = {.lex_state = 18}, + [1158] = {.lex_state = 18}, + [1159] = {.lex_state = 18}, + [1160] = {.lex_state = 18}, + [1161] = {.lex_state = 18}, + [1162] = {.lex_state = 18}, + [1163] = {.lex_state = 18}, + [1164] = {.lex_state = 18}, + [1165] = {.lex_state = 18}, + [1166] = {.lex_state = 18}, + [1167] = {.lex_state = 18}, + [1168] = {.lex_state = 18}, + [1169] = {.lex_state = 18}, + [1170] = {.lex_state = 18}, + [1171] = {.lex_state = 18}, + [1172] = {.lex_state = 18}, + [1173] = {.lex_state = 18}, + [1174] = {.lex_state = 18}, + [1175] = {.lex_state = 18}, + [1176] = {.lex_state = 18}, + [1177] = {.lex_state = 18}, + [1178] = {.lex_state = 18}, + [1179] = {.lex_state = 18}, + [1180] = {.lex_state = 18}, + [1181] = {.lex_state = 18}, + [1182] = {.lex_state = 18}, + [1183] = {.lex_state = 18}, + [1184] = {.lex_state = 18}, + [1185] = {.lex_state = 18}, + [1186] = {.lex_state = 18}, + [1187] = {.lex_state = 18}, + [1188] = {.lex_state = 18}, + [1189] = {.lex_state = 18}, + [1190] = {.lex_state = 18}, + [1191] = {.lex_state = 18}, + [1192] = {.lex_state = 18}, + [1193] = {.lex_state = 18}, + [1194] = {.lex_state = 18}, + [1195] = {.lex_state = 18}, + [1196] = {.lex_state = 18}, + [1197] = {.lex_state = 18}, + [1198] = {.lex_state = 18}, + [1199] = {.lex_state = 18}, + [1200] = {.lex_state = 18}, + [1201] = {.lex_state = 18}, + [1202] = {.lex_state = 18}, + [1203] = {.lex_state = 18}, + [1204] = {.lex_state = 18}, + [1205] = {.lex_state = 18}, + [1206] = {.lex_state = 18}, + [1207] = {.lex_state = 18}, + [1208] = {.lex_state = 18}, + [1209] = {.lex_state = 18}, + [1210] = {.lex_state = 18}, + [1211] = {.lex_state = 18}, + [1212] = {.lex_state = 18}, + [1213] = {.lex_state = 18}, + [1214] = {.lex_state = 18}, + [1215] = {.lex_state = 18}, + [1216] = {.lex_state = 18}, + [1217] = {.lex_state = 18}, + [1218] = {.lex_state = 18}, + [1219] = {.lex_state = 18}, + [1220] = {.lex_state = 18}, + [1221] = {.lex_state = 18}, + [1222] = {.lex_state = 18}, + [1223] = {.lex_state = 18}, + [1224] = {.lex_state = 18}, + [1225] = {.lex_state = 18}, + [1226] = {.lex_state = 18}, + [1227] = {.lex_state = 18}, + [1228] = {.lex_state = 18}, + [1229] = {.lex_state = 18}, + [1230] = {.lex_state = 18}, + [1231] = {.lex_state = 18}, + [1232] = {.lex_state = 18}, + [1233] = {.lex_state = 18}, + [1234] = {.lex_state = 18}, + [1235] = {.lex_state = 18}, + [1236] = {.lex_state = 18}, + [1237] = {.lex_state = 18}, + [1238] = {.lex_state = 18}, + [1239] = {.lex_state = 18}, + [1240] = {.lex_state = 18}, + [1241] = {.lex_state = 18}, + [1242] = {.lex_state = 18}, + [1243] = {.lex_state = 18}, + [1244] = {.lex_state = 18}, + [1245] = {.lex_state = 18}, + [1246] = {.lex_state = 18}, + [1247] = {.lex_state = 18}, + [1248] = {.lex_state = 18}, + [1249] = {.lex_state = 18}, + [1250] = {.lex_state = 18}, + [1251] = {.lex_state = 18}, + [1252] = {.lex_state = 18}, + [1253] = {.lex_state = 18}, + [1254] = {.lex_state = 18}, + [1255] = {.lex_state = 18}, + [1256] = {.lex_state = 18}, + [1257] = {.lex_state = 18}, + [1258] = {.lex_state = 18}, + [1259] = {.lex_state = 18}, + [1260] = {.lex_state = 18}, + [1261] = {.lex_state = 18}, + [1262] = {.lex_state = 18}, + [1263] = {.lex_state = 18}, + [1264] = {.lex_state = 18}, + [1265] = {.lex_state = 18}, + [1266] = {.lex_state = 18}, + [1267] = {.lex_state = 18}, + [1268] = {.lex_state = 18}, + [1269] = {.lex_state = 18}, + [1270] = {.lex_state = 18}, + [1271] = {.lex_state = 18}, + [1272] = {.lex_state = 18}, + [1273] = {.lex_state = 18}, + [1274] = {.lex_state = 18}, + [1275] = {.lex_state = 18}, + [1276] = {.lex_state = 18}, + [1277] = {.lex_state = 18}, + [1278] = {.lex_state = 18}, + [1279] = {.lex_state = 18}, + [1280] = {.lex_state = 18}, + [1281] = {.lex_state = 18}, + [1282] = {.lex_state = 18}, + [1283] = {.lex_state = 18}, + [1284] = {.lex_state = 18}, + [1285] = {.lex_state = 18}, + [1286] = {.lex_state = 18}, + [1287] = {.lex_state = 18}, + [1288] = {.lex_state = 18}, + [1289] = {.lex_state = 18}, + [1290] = {.lex_state = 18}, + [1291] = {.lex_state = 18}, + [1292] = {.lex_state = 18}, + [1293] = {.lex_state = 18}, + [1294] = {.lex_state = 18}, + [1295] = {.lex_state = 18}, + [1296] = {.lex_state = 18}, + [1297] = {.lex_state = 18}, + [1298] = {.lex_state = 18}, + [1299] = {.lex_state = 18}, + [1300] = {.lex_state = 18}, + [1301] = {.lex_state = 18}, + [1302] = {.lex_state = 18}, + [1303] = {.lex_state = 18}, + [1304] = {.lex_state = 18}, + [1305] = {.lex_state = 18}, + [1306] = {.lex_state = 18}, + [1307] = {.lex_state = 18}, + [1308] = {.lex_state = 18}, + [1309] = {.lex_state = 18}, + [1310] = {.lex_state = 18}, + [1311] = {.lex_state = 18}, + [1312] = {.lex_state = 18}, + [1313] = {.lex_state = 18}, + [1314] = {.lex_state = 18}, + [1315] = {.lex_state = 18}, + [1316] = {.lex_state = 18}, + [1317] = {.lex_state = 18}, + [1318] = {.lex_state = 18}, + [1319] = {.lex_state = 18}, + [1320] = {.lex_state = 18}, + [1321] = {.lex_state = 18}, + [1322] = {.lex_state = 18}, + [1323] = {.lex_state = 18}, + [1324] = {.lex_state = 18}, + [1325] = {.lex_state = 18}, + [1326] = {.lex_state = 18}, + [1327] = {.lex_state = 18}, + [1328] = {.lex_state = 18}, + [1329] = {.lex_state = 18}, + [1330] = {.lex_state = 18}, + [1331] = {.lex_state = 18}, + [1332] = {.lex_state = 18}, + [1333] = {.lex_state = 18}, + [1334] = {.lex_state = 18}, + [1335] = {.lex_state = 18}, + [1336] = {.lex_state = 18}, + [1337] = {.lex_state = 18}, + [1338] = {.lex_state = 18}, + [1339] = {.lex_state = 18}, + [1340] = {.lex_state = 18}, + [1341] = {.lex_state = 18}, + [1342] = {.lex_state = 18}, + [1343] = {.lex_state = 18}, + [1344] = {.lex_state = 18}, + [1345] = {.lex_state = 18}, + [1346] = {.lex_state = 18}, + [1347] = {.lex_state = 18}, + [1348] = {.lex_state = 18}, + [1349] = {.lex_state = 18}, + [1350] = {.lex_state = 18}, + [1351] = {.lex_state = 18}, + [1352] = {.lex_state = 18}, + [1353] = {.lex_state = 18}, + [1354] = {.lex_state = 18}, + [1355] = {.lex_state = 18}, + [1356] = {.lex_state = 18}, + [1357] = {.lex_state = 18}, + [1358] = {.lex_state = 18}, + [1359] = {.lex_state = 18}, + [1360] = {.lex_state = 18}, + [1361] = {.lex_state = 18}, + [1362] = {.lex_state = 18}, + [1363] = {.lex_state = 18}, + [1364] = {.lex_state = 18}, + [1365] = {.lex_state = 18}, + [1366] = {.lex_state = 18}, + [1367] = {.lex_state = 18}, + [1368] = {.lex_state = 18}, + [1369] = {.lex_state = 18}, + [1370] = {.lex_state = 18}, + [1371] = {.lex_state = 18}, + [1372] = {.lex_state = 18}, + [1373] = {.lex_state = 18}, + [1374] = {.lex_state = 18}, + [1375] = {.lex_state = 18}, + [1376] = {.lex_state = 18}, + [1377] = {.lex_state = 18}, + [1378] = {.lex_state = 18}, + [1379] = {.lex_state = 18}, + [1380] = {.lex_state = 18}, + [1381] = {.lex_state = 18}, + [1382] = {.lex_state = 18}, + [1383] = {.lex_state = 18}, + [1384] = {.lex_state = 18}, + [1385] = {.lex_state = 18}, + [1386] = {.lex_state = 18}, + [1387] = {.lex_state = 18}, + [1388] = {.lex_state = 18}, + [1389] = {.lex_state = 18}, + [1390] = {.lex_state = 18}, + [1391] = {.lex_state = 18}, + [1392] = {.lex_state = 18}, + [1393] = {.lex_state = 18}, + [1394] = {.lex_state = 18}, + [1395] = {.lex_state = 18}, + [1396] = {.lex_state = 18}, + [1397] = {.lex_state = 18}, + [1398] = {.lex_state = 18}, + [1399] = {.lex_state = 18}, + [1400] = {.lex_state = 18}, + [1401] = {.lex_state = 18}, + [1402] = {.lex_state = 18}, + [1403] = {.lex_state = 18}, + [1404] = {.lex_state = 18}, + [1405] = {.lex_state = 18}, + [1406] = {.lex_state = 18}, + [1407] = {.lex_state = 18}, + [1408] = {.lex_state = 18}, + [1409] = {.lex_state = 18}, + [1410] = {.lex_state = 18}, + [1411] = {.lex_state = 18}, + [1412] = {.lex_state = 18}, + [1413] = {.lex_state = 18}, + [1414] = {.lex_state = 18}, + [1415] = {.lex_state = 18}, + [1416] = {.lex_state = 18}, + [1417] = {.lex_state = 18}, + [1418] = {.lex_state = 18}, + [1419] = {.lex_state = 18}, + [1420] = {.lex_state = 18}, + [1421] = {.lex_state = 18}, + [1422] = {.lex_state = 18}, + [1423] = {.lex_state = 18}, + [1424] = {.lex_state = 18}, + [1425] = {.lex_state = 18}, + [1426] = {.lex_state = 18}, + [1427] = {.lex_state = 18}, + [1428] = {.lex_state = 18}, + [1429] = {.lex_state = 18}, + [1430] = {.lex_state = 18}, + [1431] = {.lex_state = 18}, + [1432] = {.lex_state = 18}, + [1433] = {.lex_state = 18}, + [1434] = {.lex_state = 18}, + [1435] = {.lex_state = 18}, + [1436] = {.lex_state = 18}, + [1437] = {.lex_state = 18}, + [1438] = {.lex_state = 18}, + [1439] = {.lex_state = 18}, + [1440] = {.lex_state = 18}, + [1441] = {.lex_state = 18}, + [1442] = {.lex_state = 18}, + [1443] = {.lex_state = 18}, + [1444] = {.lex_state = 18}, + [1445] = {.lex_state = 18}, + [1446] = {.lex_state = 18}, + [1447] = {.lex_state = 18}, + [1448] = {.lex_state = 18}, + [1449] = {.lex_state = 18}, + [1450] = {.lex_state = 18}, + [1451] = {.lex_state = 18}, + [1452] = {.lex_state = 18}, + [1453] = {.lex_state = 18}, + [1454] = {.lex_state = 18}, + [1455] = {.lex_state = 18}, + [1456] = {.lex_state = 18}, + [1457] = {.lex_state = 18}, + [1458] = {.lex_state = 18}, + [1459] = {.lex_state = 18}, + [1460] = {.lex_state = 18}, + [1461] = {.lex_state = 18}, + [1462] = {.lex_state = 18}, + [1463] = {.lex_state = 18}, + [1464] = {.lex_state = 18}, + [1465] = {.lex_state = 18}, + [1466] = {.lex_state = 18}, + [1467] = {.lex_state = 18}, + [1468] = {.lex_state = 18}, + [1469] = {.lex_state = 18}, + [1470] = {.lex_state = 18}, + [1471] = {.lex_state = 18}, + [1472] = {.lex_state = 18}, + [1473] = {.lex_state = 18}, + [1474] = {.lex_state = 18}, + [1475] = {.lex_state = 18}, + [1476] = {.lex_state = 18}, + [1477] = {.lex_state = 18}, + [1478] = {.lex_state = 18}, + [1479] = {.lex_state = 18}, + [1480] = {.lex_state = 18}, + [1481] = {.lex_state = 18}, + [1482] = {.lex_state = 18}, + [1483] = {.lex_state = 18}, + [1484] = {.lex_state = 18}, + [1485] = {.lex_state = 18}, + [1486] = {.lex_state = 18}, + [1487] = {.lex_state = 18}, + [1488] = {.lex_state = 18}, + [1489] = {.lex_state = 18}, + [1490] = {.lex_state = 18}, + [1491] = {.lex_state = 18}, + [1492] = {.lex_state = 18}, + [1493] = {.lex_state = 18}, + [1494] = {.lex_state = 18}, + [1495] = {.lex_state = 18}, + [1496] = {.lex_state = 18}, + [1497] = {.lex_state = 18}, + [1498] = {.lex_state = 18}, + [1499] = {.lex_state = 18}, + [1500] = {.lex_state = 18}, + [1501] = {.lex_state = 18}, + [1502] = {.lex_state = 18}, + [1503] = {.lex_state = 18}, + [1504] = {.lex_state = 18}, + [1505] = {.lex_state = 18}, + [1506] = {.lex_state = 18}, + [1507] = {.lex_state = 18}, + [1508] = {.lex_state = 18}, + [1509] = {.lex_state = 18}, + [1510] = {.lex_state = 18}, + [1511] = {.lex_state = 18}, + [1512] = {.lex_state = 18}, + [1513] = {.lex_state = 18}, + [1514] = {.lex_state = 18}, + [1515] = {.lex_state = 18}, + [1516] = {.lex_state = 18}, + [1517] = {.lex_state = 18}, + [1518] = {.lex_state = 18}, + [1519] = {.lex_state = 18}, + [1520] = {.lex_state = 18}, + [1521] = {.lex_state = 18}, + [1522] = {.lex_state = 18}, + [1523] = {.lex_state = 18}, + [1524] = {.lex_state = 18}, + [1525] = {.lex_state = 18}, + [1526] = {.lex_state = 18}, + [1527] = {.lex_state = 18}, + [1528] = {.lex_state = 18}, + [1529] = {.lex_state = 18}, + [1530] = {.lex_state = 18}, + [1531] = {.lex_state = 18}, + [1532] = {.lex_state = 18}, + [1533] = {.lex_state = 18}, + [1534] = {.lex_state = 18}, + [1535] = {.lex_state = 18}, + [1536] = {.lex_state = 18}, + [1537] = {.lex_state = 18}, + [1538] = {.lex_state = 18}, + [1539] = {.lex_state = 18}, + [1540] = {.lex_state = 18}, + [1541] = {.lex_state = 18}, + [1542] = {.lex_state = 18}, + [1543] = {.lex_state = 18}, + [1544] = {.lex_state = 18}, + [1545] = {.lex_state = 18}, + [1546] = {.lex_state = 18}, + [1547] = {.lex_state = 18}, + [1548] = {.lex_state = 18}, + [1549] = {.lex_state = 18}, + [1550] = {.lex_state = 18}, + [1551] = {.lex_state = 18}, + [1552] = {.lex_state = 18}, + [1553] = {.lex_state = 18}, + [1554] = {.lex_state = 18}, + [1555] = {.lex_state = 18}, + [1556] = {.lex_state = 18}, + [1557] = {.lex_state = 18}, + [1558] = {.lex_state = 18}, + [1559] = {.lex_state = 18}, + [1560] = {.lex_state = 18}, + [1561] = {.lex_state = 17}, + [1562] = {.lex_state = 17}, + [1563] = {.lex_state = 18}, + [1564] = {.lex_state = 17}, + [1565] = {.lex_state = 17}, + [1566] = {.lex_state = 17}, + [1567] = {.lex_state = 18}, + [1568] = {.lex_state = 17}, + [1569] = {.lex_state = 1}, + [1570] = {.lex_state = 1}, + [1571] = {.lex_state = 1}, + [1572] = {.lex_state = 1}, + [1573] = {.lex_state = 1}, + [1574] = {.lex_state = 1}, + [1575] = {.lex_state = 18}, + [1576] = {.lex_state = 18}, + [1577] = {.lex_state = 18}, + [1578] = {.lex_state = 18}, + [1579] = {.lex_state = 18}, + [1580] = {.lex_state = 18}, + [1581] = {.lex_state = 18}, + [1582] = {.lex_state = 18}, + [1583] = {.lex_state = 18}, + [1584] = {.lex_state = 18}, + [1585] = {.lex_state = 18}, + [1586] = {.lex_state = 18}, + [1587] = {.lex_state = 18}, + [1588] = {.lex_state = 18}, + [1589] = {.lex_state = 18}, + [1590] = {.lex_state = 18}, + [1591] = {.lex_state = 18}, + [1592] = {.lex_state = 18}, + [1593] = {.lex_state = 18}, + [1594] = {.lex_state = 18}, + [1595] = {.lex_state = 18}, + [1596] = {.lex_state = 18}, + [1597] = {.lex_state = 18}, + [1598] = {.lex_state = 18}, + [1599] = {.lex_state = 18}, + [1600] = {.lex_state = 18}, + [1601] = {.lex_state = 18}, + [1602] = {.lex_state = 18}, + [1603] = {.lex_state = 18}, + [1604] = {.lex_state = 18}, + [1605] = {.lex_state = 18}, + [1606] = {.lex_state = 18}, + [1607] = {.lex_state = 18}, + [1608] = {.lex_state = 18}, + [1609] = {.lex_state = 18}, + [1610] = {.lex_state = 18}, + [1611] = {.lex_state = 18}, + [1612] = {.lex_state = 18}, + [1613] = {.lex_state = 18}, + [1614] = {.lex_state = 18}, + [1615] = {.lex_state = 18}, + [1616] = {.lex_state = 18}, + [1617] = {.lex_state = 18}, + [1618] = {.lex_state = 18}, + [1619] = {.lex_state = 18}, + [1620] = {.lex_state = 18}, + [1621] = {.lex_state = 18}, + [1622] = {.lex_state = 18}, + [1623] = {.lex_state = 18}, + [1624] = {.lex_state = 18}, + [1625] = {.lex_state = 18}, + [1626] = {.lex_state = 18}, + [1627] = {.lex_state = 18}, + [1628] = {.lex_state = 18}, + [1629] = {.lex_state = 18}, + [1630] = {.lex_state = 18}, + [1631] = {.lex_state = 18}, + [1632] = {.lex_state = 18}, + [1633] = {.lex_state = 18}, + [1634] = {.lex_state = 18}, + [1635] = {.lex_state = 18}, + [1636] = {.lex_state = 18}, + [1637] = {.lex_state = 18}, + [1638] = {.lex_state = 18}, + [1639] = {.lex_state = 18}, + [1640] = {.lex_state = 18}, + [1641] = {.lex_state = 18}, + [1642] = {.lex_state = 18}, + [1643] = {.lex_state = 18}, + [1644] = {.lex_state = 18}, + [1645] = {.lex_state = 18}, + [1646] = {.lex_state = 18}, + [1647] = {.lex_state = 18}, + [1648] = {.lex_state = 18}, + [1649] = {.lex_state = 18}, + [1650] = {.lex_state = 18}, + [1651] = {.lex_state = 18}, + [1652] = {.lex_state = 18}, + [1653] = {.lex_state = 18}, + [1654] = {.lex_state = 18}, + [1655] = {.lex_state = 18}, + [1656] = {.lex_state = 18}, + [1657] = {.lex_state = 18}, + [1658] = {.lex_state = 18}, + [1659] = {.lex_state = 18}, + [1660] = {.lex_state = 18}, + [1661] = {.lex_state = 18}, + [1662] = {.lex_state = 18}, + [1663] = {.lex_state = 18}, + [1664] = {.lex_state = 18}, + [1665] = {.lex_state = 18}, + [1666] = {.lex_state = 18}, + [1667] = {.lex_state = 18}, + [1668] = {.lex_state = 18}, + [1669] = {.lex_state = 18}, + [1670] = {.lex_state = 18}, + [1671] = {.lex_state = 18}, + [1672] = {.lex_state = 18}, + [1673] = {.lex_state = 18}, + [1674] = {.lex_state = 18}, + [1675] = {.lex_state = 18}, + [1676] = {.lex_state = 18}, + [1677] = {.lex_state = 18}, + [1678] = {.lex_state = 18}, + [1679] = {.lex_state = 18}, + [1680] = {.lex_state = 18}, + [1681] = {.lex_state = 18}, + [1682] = {.lex_state = 18}, + [1683] = {.lex_state = 17}, + [1684] = {.lex_state = 18}, + [1685] = {.lex_state = 18}, + [1686] = {.lex_state = 18}, + [1687] = {.lex_state = 18}, + [1688] = {.lex_state = 18}, + [1689] = {.lex_state = 18}, + [1690] = {.lex_state = 18}, + [1691] = {.lex_state = 18}, + [1692] = {.lex_state = 18}, + [1693] = {.lex_state = 18}, + [1694] = {.lex_state = 18}, + [1695] = {.lex_state = 18}, + [1696] = {.lex_state = 18}, + [1697] = {.lex_state = 18}, + [1698] = {.lex_state = 18}, + [1699] = {.lex_state = 18}, + [1700] = {.lex_state = 18}, + [1701] = {.lex_state = 18}, + [1702] = {.lex_state = 18}, + [1703] = {.lex_state = 18}, + [1704] = {.lex_state = 18}, + [1705] = {.lex_state = 18}, + [1706] = {.lex_state = 18}, + [1707] = {.lex_state = 18}, + [1708] = {.lex_state = 18}, + [1709] = {.lex_state = 18}, + [1710] = {.lex_state = 18}, + [1711] = {.lex_state = 18}, + [1712] = {.lex_state = 18}, + [1713] = {.lex_state = 18}, + [1714] = {.lex_state = 18}, + [1715] = {.lex_state = 18}, + [1716] = {.lex_state = 18}, + [1717] = {.lex_state = 17}, + [1718] = {.lex_state = 18}, + [1719] = {.lex_state = 18}, + [1720] = {.lex_state = 18}, + [1721] = {.lex_state = 18}, + [1722] = {.lex_state = 18}, + [1723] = {.lex_state = 18}, + [1724] = {.lex_state = 18}, + [1725] = {.lex_state = 18}, + [1726] = {.lex_state = 18}, + [1727] = {.lex_state = 18}, + [1728] = {.lex_state = 18}, + [1729] = {.lex_state = 18}, + [1730] = {.lex_state = 18}, + [1731] = {.lex_state = 18}, + [1732] = {.lex_state = 18}, + [1733] = {.lex_state = 18}, + [1734] = {.lex_state = 18}, + [1735] = {.lex_state = 18}, + [1736] = {.lex_state = 18}, + [1737] = {.lex_state = 18}, + [1738] = {.lex_state = 18}, + [1739] = {.lex_state = 18}, + [1740] = {.lex_state = 18}, + [1741] = {.lex_state = 18}, + [1742] = {.lex_state = 18}, + [1743] = {.lex_state = 18}, + [1744] = {.lex_state = 18}, + [1745] = {.lex_state = 18}, + [1746] = {.lex_state = 18}, + [1747] = {.lex_state = 18}, + [1748] = {.lex_state = 18}, + [1749] = {.lex_state = 18}, + [1750] = {.lex_state = 18}, + [1751] = {.lex_state = 18}, + [1752] = {.lex_state = 18}, + [1753] = {.lex_state = 18}, + [1754] = {.lex_state = 18}, + [1755] = {.lex_state = 18}, + [1756] = {.lex_state = 18}, + [1757] = {.lex_state = 18}, + [1758] = {.lex_state = 18}, + [1759] = {.lex_state = 18}, + [1760] = {.lex_state = 18}, + [1761] = {.lex_state = 18}, + [1762] = {.lex_state = 18}, + [1763] = {.lex_state = 18}, + [1764] = {.lex_state = 18}, + [1765] = {.lex_state = 18}, + [1766] = {.lex_state = 18}, + [1767] = {.lex_state = 18}, + [1768] = {.lex_state = 18}, + [1769] = {.lex_state = 18}, + [1770] = {.lex_state = 18}, + [1771] = {.lex_state = 18}, + [1772] = {.lex_state = 18}, + [1773] = {.lex_state = 18}, + [1774] = {.lex_state = 18}, + [1775] = {.lex_state = 18}, + [1776] = {.lex_state = 18}, + [1777] = {.lex_state = 18}, + [1778] = {.lex_state = 18}, + [1779] = {.lex_state = 18}, + [1780] = {.lex_state = 18}, + [1781] = {.lex_state = 18}, + [1782] = {.lex_state = 18}, + [1783] = {.lex_state = 18}, + [1784] = {.lex_state = 18}, + [1785] = {.lex_state = 18}, + [1786] = {.lex_state = 18}, + [1787] = {.lex_state = 18}, + [1788] = {.lex_state = 18}, + [1789] = {.lex_state = 18}, + [1790] = {.lex_state = 18}, + [1791] = {.lex_state = 18}, + [1792] = {.lex_state = 18}, + [1793] = {.lex_state = 18}, + [1794] = {.lex_state = 18}, + [1795] = {.lex_state = 18}, + [1796] = {.lex_state = 18}, + [1797] = {.lex_state = 18}, + [1798] = {.lex_state = 18}, + [1799] = {.lex_state = 18}, + [1800] = {.lex_state = 18}, + [1801] = {.lex_state = 18}, + [1802] = {.lex_state = 18}, + [1803] = {.lex_state = 18}, + [1804] = {.lex_state = 18}, + [1805] = {.lex_state = 18}, + [1806] = {.lex_state = 18}, + [1807] = {.lex_state = 18}, + [1808] = {.lex_state = 18}, + [1809] = {.lex_state = 18}, + [1810] = {.lex_state = 18}, + [1811] = {.lex_state = 18}, + [1812] = {.lex_state = 18}, + [1813] = {.lex_state = 18}, + [1814] = {.lex_state = 18}, + [1815] = {.lex_state = 18}, + [1816] = {.lex_state = 18}, + [1817] = {.lex_state = 18}, + [1818] = {.lex_state = 18}, + [1819] = {.lex_state = 18}, + [1820] = {.lex_state = 18}, + [1821] = {.lex_state = 18}, + [1822] = {.lex_state = 18}, + [1823] = {.lex_state = 18}, + [1824] = {.lex_state = 18}, + [1825] = {.lex_state = 18}, + [1826] = {.lex_state = 18}, + [1827] = {.lex_state = 18}, + [1828] = {.lex_state = 18}, + [1829] = {.lex_state = 18}, + [1830] = {.lex_state = 18}, + [1831] = {.lex_state = 18}, + [1832] = {.lex_state = 18}, + [1833] = {.lex_state = 18}, + [1834] = {.lex_state = 18}, + [1835] = {.lex_state = 18}, + [1836] = {.lex_state = 18}, + [1837] = {.lex_state = 18}, + [1838] = {.lex_state = 18}, + [1839] = {.lex_state = 18}, + [1840] = {.lex_state = 18}, + [1841] = {.lex_state = 18}, + [1842] = {.lex_state = 18}, + [1843] = {.lex_state = 18}, + [1844] = {.lex_state = 18}, + [1845] = {.lex_state = 18}, + [1846] = {.lex_state = 18}, + [1847] = {.lex_state = 18}, + [1848] = {.lex_state = 18}, + [1849] = {.lex_state = 18}, + [1850] = {.lex_state = 18}, + [1851] = {.lex_state = 18}, + [1852] = {.lex_state = 18}, + [1853] = {.lex_state = 18}, + [1854] = {.lex_state = 18}, + [1855] = {.lex_state = 17}, + [1856] = {.lex_state = 17}, + [1857] = {.lex_state = 17}, + [1858] = {.lex_state = 17}, + [1859] = {.lex_state = 17}, + [1860] = {.lex_state = 17}, + [1861] = {.lex_state = 17}, + [1862] = {.lex_state = 17}, + [1863] = {.lex_state = 18}, + [1864] = {.lex_state = 17}, + [1865] = {.lex_state = 17}, + [1866] = {.lex_state = 17}, + [1867] = {.lex_state = 17}, + [1868] = {.lex_state = 17}, + [1869] = {.lex_state = 17}, + [1870] = {.lex_state = 17}, + [1871] = {.lex_state = 17}, + [1872] = {.lex_state = 17}, + [1873] = {.lex_state = 17}, + [1874] = {.lex_state = 18}, + [1875] = {.lex_state = 18}, + [1876] = {.lex_state = 18}, + [1877] = {.lex_state = 3}, + [1878] = {.lex_state = 18}, + [1879] = {.lex_state = 18}, + [1880] = {.lex_state = 18}, + [1881] = {.lex_state = 18}, + [1882] = {.lex_state = 18}, + [1883] = {.lex_state = 18}, + [1884] = {.lex_state = 18}, + [1885] = {.lex_state = 18}, + [1886] = {.lex_state = 18}, + [1887] = {.lex_state = 18}, + [1888] = {.lex_state = 18}, + [1889] = {.lex_state = 18}, + [1890] = {.lex_state = 18}, + [1891] = {.lex_state = 18}, + [1892] = {.lex_state = 18}, + [1893] = {.lex_state = 18}, + [1894] = {.lex_state = 18}, + [1895] = {.lex_state = 18}, + [1896] = {.lex_state = 18}, + [1897] = {.lex_state = 18}, + [1898] = {.lex_state = 18}, + [1899] = {.lex_state = 18}, + [1900] = {.lex_state = 18}, + [1901] = {.lex_state = 18}, + [1902] = {.lex_state = 18}, + [1903] = {.lex_state = 18}, + [1904] = {.lex_state = 18}, + [1905] = {.lex_state = 18}, + [1906] = {.lex_state = 18}, + [1907] = {.lex_state = 18}, + [1908] = {.lex_state = 18}, + [1909] = {.lex_state = 18}, + [1910] = {.lex_state = 18}, + [1911] = {.lex_state = 18}, + [1912] = {.lex_state = 18}, + [1913] = {.lex_state = 18}, + [1914] = {.lex_state = 18}, + [1915] = {.lex_state = 18}, + [1916] = {.lex_state = 18}, + [1917] = {.lex_state = 18}, + [1918] = {.lex_state = 18}, + [1919] = {.lex_state = 18}, + [1920] = {.lex_state = 18}, + [1921] = {.lex_state = 18}, + [1922] = {.lex_state = 18}, + [1923] = {.lex_state = 18}, + [1924] = {.lex_state = 18}, + [1925] = {.lex_state = 18}, + [1926] = {.lex_state = 18}, + [1927] = {.lex_state = 18}, + [1928] = {.lex_state = 18}, + [1929] = {.lex_state = 18}, + [1930] = {.lex_state = 18}, + [1931] = {.lex_state = 18}, + [1932] = {.lex_state = 18}, + [1933] = {.lex_state = 18}, + [1934] = {.lex_state = 18}, + [1935] = {.lex_state = 18}, + [1936] = {.lex_state = 18}, + [1937] = {.lex_state = 18}, + [1938] = {.lex_state = 18}, + [1939] = {.lex_state = 18}, + [1940] = {.lex_state = 18}, + [1941] = {.lex_state = 18}, + [1942] = {.lex_state = 18}, + [1943] = {.lex_state = 18}, + [1944] = {.lex_state = 18}, + [1945] = {.lex_state = 18}, + [1946] = {.lex_state = 18}, + [1947] = {.lex_state = 18}, + [1948] = {.lex_state = 18}, + [1949] = {.lex_state = 18}, + [1950] = {.lex_state = 18}, + [1951] = {.lex_state = 18}, + [1952] = {.lex_state = 18}, + [1953] = {.lex_state = 18}, + [1954] = {.lex_state = 18}, + [1955] = {.lex_state = 18}, + [1956] = {.lex_state = 18}, + [1957] = {.lex_state = 18}, + [1958] = {.lex_state = 18}, + [1959] = {.lex_state = 18}, + [1960] = {.lex_state = 18}, + [1961] = {.lex_state = 18}, + [1962] = {.lex_state = 18}, + [1963] = {.lex_state = 18}, + [1964] = {.lex_state = 18}, + [1965] = {.lex_state = 18}, + [1966] = {.lex_state = 18}, + [1967] = {.lex_state = 18}, + [1968] = {.lex_state = 18}, + [1969] = {.lex_state = 18}, + [1970] = {.lex_state = 18}, + [1971] = {.lex_state = 18}, + [1972] = {.lex_state = 18}, + [1973] = {.lex_state = 18}, + [1974] = {.lex_state = 18}, + [1975] = {.lex_state = 18}, + [1976] = {.lex_state = 18}, + [1977] = {.lex_state = 18}, + [1978] = {.lex_state = 18}, + [1979] = {.lex_state = 18}, + [1980] = {.lex_state = 18}, + [1981] = {.lex_state = 18}, + [1982] = {.lex_state = 18}, + [1983] = {.lex_state = 18}, + [1984] = {.lex_state = 18}, + [1985] = {.lex_state = 18}, + [1986] = {.lex_state = 18}, + [1987] = {.lex_state = 18}, + [1988] = {.lex_state = 18}, + [1989] = {.lex_state = 18}, + [1990] = {.lex_state = 18}, + [1991] = {.lex_state = 18}, + [1992] = {.lex_state = 18}, + [1993] = {.lex_state = 18}, + [1994] = {.lex_state = 18}, + [1995] = {.lex_state = 18}, + [1996] = {.lex_state = 18}, + [1997] = {.lex_state = 18}, + [1998] = {.lex_state = 18}, + [1999] = {.lex_state = 18}, + [2000] = {.lex_state = 18}, + [2001] = {.lex_state = 18}, + [2002] = {.lex_state = 18}, + [2003] = {.lex_state = 18}, + [2004] = {.lex_state = 18}, + [2005] = {.lex_state = 18}, + [2006] = {.lex_state = 18}, + [2007] = {.lex_state = 18}, + [2008] = {.lex_state = 18}, + [2009] = {.lex_state = 18}, + [2010] = {.lex_state = 18}, + [2011] = {.lex_state = 18}, + [2012] = {.lex_state = 18}, + [2013] = {.lex_state = 18}, + [2014] = {.lex_state = 18}, + [2015] = {.lex_state = 18}, + [2016] = {.lex_state = 18}, + [2017] = {.lex_state = 18}, + [2018] = {.lex_state = 18}, + [2019] = {.lex_state = 18}, + [2020] = {.lex_state = 18}, + [2021] = {.lex_state = 18}, + [2022] = {.lex_state = 18}, + [2023] = {.lex_state = 18}, + [2024] = {.lex_state = 18}, + [2025] = {.lex_state = 18}, + [2026] = {.lex_state = 18}, + [2027] = {.lex_state = 18}, + [2028] = {.lex_state = 18}, + [2029] = {.lex_state = 18}, + [2030] = {.lex_state = 18}, + [2031] = {.lex_state = 18}, + [2032] = {.lex_state = 18}, + [2033] = {.lex_state = 18}, + [2034] = {.lex_state = 18}, + [2035] = {.lex_state = 18}, + [2036] = {.lex_state = 18}, + [2037] = {.lex_state = 18}, + [2038] = {.lex_state = 18}, + [2039] = {.lex_state = 18}, + [2040] = {.lex_state = 18}, + [2041] = {.lex_state = 18}, + [2042] = {.lex_state = 18}, + [2043] = {.lex_state = 18}, + [2044] = {.lex_state = 18}, + [2045] = {.lex_state = 18}, + [2046] = {.lex_state = 18}, + [2047] = {.lex_state = 18}, + [2048] = {.lex_state = 18}, + [2049] = {.lex_state = 18}, + [2050] = {.lex_state = 18}, + [2051] = {.lex_state = 18}, + [2052] = {.lex_state = 18}, + [2053] = {.lex_state = 18}, + [2054] = {.lex_state = 18}, + [2055] = {.lex_state = 18}, + [2056] = {.lex_state = 18}, + [2057] = {.lex_state = 18}, + [2058] = {.lex_state = 18}, + [2059] = {.lex_state = 18}, + [2060] = {.lex_state = 18}, + [2061] = {.lex_state = 18}, + [2062] = {.lex_state = 18}, + [2063] = {.lex_state = 18}, + [2064] = {.lex_state = 18}, + [2065] = {.lex_state = 18}, + [2066] = {.lex_state = 18}, + [2067] = {.lex_state = 18}, + [2068] = {.lex_state = 18}, + [2069] = {.lex_state = 18}, + [2070] = {.lex_state = 18}, + [2071] = {.lex_state = 18}, + [2072] = {.lex_state = 18}, + [2073] = {.lex_state = 18}, + [2074] = {.lex_state = 18}, + [2075] = {.lex_state = 18}, + [2076] = {.lex_state = 18}, + [2077] = {.lex_state = 18}, + [2078] = {.lex_state = 18}, + [2079] = {.lex_state = 18}, + [2080] = {.lex_state = 18}, + [2081] = {.lex_state = 18}, + [2082] = {.lex_state = 18}, + [2083] = {.lex_state = 18}, + [2084] = {.lex_state = 18}, + [2085] = {.lex_state = 18}, + [2086] = {.lex_state = 18}, + [2087] = {.lex_state = 18}, + [2088] = {.lex_state = 18}, + [2089] = {.lex_state = 18}, + [2090] = {.lex_state = 18}, + [2091] = {.lex_state = 18}, + [2092] = {.lex_state = 18}, + [2093] = {.lex_state = 18}, + [2094] = {.lex_state = 18}, + [2095] = {.lex_state = 18}, + [2096] = {.lex_state = 18}, + [2097] = {.lex_state = 18}, + [2098] = {.lex_state = 18}, + [2099] = {.lex_state = 18}, + [2100] = {.lex_state = 18}, + [2101] = {.lex_state = 18}, + [2102] = {.lex_state = 18}, + [2103] = {.lex_state = 18}, + [2104] = {.lex_state = 18}, + [2105] = {.lex_state = 18}, + [2106] = {.lex_state = 18}, + [2107] = {.lex_state = 18}, + [2108] = {.lex_state = 18}, + [2109] = {.lex_state = 18}, + [2110] = {.lex_state = 18}, + [2111] = {.lex_state = 18}, + [2112] = {.lex_state = 18}, + [2113] = {.lex_state = 18}, + [2114] = {.lex_state = 18}, + [2115] = {.lex_state = 18}, + [2116] = {.lex_state = 18}, + [2117] = {.lex_state = 18}, + [2118] = {.lex_state = 18}, + [2119] = {.lex_state = 18}, + [2120] = {.lex_state = 18}, + [2121] = {.lex_state = 18}, + [2122] = {.lex_state = 18}, + [2123] = {.lex_state = 18}, + [2124] = {.lex_state = 18}, + [2125] = {.lex_state = 18}, + [2126] = {.lex_state = 18}, + [2127] = {.lex_state = 18}, + [2128] = {.lex_state = 18}, + [2129] = {.lex_state = 18}, + [2130] = {.lex_state = 18}, + [2131] = {.lex_state = 18}, + [2132] = {.lex_state = 18}, + [2133] = {.lex_state = 18}, + [2134] = {.lex_state = 18}, + [2135] = {.lex_state = 18}, + [2136] = {.lex_state = 18}, + [2137] = {.lex_state = 18}, + [2138] = {.lex_state = 18}, + [2139] = {.lex_state = 18}, + [2140] = {.lex_state = 18}, + [2141] = {.lex_state = 18}, + [2142] = {.lex_state = 18}, + [2143] = {.lex_state = 18}, + [2144] = {.lex_state = 18}, + [2145] = {.lex_state = 18}, + [2146] = {.lex_state = 18}, + [2147] = {.lex_state = 18}, + [2148] = {.lex_state = 18}, + [2149] = {.lex_state = 18}, + [2150] = {.lex_state = 18}, + [2151] = {.lex_state = 18}, + [2152] = {.lex_state = 18}, + [2153] = {.lex_state = 18}, + [2154] = {.lex_state = 18}, + [2155] = {.lex_state = 18}, + [2156] = {.lex_state = 18}, + [2157] = {.lex_state = 18}, + [2158] = {.lex_state = 18}, + [2159] = {.lex_state = 18}, + [2160] = {.lex_state = 18}, + [2161] = {.lex_state = 18}, + [2162] = {.lex_state = 18}, + [2163] = {.lex_state = 18}, + [2164] = {.lex_state = 18}, + [2165] = {.lex_state = 18}, + [2166] = {.lex_state = 18}, + [2167] = {.lex_state = 18}, + [2168] = {.lex_state = 18}, + [2169] = {.lex_state = 18}, + [2170] = {.lex_state = 18}, + [2171] = {.lex_state = 18}, + [2172] = {.lex_state = 18}, + [2173] = {.lex_state = 18}, + [2174] = {.lex_state = 18}, + [2175] = {.lex_state = 18}, + [2176] = {.lex_state = 18}, + [2177] = {.lex_state = 18}, + [2178] = {.lex_state = 18}, + [2179] = {.lex_state = 18}, + [2180] = {.lex_state = 18}, + [2181] = {.lex_state = 18}, + [2182] = {.lex_state = 18}, + [2183] = {.lex_state = 18}, + [2184] = {.lex_state = 18}, + [2185] = {.lex_state = 18}, + [2186] = {.lex_state = 18}, + [2187] = {.lex_state = 18}, + [2188] = {.lex_state = 18}, + [2189] = {.lex_state = 18}, + [2190] = {.lex_state = 18}, + [2191] = {.lex_state = 18}, + [2192] = {.lex_state = 18}, + [2193] = {.lex_state = 18}, + [2194] = {.lex_state = 18}, + [2195] = {.lex_state = 18}, + [2196] = {.lex_state = 18}, + [2197] = {.lex_state = 18}, + [2198] = {.lex_state = 18}, + [2199] = {.lex_state = 18}, + [2200] = {.lex_state = 18}, + [2201] = {.lex_state = 18}, + [2202] = {.lex_state = 18}, + [2203] = {.lex_state = 18}, + [2204] = {.lex_state = 18}, + [2205] = {.lex_state = 18}, + [2206] = {.lex_state = 18}, + [2207] = {.lex_state = 18}, + [2208] = {.lex_state = 18}, + [2209] = {.lex_state = 18}, + [2210] = {.lex_state = 18}, + [2211] = {.lex_state = 18}, + [2212] = {.lex_state = 18}, + [2213] = {.lex_state = 18}, + [2214] = {.lex_state = 18}, + [2215] = {.lex_state = 18}, + [2216] = {.lex_state = 18}, + [2217] = {.lex_state = 18}, + [2218] = {.lex_state = 18}, + [2219] = {.lex_state = 18}, + [2220] = {.lex_state = 18}, + [2221] = {.lex_state = 18}, + [2222] = {.lex_state = 18}, + [2223] = {.lex_state = 18}, + [2224] = {.lex_state = 18}, + [2225] = {.lex_state = 18}, + [2226] = {.lex_state = 18}, + [2227] = {.lex_state = 18}, + [2228] = {.lex_state = 18}, + [2229] = {.lex_state = 18}, + [2230] = {.lex_state = 18}, + [2231] = {.lex_state = 18}, + [2232] = {.lex_state = 18}, + [2233] = {.lex_state = 18}, + [2234] = {.lex_state = 18}, + [2235] = {.lex_state = 18}, + [2236] = {.lex_state = 18}, + [2237] = {.lex_state = 18}, + [2238] = {.lex_state = 18}, + [2239] = {.lex_state = 18}, + [2240] = {.lex_state = 18}, + [2241] = {.lex_state = 18}, + [2242] = {.lex_state = 18}, + [2243] = {.lex_state = 18}, + [2244] = {.lex_state = 18}, + [2245] = {.lex_state = 18}, + [2246] = {.lex_state = 18}, + [2247] = {.lex_state = 18}, + [2248] = {.lex_state = 18}, + [2249] = {.lex_state = 18}, + [2250] = {.lex_state = 18}, + [2251] = {.lex_state = 18}, + [2252] = {.lex_state = 18}, + [2253] = {.lex_state = 18}, + [2254] = {.lex_state = 18}, + [2255] = {.lex_state = 18}, + [2256] = {.lex_state = 18}, + [2257] = {.lex_state = 18}, + [2258] = {.lex_state = 18}, + [2259] = {.lex_state = 18}, + [2260] = {.lex_state = 18}, + [2261] = {.lex_state = 18}, + [2262] = {.lex_state = 18}, + [2263] = {.lex_state = 18}, + [2264] = {.lex_state = 18}, + [2265] = {.lex_state = 18}, + [2266] = {.lex_state = 18}, + [2267] = {.lex_state = 18}, + [2268] = {.lex_state = 18}, + [2269] = {.lex_state = 18}, + [2270] = {.lex_state = 18}, + [2271] = {.lex_state = 18}, + [2272] = {.lex_state = 18}, + [2273] = {.lex_state = 18}, + [2274] = {.lex_state = 18}, + [2275] = {.lex_state = 18}, + [2276] = {.lex_state = 18}, + [2277] = {.lex_state = 18}, + [2278] = {.lex_state = 18}, + [2279] = {.lex_state = 18}, + [2280] = {.lex_state = 18}, + [2281] = {.lex_state = 18}, + [2282] = {.lex_state = 18}, + [2283] = {.lex_state = 18}, + [2284] = {.lex_state = 18}, + [2285] = {.lex_state = 18}, + [2286] = {.lex_state = 18}, + [2287] = {.lex_state = 18}, + [2288] = {.lex_state = 18}, + [2289] = {.lex_state = 18}, + [2290] = {.lex_state = 18}, + [2291] = {.lex_state = 18}, + [2292] = {.lex_state = 16}, + [2293] = {.lex_state = 16}, + [2294] = {.lex_state = 16}, + [2295] = {.lex_state = 16}, + [2296] = {.lex_state = 16}, + [2297] = {.lex_state = 16}, + [2298] = {.lex_state = 16}, + [2299] = {.lex_state = 16}, + [2300] = {.lex_state = 16}, + [2301] = {.lex_state = 16}, + [2302] = {.lex_state = 16}, + [2303] = {.lex_state = 16}, + [2304] = {.lex_state = 16}, + [2305] = {.lex_state = 16}, + [2306] = {.lex_state = 16}, + [2307] = {.lex_state = 16}, + [2308] = {.lex_state = 16}, + [2309] = {.lex_state = 16}, + [2310] = {.lex_state = 16}, + [2311] = {.lex_state = 16}, + [2312] = {.lex_state = 16}, + [2313] = {.lex_state = 16}, + [2314] = {.lex_state = 16}, + [2315] = {.lex_state = 16}, + [2316] = {.lex_state = 16}, + [2317] = {.lex_state = 16}, + [2318] = {.lex_state = 16}, + [2319] = {.lex_state = 16}, + [2320] = {.lex_state = 16}, + [2321] = {.lex_state = 16}, + [2322] = {.lex_state = 16}, + [2323] = {.lex_state = 16}, + [2324] = {.lex_state = 16}, + [2325] = {.lex_state = 16}, + [2326] = {.lex_state = 16}, + [2327] = {.lex_state = 16}, + [2328] = {.lex_state = 16}, + [2329] = {.lex_state = 16}, + [2330] = {.lex_state = 16}, + [2331] = {.lex_state = 16}, + [2332] = {.lex_state = 16}, + [2333] = {.lex_state = 16}, + [2334] = {.lex_state = 16}, + [2335] = {.lex_state = 16}, + [2336] = {.lex_state = 16}, + [2337] = {.lex_state = 16}, + [2338] = {.lex_state = 16}, + [2339] = {.lex_state = 16}, + [2340] = {.lex_state = 16}, + [2341] = {.lex_state = 16}, + [2342] = {.lex_state = 16}, + [2343] = {.lex_state = 16}, + [2344] = {.lex_state = 16}, + [2345] = {.lex_state = 16}, + [2346] = {.lex_state = 16}, + [2347] = {.lex_state = 16}, + [2348] = {.lex_state = 16}, + [2349] = {.lex_state = 16}, + [2350] = {.lex_state = 16}, + [2351] = {.lex_state = 16}, + [2352] = {.lex_state = 16}, + [2353] = {.lex_state = 16}, + [2354] = {.lex_state = 16}, + [2355] = {.lex_state = 16}, + [2356] = {.lex_state = 16}, + [2357] = {.lex_state = 16}, + [2358] = {.lex_state = 16}, + [2359] = {.lex_state = 16}, + [2360] = {.lex_state = 16}, + [2361] = {.lex_state = 16}, + [2362] = {.lex_state = 16}, + [2363] = {.lex_state = 18}, + [2364] = {.lex_state = 16}, + [2365] = {.lex_state = 16}, + [2366] = {.lex_state = 16}, + [2367] = {.lex_state = 16}, + [2368] = {.lex_state = 16}, + [2369] = {.lex_state = 16}, + [2370] = {.lex_state = 16}, + [2371] = {.lex_state = 16}, + [2372] = {.lex_state = 16}, + [2373] = {.lex_state = 16}, + [2374] = {.lex_state = 16}, + [2375] = {.lex_state = 16}, + [2376] = {.lex_state = 16}, + [2377] = {.lex_state = 16}, + [2378] = {.lex_state = 16}, + [2379] = {.lex_state = 16}, + [2380] = {.lex_state = 16}, + [2381] = {.lex_state = 16}, + [2382] = {.lex_state = 16}, + [2383] = {.lex_state = 16}, + [2384] = {.lex_state = 16}, + [2385] = {.lex_state = 16}, + [2386] = {.lex_state = 16}, + [2387] = {.lex_state = 16}, + [2388] = {.lex_state = 16}, + [2389] = {.lex_state = 16}, + [2390] = {.lex_state = 16}, + [2391] = {.lex_state = 16}, + [2392] = {.lex_state = 16}, + [2393] = {.lex_state = 16}, + [2394] = {.lex_state = 16}, + [2395] = {.lex_state = 16}, + [2396] = {.lex_state = 16}, + [2397] = {.lex_state = 16}, + [2398] = {.lex_state = 16}, + [2399] = {.lex_state = 16}, + [2400] = {.lex_state = 16}, + [2401] = {.lex_state = 16}, + [2402] = {.lex_state = 16}, + [2403] = {.lex_state = 16}, + [2404] = {.lex_state = 16}, + [2405] = {.lex_state = 16}, + [2406] = {.lex_state = 16}, + [2407] = {.lex_state = 16}, + [2408] = {.lex_state = 16}, + [2409] = {.lex_state = 16}, + [2410] = {.lex_state = 16}, + [2411] = {.lex_state = 16}, + [2412] = {.lex_state = 16}, + [2413] = {.lex_state = 16}, + [2414] = {.lex_state = 16}, + [2415] = {.lex_state = 16}, + [2416] = {.lex_state = 16}, + [2417] = {.lex_state = 16}, + [2418] = {.lex_state = 16}, + [2419] = {.lex_state = 16}, + [2420] = {.lex_state = 16}, + [2421] = {.lex_state = 16}, + [2422] = {.lex_state = 16}, + [2423] = {.lex_state = 16}, + [2424] = {.lex_state = 16}, + [2425] = {.lex_state = 16}, + [2426] = {.lex_state = 16}, + [2427] = {.lex_state = 18}, + [2428] = {.lex_state = 16}, + [2429] = {.lex_state = 16}, + [2430] = {.lex_state = 18}, + [2431] = {.lex_state = 16}, + [2432] = {.lex_state = 16}, + [2433] = {.lex_state = 16}, + [2434] = {.lex_state = 16}, + [2435] = {.lex_state = 16}, + [2436] = {.lex_state = 16}, + [2437] = {.lex_state = 16}, + [2438] = {.lex_state = 16}, + [2439] = {.lex_state = 16}, + [2440] = {.lex_state = 16}, + [2441] = {.lex_state = 16}, + [2442] = {.lex_state = 16}, + [2443] = {.lex_state = 18}, + [2444] = {.lex_state = 16}, + [2445] = {.lex_state = 16}, + [2446] = {.lex_state = 16}, + [2447] = {.lex_state = 16}, + [2448] = {.lex_state = 16}, + [2449] = {.lex_state = 16}, + [2450] = {.lex_state = 16}, + [2451] = {.lex_state = 16}, + [2452] = {.lex_state = 16}, + [2453] = {.lex_state = 16}, + [2454] = {.lex_state = 16}, + [2455] = {.lex_state = 16}, + [2456] = {.lex_state = 16}, + [2457] = {.lex_state = 16}, + [2458] = {.lex_state = 16}, + [2459] = {.lex_state = 16}, + [2460] = {.lex_state = 16}, + [2461] = {.lex_state = 18}, + [2462] = {.lex_state = 18}, + [2463] = {.lex_state = 16}, + [2464] = {.lex_state = 18}, + [2465] = {.lex_state = 18}, + [2466] = {.lex_state = 16}, + [2467] = {.lex_state = 16}, + [2468] = {.lex_state = 16}, + [2469] = {.lex_state = 16}, + [2470] = {.lex_state = 16}, + [2471] = {.lex_state = 16}, + [2472] = {.lex_state = 18}, + [2473] = {.lex_state = 16}, + [2474] = {.lex_state = 18}, + [2475] = {.lex_state = 18}, + [2476] = {.lex_state = 18}, + [2477] = {.lex_state = 16}, + [2478] = {.lex_state = 16}, + [2479] = {.lex_state = 16}, + [2480] = {.lex_state = 18}, + [2481] = {.lex_state = 18}, + [2482] = {.lex_state = 18}, + [2483] = {.lex_state = 18}, + [2484] = {.lex_state = 16}, + [2485] = {.lex_state = 16}, + [2486] = {.lex_state = 16}, + [2487] = {.lex_state = 18}, + [2488] = {.lex_state = 16}, + [2489] = {.lex_state = 16}, + [2490] = {.lex_state = 16}, + [2491] = {.lex_state = 16}, + [2492] = {.lex_state = 16}, + [2493] = {.lex_state = 16}, + [2494] = {.lex_state = 16}, + [2495] = {.lex_state = 16}, + [2496] = {.lex_state = 16}, + [2497] = {.lex_state = 16}, + [2498] = {.lex_state = 16}, + [2499] = {.lex_state = 16}, + [2500] = {.lex_state = 16}, + [2501] = {.lex_state = 16}, + [2502] = {.lex_state = 16}, + [2503] = {.lex_state = 16}, + [2504] = {.lex_state = 16}, + [2505] = {.lex_state = 16}, + [2506] = {.lex_state = 16}, + [2507] = {.lex_state = 16}, + [2508] = {.lex_state = 16}, + [2509] = {.lex_state = 16}, + [2510] = {.lex_state = 16}, + [2511] = {.lex_state = 16}, + [2512] = {.lex_state = 16}, + [2513] = {.lex_state = 17}, + [2514] = {.lex_state = 17}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 17}, + [2517] = {.lex_state = 17}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 17}, + [2520] = {.lex_state = 17}, + [2521] = {.lex_state = 17}, + [2522] = {.lex_state = 17}, + [2523] = {.lex_state = 17}, + [2524] = {.lex_state = 17}, + [2525] = {.lex_state = 17}, + [2526] = {.lex_state = 17}, + [2527] = {.lex_state = 17}, + [2528] = {.lex_state = 17}, + [2529] = {.lex_state = 17}, + [2530] = {.lex_state = 17}, + [2531] = {.lex_state = 17}, + [2532] = {.lex_state = 17}, + [2533] = {.lex_state = 17}, + [2534] = {.lex_state = 17}, + [2535] = {.lex_state = 17}, + [2536] = {.lex_state = 17}, + [2537] = {.lex_state = 17}, + [2538] = {.lex_state = 17}, + [2539] = {.lex_state = 17}, + [2540] = {.lex_state = 17}, + [2541] = {.lex_state = 17}, + [2542] = {.lex_state = 17}, + [2543] = {.lex_state = 17}, + [2544] = {.lex_state = 17}, + [2545] = {.lex_state = 17}, + [2546] = {.lex_state = 17}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 17}, + [2549] = {.lex_state = 17}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 17}, + [2552] = {.lex_state = 17}, + [2553] = {.lex_state = 17}, + [2554] = {.lex_state = 17}, + [2555] = {.lex_state = 17}, + [2556] = {.lex_state = 17}, + [2557] = {.lex_state = 17}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 17}, + [2560] = {.lex_state = 17}, + [2561] = {.lex_state = 17}, + [2562] = {.lex_state = 17}, + [2563] = {.lex_state = 17}, + [2564] = {.lex_state = 17}, + [2565] = {.lex_state = 17}, + [2566] = {.lex_state = 17}, + [2567] = {.lex_state = 17}, + [2568] = {.lex_state = 17}, + [2569] = {.lex_state = 17}, + [2570] = {.lex_state = 17}, + [2571] = {.lex_state = 17}, + [2572] = {.lex_state = 17}, + [2573] = {.lex_state = 17}, + [2574] = {.lex_state = 17}, + [2575] = {.lex_state = 17}, + [2576] = {.lex_state = 17}, + [2577] = {.lex_state = 17}, + [2578] = {.lex_state = 17}, + [2579] = {.lex_state = 17}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 17}, + [2582] = {.lex_state = 17}, + [2583] = {.lex_state = 17}, + [2584] = {.lex_state = 17}, + [2585] = {.lex_state = 17}, + [2586] = {.lex_state = 17}, + [2587] = {.lex_state = 17}, + [2588] = {.lex_state = 17}, + [2589] = {.lex_state = 17}, + [2590] = {.lex_state = 17}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 17}, + [2595] = {.lex_state = 17}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 17}, + [2599] = {.lex_state = 17}, + [2600] = {.lex_state = 17}, + [2601] = {.lex_state = 17}, + [2602] = {.lex_state = 17}, + [2603] = {.lex_state = 17}, + [2604] = {.lex_state = 17}, + [2605] = {.lex_state = 17}, + [2606] = {.lex_state = 17}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 17}, + [2609] = {.lex_state = 17}, + [2610] = {.lex_state = 17}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 17}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 17}, + [2615] = {.lex_state = 17}, + [2616] = {.lex_state = 17}, + [2617] = {.lex_state = 17}, + [2618] = {.lex_state = 1}, + [2619] = {.lex_state = 17}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 17}, + [2622] = {.lex_state = 17}, + [2623] = {.lex_state = 17}, + [2624] = {.lex_state = 17}, + [2625] = {.lex_state = 17}, + [2626] = {.lex_state = 17}, + [2627] = {.lex_state = 17}, + [2628] = {.lex_state = 17}, + [2629] = {.lex_state = 17}, + [2630] = {.lex_state = 17}, + [2631] = {.lex_state = 17}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 1}, + [2634] = {.lex_state = 17}, + [2635] = {.lex_state = 17}, + [2636] = {.lex_state = 1}, + [2637] = {.lex_state = 17}, + [2638] = {.lex_state = 17}, + [2639] = {.lex_state = 17}, + [2640] = {.lex_state = 17}, + [2641] = {.lex_state = 17}, + [2642] = {.lex_state = 17}, + [2643] = {.lex_state = 17}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 17}, + [2648] = {.lex_state = 17}, + [2649] = {.lex_state = 17}, + [2650] = {.lex_state = 17}, + [2651] = {.lex_state = 17}, + [2652] = {.lex_state = 17}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 17}, + [2658] = {.lex_state = 17}, + [2659] = {.lex_state = 17}, + [2660] = {.lex_state = 17}, + [2661] = {.lex_state = 1}, + [2662] = {.lex_state = 17}, + [2663] = {.lex_state = 17}, + [2664] = {.lex_state = 17}, + [2665] = {.lex_state = 17}, + [2666] = {.lex_state = 17}, + [2667] = {.lex_state = 17}, + [2668] = {.lex_state = 17}, + [2669] = {.lex_state = 17}, + [2670] = {.lex_state = 17}, + [2671] = {.lex_state = 17}, + [2672] = {.lex_state = 17}, + [2673] = {.lex_state = 17}, + [2674] = {.lex_state = 17}, + [2675] = {.lex_state = 17}, + [2676] = {.lex_state = 17}, + [2677] = {.lex_state = 17}, + [2678] = {.lex_state = 17}, + [2679] = {.lex_state = 17}, + [2680] = {.lex_state = 17}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 17}, + [2683] = {.lex_state = 17}, + [2684] = {.lex_state = 17}, + [2685] = {.lex_state = 17}, + [2686] = {.lex_state = 17}, + [2687] = {.lex_state = 17}, + [2688] = {.lex_state = 17}, + [2689] = {.lex_state = 1}, + [2690] = {.lex_state = 17}, + [2691] = {.lex_state = 17}, + [2692] = {.lex_state = 17}, + [2693] = {.lex_state = 17}, + [2694] = {.lex_state = 17}, + [2695] = {.lex_state = 17}, + [2696] = {.lex_state = 17}, + [2697] = {.lex_state = 17}, + [2698] = {.lex_state = 17}, + [2699] = {.lex_state = 17}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 17}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 1}, + [2705] = {.lex_state = 1}, + [2706] = {.lex_state = 17}, + [2707] = {.lex_state = 17}, + [2708] = {.lex_state = 17}, + [2709] = {.lex_state = 17}, + [2710] = {.lex_state = 1}, + [2711] = {.lex_state = 1}, + [2712] = {.lex_state = 17}, + [2713] = {.lex_state = 17}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 1}, + [2718] = {.lex_state = 1}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 1}, + [2721] = {.lex_state = 1}, + [2722] = {.lex_state = 1}, + [2723] = {.lex_state = 1}, + [2724] = {.lex_state = 1}, + [2725] = {.lex_state = 1}, + [2726] = {.lex_state = 1}, + [2727] = {.lex_state = 1}, + [2728] = {.lex_state = 17}, + [2729] = {.lex_state = 17}, + [2730] = {.lex_state = 1}, + [2731] = {.lex_state = 1}, + [2732] = {.lex_state = 1}, + [2733] = {.lex_state = 17}, + [2734] = {.lex_state = 1}, + [2735] = {.lex_state = 1}, + [2736] = {.lex_state = 1}, + [2737] = {.lex_state = 1}, + [2738] = {.lex_state = 1}, + [2739] = {.lex_state = 1}, + [2740] = {.lex_state = 1}, + [2741] = {.lex_state = 1}, + [2742] = {.lex_state = 17}, + [2743] = {.lex_state = 1}, + [2744] = {.lex_state = 1}, + [2745] = {.lex_state = 1}, + [2746] = {.lex_state = 1}, + [2747] = {.lex_state = 1}, + [2748] = {.lex_state = 1}, + [2749] = {.lex_state = 1}, + [2750] = {.lex_state = 1}, + [2751] = {.lex_state = 1}, + [2752] = {.lex_state = 1}, + [2753] = {.lex_state = 1}, + [2754] = {.lex_state = 1}, + [2755] = {.lex_state = 1}, + [2756] = {.lex_state = 1}, + [2757] = {.lex_state = 17}, + [2758] = {.lex_state = 1}, + [2759] = {.lex_state = 1}, + [2760] = {.lex_state = 1}, + [2761] = {.lex_state = 1}, + [2762] = {.lex_state = 17}, + [2763] = {.lex_state = 17}, + [2764] = {.lex_state = 1}, + [2765] = {.lex_state = 17}, + [2766] = {.lex_state = 1}, + [2767] = {.lex_state = 17}, + [2768] = {.lex_state = 17}, + [2769] = {.lex_state = 1}, + [2770] = {.lex_state = 1}, + [2771] = {.lex_state = 1}, + [2772] = {.lex_state = 1}, + [2773] = {.lex_state = 17}, + [2774] = {.lex_state = 17}, + [2775] = {.lex_state = 1}, + [2776] = {.lex_state = 17}, + [2777] = {.lex_state = 17}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 1}, + [2780] = {.lex_state = 1}, + [2781] = {.lex_state = 1}, + [2782] = {.lex_state = 1}, + [2783] = {.lex_state = 1}, + [2784] = {.lex_state = 1}, + [2785] = {.lex_state = 1}, + [2786] = {.lex_state = 1}, + [2787] = {.lex_state = 1}, + [2788] = {.lex_state = 1}, + [2789] = {.lex_state = 1}, + [2790] = {.lex_state = 1}, + [2791] = {.lex_state = 1}, + [2792] = {.lex_state = 1}, + [2793] = {.lex_state = 1}, + [2794] = {.lex_state = 1}, + [2795] = {.lex_state = 1}, + [2796] = {.lex_state = 1}, + [2797] = {.lex_state = 1}, + [2798] = {.lex_state = 1}, + [2799] = {.lex_state = 1}, + [2800] = {.lex_state = 17}, + [2801] = {.lex_state = 17}, + [2802] = {.lex_state = 1}, + [2803] = {.lex_state = 1}, + [2804] = {.lex_state = 1}, + [2805] = {.lex_state = 1}, + [2806] = {.lex_state = 1}, + [2807] = {.lex_state = 1}, + [2808] = {.lex_state = 1}, + [2809] = {.lex_state = 17}, + [2810] = {.lex_state = 1}, + [2811] = {.lex_state = 1}, + [2812] = {.lex_state = 1}, + [2813] = {.lex_state = 1}, + [2814] = {.lex_state = 1}, + [2815] = {.lex_state = 1}, + [2816] = {.lex_state = 1}, + [2817] = {.lex_state = 1}, + [2818] = {.lex_state = 1}, + [2819] = {.lex_state = 1}, + [2820] = {.lex_state = 1}, + [2821] = {.lex_state = 1}, + [2822] = {.lex_state = 1}, + [2823] = {.lex_state = 1}, + [2824] = {.lex_state = 1}, + [2825] = {.lex_state = 1}, + [2826] = {.lex_state = 1}, + [2827] = {.lex_state = 17}, + [2828] = {.lex_state = 1}, + [2829] = {.lex_state = 1}, + [2830] = {.lex_state = 1}, + [2831] = {.lex_state = 1}, + [2832] = {.lex_state = 1}, + [2833] = {.lex_state = 1}, + [2834] = {.lex_state = 1}, + [2835] = {.lex_state = 1}, + [2836] = {.lex_state = 1}, + [2837] = {.lex_state = 1}, + [2838] = {.lex_state = 1}, + [2839] = {.lex_state = 1}, + [2840] = {.lex_state = 1}, + [2841] = {.lex_state = 1}, + [2842] = {.lex_state = 1}, + [2843] = {.lex_state = 1}, + [2844] = {.lex_state = 1}, + [2845] = {.lex_state = 1}, + [2846] = {.lex_state = 1}, + [2847] = {.lex_state = 17}, + [2848] = {.lex_state = 1}, + [2849] = {.lex_state = 1}, + [2850] = {.lex_state = 1}, + [2851] = {.lex_state = 17}, + [2852] = {.lex_state = 1}, + [2853] = {.lex_state = 1}, + [2854] = {.lex_state = 1}, + [2855] = {.lex_state = 1}, + [2856] = {.lex_state = 1}, + [2857] = {.lex_state = 1}, + [2858] = {.lex_state = 1}, + [2859] = {.lex_state = 1}, + [2860] = {.lex_state = 1}, + [2861] = {.lex_state = 1}, + [2862] = {.lex_state = 1}, + [2863] = {.lex_state = 1}, + [2864] = {.lex_state = 1}, + [2865] = {.lex_state = 1}, + [2866] = {.lex_state = 1}, + [2867] = {.lex_state = 1}, + [2868] = {.lex_state = 1}, + [2869] = {.lex_state = 1}, + [2870] = {.lex_state = 17}, + [2871] = {.lex_state = 17}, + [2872] = {.lex_state = 1}, + [2873] = {.lex_state = 1}, + [2874] = {.lex_state = 1}, + [2875] = {.lex_state = 1}, + [2876] = {.lex_state = 1}, + [2877] = {.lex_state = 1}, + [2878] = {.lex_state = 1}, + [2879] = {.lex_state = 1}, + [2880] = {.lex_state = 1}, + [2881] = {.lex_state = 1}, + [2882] = {.lex_state = 1}, + [2883] = {.lex_state = 1}, + [2884] = {.lex_state = 17}, + [2885] = {.lex_state = 17}, + [2886] = {.lex_state = 1}, + [2887] = {.lex_state = 17}, + [2888] = {.lex_state = 17}, + [2889] = {.lex_state = 1}, + [2890] = {.lex_state = 1}, + [2891] = {.lex_state = 1}, + [2892] = {.lex_state = 1}, + [2893] = {.lex_state = 1}, + [2894] = {.lex_state = 1}, + [2895] = {.lex_state = 1}, + [2896] = {.lex_state = 1}, + [2897] = {.lex_state = 1}, + [2898] = {.lex_state = 1}, + [2899] = {.lex_state = 1}, + [2900] = {.lex_state = 1}, + [2901] = {.lex_state = 17}, + [2902] = {.lex_state = 17}, + [2903] = {.lex_state = 18}, + [2904] = {.lex_state = 18}, + [2905] = {.lex_state = 18}, + [2906] = {.lex_state = 18}, + [2907] = {.lex_state = 18}, + [2908] = {.lex_state = 18}, + [2909] = {.lex_state = 18}, + [2910] = {.lex_state = 18}, + [2911] = {.lex_state = 18}, + [2912] = {.lex_state = 18}, + [2913] = {.lex_state = 18}, + [2914] = {.lex_state = 18}, + [2915] = {.lex_state = 18}, + [2916] = {.lex_state = 18}, + [2917] = {.lex_state = 18}, + [2918] = {.lex_state = 18}, + [2919] = {.lex_state = 4}, + [2920] = {.lex_state = 18}, + [2921] = {.lex_state = 18}, + [2922] = {.lex_state = 18}, + [2923] = {.lex_state = 18}, + [2924] = {.lex_state = 4}, + [2925] = {.lex_state = 4}, + [2926] = {.lex_state = 4}, + [2927] = {.lex_state = 18}, + [2928] = {.lex_state = 18}, + [2929] = {.lex_state = 18}, + [2930] = {.lex_state = 18}, + [2931] = {.lex_state = 4}, + [2932] = {.lex_state = 4}, + [2933] = {.lex_state = 18}, + [2934] = {.lex_state = 4}, + [2935] = {.lex_state = 18}, + [2936] = {.lex_state = 4}, + [2937] = {.lex_state = 4}, + [2938] = {.lex_state = 4}, + [2939] = {.lex_state = 4}, + [2940] = {.lex_state = 18}, + [2941] = {.lex_state = 18}, + [2942] = {.lex_state = 4}, + [2943] = {.lex_state = 18}, + [2944] = {.lex_state = 4}, + [2945] = {.lex_state = 18}, + [2946] = {.lex_state = 18}, + [2947] = {.lex_state = 4}, + [2948] = {.lex_state = 4}, + [2949] = {.lex_state = 18}, + [2950] = {.lex_state = 4}, + [2951] = {.lex_state = 4}, + [2952] = {.lex_state = 4}, + [2953] = {.lex_state = 18}, + [2954] = {.lex_state = 18}, + [2955] = {.lex_state = 18}, + [2956] = {.lex_state = 18}, + [2957] = {.lex_state = 18}, + [2958] = {.lex_state = 18}, + [2959] = {.lex_state = 18}, + [2960] = {.lex_state = 18}, + [2961] = {.lex_state = 18}, + [2962] = {.lex_state = 18}, + [2963] = {.lex_state = 18}, + [2964] = {.lex_state = 18}, + [2965] = {.lex_state = 18}, + [2966] = {.lex_state = 18}, + [2967] = {.lex_state = 18}, + [2968] = {.lex_state = 18}, + [2969] = {.lex_state = 18}, + [2970] = {.lex_state = 18}, + [2971] = {.lex_state = 18}, + [2972] = {.lex_state = 18}, + [2973] = {.lex_state = 18}, + [2974] = {.lex_state = 18}, + [2975] = {.lex_state = 18}, + [2976] = {.lex_state = 18}, + [2977] = {.lex_state = 18}, + [2978] = {.lex_state = 18}, + [2979] = {.lex_state = 18}, + [2980] = {.lex_state = 18}, + [2981] = {.lex_state = 18}, + [2982] = {.lex_state = 18}, + [2983] = {.lex_state = 18}, + [2984] = {.lex_state = 18}, + [2985] = {.lex_state = 18}, + [2986] = {.lex_state = 18}, + [2987] = {.lex_state = 18}, + [2988] = {.lex_state = 18}, + [2989] = {.lex_state = 18}, + [2990] = {.lex_state = 18}, + [2991] = {.lex_state = 18}, + [2992] = {.lex_state = 18}, + [2993] = {.lex_state = 18}, + [2994] = {.lex_state = 18}, + [2995] = {.lex_state = 18}, + [2996] = {.lex_state = 18}, + [2997] = {.lex_state = 18}, + [2998] = {.lex_state = 18}, + [2999] = {.lex_state = 18}, + [3000] = {.lex_state = 18}, + [3001] = {.lex_state = 18}, + [3002] = {.lex_state = 18}, + [3003] = {.lex_state = 18}, + [3004] = {.lex_state = 18}, + [3005] = {.lex_state = 18}, + [3006] = {.lex_state = 18}, + [3007] = {.lex_state = 18}, + [3008] = {.lex_state = 18}, + [3009] = {.lex_state = 18}, [3010] = {.lex_state = 0}, - [3011] = {.lex_state = 0}, + [3011] = {.lex_state = 18}, [3012] = {.lex_state = 0}, [3013] = {.lex_state = 0}, [3014] = {.lex_state = 0}, - [3015] = {.lex_state = 0}, - [3016] = {.lex_state = 0}, - [3017] = {.lex_state = 0}, + [3015] = {.lex_state = 18}, + [3016] = {.lex_state = 18}, + [3017] = {.lex_state = 18}, [3018] = {.lex_state = 0}, [3019] = {.lex_state = 0}, [3020] = {.lex_state = 0}, [3021] = {.lex_state = 0}, [3022] = {.lex_state = 0}, - [3023] = {.lex_state = 0}, - [3024] = {.lex_state = 0}, - [3025] = {.lex_state = 0}, + [3023] = {.lex_state = 18}, + [3024] = {.lex_state = 18}, + [3025] = {.lex_state = 18}, [3026] = {.lex_state = 0}, - [3027] = {.lex_state = 0}, + [3027] = {.lex_state = 18}, [3028] = {.lex_state = 0}, - [3029] = {.lex_state = 14}, + [3029] = {.lex_state = 0}, [3030] = {.lex_state = 0}, - [3031] = {.lex_state = 14}, + [3031] = {.lex_state = 18}, [3032] = {.lex_state = 0}, - [3033] = {.lex_state = 0}, - [3034] = {.lex_state = 14}, + [3033] = {.lex_state = 18}, + [3034] = {.lex_state = 18}, [3035] = {.lex_state = 0}, - [3036] = {.lex_state = 14}, - [3037] = {.lex_state = 14}, - [3038] = {.lex_state = 0}, - [3039] = {.lex_state = 14}, + [3036] = {.lex_state = 18}, + [3037] = {.lex_state = 18}, + [3038] = {.lex_state = 18}, + [3039] = {.lex_state = 18}, [3040] = {.lex_state = 0}, - [3041] = {.lex_state = 0}, - [3042] = {.lex_state = 0}, + [3041] = {.lex_state = 18}, + [3042] = {.lex_state = 18}, [3043] = {.lex_state = 0}, - [3044] = {.lex_state = 0}, - [3045] = {.lex_state = 0}, - [3046] = {.lex_state = 0}, - [3047] = {.lex_state = 0}, - [3048] = {.lex_state = 0}, - [3049] = {.lex_state = 0}, + [3044] = {.lex_state = 18}, + [3045] = {.lex_state = 18}, + [3046] = {.lex_state = 18}, + [3047] = {.lex_state = 18}, + [3048] = {.lex_state = 18}, + [3049] = {.lex_state = 18}, [3050] = {.lex_state = 0}, - [3051] = {.lex_state = 0}, - [3052] = {.lex_state = 0}, - [3053] = {.lex_state = 0}, - [3054] = {.lex_state = 0}, - [3055] = {.lex_state = 2}, + [3051] = {.lex_state = 18}, + [3052] = {.lex_state = 18}, + [3053] = {.lex_state = 18}, + [3054] = {.lex_state = 18}, + [3055] = {.lex_state = 0}, [3056] = {.lex_state = 0}, [3057] = {.lex_state = 0}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 2}, - [3060] = {.lex_state = 0}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 14}, - [3063] = {.lex_state = 2}, - [3064] = {.lex_state = 2}, - [3065] = {.lex_state = 2}, - [3066] = {.lex_state = 0}, + [3058] = {.lex_state = 0}, + [3059] = {.lex_state = 0}, + [3060] = {.lex_state = 18}, + [3061] = {.lex_state = 18}, + [3062] = {.lex_state = 18}, + [3063] = {.lex_state = 18}, + [3064] = {.lex_state = 18}, + [3065] = {.lex_state = 0}, + [3066] = {.lex_state = 18}, [3067] = {.lex_state = 0}, - [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 2}, - [3070] = {.lex_state = 2}, - [3071] = {.lex_state = 0}, - [3072] = {.lex_state = 3}, - [3073] = {.lex_state = 0}, - [3074] = {.lex_state = 3}, - [3075] = {.lex_state = 0}, - [3076] = {.lex_state = 3}, - [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 0}, + [3068] = {.lex_state = 0}, + [3069] = {.lex_state = 18}, + [3070] = {.lex_state = 0}, + [3071] = {.lex_state = 18}, + [3072] = {.lex_state = 18}, + [3073] = {.lex_state = 18}, + [3074] = {.lex_state = 18}, + [3075] = {.lex_state = 18}, + [3076] = {.lex_state = 18}, + [3077] = {.lex_state = 18}, + [3078] = {.lex_state = 18}, [3079] = {.lex_state = 0}, [3080] = {.lex_state = 0}, [3081] = {.lex_state = 0}, - [3082] = {.lex_state = 0}, - [3083] = {.lex_state = 3}, + [3082] = {.lex_state = 18}, + [3083] = {.lex_state = 18}, [3084] = {.lex_state = 0}, - [3085] = {.lex_state = 0}, + [3085] = {.lex_state = 18}, [3086] = {.lex_state = 0}, - [3087] = {.lex_state = 0}, + [3087] = {.lex_state = 18}, [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 0}, - [3090] = {.lex_state = 0}, - [3091] = {.lex_state = 0}, - [3092] = {.lex_state = 0}, + [3089] = {.lex_state = 18}, + [3090] = {.lex_state = 18}, + [3091] = {.lex_state = 18}, + [3092] = {.lex_state = 18}, [3093] = {.lex_state = 0}, - [3094] = {.lex_state = 0}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 0}, - [3097] = {.lex_state = 2}, - [3098] = {.lex_state = 2}, - [3099] = {.lex_state = 2}, - [3100] = {.lex_state = 2}, - [3101] = {.lex_state = 2}, - [3102] = {.lex_state = 2}, - [3103] = {.lex_state = 2}, - [3104] = {.lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 0}, - [3107] = {.lex_state = 0}, - [3108] = {.lex_state = 0}, + [3094] = {.lex_state = 18}, + [3095] = {.lex_state = 0}, + [3096] = {.lex_state = 18}, + [3097] = {.lex_state = 0}, + [3098] = {.lex_state = 18}, + [3099] = {.lex_state = 0}, + [3100] = {.lex_state = 0}, + [3101] = {.lex_state = 18}, + [3102] = {.lex_state = 0}, + [3103] = {.lex_state = 18}, + [3104] = {.lex_state = 0}, + [3105] = {.lex_state = 18}, + [3106] = {.lex_state = 18}, + [3107] = {.lex_state = 18}, + [3108] = {.lex_state = 18}, [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 0}, + [3110] = {.lex_state = 18}, [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 0}, - [3113] = {.lex_state = 0}, - [3114] = {.lex_state = 0}, - [3115] = {.lex_state = 0}, - [3116] = {.lex_state = 0}, + [3112] = {.lex_state = 18}, + [3113] = {.lex_state = 18}, + [3114] = {.lex_state = 18}, + [3115] = {.lex_state = 18}, + [3116] = {.lex_state = 18}, [3117] = {.lex_state = 0}, - [3118] = {.lex_state = 0}, - [3119] = {.lex_state = 0}, - [3120] = {.lex_state = 0}, - [3121] = {.lex_state = 0}, - [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 0}, - [3124] = {.lex_state = 0}, - [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 0}, - [3127] = {.lex_state = 0}, - [3128] = {.lex_state = 0}, - [3129] = {.lex_state = 0}, - [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 0}, - [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 0}, - [3134] = {.lex_state = 14}, - [3135] = {.lex_state = 0}, - [3136] = {.lex_state = 0}, - [3137] = {.lex_state = 0}, - [3138] = {.lex_state = 0}, - [3139] = {.lex_state = 14}, + [3118] = {.lex_state = 18}, + [3119] = {.lex_state = 18}, + [3120] = {.lex_state = 18}, + [3121] = {.lex_state = 18}, + [3122] = {.lex_state = 18}, + [3123] = {.lex_state = 18}, + [3124] = {.lex_state = 18}, + [3125] = {.lex_state = 18}, + [3126] = {.lex_state = 18}, + [3127] = {.lex_state = 18}, + [3128] = {.lex_state = 18}, + [3129] = {.lex_state = 18}, + [3130] = {.lex_state = 18}, + [3131] = {.lex_state = 18}, + [3132] = {.lex_state = 0}, + [3133] = {.lex_state = 18}, + [3134] = {.lex_state = 18}, + [3135] = {.lex_state = 18}, + [3136] = {.lex_state = 18}, + [3137] = {.lex_state = 18}, + [3138] = {.lex_state = 18}, + [3139] = {.lex_state = 0}, [3140] = {.lex_state = 0}, - [3141] = {.lex_state = 14}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 0}, + [3141] = {.lex_state = 18}, + [3142] = {.lex_state = 18}, + [3143] = {.lex_state = 18}, [3144] = {.lex_state = 0}, - [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 0}, - [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 0}, - [3149] = {.lex_state = 14}, + [3145] = {.lex_state = 0}, + [3146] = {.lex_state = 18}, + [3147] = {.lex_state = 0}, + [3148] = {.lex_state = 18}, + [3149] = {.lex_state = 18}, [3150] = {.lex_state = 0}, - [3151] = {.lex_state = 14}, - [3152] = {.lex_state = 0}, - [3153] = {.lex_state = 0}, - [3154] = {.lex_state = 0}, - [3155] = {.lex_state = 14}, - [3156] = {.lex_state = 0}, + [3151] = {.lex_state = 18}, + [3152] = {.lex_state = 18}, + [3153] = {.lex_state = 18}, + [3154] = {.lex_state = 18}, + [3155] = {.lex_state = 18}, + [3156] = {.lex_state = 18}, [3157] = {.lex_state = 0}, [3158] = {.lex_state = 0}, - [3159] = {.lex_state = 0}, - [3160] = {.lex_state = 0}, + [3159] = {.lex_state = 18}, + [3160] = {.lex_state = 18}, [3161] = {.lex_state = 0}, [3162] = {.lex_state = 0}, - [3163] = {.lex_state = 0}, - [3164] = {.lex_state = 0}, - [3165] = {.lex_state = 14}, + [3163] = {.lex_state = 18}, + [3164] = {.lex_state = 18}, + [3165] = {.lex_state = 18}, [3166] = {.lex_state = 0}, - [3167] = {.lex_state = 0}, - [3168] = {.lex_state = 0}, - [3169] = {.lex_state = 0}, + [3167] = {.lex_state = 18}, + [3168] = {.lex_state = 18}, + [3169] = {.lex_state = 18}, [3170] = {.lex_state = 0}, - [3171] = {.lex_state = 0}, - [3172] = {.lex_state = 14}, + [3171] = {.lex_state = 18}, + [3172] = {.lex_state = 18}, [3173] = {.lex_state = 0}, [3174] = {.lex_state = 0}, - [3175] = {.lex_state = 0}, - [3176] = {.lex_state = 0}, - [3177] = {.lex_state = 0}, - [3178] = {.lex_state = 14}, + [3175] = {.lex_state = 18}, + [3176] = {.lex_state = 18}, + [3177] = {.lex_state = 18}, + [3178] = {.lex_state = 18}, [3179] = {.lex_state = 0}, [3180] = {.lex_state = 0}, - [3181] = {.lex_state = 14}, - [3182] = {.lex_state = 0}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 0}, + [3181] = {.lex_state = 18}, + [3182] = {.lex_state = 18}, + [3183] = {.lex_state = 18}, + [3184] = {.lex_state = 18}, + [3185] = {.lex_state = 18}, [3186] = {.lex_state = 0}, - [3187] = {.lex_state = 0}, - [3188] = {.lex_state = 0}, - [3189] = {.lex_state = 0}, + [3187] = {.lex_state = 18}, + [3188] = {.lex_state = 18}, + [3189] = {.lex_state = 18}, [3190] = {.lex_state = 0}, [3191] = {.lex_state = 0}, - [3192] = {.lex_state = 0}, - [3193] = {.lex_state = 0}, - [3194] = {.lex_state = 0}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 0}, - [3198] = {.lex_state = 0}, - [3199] = {.lex_state = 0}, - [3200] = {.lex_state = 0}, + [3192] = {.lex_state = 18}, + [3193] = {.lex_state = 18}, + [3194] = {.lex_state = 18}, + [3195] = {.lex_state = 18}, + [3196] = {.lex_state = 18}, + [3197] = {.lex_state = 18}, + [3198] = {.lex_state = 18}, + [3199] = {.lex_state = 18}, + [3200] = {.lex_state = 18}, [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 14}, + [3202] = {.lex_state = 18}, [3203] = {.lex_state = 0}, - [3204] = {.lex_state = 0}, + [3204] = {.lex_state = 18}, [3205] = {.lex_state = 0}, [3206] = {.lex_state = 0}, - [3207] = {.lex_state = 14}, + [3207] = {.lex_state = 18}, [3208] = {.lex_state = 0}, - [3209] = {.lex_state = 0}, + [3209] = {.lex_state = 18}, [3210] = {.lex_state = 0}, - [3211] = {.lex_state = 0}, - [3212] = {.lex_state = 0}, + [3211] = {.lex_state = 18}, + [3212] = {.lex_state = 18}, [3213] = {.lex_state = 0}, - [3214] = {.lex_state = 0}, - [3215] = {.lex_state = 14}, - [3216] = {.lex_state = 0}, - [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 0}, - [3219] = {.lex_state = 0}, + [3214] = {.lex_state = 18}, + [3215] = {.lex_state = 0}, + [3216] = {.lex_state = 18}, + [3217] = {.lex_state = 18}, + [3218] = {.lex_state = 18}, + [3219] = {.lex_state = 18}, [3220] = {.lex_state = 0}, [3221] = {.lex_state = 0}, - [3222] = {.lex_state = 0}, + [3222] = {.lex_state = 18}, [3223] = {.lex_state = 0}, [3224] = {.lex_state = 0}, [3225] = {.lex_state = 0}, [3226] = {.lex_state = 0}, [3227] = {.lex_state = 0}, - [3228] = {.lex_state = 14}, + [3228] = {.lex_state = 5}, [3229] = {.lex_state = 0}, [3230] = {.lex_state = 0}, [3231] = {.lex_state = 0}, @@ -12160,29 +12867,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3236] = {.lex_state = 0}, [3237] = {.lex_state = 0}, [3238] = {.lex_state = 0}, - [3239] = {.lex_state = 14}, - [3240] = {.lex_state = 14}, - [3241] = {.lex_state = 14}, - [3242] = {.lex_state = 14}, - [3243] = {.lex_state = 14}, - [3244] = {.lex_state = 14}, - [3245] = {.lex_state = 14}, - [3246] = {.lex_state = 14}, - [3247] = {.lex_state = 14}, + [3239] = {.lex_state = 0}, + [3240] = {.lex_state = 0}, + [3241] = {.lex_state = 0}, + [3242] = {.lex_state = 0}, + [3243] = {.lex_state = 0}, + [3244] = {.lex_state = 0}, + [3245] = {.lex_state = 0}, + [3246] = {.lex_state = 0}, + [3247] = {.lex_state = 18}, [3248] = {.lex_state = 0}, [3249] = {.lex_state = 0}, [3250] = {.lex_state = 0}, - [3251] = {.lex_state = 14}, - [3252] = {.lex_state = 14}, - [3253] = {.lex_state = 14}, - [3254] = {.lex_state = 14}, - [3255] = {.lex_state = 14}, - [3256] = {.lex_state = 14}, - [3257] = {.lex_state = 14}, + [3251] = {.lex_state = 0}, + [3252] = {.lex_state = 0}, + [3253] = {.lex_state = 0}, + [3254] = {.lex_state = 0}, + [3255] = {.lex_state = 0}, + [3256] = {.lex_state = 0}, + [3257] = {.lex_state = 0}, [3258] = {.lex_state = 0}, [3259] = {.lex_state = 0}, [3260] = {.lex_state = 0}, - [3261] = {.lex_state = 0}, + [3261] = {.lex_state = 18}, [3262] = {.lex_state = 0}, [3263] = {.lex_state = 0}, [3264] = {.lex_state = 0}, @@ -12197,9 +12904,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3273] = {.lex_state = 0}, [3274] = {.lex_state = 0}, [3275] = {.lex_state = 0}, - [3276] = {.lex_state = 0}, - [3277] = {.lex_state = 0}, - [3278] = {.lex_state = 0}, + [3276] = {.lex_state = 18}, + [3277] = {.lex_state = 1}, + [3278] = {.lex_state = 18}, [3279] = {.lex_state = 0}, [3280] = {.lex_state = 0}, [3281] = {.lex_state = 0}, @@ -12212,75 +12919,75 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3288] = {.lex_state = 0}, [3289] = {.lex_state = 0}, [3290] = {.lex_state = 0}, - [3291] = {.lex_state = 14}, - [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 14}, - [3294] = {.lex_state = 14}, - [3295] = {.lex_state = 14}, - [3296] = {.lex_state = 14}, - [3297] = {.lex_state = 14}, + [3291] = {.lex_state = 0}, + [3292] = {.lex_state = 0}, + [3293] = {.lex_state = 0}, + [3294] = {.lex_state = 0}, + [3295] = {.lex_state = 0}, + [3296] = {.lex_state = 0}, + [3297] = {.lex_state = 1}, [3298] = {.lex_state = 0}, [3299] = {.lex_state = 0}, [3300] = {.lex_state = 0}, [3301] = {.lex_state = 0}, [3302] = {.lex_state = 0}, [3303] = {.lex_state = 0}, - [3304] = {.lex_state = 14}, - [3305] = {.lex_state = 14}, - [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 14}, - [3308] = {.lex_state = 14}, - [3309] = {.lex_state = 14}, - [3310] = {.lex_state = 14}, + [3304] = {.lex_state = 18}, + [3305] = {.lex_state = 0}, + [3306] = {.lex_state = 0}, + [3307] = {.lex_state = 0}, + [3308] = {.lex_state = 0}, + [3309] = {.lex_state = 0}, + [3310] = {.lex_state = 0}, [3311] = {.lex_state = 0}, - [3312] = {.lex_state = 14}, + [3312] = {.lex_state = 0}, [3313] = {.lex_state = 0}, [3314] = {.lex_state = 0}, [3315] = {.lex_state = 0}, [3316] = {.lex_state = 0}, [3317] = {.lex_state = 0}, [3318] = {.lex_state = 0}, - [3319] = {.lex_state = 0}, + [3319] = {.lex_state = 18}, [3320] = {.lex_state = 0}, [3321] = {.lex_state = 0}, [3322] = {.lex_state = 0}, [3323] = {.lex_state = 0}, [3324] = {.lex_state = 0}, - [3325] = {.lex_state = 14}, - [3326] = {.lex_state = 14}, + [3325] = {.lex_state = 0}, + [3326] = {.lex_state = 0}, [3327] = {.lex_state = 0}, - [3328] = {.lex_state = 0}, - [3329] = {.lex_state = 14}, - [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 14}, - [3332] = {.lex_state = 14}, - [3333] = {.lex_state = 14}, + [3328] = {.lex_state = 18}, + [3329] = {.lex_state = 0}, + [3330] = {.lex_state = 0}, + [3331] = {.lex_state = 0}, + [3332] = {.lex_state = 0}, + [3333] = {.lex_state = 0}, [3334] = {.lex_state = 0}, [3335] = {.lex_state = 0}, [3336] = {.lex_state = 0}, - [3337] = {.lex_state = 0}, - [3338] = {.lex_state = 14}, + [3337] = {.lex_state = 5}, + [3338] = {.lex_state = 0}, [3339] = {.lex_state = 0}, - [3340] = {.lex_state = 14}, - [3341] = {.lex_state = 0}, + [3340] = {.lex_state = 0}, + [3341] = {.lex_state = 18}, [3342] = {.lex_state = 0}, [3343] = {.lex_state = 0}, - [3344] = {.lex_state = 0}, - [3345] = {.lex_state = 14}, - [3346] = {.lex_state = 14}, + [3344] = {.lex_state = 18}, + [3345] = {.lex_state = 0}, + [3346] = {.lex_state = 18}, [3347] = {.lex_state = 0}, - [3348] = {.lex_state = 0}, - [3349] = {.lex_state = 0}, - [3350] = {.lex_state = 0}, + [3348] = {.lex_state = 5}, + [3349] = {.lex_state = 18}, + [3350] = {.lex_state = 5}, [3351] = {.lex_state = 0}, - [3352] = {.lex_state = 0}, - [3353] = {.lex_state = 2}, + [3352] = {.lex_state = 5}, + [3353] = {.lex_state = 0}, [3354] = {.lex_state = 0}, - [3355] = {.lex_state = 14}, + [3355] = {.lex_state = 5}, [3356] = {.lex_state = 0}, - [3357] = {.lex_state = 14}, + [3357] = {.lex_state = 0}, [3358] = {.lex_state = 0}, - [3359] = {.lex_state = 14}, + [3359] = {.lex_state = 1}, [3360] = {.lex_state = 0}, [3361] = {.lex_state = 0}, [3362] = {.lex_state = 0}, @@ -12290,86 +12997,86 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3366] = {.lex_state = 0}, [3367] = {.lex_state = 0}, [3368] = {.lex_state = 0}, - [3369] = {.lex_state = 2}, + [3369] = {.lex_state = 0}, [3370] = {.lex_state = 0}, - [3371] = {.lex_state = 2}, + [3371] = {.lex_state = 0}, [3372] = {.lex_state = 0}, [3373] = {.lex_state = 0}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 2}, + [3374] = {.lex_state = 0}, + [3375] = {.lex_state = 0}, [3376] = {.lex_state = 0}, - [3377] = {.lex_state = 0}, - [3378] = {.lex_state = 14}, + [3377] = {.lex_state = 18}, + [3378] = {.lex_state = 0}, [3379] = {.lex_state = 0}, - [3380] = {.lex_state = 14}, + [3380] = {.lex_state = 0}, [3381] = {.lex_state = 0}, [3382] = {.lex_state = 0}, [3383] = {.lex_state = 0}, - [3384] = {.lex_state = 2}, + [3384] = {.lex_state = 0}, [3385] = {.lex_state = 0}, [3386] = {.lex_state = 0}, - [3387] = {.lex_state = 14}, + [3387] = {.lex_state = 0}, [3388] = {.lex_state = 0}, - [3389] = {.lex_state = 14}, + [3389] = {.lex_state = 0}, [3390] = {.lex_state = 0}, - [3391] = {.lex_state = 14}, - [3392] = {.lex_state = 2}, + [3391] = {.lex_state = 0}, + [3392] = {.lex_state = 0}, [3393] = {.lex_state = 0}, - [3394] = {.lex_state = 14}, - [3395] = {.lex_state = 14}, + [3394] = {.lex_state = 0}, + [3395] = {.lex_state = 0}, [3396] = {.lex_state = 0}, [3397] = {.lex_state = 0}, [3398] = {.lex_state = 0}, - [3399] = {.lex_state = 14}, - [3400] = {.lex_state = 0}, - [3401] = {.lex_state = 14}, + [3399] = {.lex_state = 0}, + [3400] = {.lex_state = 18}, + [3401] = {.lex_state = 0}, [3402] = {.lex_state = 0}, [3403] = {.lex_state = 0}, [3404] = {.lex_state = 0}, [3405] = {.lex_state = 0}, [3406] = {.lex_state = 0}, - [3407] = {.lex_state = 0}, + [3407] = {.lex_state = 5}, [3408] = {.lex_state = 0}, - [3409] = {.lex_state = 0}, + [3409] = {.lex_state = 18}, [3410] = {.lex_state = 0}, - [3411] = {.lex_state = 14}, + [3411] = {.lex_state = 1}, [3412] = {.lex_state = 0}, - [3413] = {.lex_state = 14}, + [3413] = {.lex_state = 0}, [3414] = {.lex_state = 0}, [3415] = {.lex_state = 0}, [3416] = {.lex_state = 0}, [3417] = {.lex_state = 0}, [3418] = {.lex_state = 0}, - [3419] = {.lex_state = 14}, - [3420] = {.lex_state = 0}, - [3421] = {.lex_state = 0}, - [3422] = {.lex_state = 14}, + [3419] = {.lex_state = 0}, + [3420] = {.lex_state = 1}, + [3421] = {.lex_state = 1}, + [3422] = {.lex_state = 0}, [3423] = {.lex_state = 0}, - [3424] = {.lex_state = 0}, + [3424] = {.lex_state = 18}, [3425] = {.lex_state = 0}, - [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 0}, + [3426] = {.lex_state = 1}, + [3427] = {.lex_state = 1}, [3428] = {.lex_state = 0}, [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 14}, + [3430] = {.lex_state = 0}, [3431] = {.lex_state = 0}, [3432] = {.lex_state = 0}, - [3433] = {.lex_state = 0}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 0}, + [3433] = {.lex_state = 18}, + [3434] = {.lex_state = 18}, + [3435] = {.lex_state = 1}, [3436] = {.lex_state = 0}, [3437] = {.lex_state = 0}, [3438] = {.lex_state = 0}, [3439] = {.lex_state = 0}, - [3440] = {.lex_state = 14}, - [3441] = {.lex_state = 14}, - [3442] = {.lex_state = 0}, - [3443] = {.lex_state = 0}, - [3444] = {.lex_state = 14}, - [3445] = {.lex_state = 14}, - [3446] = {.lex_state = 0}, + [3440] = {.lex_state = 0}, + [3441] = {.lex_state = 18}, + [3442] = {.lex_state = 5}, + [3443] = {.lex_state = 18}, + [3444] = {.lex_state = 0}, + [3445] = {.lex_state = 0}, + [3446] = {.lex_state = 18}, [3447] = {.lex_state = 0}, - [3448] = {.lex_state = 14}, + [3448] = {.lex_state = 0}, [3449] = {.lex_state = 0}, [3450] = {.lex_state = 0}, [3451] = {.lex_state = 0}, @@ -12378,63 +13085,63 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3454] = {.lex_state = 0}, [3455] = {.lex_state = 0}, [3456] = {.lex_state = 0}, - [3457] = {.lex_state = 0}, + [3457] = {.lex_state = 18}, [3458] = {.lex_state = 0}, - [3459] = {.lex_state = 0}, - [3460] = {.lex_state = 14}, + [3459] = {.lex_state = 18}, + [3460] = {.lex_state = 0}, [3461] = {.lex_state = 0}, - [3462] = {.lex_state = 0}, - [3463] = {.lex_state = 14}, - [3464] = {.lex_state = 14}, + [3462] = {.lex_state = 1}, + [3463] = {.lex_state = 0}, + [3464] = {.lex_state = 0}, [3465] = {.lex_state = 0}, [3466] = {.lex_state = 0}, [3467] = {.lex_state = 0}, - [3468] = {.lex_state = 14}, + [3468] = {.lex_state = 0}, [3469] = {.lex_state = 0}, - [3470] = {.lex_state = 14}, + [3470] = {.lex_state = 0}, [3471] = {.lex_state = 0}, - [3472] = {.lex_state = 14}, + [3472] = {.lex_state = 0}, [3473] = {.lex_state = 0}, [3474] = {.lex_state = 0}, [3475] = {.lex_state = 0}, - [3476] = {.lex_state = 14}, + [3476] = {.lex_state = 0}, [3477] = {.lex_state = 0}, - [3478] = {.lex_state = 14}, + [3478] = {.lex_state = 0}, [3479] = {.lex_state = 0}, [3480] = {.lex_state = 0}, [3481] = {.lex_state = 0}, - [3482] = {.lex_state = 14}, + [3482] = {.lex_state = 0}, [3483] = {.lex_state = 0}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 14}, + [3484] = {.lex_state = 0}, + [3485] = {.lex_state = 0}, [3486] = {.lex_state = 0}, [3487] = {.lex_state = 0}, [3488] = {.lex_state = 0}, - [3489] = {.lex_state = 14}, + [3489] = {.lex_state = 0}, [3490] = {.lex_state = 0}, [3491] = {.lex_state = 0}, [3492] = {.lex_state = 0}, - [3493] = {.lex_state = 2}, - [3494] = {.lex_state = 14}, + [3493] = {.lex_state = 0}, + [3494] = {.lex_state = 0}, [3495] = {.lex_state = 0}, - [3496] = {.lex_state = 14}, + [3496] = {.lex_state = 0}, [3497] = {.lex_state = 0}, [3498] = {.lex_state = 0}, [3499] = {.lex_state = 0}, [3500] = {.lex_state = 0}, - [3501] = {.lex_state = 14}, + [3501] = {.lex_state = 0}, [3502] = {.lex_state = 0}, [3503] = {.lex_state = 0}, [3504] = {.lex_state = 0}, - [3505] = {.lex_state = 14}, + [3505] = {.lex_state = 0}, [3506] = {.lex_state = 0}, [3507] = {.lex_state = 0}, [3508] = {.lex_state = 0}, - [3509] = {.lex_state = 0}, - [3510] = {.lex_state = 14}, + [3509] = {.lex_state = 18}, + [3510] = {.lex_state = 0}, [3511] = {.lex_state = 0}, [3512] = {.lex_state = 0}, - [3513] = {.lex_state = 14}, + [3513] = {.lex_state = 0}, [3514] = {.lex_state = 0}, [3515] = {.lex_state = 0}, [3516] = {.lex_state = 0}, @@ -12444,24 +13151,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3520] = {.lex_state = 0}, [3521] = {.lex_state = 0}, [3522] = {.lex_state = 0}, - [3523] = {.lex_state = 0}, - [3524] = {.lex_state = 14}, + [3523] = {.lex_state = 1}, + [3524] = {.lex_state = 0}, [3525] = {.lex_state = 0}, - [3526] = {.lex_state = 0}, - [3527] = {.lex_state = 14}, - [3528] = {.lex_state = 0}, + [3526] = {.lex_state = 5}, + [3527] = {.lex_state = 1}, + [3528] = {.lex_state = 1}, [3529] = {.lex_state = 0}, - [3530] = {.lex_state = 14}, + [3530] = {.lex_state = 0}, [3531] = {.lex_state = 0}, - [3532] = {.lex_state = 14}, + [3532] = {.lex_state = 0}, [3533] = {.lex_state = 0}, - [3534] = {.lex_state = 0}, - [3535] = {.lex_state = 0}, + [3534] = {.lex_state = 1}, + [3535] = {.lex_state = 1}, [3536] = {.lex_state = 0}, - [3537] = {.lex_state = 0}, + [3537] = {.lex_state = 18}, [3538] = {.lex_state = 0}, [3539] = {.lex_state = 0}, - [3540] = {.lex_state = 14}, + [3540] = {.lex_state = 1}, [3541] = {.lex_state = 0}, [3542] = {.lex_state = 0}, [3543] = {.lex_state = 0}, @@ -12469,10 +13176,557 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3545] = {.lex_state = 0}, [3546] = {.lex_state = 0}, [3547] = {.lex_state = 0}, - [3548] = {.lex_state = 14}, + [3548] = {.lex_state = 18}, [3549] = {.lex_state = 0}, [3550] = {.lex_state = 0}, [3551] = {.lex_state = 0}, + [3552] = {.lex_state = 1}, + [3553] = {.lex_state = 0}, + [3554] = {.lex_state = 0}, + [3555] = {.lex_state = 0}, + [3556] = {.lex_state = 0}, + [3557] = {.lex_state = 0}, + [3558] = {.lex_state = 0}, + [3559] = {.lex_state = 1}, + [3560] = {.lex_state = 0}, + [3561] = {.lex_state = 0}, + [3562] = {.lex_state = 0}, + [3563] = {.lex_state = 0}, + [3564] = {.lex_state = 1}, + [3565] = {.lex_state = 1}, + [3566] = {.lex_state = 1}, + [3567] = {.lex_state = 1}, + [3568] = {.lex_state = 0}, + [3569] = {.lex_state = 0}, + [3570] = {.lex_state = 0}, + [3571] = {.lex_state = 1}, + [3572] = {.lex_state = 1}, + [3573] = {.lex_state = 1}, + [3574] = {.lex_state = 1}, + [3575] = {.lex_state = 1}, + [3576] = {.lex_state = 1}, + [3577] = {.lex_state = 1}, + [3578] = {.lex_state = 1}, + [3579] = {.lex_state = 1}, + [3580] = {.lex_state = 1}, + [3581] = {.lex_state = 0}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 18}, + [3584] = {.lex_state = 0}, + [3585] = {.lex_state = 0}, + [3586] = {.lex_state = 0}, + [3587] = {.lex_state = 0}, + [3588] = {.lex_state = 0}, + [3589] = {.lex_state = 0}, + [3590] = {.lex_state = 0}, + [3591] = {.lex_state = 0}, + [3592] = {.lex_state = 0}, + [3593] = {.lex_state = 0}, + [3594] = {.lex_state = 0}, + [3595] = {.lex_state = 0}, + [3596] = {.lex_state = 0}, + [3597] = {.lex_state = 5}, + [3598] = {.lex_state = 0}, + [3599] = {.lex_state = 0}, + [3600] = {.lex_state = 1}, + [3601] = {.lex_state = 0}, + [3602] = {.lex_state = 5}, + [3603] = {.lex_state = 0}, + [3604] = {.lex_state = 0}, + [3605] = {.lex_state = 0}, + [3606] = {.lex_state = 0}, + [3607] = {.lex_state = 0}, + [3608] = {.lex_state = 0}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 0}, + [3611] = {.lex_state = 0}, + [3612] = {.lex_state = 0}, + [3613] = {.lex_state = 0}, + [3614] = {.lex_state = 0}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 0}, + [3617] = {.lex_state = 0}, + [3618] = {.lex_state = 0}, + [3619] = {.lex_state = 0}, + [3620] = {.lex_state = 0}, + [3621] = {.lex_state = 0}, + [3622] = {.lex_state = 0}, + [3623] = {.lex_state = 1}, + [3624] = {.lex_state = 18}, + [3625] = {.lex_state = 0}, + [3626] = {.lex_state = 0}, + [3627] = {.lex_state = 0}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 0}, + [3630] = {.lex_state = 0}, + [3631] = {.lex_state = 0}, + [3632] = {.lex_state = 18}, + [3633] = {.lex_state = 0}, + [3634] = {.lex_state = 0}, + [3635] = {.lex_state = 1}, + [3636] = {.lex_state = 0}, + [3637] = {.lex_state = 0}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 0}, + [3640] = {.lex_state = 18}, + [3641] = {.lex_state = 0}, + [3642] = {.lex_state = 18}, + [3643] = {.lex_state = 0}, + [3644] = {.lex_state = 18}, + [3645] = {.lex_state = 18}, + [3646] = {.lex_state = 0}, + [3647] = {.lex_state = 0}, + [3648] = {.lex_state = 0}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 18}, + [3651] = {.lex_state = 0}, + [3652] = {.lex_state = 18}, + [3653] = {.lex_state = 0}, + [3654] = {.lex_state = 18}, + [3655] = {.lex_state = 0}, + [3656] = {.lex_state = 0}, + [3657] = {.lex_state = 1}, + [3658] = {.lex_state = 0}, + [3659] = {.lex_state = 0}, + [3660] = {.lex_state = 0}, + [3661] = {.lex_state = 0}, + [3662] = {.lex_state = 18}, + [3663] = {.lex_state = 18}, + [3664] = {.lex_state = 0}, + [3665] = {.lex_state = 1}, + [3666] = {.lex_state = 0}, + [3667] = {.lex_state = 0}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 0}, + [3671] = {.lex_state = 0}, + [3672] = {.lex_state = 18}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 0}, + [3675] = {.lex_state = 0}, + [3676] = {.lex_state = 0}, + [3677] = {.lex_state = 18}, + [3678] = {.lex_state = 0}, + [3679] = {.lex_state = 0}, + [3680] = {.lex_state = 0}, + [3681] = {.lex_state = 0}, + [3682] = {.lex_state = 18}, + [3683] = {.lex_state = 0}, + [3684] = {.lex_state = 0}, + [3685] = {.lex_state = 0}, + [3686] = {.lex_state = 0}, + [3687] = {.lex_state = 0}, + [3688] = {.lex_state = 0}, + [3689] = {.lex_state = 0}, + [3690] = {.lex_state = 0}, + [3691] = {.lex_state = 0}, + [3692] = {.lex_state = 0}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 0}, + [3695] = {.lex_state = 1}, + [3696] = {.lex_state = 1}, + [3697] = {.lex_state = 0}, + [3698] = {.lex_state = 0}, + [3699] = {.lex_state = 0}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 0}, + [3702] = {.lex_state = 0}, + [3703] = {.lex_state = 18}, + [3704] = {.lex_state = 0}, + [3705] = {.lex_state = 0}, + [3706] = {.lex_state = 0}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 0}, + [3710] = {.lex_state = 18}, + [3711] = {.lex_state = 0}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 0}, + [3714] = {.lex_state = 0}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 18}, + [3717] = {.lex_state = 0}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 0}, + [3721] = {.lex_state = 0}, + [3722] = {.lex_state = 0}, + [3723] = {.lex_state = 0}, + [3724] = {.lex_state = 0}, + [3725] = {.lex_state = 0}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 0}, + [3728] = {.lex_state = 0}, + [3729] = {.lex_state = 0}, + [3730] = {.lex_state = 0}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 0}, + [3733] = {.lex_state = 0}, + [3734] = {.lex_state = 0}, + [3735] = {.lex_state = 18}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 0}, + [3738] = {.lex_state = 18}, + [3739] = {.lex_state = 18}, + [3740] = {.lex_state = 18}, + [3741] = {.lex_state = 18}, + [3742] = {.lex_state = 18}, + [3743] = {.lex_state = 0}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 0}, + [3746] = {.lex_state = 0}, + [3747] = {.lex_state = 0}, + [3748] = {.lex_state = 0}, + [3749] = {.lex_state = 18}, + [3750] = {.lex_state = 18}, + [3751] = {.lex_state = 18}, + [3752] = {.lex_state = 18}, + [3753] = {.lex_state = 18}, + [3754] = {.lex_state = 18}, + [3755] = {.lex_state = 0}, + [3756] = {.lex_state = 0}, + [3757] = {.lex_state = 0}, + [3758] = {.lex_state = 0}, + [3759] = {.lex_state = 0}, + [3760] = {.lex_state = 0}, + [3761] = {.lex_state = 0}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 0}, + [3764] = {.lex_state = 0}, + [3765] = {.lex_state = 0}, + [3766] = {.lex_state = 0}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 0}, + [3769] = {.lex_state = 0}, + [3770] = {.lex_state = 0}, + [3771] = {.lex_state = 0}, + [3772] = {.lex_state = 0}, + [3773] = {.lex_state = 0}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 0}, + [3776] = {.lex_state = 0}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 0}, + [3781] = {.lex_state = 0}, + [3782] = {.lex_state = 0}, + [3783] = {.lex_state = 0}, + [3784] = {.lex_state = 0}, + [3785] = {.lex_state = 18}, + [3786] = {.lex_state = 18}, + [3787] = {.lex_state = 18}, + [3788] = {.lex_state = 0}, + [3789] = {.lex_state = 0}, + [3790] = {.lex_state = 0}, + [3791] = {.lex_state = 1}, + [3792] = {.lex_state = 18}, + [3793] = {.lex_state = 18}, + [3794] = {.lex_state = 18}, + [3795] = {.lex_state = 18}, + [3796] = {.lex_state = 18}, + [3797] = {.lex_state = 18}, + [3798] = {.lex_state = 0}, + [3799] = {.lex_state = 0}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 0}, + [3802] = {.lex_state = 0}, + [3803] = {.lex_state = 0}, + [3804] = {.lex_state = 18}, + [3805] = {.lex_state = 0}, + [3806] = {.lex_state = 0}, + [3807] = {.lex_state = 0}, + [3808] = {.lex_state = 0}, + [3809] = {.lex_state = 18}, + [3810] = {.lex_state = 1}, + [3811] = {.lex_state = 0}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 18}, + [3816] = {.lex_state = 0}, + [3817] = {.lex_state = 0}, + [3818] = {.lex_state = 18}, + [3819] = {.lex_state = 0}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 0}, + [3822] = {.lex_state = 0}, + [3823] = {.lex_state = 18}, + [3824] = {.lex_state = 18}, + [3825] = {.lex_state = 18}, + [3826] = {.lex_state = 18}, + [3827] = {.lex_state = 18}, + [3828] = {.lex_state = 18}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 0}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 0}, + [3833] = {.lex_state = 0}, + [3834] = {.lex_state = 0}, + [3835] = {.lex_state = 0}, + [3836] = {.lex_state = 18}, + [3837] = {.lex_state = 0}, + [3838] = {.lex_state = 0}, + [3839] = {.lex_state = 18}, + [3840] = {.lex_state = 0}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 0}, + [3843] = {.lex_state = 0}, + [3844] = {.lex_state = 18}, + [3845] = {.lex_state = 0}, + [3846] = {.lex_state = 0}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 0}, + [3849] = {.lex_state = 0}, + [3850] = {.lex_state = 0}, + [3851] = {.lex_state = 0}, + [3852] = {.lex_state = 0}, + [3853] = {.lex_state = 0}, + [3854] = {.lex_state = 1}, + [3855] = {.lex_state = 0}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 18}, + [3859] = {.lex_state = 0}, + [3860] = {.lex_state = 0}, + [3861] = {.lex_state = 18}, + [3862] = {.lex_state = 18}, + [3863] = {.lex_state = 18}, + [3864] = {.lex_state = 18}, + [3865] = {.lex_state = 18}, + [3866] = {.lex_state = 18}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 0}, + [3869] = {.lex_state = 0}, + [3870] = {.lex_state = 0}, + [3871] = {.lex_state = 0}, + [3872] = {.lex_state = 18}, + [3873] = {.lex_state = 0}, + [3874] = {.lex_state = 18}, + [3875] = {.lex_state = 0}, + [3876] = {.lex_state = 1}, + [3877] = {.lex_state = 0}, + [3878] = {.lex_state = 4}, + [3879] = {.lex_state = 0}, + [3880] = {.lex_state = 18}, + [3881] = {.lex_state = 0}, + [3882] = {.lex_state = 1}, + [3883] = {.lex_state = 18}, + [3884] = {.lex_state = 0}, + [3885] = {.lex_state = 1}, + [3886] = {.lex_state = 0}, + [3887] = {.lex_state = 0}, + [3888] = {.lex_state = 18}, + [3889] = {.lex_state = 1}, + [3890] = {.lex_state = 1}, + [3891] = {.lex_state = 1}, + [3892] = {.lex_state = 18}, + [3893] = {.lex_state = 4}, + [3894] = {.lex_state = 0}, + [3895] = {.lex_state = 0}, + [3896] = {.lex_state = 0}, + [3897] = {.lex_state = 0}, + [3898] = {.lex_state = 1}, + [3899] = {.lex_state = 18}, + [3900] = {.lex_state = 18}, + [3901] = {.lex_state = 18}, + [3902] = {.lex_state = 4}, + [3903] = {.lex_state = 0}, + [3904] = {.lex_state = 0}, + [3905] = {.lex_state = 18}, + [3906] = {.lex_state = 0}, + [3907] = {.lex_state = 18}, + [3908] = {.lex_state = 18}, + [3909] = {.lex_state = 4}, + [3910] = {.lex_state = 0}, + [3911] = {.lex_state = 0}, + [3912] = {.lex_state = 4}, + [3913] = {.lex_state = 18}, + [3914] = {.lex_state = 1}, + [3915] = {.lex_state = 0}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 18}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 0}, + [3921] = {.lex_state = 18}, + [3922] = {.lex_state = 18}, + [3923] = {.lex_state = 1}, + [3924] = {.lex_state = 4}, + [3925] = {.lex_state = 1}, + [3926] = {.lex_state = 0}, + [3927] = {.lex_state = 0}, + [3928] = {.lex_state = 0}, + [3929] = {.lex_state = 18}, + [3930] = {.lex_state = 18}, + [3931] = {.lex_state = 0}, + [3932] = {.lex_state = 18}, + [3933] = {.lex_state = 0}, + [3934] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 18}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 0}, + [3939] = {.lex_state = 18}, + [3940] = {.lex_state = 1}, + [3941] = {.lex_state = 0}, + [3942] = {.lex_state = 0}, + [3943] = {.lex_state = 0}, + [3944] = {.lex_state = 0}, + [3945] = {.lex_state = 0}, + [3946] = {.lex_state = 0}, + [3947] = {.lex_state = 18}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 0}, + [3950] = {.lex_state = 0}, + [3951] = {.lex_state = 18}, + [3952] = {.lex_state = 18}, + [3953] = {.lex_state = 0}, + [3954] = {.lex_state = 0}, + [3955] = {.lex_state = 0}, + [3956] = {.lex_state = 18}, + [3957] = {.lex_state = 0}, + [3958] = {.lex_state = 0}, + [3959] = {.lex_state = 18}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 0}, + [3962] = {.lex_state = 18}, + [3963] = {.lex_state = 0}, + [3964] = {.lex_state = 0}, + [3965] = {.lex_state = 0}, + [3966] = {.lex_state = 0}, + [3967] = {.lex_state = 18}, + [3968] = {.lex_state = 18}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 0}, + [3971] = {.lex_state = 0}, + [3972] = {.lex_state = 0}, + [3973] = {.lex_state = 18}, + [3974] = {.lex_state = 0}, + [3975] = {.lex_state = 18}, + [3976] = {.lex_state = 18}, + [3977] = {.lex_state = 18}, + [3978] = {.lex_state = 18}, + [3979] = {.lex_state = 0}, + [3980] = {.lex_state = 0}, + [3981] = {.lex_state = 18}, + [3982] = {.lex_state = 0}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 0}, + [3985] = {.lex_state = 18}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 0}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 0}, + [3992] = {.lex_state = 18}, + [3993] = {.lex_state = 0}, + [3994] = {.lex_state = 0}, + [3995] = {.lex_state = 0}, + [3996] = {.lex_state = 0}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 0}, + [4000] = {.lex_state = 0}, + [4001] = {.lex_state = 18}, + [4002] = {.lex_state = 0}, + [4003] = {.lex_state = 0}, + [4004] = {.lex_state = 18}, + [4005] = {.lex_state = 18}, + [4006] = {.lex_state = 0}, + [4007] = {.lex_state = 0}, + [4008] = {.lex_state = 0}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 0}, + [4012] = {.lex_state = 0}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 18}, + [4015] = {.lex_state = 18}, + [4016] = {.lex_state = 0}, + [4017] = {.lex_state = 18}, + [4018] = {.lex_state = 18}, + [4019] = {.lex_state = 18}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 0}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 18}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 18}, + [4030] = {.lex_state = 18}, + [4031] = {.lex_state = 0}, + [4032] = {.lex_state = 18}, + [4033] = {.lex_state = 1}, + [4034] = {.lex_state = 0}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 18}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 18}, + [4040] = {.lex_state = 0}, + [4041] = {.lex_state = 18}, + [4042] = {.lex_state = 0}, + [4043] = {.lex_state = 18}, + [4044] = {.lex_state = 0}, + [4045] = {.lex_state = 18}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 18}, + [4048] = {.lex_state = 18}, + [4049] = {.lex_state = 0}, + [4050] = {.lex_state = 0}, + [4051] = {.lex_state = 0}, + [4052] = {.lex_state = 18}, + [4053] = {.lex_state = 0}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 18}, + [4056] = {.lex_state = 0}, + [4057] = {.lex_state = 18}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 18}, + [4060] = {.lex_state = 0}, + [4061] = {.lex_state = 18}, + [4062] = {.lex_state = 18}, + [4063] = {.lex_state = 18}, + [4064] = {.lex_state = 18}, + [4065] = {.lex_state = 18}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 18}, + [4069] = {.lex_state = 18}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 0}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 0}, + [4076] = {.lex_state = 0}, + [4077] = {.lex_state = 0}, + [4078] = {.lex_state = 18}, + [4079] = {.lex_state = 18}, + [4080] = {.lex_state = 0}, + [4081] = {.lex_state = 18}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 0}, + [4085] = {.lex_state = 0}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 0}, + [4091] = {.lex_state = 0}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 0}, + [4094] = {.lex_state = 0}, + [4095] = {.lex_state = 0}, + [4096] = {.lex_state = 0}, + [4097] = {.lex_state = 18}, + [4098] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12510,6 +13764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_void] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), [anon_sym_anyopaque] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), @@ -12564,6 +13819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_expand] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), + [anon_sym_PIPE2] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_DOT_DOT_EQ] = ACTIONS(1), @@ -12603,16 +13859,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3481), - [sym__top_level_declaration] = STATE(2495), - [sym_import_declaration] = STATE(2495), - [sym_test_import_declaration] = STATE(2495), - [sym_test_declaration] = STATE(2495), - [sym_function_declaration] = STATE(2495), - [sym_type_declaration] = STATE(2495), - [sym_global_constant_declaration] = STATE(2495), - [sym_global_variable_declaration] = STATE(2495), - [aux_sym_source_file_repeat1] = STATE(2495), + [sym_source_file] = STATE(3958), + [sym__top_level_declaration] = STATE(2903), + [sym_import_declaration] = STATE(2903), + [sym_test_import_declaration] = STATE(2903), + [sym_test_declaration] = STATE(2903), + [sym_function_declaration] = STATE(2903), + [sym_type_declaration] = STATE(2903), + [sym_global_constant_declaration] = STATE(2903), + [sym_global_variable_declaration] = STATE(2903), + [aux_sym_source_file_repeat1] = STATE(2903), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -12622,49 +13878,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(15), }, [STATE(2)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2528), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(329), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2528), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(91), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3341), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(385), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3341), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(386), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -12678,6 +13934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -12758,101 +14015,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(105), }, [STATE(3)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1714), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(308), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1714), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1844), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(130), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1844), [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(316), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(131), [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(23), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -12869,126 +14127,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(135), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(133), + [sym__newline] = ACTIONS(151), }, [STATE(4)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1717), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(340), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1717), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(345), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2929), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(92), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2929), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13005,126 +14264,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(173), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(135), + [sym__newline] = ACTIONS(179), }, [STATE(5)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2674), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(110), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2674), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3211), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(171), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3211), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(187), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13141,126 +14401,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(199), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(161), + [sym__newline] = ACTIONS(205), }, [STATE(6)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2758), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(135), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2758), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3064), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(185), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3064), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(187), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13277,126 +14538,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(199), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), + [sym__newline] = ACTIONS(207), }, [STATE(7)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2520), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(112), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2520), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2940), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(360), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2940), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13413,126 +14675,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(173), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(165), + [sym__newline] = ACTIONS(209), }, [STATE(8)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2519), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(294), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2519), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1846), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(134), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1846), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13549,126 +14812,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(135), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), + [sym__newline] = ACTIONS(211), }, [STATE(9)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2526), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(299), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2526), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(300), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2921), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(327), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2921), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13685,126 +14949,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(173), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(169), + [sym__newline] = ACTIONS(213), }, [STATE(10)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1716), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(330), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1716), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2930), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(331), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2930), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(332), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13821,126 +15086,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(173), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), + [sym__newline] = ACTIONS(215), }, [STATE(11)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1713), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(334), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1713), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1847), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(358), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1847), [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(335), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(359), [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(23), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -13957,126 +15223,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(135), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(173), + [sym__newline] = ACTIONS(217), }, [STATE(12)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2608), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(338), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2608), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1849), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(362), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1849), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14093,126 +15360,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(135), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), + [sym__newline] = ACTIONS(219), }, [STATE(13)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2614), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(342), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2614), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3123), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(366), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3123), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(187), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14229,126 +15497,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(199), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(177), + [sym__newline] = ACTIONS(221), }, [STATE(14)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2938), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(349), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2938), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3182), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(369), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3182), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(370), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_struct] = ACTIONS(185), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(187), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14365,126 +15634,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(199), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(201), [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(223), }, [STATE(15)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2949), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(353), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2949), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_struct] = ACTIONS(185), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3424), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(374), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3424), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_DOLLAR] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14501,87 +15771,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(225), }, [STATE(16)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1733), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(450), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1733), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(227), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3434), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(377), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3434), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_DOLLAR] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -14614,13 +15885,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14637,126 +15908,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(99), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), + [sym__newline] = ACTIONS(227), }, [STATE(17)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1735), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(453), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1735), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1883), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(462), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1883), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14773,126 +16045,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(243), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(247), }, [STATE(18)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3029), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(362), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3029), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(363), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_struct] = ACTIONS(185), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1880), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(465), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1880), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(111), + [anon_sym_struct] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -14909,126 +16182,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(243), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(139), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(249), }, [STATE(19)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3034), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_capture_list] = STATE(366), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3034), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_argument_list] = STATE(686), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_struct] = ACTIONS(185), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3319), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_capture_list] = STATE(382), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3319), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_argument_list] = STATE(658), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_DOLLAR] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -15045,40 +16319,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(251), }, [STATE(20)] = { - [sym_type] = STATE(253), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), + [sym_type] = STATE(297), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), [ts_builtin_sym_end] = ACTIONS(253), [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(258), @@ -15089,7 +16364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(258), [anon_sym_EQ] = ACTIONS(258), [anon_sym_struct] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(265), [anon_sym_RPAREN] = ACTIONS(253), [anon_sym_LBRACE] = ACTIONS(253), [anon_sym_COMMA] = ACTIONS(253), @@ -15097,44 +16372,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(258), [anon_sym_DOLLAR] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(270), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(278), - [anon_sym_anyopaque] = ACTIONS(278), - [anon_sym_bool] = ACTIONS(278), - [anon_sym_int] = ACTIONS(278), - [anon_sym_uint] = ACTIONS(278), - [anon_sym_float] = ACTIONS(278), - [anon_sym_range] = ACTIONS(278), - [anon_sym_i8] = ACTIONS(278), - [anon_sym_i16] = ACTIONS(278), - [anon_sym_i32] = ACTIONS(278), - [anon_sym_i64] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(278), - [anon_sym_u16] = ACTIONS(278), - [anon_sym_u32] = ACTIONS(278), - [anon_sym_u64] = ACTIONS(278), - [anon_sym_isize] = ACTIONS(278), - [anon_sym_usize] = ACTIONS(278), - [anon_sym_f32] = ACTIONS(278), - [anon_sym_f64] = ACTIONS(278), - [anon_sym_c_char] = ACTIONS(278), - [anon_sym_c_schar] = ACTIONS(278), - [anon_sym_c_uchar] = ACTIONS(278), - [anon_sym_c_short] = ACTIONS(278), - [anon_sym_c_ushort] = ACTIONS(278), - [anon_sym_c_int] = ACTIONS(278), - [anon_sym_c_uint] = ACTIONS(278), - [anon_sym_c_long] = ACTIONS(278), - [anon_sym_c_ulong] = ACTIONS(278), - [anon_sym_c_longlong] = ACTIONS(278), - [anon_sym_c_ulonglong] = ACTIONS(278), - [anon_sym_c_float] = ACTIONS(278), - [anon_sym_c_double] = ACTIONS(278), - [anon_sym_c_longdouble] = ACTIONS(278), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_void] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_anyopaque] = ACTIONS(281), + [anon_sym_bool] = ACTIONS(281), + [anon_sym_int] = ACTIONS(281), + [anon_sym_uint] = ACTIONS(281), + [anon_sym_float] = ACTIONS(281), + [anon_sym_range] = ACTIONS(281), + [anon_sym_i8] = ACTIONS(281), + [anon_sym_i16] = ACTIONS(281), + [anon_sym_i32] = ACTIONS(281), + [anon_sym_i64] = ACTIONS(281), + [anon_sym_u8] = ACTIONS(281), + [anon_sym_u16] = ACTIONS(281), + [anon_sym_u32] = ACTIONS(281), + [anon_sym_u64] = ACTIONS(281), + [anon_sym_isize] = ACTIONS(281), + [anon_sym_usize] = ACTIONS(281), + [anon_sym_f32] = ACTIONS(281), + [anon_sym_f64] = ACTIONS(281), + [anon_sym_c_char] = ACTIONS(281), + [anon_sym_c_schar] = ACTIONS(281), + [anon_sym_c_uchar] = ACTIONS(281), + [anon_sym_c_short] = ACTIONS(281), + [anon_sym_c_ushort] = ACTIONS(281), + [anon_sym_c_int] = ACTIONS(281), + [anon_sym_c_uint] = ACTIONS(281), + [anon_sym_c_long] = ACTIONS(281), + [anon_sym_c_ulong] = ACTIONS(281), + [anon_sym_c_longlong] = ACTIONS(281), + [anon_sym_c_ulonglong] = ACTIONS(281), + [anon_sym_c_float] = ACTIONS(281), + [anon_sym_c_double] = ACTIONS(281), + [anon_sym_c_longdouble] = ACTIONS(281), [anon_sym_PLUS_EQ] = ACTIONS(253), [anon_sym_DASH_EQ] = ACTIONS(253), [anon_sym_STAR_EQ] = ACTIONS(253), @@ -15194,387 +16470,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(253), }, [STATE(21)] = { - [sym_type] = STATE(264), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(288), + [sym_type] = STATE(306), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(291), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_void] = ACTIONS(302), - [anon_sym_anyopaque] = ACTIONS(302), - [anon_sym_bool] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_uint] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_range] = ACTIONS(302), - [anon_sym_i8] = ACTIONS(302), - [anon_sym_i16] = ACTIONS(302), - [anon_sym_i32] = ACTIONS(302), - [anon_sym_i64] = ACTIONS(302), - [anon_sym_u8] = ACTIONS(302), - [anon_sym_u16] = ACTIONS(302), - [anon_sym_u32] = ACTIONS(302), - [anon_sym_u64] = ACTIONS(302), - [anon_sym_isize] = ACTIONS(302), - [anon_sym_usize] = ACTIONS(302), - [anon_sym_f32] = ACTIONS(302), - [anon_sym_f64] = ACTIONS(302), - [anon_sym_c_char] = ACTIONS(302), - [anon_sym_c_schar] = ACTIONS(302), - [anon_sym_c_uchar] = ACTIONS(302), - [anon_sym_c_short] = ACTIONS(302), - [anon_sym_c_ushort] = ACTIONS(302), - [anon_sym_c_int] = ACTIONS(302), - [anon_sym_c_uint] = ACTIONS(302), - [anon_sym_c_long] = ACTIONS(302), - [anon_sym_c_ulong] = ACTIONS(302), - [anon_sym_c_longlong] = ACTIONS(302), - [anon_sym_c_ulonglong] = ACTIONS(302), - [anon_sym_c_float] = ACTIONS(302), - [anon_sym_c_double] = ACTIONS(302), - [anon_sym_c_longdouble] = ACTIONS(302), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_return] = ACTIONS(286), - [anon_sym_yield] = ACTIONS(286), - [anon_sym_break] = ACTIONS(286), - [anon_sym_continue] = ACTIONS(286), - [anon_sym_defer] = ACTIONS(286), - [anon_sym_errdefer] = ACTIONS(286), - [anon_sym_if] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(286), - [anon_sym_expand] = ACTIONS(286), - [anon_sym_for] = ACTIONS(286), - [anon_sym_match] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_LT_LT_PIPE] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_try] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [sym_none] = ACTIONS(286), - [sym_undefined] = ACTIONS(286), - [sym_sink] = ACTIONS(286), - [sym_integer] = ACTIONS(286), - [sym_float] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [sym_multiline_string] = ACTIONS(281), - [sym_character] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_mut] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_void] = ACTIONS(308), + [anon_sym_type] = ACTIONS(308), + [anon_sym_anyopaque] = ACTIONS(308), + [anon_sym_bool] = ACTIONS(308), + [anon_sym_int] = ACTIONS(308), + [anon_sym_uint] = ACTIONS(308), + [anon_sym_float] = ACTIONS(308), + [anon_sym_range] = ACTIONS(308), + [anon_sym_i8] = ACTIONS(308), + [anon_sym_i16] = ACTIONS(308), + [anon_sym_i32] = ACTIONS(308), + [anon_sym_i64] = ACTIONS(308), + [anon_sym_u8] = ACTIONS(308), + [anon_sym_u16] = ACTIONS(308), + [anon_sym_u32] = ACTIONS(308), + [anon_sym_u64] = ACTIONS(308), + [anon_sym_isize] = ACTIONS(308), + [anon_sym_usize] = ACTIONS(308), + [anon_sym_f32] = ACTIONS(308), + [anon_sym_f64] = ACTIONS(308), + [anon_sym_c_char] = ACTIONS(308), + [anon_sym_c_schar] = ACTIONS(308), + [anon_sym_c_uchar] = ACTIONS(308), + [anon_sym_c_short] = ACTIONS(308), + [anon_sym_c_ushort] = ACTIONS(308), + [anon_sym_c_int] = ACTIONS(308), + [anon_sym_c_uint] = ACTIONS(308), + [anon_sym_c_long] = ACTIONS(308), + [anon_sym_c_ulong] = ACTIONS(308), + [anon_sym_c_longlong] = ACTIONS(308), + [anon_sym_c_ulonglong] = ACTIONS(308), + [anon_sym_c_float] = ACTIONS(308), + [anon_sym_c_double] = ACTIONS(308), + [anon_sym_c_longdouble] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_defer] = ACTIONS(289), + [anon_sym_errdefer] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_expand] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_LT_LT_PIPE] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_try] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [sym_none] = ACTIONS(289), + [sym_undefined] = ACTIONS(289), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(289), + [sym_float] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_multiline_string] = ACTIONS(284), + [sym_character] = ACTIONS(284), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), + [sym__newline] = ACTIONS(284), }, [STATE(22)] = { - [sym_type] = STATE(246), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(312), + [sym_type] = STATE(285), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(311), + [sym_identifier] = ACTIONS(313), + [anon_sym_import] = ACTIONS(316), + [anon_sym_test] = ACTIONS(316), + [anon_sym_hide] = ACTIONS(316), + [anon_sym_func] = ACTIONS(318), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_mut] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_void] = ACTIONS(326), - [anon_sym_anyopaque] = ACTIONS(326), - [anon_sym_bool] = ACTIONS(326), - [anon_sym_int] = ACTIONS(326), - [anon_sym_uint] = ACTIONS(326), - [anon_sym_float] = ACTIONS(326), - [anon_sym_range] = ACTIONS(326), - [anon_sym_i8] = ACTIONS(326), - [anon_sym_i16] = ACTIONS(326), - [anon_sym_i32] = ACTIONS(326), - [anon_sym_i64] = ACTIONS(326), - [anon_sym_u8] = ACTIONS(326), - [anon_sym_u16] = ACTIONS(326), - [anon_sym_u32] = ACTIONS(326), - [anon_sym_u64] = ACTIONS(326), - [anon_sym_isize] = ACTIONS(326), - [anon_sym_usize] = ACTIONS(326), - [anon_sym_f32] = ACTIONS(326), - [anon_sym_f64] = ACTIONS(326), - [anon_sym_c_char] = ACTIONS(326), - [anon_sym_c_schar] = ACTIONS(326), - [anon_sym_c_uchar] = ACTIONS(326), - [anon_sym_c_short] = ACTIONS(326), - [anon_sym_c_ushort] = ACTIONS(326), - [anon_sym_c_int] = ACTIONS(326), - [anon_sym_c_uint] = ACTIONS(326), - [anon_sym_c_long] = ACTIONS(326), - [anon_sym_c_ulong] = ACTIONS(326), - [anon_sym_c_longlong] = ACTIONS(326), - [anon_sym_c_ulonglong] = ACTIONS(326), - [anon_sym_c_float] = ACTIONS(326), - [anon_sym_c_double] = ACTIONS(326), - [anon_sym_c_longdouble] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_defer] = ACTIONS(310), - [anon_sym_errdefer] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_expand] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_try] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_true] = ACTIONS(310), - [anon_sym_false] = ACTIONS(310), - [sym_none] = ACTIONS(310), - [sym_undefined] = ACTIONS(310), - [sym_sink] = ACTIONS(310), - [sym_integer] = ACTIONS(310), - [sym_float] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [sym_multiline_string] = ACTIONS(305), - [sym_character] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_mut] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_void] = ACTIONS(335), + [anon_sym_type] = ACTIONS(335), + [anon_sym_anyopaque] = ACTIONS(335), + [anon_sym_bool] = ACTIONS(335), + [anon_sym_int] = ACTIONS(335), + [anon_sym_uint] = ACTIONS(335), + [anon_sym_float] = ACTIONS(335), + [anon_sym_range] = ACTIONS(335), + [anon_sym_i8] = ACTIONS(335), + [anon_sym_i16] = ACTIONS(335), + [anon_sym_i32] = ACTIONS(335), + [anon_sym_i64] = ACTIONS(335), + [anon_sym_u8] = ACTIONS(335), + [anon_sym_u16] = ACTIONS(335), + [anon_sym_u32] = ACTIONS(335), + [anon_sym_u64] = ACTIONS(335), + [anon_sym_isize] = ACTIONS(335), + [anon_sym_usize] = ACTIONS(335), + [anon_sym_f32] = ACTIONS(335), + [anon_sym_f64] = ACTIONS(335), + [anon_sym_c_char] = ACTIONS(335), + [anon_sym_c_schar] = ACTIONS(335), + [anon_sym_c_uchar] = ACTIONS(335), + [anon_sym_c_short] = ACTIONS(335), + [anon_sym_c_ushort] = ACTIONS(335), + [anon_sym_c_int] = ACTIONS(335), + [anon_sym_c_uint] = ACTIONS(335), + [anon_sym_c_long] = ACTIONS(335), + [anon_sym_c_ulong] = ACTIONS(335), + [anon_sym_c_longlong] = ACTIONS(335), + [anon_sym_c_ulonglong] = ACTIONS(335), + [anon_sym_c_float] = ACTIONS(335), + [anon_sym_c_double] = ACTIONS(335), + [anon_sym_c_longdouble] = ACTIONS(335), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_xor_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(311), + [anon_sym_return] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(316), + [anon_sym_break] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_defer] = ACTIONS(316), + [anon_sym_errdefer] = ACTIONS(316), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [anon_sym_expand] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_match] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_LT_LT_PIPE] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_try] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), + [sym_undefined] = ACTIONS(316), + [sym_sink] = ACTIONS(316), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(311), + [sym_multiline_string] = ACTIONS(311), + [sym_character] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(311), }, [STATE(23)] = { - [sym_type] = STATE(247), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(312), + [sym_type] = STATE(292), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(345), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_mut] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_void] = ACTIONS(326), - [anon_sym_anyopaque] = ACTIONS(326), - [anon_sym_bool] = ACTIONS(326), - [anon_sym_int] = ACTIONS(326), - [anon_sym_uint] = ACTIONS(326), - [anon_sym_float] = ACTIONS(326), - [anon_sym_range] = ACTIONS(326), - [anon_sym_i8] = ACTIONS(326), - [anon_sym_i16] = ACTIONS(326), - [anon_sym_i32] = ACTIONS(326), - [anon_sym_i64] = ACTIONS(326), - [anon_sym_u8] = ACTIONS(326), - [anon_sym_u16] = ACTIONS(326), - [anon_sym_u32] = ACTIONS(326), - [anon_sym_u64] = ACTIONS(326), - [anon_sym_isize] = ACTIONS(326), - [anon_sym_usize] = ACTIONS(326), - [anon_sym_f32] = ACTIONS(326), - [anon_sym_f64] = ACTIONS(326), - [anon_sym_c_char] = ACTIONS(326), - [anon_sym_c_schar] = ACTIONS(326), - [anon_sym_c_uchar] = ACTIONS(326), - [anon_sym_c_short] = ACTIONS(326), - [anon_sym_c_ushort] = ACTIONS(326), - [anon_sym_c_int] = ACTIONS(326), - [anon_sym_c_uint] = ACTIONS(326), - [anon_sym_c_long] = ACTIONS(326), - [anon_sym_c_ulong] = ACTIONS(326), - [anon_sym_c_longlong] = ACTIONS(326), - [anon_sym_c_ulonglong] = ACTIONS(326), - [anon_sym_c_float] = ACTIONS(326), - [anon_sym_c_double] = ACTIONS(326), - [anon_sym_c_longdouble] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_defer] = ACTIONS(310), - [anon_sym_errdefer] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_expand] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_try] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_true] = ACTIONS(310), - [anon_sym_false] = ACTIONS(310), - [sym_none] = ACTIONS(310), - [sym_undefined] = ACTIONS(310), - [sym_sink] = ACTIONS(310), - [sym_integer] = ACTIONS(310), - [sym_float] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [sym_multiline_string] = ACTIONS(305), - [sym_character] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(348), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_mut] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(362), + [anon_sym_type] = ACTIONS(362), + [anon_sym_anyopaque] = ACTIONS(362), + [anon_sym_bool] = ACTIONS(362), + [anon_sym_int] = ACTIONS(362), + [anon_sym_uint] = ACTIONS(362), + [anon_sym_float] = ACTIONS(362), + [anon_sym_range] = ACTIONS(362), + [anon_sym_i8] = ACTIONS(362), + [anon_sym_i16] = ACTIONS(362), + [anon_sym_i32] = ACTIONS(362), + [anon_sym_i64] = ACTIONS(362), + [anon_sym_u8] = ACTIONS(362), + [anon_sym_u16] = ACTIONS(362), + [anon_sym_u32] = ACTIONS(362), + [anon_sym_u64] = ACTIONS(362), + [anon_sym_isize] = ACTIONS(362), + [anon_sym_usize] = ACTIONS(362), + [anon_sym_f32] = ACTIONS(362), + [anon_sym_f64] = ACTIONS(362), + [anon_sym_c_char] = ACTIONS(362), + [anon_sym_c_schar] = ACTIONS(362), + [anon_sym_c_uchar] = ACTIONS(362), + [anon_sym_c_short] = ACTIONS(362), + [anon_sym_c_ushort] = ACTIONS(362), + [anon_sym_c_int] = ACTIONS(362), + [anon_sym_c_uint] = ACTIONS(362), + [anon_sym_c_long] = ACTIONS(362), + [anon_sym_c_ulong] = ACTIONS(362), + [anon_sym_c_longlong] = ACTIONS(362), + [anon_sym_c_ulonglong] = ACTIONS(362), + [anon_sym_c_float] = ACTIONS(362), + [anon_sym_c_double] = ACTIONS(362), + [anon_sym_c_longdouble] = ACTIONS(362), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_defer] = ACTIONS(343), + [anon_sym_errdefer] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_expand] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_try] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [sym_none] = ACTIONS(343), + [sym_undefined] = ACTIONS(343), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(343), + [sym_float] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_multiline_string] = ACTIONS(338), + [sym_character] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(338), }, [STATE(24)] = { - [sym_type] = STATE(255), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), + [sym_type] = STATE(291), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(345), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(348), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(362), + [anon_sym_type] = ACTIONS(362), + [anon_sym_anyopaque] = ACTIONS(362), + [anon_sym_bool] = ACTIONS(362), + [anon_sym_int] = ACTIONS(362), + [anon_sym_uint] = ACTIONS(362), + [anon_sym_float] = ACTIONS(362), + [anon_sym_range] = ACTIONS(362), + [anon_sym_i8] = ACTIONS(362), + [anon_sym_i16] = ACTIONS(362), + [anon_sym_i32] = ACTIONS(362), + [anon_sym_i64] = ACTIONS(362), + [anon_sym_u8] = ACTIONS(362), + [anon_sym_u16] = ACTIONS(362), + [anon_sym_u32] = ACTIONS(362), + [anon_sym_u64] = ACTIONS(362), + [anon_sym_isize] = ACTIONS(362), + [anon_sym_usize] = ACTIONS(362), + [anon_sym_f32] = ACTIONS(362), + [anon_sym_f64] = ACTIONS(362), + [anon_sym_c_char] = ACTIONS(362), + [anon_sym_c_schar] = ACTIONS(362), + [anon_sym_c_uchar] = ACTIONS(362), + [anon_sym_c_short] = ACTIONS(362), + [anon_sym_c_ushort] = ACTIONS(362), + [anon_sym_c_int] = ACTIONS(362), + [anon_sym_c_uint] = ACTIONS(362), + [anon_sym_c_long] = ACTIONS(362), + [anon_sym_c_ulong] = ACTIONS(362), + [anon_sym_c_longlong] = ACTIONS(362), + [anon_sym_c_ulonglong] = ACTIONS(362), + [anon_sym_c_float] = ACTIONS(362), + [anon_sym_c_double] = ACTIONS(362), + [anon_sym_c_longdouble] = ACTIONS(362), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_defer] = ACTIONS(343), + [anon_sym_errdefer] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_expand] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_try] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [sym_none] = ACTIONS(343), + [sym_undefined] = ACTIONS(343), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(343), + [sym_float] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_multiline_string] = ACTIONS(338), + [sym_character] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(25)] = { + [sym_type] = STATE(299), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), [ts_builtin_sym_end] = ACTIONS(253), [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(258), @@ -15585,7 +16994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(258), [anon_sym_EQ] = ACTIONS(258), [anon_sym_struct] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(265), [anon_sym_RPAREN] = ACTIONS(253), [anon_sym_LBRACE] = ACTIONS(253), [anon_sym_COMMA] = ACTIONS(253), @@ -15593,44 +17002,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(258), [anon_sym_DOLLAR] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(270), - [anon_sym_mut] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(278), - [anon_sym_anyopaque] = ACTIONS(278), - [anon_sym_bool] = ACTIONS(278), - [anon_sym_int] = ACTIONS(278), - [anon_sym_uint] = ACTIONS(278), - [anon_sym_float] = ACTIONS(278), - [anon_sym_range] = ACTIONS(278), - [anon_sym_i8] = ACTIONS(278), - [anon_sym_i16] = ACTIONS(278), - [anon_sym_i32] = ACTIONS(278), - [anon_sym_i64] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(278), - [anon_sym_u16] = ACTIONS(278), - [anon_sym_u32] = ACTIONS(278), - [anon_sym_u64] = ACTIONS(278), - [anon_sym_isize] = ACTIONS(278), - [anon_sym_usize] = ACTIONS(278), - [anon_sym_f32] = ACTIONS(278), - [anon_sym_f64] = ACTIONS(278), - [anon_sym_c_char] = ACTIONS(278), - [anon_sym_c_schar] = ACTIONS(278), - [anon_sym_c_uchar] = ACTIONS(278), - [anon_sym_c_short] = ACTIONS(278), - [anon_sym_c_ushort] = ACTIONS(278), - [anon_sym_c_int] = ACTIONS(278), - [anon_sym_c_uint] = ACTIONS(278), - [anon_sym_c_long] = ACTIONS(278), - [anon_sym_c_ulong] = ACTIONS(278), - [anon_sym_c_longlong] = ACTIONS(278), - [anon_sym_c_ulonglong] = ACTIONS(278), - [anon_sym_c_float] = ACTIONS(278), - [anon_sym_c_double] = ACTIONS(278), - [anon_sym_c_longdouble] = ACTIONS(278), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_void] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_anyopaque] = ACTIONS(281), + [anon_sym_bool] = ACTIONS(281), + [anon_sym_int] = ACTIONS(281), + [anon_sym_uint] = ACTIONS(281), + [anon_sym_float] = ACTIONS(281), + [anon_sym_range] = ACTIONS(281), + [anon_sym_i8] = ACTIONS(281), + [anon_sym_i16] = ACTIONS(281), + [anon_sym_i32] = ACTIONS(281), + [anon_sym_i64] = ACTIONS(281), + [anon_sym_u8] = ACTIONS(281), + [anon_sym_u16] = ACTIONS(281), + [anon_sym_u32] = ACTIONS(281), + [anon_sym_u64] = ACTIONS(281), + [anon_sym_isize] = ACTIONS(281), + [anon_sym_usize] = ACTIONS(281), + [anon_sym_f32] = ACTIONS(281), + [anon_sym_f64] = ACTIONS(281), + [anon_sym_c_char] = ACTIONS(281), + [anon_sym_c_schar] = ACTIONS(281), + [anon_sym_c_uchar] = ACTIONS(281), + [anon_sym_c_short] = ACTIONS(281), + [anon_sym_c_ushort] = ACTIONS(281), + [anon_sym_c_int] = ACTIONS(281), + [anon_sym_c_uint] = ACTIONS(281), + [anon_sym_c_long] = ACTIONS(281), + [anon_sym_c_ulong] = ACTIONS(281), + [anon_sym_c_longlong] = ACTIONS(281), + [anon_sym_c_ulonglong] = ACTIONS(281), + [anon_sym_c_float] = ACTIONS(281), + [anon_sym_c_double] = ACTIONS(281), + [anon_sym_c_longdouble] = ACTIONS(281), [anon_sym_PLUS_EQ] = ACTIONS(253), [anon_sym_DASH_EQ] = ACTIONS(253), [anon_sym_STAR_EQ] = ACTIONS(253), @@ -15689,194 +17099,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(253), }, - [STATE(25)] = { - [sym_type] = STATE(235), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(333), - [sym_identifier] = ACTIONS(335), - [anon_sym_import] = ACTIONS(338), - [anon_sym_test] = ACTIONS(338), - [anon_sym_hide] = ACTIONS(338), - [anon_sym_func] = ACTIONS(340), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_COMMA] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(346), - [anon_sym_mut] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), - [anon_sym_void] = ACTIONS(354), - [anon_sym_anyopaque] = ACTIONS(354), - [anon_sym_bool] = ACTIONS(354), - [anon_sym_int] = ACTIONS(354), - [anon_sym_uint] = ACTIONS(354), - [anon_sym_float] = ACTIONS(354), - [anon_sym_range] = ACTIONS(354), - [anon_sym_i8] = ACTIONS(354), - [anon_sym_i16] = ACTIONS(354), - [anon_sym_i32] = ACTIONS(354), - [anon_sym_i64] = ACTIONS(354), - [anon_sym_u8] = ACTIONS(354), - [anon_sym_u16] = ACTIONS(354), - [anon_sym_u32] = ACTIONS(354), - [anon_sym_u64] = ACTIONS(354), - [anon_sym_isize] = ACTIONS(354), - [anon_sym_usize] = ACTIONS(354), - [anon_sym_f32] = ACTIONS(354), - [anon_sym_f64] = ACTIONS(354), - [anon_sym_c_char] = ACTIONS(354), - [anon_sym_c_schar] = ACTIONS(354), - [anon_sym_c_uchar] = ACTIONS(354), - [anon_sym_c_short] = ACTIONS(354), - [anon_sym_c_ushort] = ACTIONS(354), - [anon_sym_c_int] = ACTIONS(354), - [anon_sym_c_uint] = ACTIONS(354), - [anon_sym_c_long] = ACTIONS(354), - [anon_sym_c_ulong] = ACTIONS(354), - [anon_sym_c_longlong] = ACTIONS(354), - [anon_sym_c_ulonglong] = ACTIONS(354), - [anon_sym_c_float] = ACTIONS(354), - [anon_sym_c_double] = ACTIONS(354), - [anon_sym_c_longdouble] = ACTIONS(354), - [anon_sym_PLUS_EQ] = ACTIONS(333), - [anon_sym_DASH_EQ] = ACTIONS(333), - [anon_sym_STAR_EQ] = ACTIONS(333), - [anon_sym_SLASH_EQ] = ACTIONS(333), - [anon_sym_AMP_EQ] = ACTIONS(333), - [anon_sym_PIPE_EQ] = ACTIONS(333), - [anon_sym_xor_EQ] = ACTIONS(333), - [anon_sym_LT_LT_EQ] = ACTIONS(333), - [anon_sym_GT_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), - [anon_sym_return] = ACTIONS(338), - [anon_sym_yield] = ACTIONS(338), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_defer] = ACTIONS(338), - [anon_sym_errdefer] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_else] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [anon_sym_expand] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_match] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_LT_LT_PIPE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(333), - [anon_sym_try] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), - [anon_sym_true] = ACTIONS(338), - [anon_sym_false] = ACTIONS(338), - [sym_none] = ACTIONS(338), - [sym_undefined] = ACTIONS(338), - [sym_sink] = ACTIONS(338), - [sym_integer] = ACTIONS(338), - [sym_float] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(333), - [sym_multiline_string] = ACTIONS(333), - [sym_character] = ACTIONS(333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - }, [STATE(26)] = { - [sym_type] = STATE(255), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), + [sym_type] = STATE(299), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(357), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(258), [anon_sym_test] = ACTIONS(258), [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(357), + [anon_sym_func] = ACTIONS(369), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(369), [anon_sym_EQ] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_struct] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_void] = ACTIONS(357), - [anon_sym_anyopaque] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_uint] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_range] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_c_char] = ACTIONS(357), - [anon_sym_c_schar] = ACTIONS(357), - [anon_sym_c_uchar] = ACTIONS(357), - [anon_sym_c_short] = ACTIONS(357), - [anon_sym_c_ushort] = ACTIONS(357), - [anon_sym_c_int] = ACTIONS(357), - [anon_sym_c_uint] = ACTIONS(357), - [anon_sym_c_long] = ACTIONS(357), - [anon_sym_c_ulong] = ACTIONS(357), - [anon_sym_c_longlong] = ACTIONS(357), - [anon_sym_c_ulonglong] = ACTIONS(357), - [anon_sym_c_float] = ACTIONS(357), - [anon_sym_c_double] = ACTIONS(357), - [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_void] = ACTIONS(369), + [anon_sym_type] = ACTIONS(369), + [anon_sym_anyopaque] = ACTIONS(369), + [anon_sym_bool] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_uint] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_range] = ACTIONS(369), + [anon_sym_i8] = ACTIONS(369), + [anon_sym_i16] = ACTIONS(369), + [anon_sym_i32] = ACTIONS(369), + [anon_sym_i64] = ACTIONS(369), + [anon_sym_u8] = ACTIONS(369), + [anon_sym_u16] = ACTIONS(369), + [anon_sym_u32] = ACTIONS(369), + [anon_sym_u64] = ACTIONS(369), + [anon_sym_isize] = ACTIONS(369), + [anon_sym_usize] = ACTIONS(369), + [anon_sym_f32] = ACTIONS(369), + [anon_sym_f64] = ACTIONS(369), + [anon_sym_c_char] = ACTIONS(369), + [anon_sym_c_schar] = ACTIONS(369), + [anon_sym_c_uchar] = ACTIONS(369), + [anon_sym_c_short] = ACTIONS(369), + [anon_sym_c_ushort] = ACTIONS(369), + [anon_sym_c_int] = ACTIONS(369), + [anon_sym_c_uint] = ACTIONS(369), + [anon_sym_c_long] = ACTIONS(369), + [anon_sym_c_ulong] = ACTIONS(369), + [anon_sym_c_longlong] = ACTIONS(369), + [anon_sym_c_ulonglong] = ACTIONS(369), + [anon_sym_c_float] = ACTIONS(369), + [anon_sym_c_double] = ACTIONS(369), + [anon_sym_c_longdouble] = ACTIONS(369), [anon_sym_PLUS_EQ] = ACTIONS(253), [anon_sym_DASH_EQ] = ACTIONS(253), [anon_sym_STAR_EQ] = ACTIONS(253), @@ -15887,118 +17175,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(253), [anon_sym_GT_GT_EQ] = ACTIONS(253), [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(357), - [anon_sym_errdefer] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_defer] = ACTIONS(369), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(357), - [anon_sym_expand] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_match] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), - [anon_sym_orelse] = ACTIONS(357), - [anon_sym_catch] = ACTIONS(357), - [anon_sym_or] = ACTIONS(357), - [anon_sym_and] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_xor] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(357), - [anon_sym_LT_LT_PIPE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_try] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [sym_none] = ACTIONS(357), - [sym_undefined] = ACTIONS(357), - [sym_sink] = ACTIONS(357), - [sym_integer] = ACTIONS(357), - [sym_float] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym_multiline_string] = ACTIONS(359), - [sym_character] = ACTIONS(359), + [anon_sym_while] = ACTIONS(369), + [anon_sym_expand] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_match] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_orelse] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(369), + [anon_sym_or] = ACTIONS(369), + [anon_sym_and] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_xor] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT_PIPE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_try] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_true] = ACTIONS(369), + [anon_sym_false] = ACTIONS(369), + [sym_none] = ACTIONS(369), + [sym_undefined] = ACTIONS(369), + [sym_sink] = ACTIONS(369), + [sym_integer] = ACTIONS(369), + [sym_float] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_multiline_string] = ACTIONS(371), + [sym_character] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), + [sym__newline] = ACTIONS(371), }, [STATE(27)] = { - [sym_type] = STATE(253), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), + [sym_type] = STATE(297), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(361), + [sym_identifier] = ACTIONS(373), [anon_sym_import] = ACTIONS(258), [anon_sym_test] = ACTIONS(258), [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(361), + [anon_sym_func] = ACTIONS(373), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(373), [anon_sym_EQ] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(361), - [anon_sym_anyopaque] = ACTIONS(361), - [anon_sym_bool] = ACTIONS(361), - [anon_sym_int] = ACTIONS(361), - [anon_sym_uint] = ACTIONS(361), - [anon_sym_float] = ACTIONS(361), - [anon_sym_range] = ACTIONS(361), - [anon_sym_i8] = ACTIONS(361), - [anon_sym_i16] = ACTIONS(361), - [anon_sym_i32] = ACTIONS(361), - [anon_sym_i64] = ACTIONS(361), - [anon_sym_u8] = ACTIONS(361), - [anon_sym_u16] = ACTIONS(361), - [anon_sym_u32] = ACTIONS(361), - [anon_sym_u64] = ACTIONS(361), - [anon_sym_isize] = ACTIONS(361), - [anon_sym_usize] = ACTIONS(361), - [anon_sym_f32] = ACTIONS(361), - [anon_sym_f64] = ACTIONS(361), - [anon_sym_c_char] = ACTIONS(361), - [anon_sym_c_schar] = ACTIONS(361), - [anon_sym_c_uchar] = ACTIONS(361), - [anon_sym_c_short] = ACTIONS(361), - [anon_sym_c_ushort] = ACTIONS(361), - [anon_sym_c_int] = ACTIONS(361), - [anon_sym_c_uint] = ACTIONS(361), - [anon_sym_c_long] = ACTIONS(361), - [anon_sym_c_ulong] = ACTIONS(361), - [anon_sym_c_longlong] = ACTIONS(361), - [anon_sym_c_ulonglong] = ACTIONS(361), - [anon_sym_c_float] = ACTIONS(361), - [anon_sym_c_double] = ACTIONS(361), - [anon_sym_c_longdouble] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_mut] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_void] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_anyopaque] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_int] = ACTIONS(373), + [anon_sym_uint] = ACTIONS(373), + [anon_sym_float] = ACTIONS(373), + [anon_sym_range] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_c_char] = ACTIONS(373), + [anon_sym_c_schar] = ACTIONS(373), + [anon_sym_c_uchar] = ACTIONS(373), + [anon_sym_c_short] = ACTIONS(373), + [anon_sym_c_ushort] = ACTIONS(373), + [anon_sym_c_int] = ACTIONS(373), + [anon_sym_c_uint] = ACTIONS(373), + [anon_sym_c_long] = ACTIONS(373), + [anon_sym_c_ulong] = ACTIONS(373), + [anon_sym_c_longlong] = ACTIONS(373), + [anon_sym_c_ulonglong] = ACTIONS(373), + [anon_sym_c_float] = ACTIONS(373), + [anon_sym_c_double] = ACTIONS(373), + [anon_sym_c_longdouble] = ACTIONS(373), [anon_sym_PLUS_EQ] = ACTIONS(253), [anon_sym_DASH_EQ] = ACTIONS(253), [anon_sym_STAR_EQ] = ACTIONS(253), @@ -16009,596 +17299,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(253), [anon_sym_GT_GT_EQ] = ACTIONS(253), [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_errdefer] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), + [anon_sym_return] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(373), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_errdefer] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(361), - [anon_sym_expand] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_match] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_orelse] = ACTIONS(361), - [anon_sym_catch] = ACTIONS(361), - [anon_sym_or] = ACTIONS(361), - [anon_sym_and] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(361), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(361), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(361), - [anon_sym_xor] = ACTIONS(361), - [anon_sym_LT_LT] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [anon_sym_LT_LT_PIPE] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_try] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [sym_none] = ACTIONS(361), - [sym_undefined] = ACTIONS(361), - [sym_sink] = ACTIONS(361), - [sym_integer] = ACTIONS(361), - [sym_float] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_multiline_string] = ACTIONS(363), - [sym_character] = ACTIONS(363), + [anon_sym_while] = ACTIONS(373), + [anon_sym_expand] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_orelse] = ACTIONS(373), + [anon_sym_catch] = ACTIONS(373), + [anon_sym_or] = ACTIONS(373), + [anon_sym_and] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_xor] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_LT_LT_PIPE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_TILDE] = ACTIONS(375), + [anon_sym_try] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_none] = ACTIONS(373), + [sym_undefined] = ACTIONS(373), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(373), + [sym_float] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_multiline_string] = ACTIONS(375), + [sym_character] = ACTIONS(375), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), + [sym__newline] = ACTIONS(375), }, [STATE(28)] = { - [sym_type] = STATE(264), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(365), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(365), + [sym_type] = STATE(306), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(377), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(377), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_void] = ACTIONS(365), - [anon_sym_anyopaque] = ACTIONS(365), - [anon_sym_bool] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_uint] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_range] = ACTIONS(365), - [anon_sym_i8] = ACTIONS(365), - [anon_sym_i16] = ACTIONS(365), - [anon_sym_i32] = ACTIONS(365), - [anon_sym_i64] = ACTIONS(365), - [anon_sym_u8] = ACTIONS(365), - [anon_sym_u16] = ACTIONS(365), - [anon_sym_u32] = ACTIONS(365), - [anon_sym_u64] = ACTIONS(365), - [anon_sym_isize] = ACTIONS(365), - [anon_sym_usize] = ACTIONS(365), - [anon_sym_f32] = ACTIONS(365), - [anon_sym_f64] = ACTIONS(365), - [anon_sym_c_char] = ACTIONS(365), - [anon_sym_c_schar] = ACTIONS(365), - [anon_sym_c_uchar] = ACTIONS(365), - [anon_sym_c_short] = ACTIONS(365), - [anon_sym_c_ushort] = ACTIONS(365), - [anon_sym_c_int] = ACTIONS(365), - [anon_sym_c_uint] = ACTIONS(365), - [anon_sym_c_long] = ACTIONS(365), - [anon_sym_c_ulong] = ACTIONS(365), - [anon_sym_c_longlong] = ACTIONS(365), - [anon_sym_c_ulonglong] = ACTIONS(365), - [anon_sym_c_float] = ACTIONS(365), - [anon_sym_c_double] = ACTIONS(365), - [anon_sym_c_longdouble] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_defer] = ACTIONS(365), - [anon_sym_errdefer] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(365), - [anon_sym_expand] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_match] = ACTIONS(365), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(367), - [anon_sym_orelse] = ACTIONS(365), - [anon_sym_catch] = ACTIONS(365), - [anon_sym_or] = ACTIONS(365), - [anon_sym_and] = ACTIONS(365), - [anon_sym_EQ_EQ] = ACTIONS(367), - [anon_sym_BANG_EQ] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_xor] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT_PIPE] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_try] = ACTIONS(365), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [sym_none] = ACTIONS(365), - [sym_undefined] = ACTIONS(365), - [sym_sink] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [sym_multiline_string] = ACTIONS(367), - [sym_character] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_mut] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_void] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_anyopaque] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_int] = ACTIONS(377), + [anon_sym_uint] = ACTIONS(377), + [anon_sym_float] = ACTIONS(377), + [anon_sym_range] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_c_char] = ACTIONS(377), + [anon_sym_c_schar] = ACTIONS(377), + [anon_sym_c_uchar] = ACTIONS(377), + [anon_sym_c_short] = ACTIONS(377), + [anon_sym_c_ushort] = ACTIONS(377), + [anon_sym_c_int] = ACTIONS(377), + [anon_sym_c_uint] = ACTIONS(377), + [anon_sym_c_long] = ACTIONS(377), + [anon_sym_c_ulong] = ACTIONS(377), + [anon_sym_c_longlong] = ACTIONS(377), + [anon_sym_c_ulonglong] = ACTIONS(377), + [anon_sym_c_float] = ACTIONS(377), + [anon_sym_c_double] = ACTIONS(377), + [anon_sym_c_longdouble] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_return] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(377), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_defer] = ACTIONS(377), + [anon_sym_errdefer] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(377), + [anon_sym_expand] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_orelse] = ACTIONS(377), + [anon_sym_catch] = ACTIONS(377), + [anon_sym_or] = ACTIONS(377), + [anon_sym_and] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_xor] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_LT_LT_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_try] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_none] = ACTIONS(377), + [sym_undefined] = ACTIONS(377), + [sym_sink] = ACTIONS(377), + [sym_integer] = ACTIONS(377), + [sym_float] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [sym_multiline_string] = ACTIONS(379), + [sym_character] = ACTIONS(379), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), + [sym__newline] = ACTIONS(379), }, [STATE(29)] = { - [sym_type] = STATE(247), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(369), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(369), + [sym_type] = STATE(292), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(381), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(381), [anon_sym_c_func] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(369), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(369), - [anon_sym_mut] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_void] = ACTIONS(369), - [anon_sym_anyopaque] = ACTIONS(369), - [anon_sym_bool] = ACTIONS(369), - [anon_sym_int] = ACTIONS(369), - [anon_sym_uint] = ACTIONS(369), - [anon_sym_float] = ACTIONS(369), - [anon_sym_range] = ACTIONS(369), - [anon_sym_i8] = ACTIONS(369), - [anon_sym_i16] = ACTIONS(369), - [anon_sym_i32] = ACTIONS(369), - [anon_sym_i64] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(369), - [anon_sym_u16] = ACTIONS(369), - [anon_sym_u32] = ACTIONS(369), - [anon_sym_u64] = ACTIONS(369), - [anon_sym_isize] = ACTIONS(369), - [anon_sym_usize] = ACTIONS(369), - [anon_sym_f32] = ACTIONS(369), - [anon_sym_f64] = ACTIONS(369), - [anon_sym_c_char] = ACTIONS(369), - [anon_sym_c_schar] = ACTIONS(369), - [anon_sym_c_uchar] = ACTIONS(369), - [anon_sym_c_short] = ACTIONS(369), - [anon_sym_c_ushort] = ACTIONS(369), - [anon_sym_c_int] = ACTIONS(369), - [anon_sym_c_uint] = ACTIONS(369), - [anon_sym_c_long] = ACTIONS(369), - [anon_sym_c_ulong] = ACTIONS(369), - [anon_sym_c_longlong] = ACTIONS(369), - [anon_sym_c_ulonglong] = ACTIONS(369), - [anon_sym_c_float] = ACTIONS(369), - [anon_sym_c_double] = ACTIONS(369), - [anon_sym_c_longdouble] = ACTIONS(369), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_return] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(369), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(369), - [anon_sym_defer] = ACTIONS(369), - [anon_sym_errdefer] = ACTIONS(369), - [anon_sym_if] = ACTIONS(369), - [anon_sym_else] = ACTIONS(310), - [anon_sym_while] = ACTIONS(369), - [anon_sym_expand] = ACTIONS(369), - [anon_sym_for] = ACTIONS(369), - [anon_sym_match] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_orelse] = ACTIONS(369), - [anon_sym_catch] = ACTIONS(369), - [anon_sym_or] = ACTIONS(369), - [anon_sym_and] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_xor] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT_PIPE] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(369), - [anon_sym_SLASH] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(371), - [anon_sym_try] = ACTIONS(369), - [anon_sym_DOT] = ACTIONS(369), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_true] = ACTIONS(369), - [anon_sym_false] = ACTIONS(369), - [sym_none] = ACTIONS(369), - [sym_undefined] = ACTIONS(369), - [sym_sink] = ACTIONS(369), - [sym_integer] = ACTIONS(369), - [sym_float] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_multiline_string] = ACTIONS(371), - [sym_character] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_mut] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_void] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), + [anon_sym_anyopaque] = ACTIONS(381), + [anon_sym_bool] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_uint] = ACTIONS(381), + [anon_sym_float] = ACTIONS(381), + [anon_sym_range] = ACTIONS(381), + [anon_sym_i8] = ACTIONS(381), + [anon_sym_i16] = ACTIONS(381), + [anon_sym_i32] = ACTIONS(381), + [anon_sym_i64] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(381), + [anon_sym_u16] = ACTIONS(381), + [anon_sym_u32] = ACTIONS(381), + [anon_sym_u64] = ACTIONS(381), + [anon_sym_isize] = ACTIONS(381), + [anon_sym_usize] = ACTIONS(381), + [anon_sym_f32] = ACTIONS(381), + [anon_sym_f64] = ACTIONS(381), + [anon_sym_c_char] = ACTIONS(381), + [anon_sym_c_schar] = ACTIONS(381), + [anon_sym_c_uchar] = ACTIONS(381), + [anon_sym_c_short] = ACTIONS(381), + [anon_sym_c_ushort] = ACTIONS(381), + [anon_sym_c_int] = ACTIONS(381), + [anon_sym_c_uint] = ACTIONS(381), + [anon_sym_c_long] = ACTIONS(381), + [anon_sym_c_ulong] = ACTIONS(381), + [anon_sym_c_longlong] = ACTIONS(381), + [anon_sym_c_ulonglong] = ACTIONS(381), + [anon_sym_c_float] = ACTIONS(381), + [anon_sym_c_double] = ACTIONS(381), + [anon_sym_c_longdouble] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_return] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(381), + [anon_sym_break] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_defer] = ACTIONS(381), + [anon_sym_errdefer] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(381), + [anon_sym_expand] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_orelse] = ACTIONS(381), + [anon_sym_catch] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_and] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT_PIPE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_try] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_true] = ACTIONS(381), + [anon_sym_false] = ACTIONS(381), + [sym_none] = ACTIONS(381), + [sym_undefined] = ACTIONS(381), + [sym_sink] = ACTIONS(381), + [sym_integer] = ACTIONS(381), + [sym_float] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_multiline_string] = ACTIONS(383), + [sym_character] = ACTIONS(383), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(371), + [sym__newline] = ACTIONS(383), }, [STATE(30)] = { - [sym_type] = STATE(3339), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(376), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_type] = STATE(3906), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(31)] = { - [sym_type] = STATE(3385), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_type] = STATE(3911), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(32)] = { - [sym_type] = STATE(2080), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(357), - [anon_sym_func] = ACTIONS(357), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(357), + [sym_type] = STATE(2320), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(373), + [anon_sym_func] = ACTIONS(373), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(373), [anon_sym_EQ] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_void] = ACTIONS(357), - [anon_sym_anyopaque] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_uint] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_range] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_c_char] = ACTIONS(357), - [anon_sym_c_schar] = ACTIONS(357), - [anon_sym_c_uchar] = ACTIONS(357), - [anon_sym_c_short] = ACTIONS(357), - [anon_sym_c_ushort] = ACTIONS(357), - [anon_sym_c_int] = ACTIONS(357), - [anon_sym_c_uint] = ACTIONS(357), - [anon_sym_c_long] = ACTIONS(357), - [anon_sym_c_ulong] = ACTIONS(357), - [anon_sym_c_longlong] = ACTIONS(357), - [anon_sym_c_ulonglong] = ACTIONS(357), - [anon_sym_c_float] = ACTIONS(357), - [anon_sym_c_double] = ACTIONS(357), - [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_mut] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_void] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_anyopaque] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_int] = ACTIONS(373), + [anon_sym_uint] = ACTIONS(373), + [anon_sym_float] = ACTIONS(373), + [anon_sym_range] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_c_char] = ACTIONS(373), + [anon_sym_c_schar] = ACTIONS(373), + [anon_sym_c_uchar] = ACTIONS(373), + [anon_sym_c_short] = ACTIONS(373), + [anon_sym_c_ushort] = ACTIONS(373), + [anon_sym_c_int] = ACTIONS(373), + [anon_sym_c_uint] = ACTIONS(373), + [anon_sym_c_long] = ACTIONS(373), + [anon_sym_c_ulong] = ACTIONS(373), + [anon_sym_c_longlong] = ACTIONS(373), + [anon_sym_c_ulonglong] = ACTIONS(373), + [anon_sym_c_float] = ACTIONS(373), + [anon_sym_c_double] = ACTIONS(373), + [anon_sym_c_longdouble] = ACTIONS(373), [anon_sym_PLUS_EQ] = ACTIONS(253), [anon_sym_DASH_EQ] = ACTIONS(253), [anon_sym_STAR_EQ] = ACTIONS(253), @@ -16609,200 +17909,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(253), [anon_sym_GT_GT_EQ] = ACTIONS(253), [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(357), - [anon_sym_errdefer] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), + [anon_sym_return] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(373), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_errdefer] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(357), - [anon_sym_expand] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_match] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), - [anon_sym_orelse] = ACTIONS(357), - [anon_sym_catch] = ACTIONS(357), - [anon_sym_or] = ACTIONS(357), - [anon_sym_and] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_xor] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(357), - [anon_sym_LT_LT_PIPE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_try] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [sym_none] = ACTIONS(357), - [sym_undefined] = ACTIONS(357), - [sym_sink] = ACTIONS(357), - [sym_integer] = ACTIONS(357), - [sym_float] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym_multiline_string] = ACTIONS(359), - [sym_character] = ACTIONS(359), + [anon_sym_while] = ACTIONS(373), + [anon_sym_expand] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_orelse] = ACTIONS(373), + [anon_sym_catch] = ACTIONS(373), + [anon_sym_or] = ACTIONS(373), + [anon_sym_and] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_xor] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_LT_LT_PIPE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_TILDE] = ACTIONS(375), + [anon_sym_try] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_none] = ACTIONS(373), + [sym_undefined] = ACTIONS(373), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(373), + [sym_float] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_multiline_string] = ACTIONS(375), + [sym_character] = ACTIONS(375), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), + [sym__newline] = ACTIONS(375), }, [STATE(33)] = { - [sym_type] = STATE(2076), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(361), - [anon_sym_func] = ACTIONS(361), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(361), - [anon_sym_anyopaque] = ACTIONS(361), - [anon_sym_bool] = ACTIONS(361), - [anon_sym_int] = ACTIONS(361), - [anon_sym_uint] = ACTIONS(361), - [anon_sym_float] = ACTIONS(361), - [anon_sym_range] = ACTIONS(361), - [anon_sym_i8] = ACTIONS(361), - [anon_sym_i16] = ACTIONS(361), - [anon_sym_i32] = ACTIONS(361), - [anon_sym_i64] = ACTIONS(361), - [anon_sym_u8] = ACTIONS(361), - [anon_sym_u16] = ACTIONS(361), - [anon_sym_u32] = ACTIONS(361), - [anon_sym_u64] = ACTIONS(361), - [anon_sym_isize] = ACTIONS(361), - [anon_sym_usize] = ACTIONS(361), - [anon_sym_f32] = ACTIONS(361), - [anon_sym_f64] = ACTIONS(361), - [anon_sym_c_char] = ACTIONS(361), - [anon_sym_c_schar] = ACTIONS(361), - [anon_sym_c_uchar] = ACTIONS(361), - [anon_sym_c_short] = ACTIONS(361), - [anon_sym_c_ushort] = ACTIONS(361), - [anon_sym_c_int] = ACTIONS(361), - [anon_sym_c_uint] = ACTIONS(361), - [anon_sym_c_long] = ACTIONS(361), - [anon_sym_c_ulong] = ACTIONS(361), - [anon_sym_c_longlong] = ACTIONS(361), - [anon_sym_c_ulonglong] = ACTIONS(361), - [anon_sym_c_float] = ACTIONS(361), - [anon_sym_c_double] = ACTIONS(361), - [anon_sym_c_longdouble] = ACTIONS(361), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_AMP_EQ] = ACTIONS(253), - [anon_sym_PIPE_EQ] = ACTIONS(253), - [anon_sym_xor_EQ] = ACTIONS(253), - [anon_sym_LT_LT_EQ] = ACTIONS(253), - [anon_sym_GT_GT_EQ] = ACTIONS(253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_errdefer] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(361), - [anon_sym_expand] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_match] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_orelse] = ACTIONS(361), - [anon_sym_catch] = ACTIONS(361), - [anon_sym_or] = ACTIONS(361), - [anon_sym_and] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(361), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(361), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(361), - [anon_sym_xor] = ACTIONS(361), - [anon_sym_LT_LT] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [anon_sym_LT_LT_PIPE] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_try] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [sym_none] = ACTIONS(361), - [sym_undefined] = ACTIONS(361), - [sym_sink] = ACTIONS(361), - [sym_integer] = ACTIONS(361), - [sym_float] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_multiline_string] = ACTIONS(363), - [sym_character] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - }, - [STATE(34)] = { - [sym_type] = STATE(2106), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), + [sym_type] = STATE(2323), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), [sym_identifier] = ACTIONS(369), [anon_sym_func] = ACTIONS(369), - [anon_sym_c_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(429), [anon_sym_BANG] = ACTIONS(369), - [anon_sym_EQ] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(258), [anon_sym_struct] = ACTIONS(369), [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(253), [anon_sym_LBRACE] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(371), [anon_sym_PIPE] = ACTIONS(369), [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(431), [anon_sym_STAR] = ACTIONS(369), - [anon_sym_mut] = ACTIONS(421), + [anon_sym_mut] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(371), [anon_sym_void] = ACTIONS(369), + [anon_sym_type] = ACTIONS(369), [anon_sym_anyopaque] = ACTIONS(369), [anon_sym_bool] = ACTIONS(369), [anon_sym_int] = ACTIONS(369), @@ -16835,16 +18019,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(369), [anon_sym_c_double] = ACTIONS(369), [anon_sym_c_longdouble] = ACTIONS(369), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), [anon_sym_return] = ACTIONS(369), [anon_sym_yield] = ACTIONS(369), [anon_sym_break] = ACTIONS(369), @@ -16852,7 +18036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(369), [anon_sym_errdefer] = ACTIONS(369), [anon_sym_if] = ACTIONS(369), - [anon_sym_else] = ACTIONS(310), + [anon_sym_else] = ACTIONS(258), [anon_sym_while] = ACTIONS(369), [anon_sym_expand] = ACTIONS(369), [anon_sym_for] = ACTIONS(369), @@ -16893,3916 +18077,4074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(371), }, - [STATE(35)] = { - [sym_type] = STATE(2100), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(365), - [anon_sym_func] = ACTIONS(365), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_void] = ACTIONS(365), - [anon_sym_anyopaque] = ACTIONS(365), - [anon_sym_bool] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_uint] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_range] = ACTIONS(365), - [anon_sym_i8] = ACTIONS(365), - [anon_sym_i16] = ACTIONS(365), - [anon_sym_i32] = ACTIONS(365), - [anon_sym_i64] = ACTIONS(365), - [anon_sym_u8] = ACTIONS(365), - [anon_sym_u16] = ACTIONS(365), - [anon_sym_u32] = ACTIONS(365), - [anon_sym_u64] = ACTIONS(365), - [anon_sym_isize] = ACTIONS(365), - [anon_sym_usize] = ACTIONS(365), - [anon_sym_f32] = ACTIONS(365), - [anon_sym_f64] = ACTIONS(365), - [anon_sym_c_char] = ACTIONS(365), - [anon_sym_c_schar] = ACTIONS(365), - [anon_sym_c_uchar] = ACTIONS(365), - [anon_sym_c_short] = ACTIONS(365), - [anon_sym_c_ushort] = ACTIONS(365), - [anon_sym_c_int] = ACTIONS(365), - [anon_sym_c_uint] = ACTIONS(365), - [anon_sym_c_long] = ACTIONS(365), - [anon_sym_c_ulong] = ACTIONS(365), - [anon_sym_c_longlong] = ACTIONS(365), - [anon_sym_c_ulonglong] = ACTIONS(365), - [anon_sym_c_float] = ACTIONS(365), - [anon_sym_c_double] = ACTIONS(365), - [anon_sym_c_longdouble] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_defer] = ACTIONS(365), - [anon_sym_errdefer] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(365), - [anon_sym_expand] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_match] = ACTIONS(365), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(367), - [anon_sym_orelse] = ACTIONS(365), - [anon_sym_catch] = ACTIONS(365), - [anon_sym_or] = ACTIONS(365), - [anon_sym_and] = ACTIONS(365), - [anon_sym_EQ_EQ] = ACTIONS(367), - [anon_sym_BANG_EQ] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_xor] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT_PIPE] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_try] = ACTIONS(365), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [sym_none] = ACTIONS(365), - [sym_undefined] = ACTIONS(365), - [sym_sink] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [sym_multiline_string] = ACTIONS(367), - [sym_character] = ACTIONS(367), + [STATE(34)] = { + [sym_type] = STATE(2315), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(381), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_mut] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_void] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), + [anon_sym_anyopaque] = ACTIONS(381), + [anon_sym_bool] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_uint] = ACTIONS(381), + [anon_sym_float] = ACTIONS(381), + [anon_sym_range] = ACTIONS(381), + [anon_sym_i8] = ACTIONS(381), + [anon_sym_i16] = ACTIONS(381), + [anon_sym_i32] = ACTIONS(381), + [anon_sym_i64] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(381), + [anon_sym_u16] = ACTIONS(381), + [anon_sym_u32] = ACTIONS(381), + [anon_sym_u64] = ACTIONS(381), + [anon_sym_isize] = ACTIONS(381), + [anon_sym_usize] = ACTIONS(381), + [anon_sym_f32] = ACTIONS(381), + [anon_sym_f64] = ACTIONS(381), + [anon_sym_c_char] = ACTIONS(381), + [anon_sym_c_schar] = ACTIONS(381), + [anon_sym_c_uchar] = ACTIONS(381), + [anon_sym_c_short] = ACTIONS(381), + [anon_sym_c_ushort] = ACTIONS(381), + [anon_sym_c_int] = ACTIONS(381), + [anon_sym_c_uint] = ACTIONS(381), + [anon_sym_c_long] = ACTIONS(381), + [anon_sym_c_ulong] = ACTIONS(381), + [anon_sym_c_longlong] = ACTIONS(381), + [anon_sym_c_ulonglong] = ACTIONS(381), + [anon_sym_c_float] = ACTIONS(381), + [anon_sym_c_double] = ACTIONS(381), + [anon_sym_c_longdouble] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_return] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(381), + [anon_sym_break] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_defer] = ACTIONS(381), + [anon_sym_errdefer] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(381), + [anon_sym_expand] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_orelse] = ACTIONS(381), + [anon_sym_catch] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_and] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT_PIPE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_try] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_true] = ACTIONS(381), + [anon_sym_false] = ACTIONS(381), + [sym_none] = ACTIONS(381), + [sym_undefined] = ACTIONS(381), + [sym_sink] = ACTIONS(381), + [sym_integer] = ACTIONS(381), + [sym_float] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_multiline_string] = ACTIONS(383), + [sym_character] = ACTIONS(383), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), + [sym__newline] = ACTIONS(383), + }, + [STATE(35)] = { + [sym_type] = STATE(2331), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(377), + [anon_sym_func] = ACTIONS(377), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_mut] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_void] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_anyopaque] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_int] = ACTIONS(377), + [anon_sym_uint] = ACTIONS(377), + [anon_sym_float] = ACTIONS(377), + [anon_sym_range] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_c_char] = ACTIONS(377), + [anon_sym_c_schar] = ACTIONS(377), + [anon_sym_c_uchar] = ACTIONS(377), + [anon_sym_c_short] = ACTIONS(377), + [anon_sym_c_ushort] = ACTIONS(377), + [anon_sym_c_int] = ACTIONS(377), + [anon_sym_c_uint] = ACTIONS(377), + [anon_sym_c_long] = ACTIONS(377), + [anon_sym_c_ulong] = ACTIONS(377), + [anon_sym_c_longlong] = ACTIONS(377), + [anon_sym_c_ulonglong] = ACTIONS(377), + [anon_sym_c_float] = ACTIONS(377), + [anon_sym_c_double] = ACTIONS(377), + [anon_sym_c_longdouble] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_return] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(377), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_defer] = ACTIONS(377), + [anon_sym_errdefer] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(377), + [anon_sym_expand] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_orelse] = ACTIONS(377), + [anon_sym_catch] = ACTIONS(377), + [anon_sym_or] = ACTIONS(377), + [anon_sym_and] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_xor] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_LT_LT_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_try] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_none] = ACTIONS(377), + [sym_undefined] = ACTIONS(377), + [sym_sink] = ACTIONS(377), + [sym_integer] = ACTIONS(377), + [sym_float] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [sym_multiline_string] = ACTIONS(379), + [sym_character] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(379), }, [STATE(36)] = { - [sym_type] = STATE(3385), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_type] = STATE(3911), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(37)] = { - [sym_type] = STATE(3339), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(376), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_type] = STATE(3906), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(38)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(510), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(531), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(39)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(40)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [anon_sym_import] = ACTIONS(479), - [anon_sym_test] = ACTIONS(479), - [anon_sym_hide] = ACTIONS(479), - [anon_sym_func] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_struct] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(479), - [anon_sym_anyopaque] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_uint] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_range] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_c_char] = ACTIONS(479), - [anon_sym_c_schar] = ACTIONS(479), - [anon_sym_c_uchar] = ACTIONS(479), - [anon_sym_c_short] = ACTIONS(479), - [anon_sym_c_ushort] = ACTIONS(479), - [anon_sym_c_int] = ACTIONS(479), - [anon_sym_c_uint] = ACTIONS(479), - [anon_sym_c_long] = ACTIONS(479), - [anon_sym_c_ulong] = ACTIONS(479), - [anon_sym_c_longlong] = ACTIONS(479), - [anon_sym_c_ulonglong] = ACTIONS(479), - [anon_sym_c_float] = ACTIONS(479), - [anon_sym_c_double] = ACTIONS(479), - [anon_sym_c_longdouble] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_xor_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_defer] = ACTIONS(479), - [anon_sym_errdefer] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_expand] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_match] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_orelse] = ACTIONS(479), - [anon_sym_catch] = ACTIONS(479), - [anon_sym_or] = ACTIONS(479), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_try] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), - [sym_none] = ACTIONS(479), - [sym_undefined] = ACTIONS(479), - [sym_sink] = ACTIONS(479), - [sym_integer] = ACTIONS(479), - [sym_float] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(477), - [sym_multiline_string] = ACTIONS(477), - [sym_character] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - }, - [STATE(41)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [anon_sym_import] = ACTIONS(479), - [anon_sym_test] = ACTIONS(479), - [anon_sym_hide] = ACTIONS(479), - [anon_sym_func] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_struct] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(479), - [anon_sym_anyopaque] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_uint] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_range] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_c_char] = ACTIONS(479), - [anon_sym_c_schar] = ACTIONS(479), - [anon_sym_c_uchar] = ACTIONS(479), - [anon_sym_c_short] = ACTIONS(479), - [anon_sym_c_ushort] = ACTIONS(479), - [anon_sym_c_int] = ACTIONS(479), - [anon_sym_c_uint] = ACTIONS(479), - [anon_sym_c_long] = ACTIONS(479), - [anon_sym_c_ulong] = ACTIONS(479), - [anon_sym_c_longlong] = ACTIONS(479), - [anon_sym_c_ulonglong] = ACTIONS(479), - [anon_sym_c_float] = ACTIONS(479), - [anon_sym_c_double] = ACTIONS(479), - [anon_sym_c_longdouble] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_xor_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_defer] = ACTIONS(479), - [anon_sym_errdefer] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_expand] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_match] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_orelse] = ACTIONS(479), - [anon_sym_catch] = ACTIONS(479), - [anon_sym_or] = ACTIONS(479), - [anon_sym_and] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_try] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), - [sym_none] = ACTIONS(479), - [sym_undefined] = ACTIONS(479), - [sym_sink] = ACTIONS(479), - [sym_integer] = ACTIONS(479), - [sym_float] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(477), - [sym_multiline_string] = ACTIONS(477), - [sym_character] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - }, - [STATE(42)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(43)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_LT_LT_PIPE] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(44)] = { - [sym_variant_payload] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_test] = ACTIONS(483), - [anon_sym_hide] = ACTIONS(483), - [anon_sym_func] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_void] = ACTIONS(483), - [anon_sym_anyopaque] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_int] = ACTIONS(483), - [anon_sym_uint] = ACTIONS(483), - [anon_sym_float] = ACTIONS(483), - [anon_sym_range] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_c_char] = ACTIONS(483), - [anon_sym_c_schar] = ACTIONS(483), - [anon_sym_c_uchar] = ACTIONS(483), - [anon_sym_c_short] = ACTIONS(483), - [anon_sym_c_ushort] = ACTIONS(483), - [anon_sym_c_int] = ACTIONS(483), - [anon_sym_c_uint] = ACTIONS(483), - [anon_sym_c_long] = ACTIONS(483), - [anon_sym_c_ulong] = ACTIONS(483), - [anon_sym_c_longlong] = ACTIONS(483), - [anon_sym_c_ulonglong] = ACTIONS(483), - [anon_sym_c_float] = ACTIONS(483), - [anon_sym_c_double] = ACTIONS(483), - [anon_sym_c_longdouble] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_xor_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), - [anon_sym_return] = ACTIONS(483), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_defer] = ACTIONS(483), - [anon_sym_errdefer] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_expand] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_match] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_orelse] = ACTIONS(483), - [anon_sym_catch] = ACTIONS(483), - [anon_sym_or] = ACTIONS(483), - [anon_sym_and] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_xor] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_LT_LT_PIPE] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_try] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [sym_none] = ACTIONS(483), - [sym_undefined] = ACTIONS(483), - [sym_sink] = ACTIONS(483), - [sym_integer] = ACTIONS(483), - [sym_float] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [sym_multiline_string] = ACTIONS(481), - [sym_character] = ACTIONS(481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(481), - }, - [STATE(45)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_import] = ACTIONS(490), - [anon_sym_test] = ACTIONS(490), - [anon_sym_hide] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(488), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_defer] = ACTIONS(490), - [anon_sym_errdefer] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(46)] = { - [sym_argument_list] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [anon_sym_import] = ACTIONS(494), - [anon_sym_test] = ACTIONS(494), - [anon_sym_hide] = ACTIONS(494), - [anon_sym_func] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_struct] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_void] = ACTIONS(494), - [anon_sym_anyopaque] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_int] = ACTIONS(494), - [anon_sym_uint] = ACTIONS(494), - [anon_sym_float] = ACTIONS(494), - [anon_sym_range] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_c_char] = ACTIONS(494), - [anon_sym_c_schar] = ACTIONS(494), - [anon_sym_c_uchar] = ACTIONS(494), - [anon_sym_c_short] = ACTIONS(494), - [anon_sym_c_ushort] = ACTIONS(494), - [anon_sym_c_int] = ACTIONS(494), - [anon_sym_c_uint] = ACTIONS(494), - [anon_sym_c_long] = ACTIONS(494), - [anon_sym_c_ulong] = ACTIONS(494), - [anon_sym_c_longlong] = ACTIONS(494), - [anon_sym_c_ulonglong] = ACTIONS(494), - [anon_sym_c_float] = ACTIONS(494), - [anon_sym_c_double] = ACTIONS(494), - [anon_sym_c_longdouble] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_xor_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(492), - [anon_sym_return] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(494), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_defer] = ACTIONS(494), - [anon_sym_errdefer] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_else] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_expand] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_orelse] = ACTIONS(494), - [anon_sym_catch] = ACTIONS(494), - [anon_sym_or] = ACTIONS(494), - [anon_sym_and] = ACTIONS(494), [anon_sym_EQ_EQ] = ACTIONS(492), [anon_sym_BANG_EQ] = ACTIONS(492), [anon_sym_LT] = ACTIONS(494), [anon_sym_LT_EQ] = ACTIONS(492), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_xor] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_LT_LT_PIPE] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_try] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_none] = ACTIONS(494), - [sym_undefined] = ACTIONS(494), - [sym_sink] = ACTIONS(494), - [sym_integer] = ACTIONS(494), - [sym_float] = ACTIONS(492), - [anon_sym_DQUOTE] = ACTIONS(492), - [sym_multiline_string] = ACTIONS(492), - [sym_character] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(492), + [sym__newline] = ACTIONS(468), }, - [STATE(47)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(532), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [STATE(40)] = { + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(41)] = { + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_import] = ACTIONS(502), + [anon_sym_test] = ACTIONS(502), + [anon_sym_hide] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_xor_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(500), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_defer] = ACTIONS(502), + [anon_sym_errdefer] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_expand] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_try] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_none] = ACTIONS(502), + [sym_undefined] = ACTIONS(502), + [sym_sink] = ACTIONS(502), + [sym_integer] = ACTIONS(502), + [sym_float] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(500), + [sym_multiline_string] = ACTIONS(500), + [sym_character] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(42)] = { + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_import] = ACTIONS(502), + [anon_sym_test] = ACTIONS(502), + [anon_sym_hide] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_xor_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(500), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_defer] = ACTIONS(502), + [anon_sym_errdefer] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_expand] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_try] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_none] = ACTIONS(502), + [sym_undefined] = ACTIONS(502), + [sym_sink] = ACTIONS(502), + [sym_integer] = ACTIONS(502), + [sym_float] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(500), + [sym_multiline_string] = ACTIONS(500), + [sym_character] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(43)] = { + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(44)] = { + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_LT_LT_PIPE] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(45)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(545), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), + }, + [STATE(46)] = { + [sym_variant_payload] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [anon_sym_import] = ACTIONS(522), + [anon_sym_test] = ACTIONS(522), + [anon_sym_hide] = ACTIONS(522), + [anon_sym_func] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_void] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_anyopaque] = ACTIONS(522), + [anon_sym_bool] = ACTIONS(522), + [anon_sym_int] = ACTIONS(522), + [anon_sym_uint] = ACTIONS(522), + [anon_sym_float] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_i8] = ACTIONS(522), + [anon_sym_i16] = ACTIONS(522), + [anon_sym_i32] = ACTIONS(522), + [anon_sym_i64] = ACTIONS(522), + [anon_sym_u8] = ACTIONS(522), + [anon_sym_u16] = ACTIONS(522), + [anon_sym_u32] = ACTIONS(522), + [anon_sym_u64] = ACTIONS(522), + [anon_sym_isize] = ACTIONS(522), + [anon_sym_usize] = ACTIONS(522), + [anon_sym_f32] = ACTIONS(522), + [anon_sym_f64] = ACTIONS(522), + [anon_sym_c_char] = ACTIONS(522), + [anon_sym_c_schar] = ACTIONS(522), + [anon_sym_c_uchar] = ACTIONS(522), + [anon_sym_c_short] = ACTIONS(522), + [anon_sym_c_ushort] = ACTIONS(522), + [anon_sym_c_int] = ACTIONS(522), + [anon_sym_c_uint] = ACTIONS(522), + [anon_sym_c_long] = ACTIONS(522), + [anon_sym_c_ulong] = ACTIONS(522), + [anon_sym_c_longlong] = ACTIONS(522), + [anon_sym_c_ulonglong] = ACTIONS(522), + [anon_sym_c_float] = ACTIONS(522), + [anon_sym_c_double] = ACTIONS(522), + [anon_sym_c_longdouble] = ACTIONS(522), + [anon_sym_PLUS_EQ] = ACTIONS(520), + [anon_sym_DASH_EQ] = ACTIONS(520), + [anon_sym_STAR_EQ] = ACTIONS(520), + [anon_sym_SLASH_EQ] = ACTIONS(520), + [anon_sym_AMP_EQ] = ACTIONS(520), + [anon_sym_PIPE_EQ] = ACTIONS(520), + [anon_sym_xor_EQ] = ACTIONS(520), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_GT_GT_EQ] = ACTIONS(520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(520), + [anon_sym_return] = ACTIONS(522), + [anon_sym_yield] = ACTIONS(522), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_defer] = ACTIONS(522), + [anon_sym_errdefer] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_expand] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(520), + [anon_sym_orelse] = ACTIONS(522), + [anon_sym_catch] = ACTIONS(522), + [anon_sym_or] = ACTIONS(522), + [anon_sym_and] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_xor] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(522), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_try] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [sym_none] = ACTIONS(522), + [sym_undefined] = ACTIONS(522), + [sym_sink] = ACTIONS(522), + [sym_integer] = ACTIONS(522), + [sym_float] = ACTIONS(520), + [anon_sym_DQUOTE] = ACTIONS(520), + [sym_multiline_string] = ACTIONS(520), + [sym_character] = ACTIONS(520), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(520), + }, + [STATE(47)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(536), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(48)] = { - [aux_sym_type_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(502), - [sym_identifier] = ACTIONS(504), - [anon_sym_import] = ACTIONS(504), - [anon_sym_test] = ACTIONS(504), - [anon_sym_hide] = ACTIONS(504), - [anon_sym_func] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_struct] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_DOLLAR] = ACTIONS(502), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_QMARK] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_void] = ACTIONS(504), - [anon_sym_anyopaque] = ACTIONS(504), - [anon_sym_bool] = ACTIONS(504), - [anon_sym_int] = ACTIONS(504), - [anon_sym_uint] = ACTIONS(504), - [anon_sym_float] = ACTIONS(504), - [anon_sym_range] = ACTIONS(504), - [anon_sym_i8] = ACTIONS(504), - [anon_sym_i16] = ACTIONS(504), - [anon_sym_i32] = ACTIONS(504), - [anon_sym_i64] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(504), - [anon_sym_u16] = ACTIONS(504), - [anon_sym_u32] = ACTIONS(504), - [anon_sym_u64] = ACTIONS(504), - [anon_sym_isize] = ACTIONS(504), - [anon_sym_usize] = ACTIONS(504), - [anon_sym_f32] = ACTIONS(504), - [anon_sym_f64] = ACTIONS(504), - [anon_sym_c_char] = ACTIONS(504), - [anon_sym_c_schar] = ACTIONS(504), - [anon_sym_c_uchar] = ACTIONS(504), - [anon_sym_c_short] = ACTIONS(504), - [anon_sym_c_ushort] = ACTIONS(504), - [anon_sym_c_int] = ACTIONS(504), - [anon_sym_c_uint] = ACTIONS(504), - [anon_sym_c_long] = ACTIONS(504), - [anon_sym_c_ulong] = ACTIONS(504), - [anon_sym_c_longlong] = ACTIONS(504), - [anon_sym_c_ulonglong] = ACTIONS(504), - [anon_sym_c_float] = ACTIONS(504), - [anon_sym_c_double] = ACTIONS(504), - [anon_sym_c_longdouble] = ACTIONS(504), - [anon_sym_PLUS_EQ] = ACTIONS(502), - [anon_sym_DASH_EQ] = ACTIONS(502), - [anon_sym_STAR_EQ] = ACTIONS(502), - [anon_sym_SLASH_EQ] = ACTIONS(502), - [anon_sym_AMP_EQ] = ACTIONS(502), - [anon_sym_PIPE_EQ] = ACTIONS(502), - [anon_sym_xor_EQ] = ACTIONS(502), - [anon_sym_LT_LT_EQ] = ACTIONS(502), - [anon_sym_GT_GT_EQ] = ACTIONS(502), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(502), - [anon_sym_return] = ACTIONS(504), - [anon_sym_yield] = ACTIONS(504), - [anon_sym_break] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(504), - [anon_sym_defer] = ACTIONS(504), - [anon_sym_errdefer] = ACTIONS(504), - [anon_sym_if] = ACTIONS(504), - [anon_sym_else] = ACTIONS(504), - [anon_sym_while] = ACTIONS(504), - [anon_sym_expand] = ACTIONS(504), - [anon_sym_for] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(502), - [anon_sym_orelse] = ACTIONS(504), - [anon_sym_catch] = ACTIONS(504), - [anon_sym_or] = ACTIONS(504), - [anon_sym_and] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_xor] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_LT_LT_PIPE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_try] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_true] = ACTIONS(504), - [anon_sym_false] = ACTIONS(504), - [sym_none] = ACTIONS(504), - [sym_undefined] = ACTIONS(504), - [sym_sink] = ACTIONS(504), - [sym_integer] = ACTIONS(504), - [sym_float] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(502), - [sym_multiline_string] = ACTIONS(502), - [sym_character] = ACTIONS(502), + [sym_argument_list] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(533), + [sym_identifier] = ACTIONS(535), + [anon_sym_import] = ACTIONS(535), + [anon_sym_test] = ACTIONS(535), + [anon_sym_hide] = ACTIONS(535), + [anon_sym_func] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_void] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_anyopaque] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_int] = ACTIONS(535), + [anon_sym_uint] = ACTIONS(535), + [anon_sym_float] = ACTIONS(535), + [anon_sym_range] = ACTIONS(535), + [anon_sym_i8] = ACTIONS(535), + [anon_sym_i16] = ACTIONS(535), + [anon_sym_i32] = ACTIONS(535), + [anon_sym_i64] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(535), + [anon_sym_u16] = ACTIONS(535), + [anon_sym_u32] = ACTIONS(535), + [anon_sym_u64] = ACTIONS(535), + [anon_sym_isize] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_f32] = ACTIONS(535), + [anon_sym_f64] = ACTIONS(535), + [anon_sym_c_char] = ACTIONS(535), + [anon_sym_c_schar] = ACTIONS(535), + [anon_sym_c_uchar] = ACTIONS(535), + [anon_sym_c_short] = ACTIONS(535), + [anon_sym_c_ushort] = ACTIONS(535), + [anon_sym_c_int] = ACTIONS(535), + [anon_sym_c_uint] = ACTIONS(535), + [anon_sym_c_long] = ACTIONS(535), + [anon_sym_c_ulong] = ACTIONS(535), + [anon_sym_c_longlong] = ACTIONS(535), + [anon_sym_c_ulonglong] = ACTIONS(535), + [anon_sym_c_float] = ACTIONS(535), + [anon_sym_c_double] = ACTIONS(535), + [anon_sym_c_longdouble] = ACTIONS(535), + [anon_sym_PLUS_EQ] = ACTIONS(533), + [anon_sym_DASH_EQ] = ACTIONS(533), + [anon_sym_STAR_EQ] = ACTIONS(533), + [anon_sym_SLASH_EQ] = ACTIONS(533), + [anon_sym_AMP_EQ] = ACTIONS(533), + [anon_sym_PIPE_EQ] = ACTIONS(533), + [anon_sym_xor_EQ] = ACTIONS(533), + [anon_sym_LT_LT_EQ] = ACTIONS(533), + [anon_sym_GT_GT_EQ] = ACTIONS(533), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_defer] = ACTIONS(535), + [anon_sym_errdefer] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_else] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [anon_sym_expand] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_match] = ACTIONS(535), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(533), + [anon_sym_orelse] = ACTIONS(535), + [anon_sym_catch] = ACTIONS(535), + [anon_sym_or] = ACTIONS(535), + [anon_sym_and] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_xor] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_LT_LT_PIPE] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_try] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [sym_none] = ACTIONS(535), + [sym_undefined] = ACTIONS(535), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(535), + [sym_float] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(533), + [sym_multiline_string] = ACTIONS(533), + [sym_character] = ACTIONS(533), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(502), + [sym__newline] = ACTIONS(533), }, [STATE(49)] = { [aux_sym_type_repeat1] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_test] = ACTIONS(508), - [anon_sym_hide] = ACTIONS(508), - [anon_sym_func] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_DOLLAR] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_void] = ACTIONS(508), - [anon_sym_anyopaque] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_int] = ACTIONS(508), - [anon_sym_uint] = ACTIONS(508), - [anon_sym_float] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_c_char] = ACTIONS(508), - [anon_sym_c_schar] = ACTIONS(508), - [anon_sym_c_uchar] = ACTIONS(508), - [anon_sym_c_short] = ACTIONS(508), - [anon_sym_c_ushort] = ACTIONS(508), - [anon_sym_c_int] = ACTIONS(508), - [anon_sym_c_uint] = ACTIONS(508), - [anon_sym_c_long] = ACTIONS(508), - [anon_sym_c_ulong] = ACTIONS(508), - [anon_sym_c_longlong] = ACTIONS(508), - [anon_sym_c_ulonglong] = ACTIONS(508), - [anon_sym_c_float] = ACTIONS(508), - [anon_sym_c_double] = ACTIONS(508), - [anon_sym_c_longdouble] = ACTIONS(508), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [anon_sym_DASH_EQ] = ACTIONS(506), - [anon_sym_STAR_EQ] = ACTIONS(506), - [anon_sym_SLASH_EQ] = ACTIONS(506), - [anon_sym_AMP_EQ] = ACTIONS(506), - [anon_sym_PIPE_EQ] = ACTIONS(506), - [anon_sym_xor_EQ] = ACTIONS(506), - [anon_sym_LT_LT_EQ] = ACTIONS(506), - [anon_sym_GT_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(506), - [anon_sym_return] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_defer] = ACTIONS(508), - [anon_sym_errdefer] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_expand] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_orelse] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_or] = ACTIONS(508), - [anon_sym_and] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_xor] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_LT_LT_PIPE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_try] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [sym_none] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [sym_sink] = ACTIONS(508), - [sym_integer] = ACTIONS(508), - [sym_float] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(506), - [sym_multiline_string] = ACTIONS(506), - [sym_character] = ACTIONS(506), + [ts_builtin_sym_end] = ACTIONS(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_import] = ACTIONS(539), + [anon_sym_test] = ACTIONS(539), + [anon_sym_hide] = ACTIONS(539), + [anon_sym_func] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_void] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_anyopaque] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_int] = ACTIONS(539), + [anon_sym_uint] = ACTIONS(539), + [anon_sym_float] = ACTIONS(539), + [anon_sym_range] = ACTIONS(539), + [anon_sym_i8] = ACTIONS(539), + [anon_sym_i16] = ACTIONS(539), + [anon_sym_i32] = ACTIONS(539), + [anon_sym_i64] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(539), + [anon_sym_u16] = ACTIONS(539), + [anon_sym_u32] = ACTIONS(539), + [anon_sym_u64] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_c_char] = ACTIONS(539), + [anon_sym_c_schar] = ACTIONS(539), + [anon_sym_c_uchar] = ACTIONS(539), + [anon_sym_c_short] = ACTIONS(539), + [anon_sym_c_ushort] = ACTIONS(539), + [anon_sym_c_int] = ACTIONS(539), + [anon_sym_c_uint] = ACTIONS(539), + [anon_sym_c_long] = ACTIONS(539), + [anon_sym_c_ulong] = ACTIONS(539), + [anon_sym_c_longlong] = ACTIONS(539), + [anon_sym_c_ulonglong] = ACTIONS(539), + [anon_sym_c_float] = ACTIONS(539), + [anon_sym_c_double] = ACTIONS(539), + [anon_sym_c_longdouble] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_xor_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_yield] = ACTIONS(539), + [anon_sym_break] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_defer] = ACTIONS(539), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_else] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [anon_sym_expand] = ACTIONS(539), + [anon_sym_for] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_orelse] = ACTIONS(539), + [anon_sym_catch] = ACTIONS(539), + [anon_sym_or] = ACTIONS(539), + [anon_sym_and] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_xor] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(539), + [anon_sym_LT_LT_PIPE] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_try] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [sym_none] = ACTIONS(539), + [sym_undefined] = ACTIONS(539), + [sym_sink] = ACTIONS(539), + [sym_integer] = ACTIONS(539), + [sym_float] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(537), + [sym_multiline_string] = ACTIONS(537), + [sym_character] = ACTIONS(537), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(506), + [sym__newline] = ACTIONS(537), }, [STATE(50)] = { - [aux_sym_type_repeat1] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(513), - [sym_identifier] = ACTIONS(515), - [anon_sym_import] = ACTIONS(515), - [anon_sym_test] = ACTIONS(515), - [anon_sym_hide] = ACTIONS(515), - [anon_sym_func] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(515), - [anon_sym_struct] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(513), - [anon_sym_COMMA] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_PIPE] = ACTIONS(515), - [anon_sym_QMARK] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(515), - [anon_sym_LBRACK] = ACTIONS(513), - [anon_sym_void] = ACTIONS(515), - [anon_sym_anyopaque] = ACTIONS(515), - [anon_sym_bool] = ACTIONS(515), - [anon_sym_int] = ACTIONS(515), - [anon_sym_uint] = ACTIONS(515), - [anon_sym_float] = ACTIONS(515), - [anon_sym_range] = ACTIONS(515), - [anon_sym_i8] = ACTIONS(515), - [anon_sym_i16] = ACTIONS(515), - [anon_sym_i32] = ACTIONS(515), - [anon_sym_i64] = ACTIONS(515), - [anon_sym_u8] = ACTIONS(515), - [anon_sym_u16] = ACTIONS(515), - [anon_sym_u32] = ACTIONS(515), - [anon_sym_u64] = ACTIONS(515), - [anon_sym_isize] = ACTIONS(515), - [anon_sym_usize] = ACTIONS(515), - [anon_sym_f32] = ACTIONS(515), - [anon_sym_f64] = ACTIONS(515), - [anon_sym_c_char] = ACTIONS(515), - [anon_sym_c_schar] = ACTIONS(515), - [anon_sym_c_uchar] = ACTIONS(515), - [anon_sym_c_short] = ACTIONS(515), - [anon_sym_c_ushort] = ACTIONS(515), - [anon_sym_c_int] = ACTIONS(515), - [anon_sym_c_uint] = ACTIONS(515), - [anon_sym_c_long] = ACTIONS(515), - [anon_sym_c_ulong] = ACTIONS(515), - [anon_sym_c_longlong] = ACTIONS(515), - [anon_sym_c_ulonglong] = ACTIONS(515), - [anon_sym_c_float] = ACTIONS(515), - [anon_sym_c_double] = ACTIONS(515), - [anon_sym_c_longdouble] = ACTIONS(515), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [anon_sym_DASH_EQ] = ACTIONS(513), - [anon_sym_STAR_EQ] = ACTIONS(513), - [anon_sym_SLASH_EQ] = ACTIONS(513), - [anon_sym_AMP_EQ] = ACTIONS(513), - [anon_sym_PIPE_EQ] = ACTIONS(513), - [anon_sym_xor_EQ] = ACTIONS(513), - [anon_sym_LT_LT_EQ] = ACTIONS(513), - [anon_sym_GT_GT_EQ] = ACTIONS(513), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_break] = ACTIONS(515), - [anon_sym_continue] = ACTIONS(515), - [anon_sym_defer] = ACTIONS(515), - [anon_sym_errdefer] = ACTIONS(515), - [anon_sym_if] = ACTIONS(515), - [anon_sym_else] = ACTIONS(515), - [anon_sym_while] = ACTIONS(515), - [anon_sym_expand] = ACTIONS(515), - [anon_sym_for] = ACTIONS(515), - [anon_sym_match] = ACTIONS(515), - [anon_sym_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(513), - [anon_sym_orelse] = ACTIONS(515), - [anon_sym_catch] = ACTIONS(515), - [anon_sym_or] = ACTIONS(515), - [anon_sym_and] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_xor] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_LT_LT_PIPE] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_SLASH] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_try] = ACTIONS(515), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_true] = ACTIONS(515), - [anon_sym_false] = ACTIONS(515), - [sym_none] = ACTIONS(515), - [sym_undefined] = ACTIONS(515), - [sym_sink] = ACTIONS(515), - [sym_integer] = ACTIONS(515), - [sym_float] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_multiline_string] = ACTIONS(513), - [sym_character] = ACTIONS(513), + [aux_sym_type_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_test] = ACTIONS(546), + [anon_sym_hide] = ACTIONS(546), + [anon_sym_func] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_void] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_anyopaque] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_int] = ACTIONS(546), + [anon_sym_uint] = ACTIONS(546), + [anon_sym_float] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_c_char] = ACTIONS(546), + [anon_sym_c_schar] = ACTIONS(546), + [anon_sym_c_uchar] = ACTIONS(546), + [anon_sym_c_short] = ACTIONS(546), + [anon_sym_c_ushort] = ACTIONS(546), + [anon_sym_c_int] = ACTIONS(546), + [anon_sym_c_uint] = ACTIONS(546), + [anon_sym_c_long] = ACTIONS(546), + [anon_sym_c_ulong] = ACTIONS(546), + [anon_sym_c_longlong] = ACTIONS(546), + [anon_sym_c_ulonglong] = ACTIONS(546), + [anon_sym_c_float] = ACTIONS(546), + [anon_sym_c_double] = ACTIONS(546), + [anon_sym_c_longdouble] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_xor_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(544), + [anon_sym_return] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_defer] = ACTIONS(546), + [anon_sym_errdefer] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_expand] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_orelse] = ACTIONS(546), + [anon_sym_catch] = ACTIONS(546), + [anon_sym_or] = ACTIONS(546), + [anon_sym_and] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_xor] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_LT_LT_PIPE] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_try] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_none] = ACTIONS(546), + [sym_undefined] = ACTIONS(546), + [sym_sink] = ACTIONS(546), + [sym_integer] = ACTIONS(546), + [sym_float] = ACTIONS(544), + [anon_sym_DQUOTE] = ACTIONS(544), + [sym_multiline_string] = ACTIONS(544), + [sym_character] = ACTIONS(544), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(513), + [sym__newline] = ACTIONS(544), }, [STATE(51)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(93), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(583), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1104), - [aux_sym_block_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [aux_sym_type_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [anon_sym_import] = ACTIONS(550), + [anon_sym_test] = ACTIONS(550), + [anon_sym_hide] = ACTIONS(550), + [anon_sym_func] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_void] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_anyopaque] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_int] = ACTIONS(550), + [anon_sym_uint] = ACTIONS(550), + [anon_sym_float] = ACTIONS(550), + [anon_sym_range] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_c_char] = ACTIONS(550), + [anon_sym_c_schar] = ACTIONS(550), + [anon_sym_c_uchar] = ACTIONS(550), + [anon_sym_c_short] = ACTIONS(550), + [anon_sym_c_ushort] = ACTIONS(550), + [anon_sym_c_int] = ACTIONS(550), + [anon_sym_c_uint] = ACTIONS(550), + [anon_sym_c_long] = ACTIONS(550), + [anon_sym_c_ulong] = ACTIONS(550), + [anon_sym_c_longlong] = ACTIONS(550), + [anon_sym_c_ulonglong] = ACTIONS(550), + [anon_sym_c_float] = ACTIONS(550), + [anon_sym_c_double] = ACTIONS(550), + [anon_sym_c_longdouble] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_xor_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(548), + [anon_sym_return] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_defer] = ACTIONS(550), + [anon_sym_errdefer] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_else] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_expand] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_orelse] = ACTIONS(550), + [anon_sym_catch] = ACTIONS(550), + [anon_sym_or] = ACTIONS(550), + [anon_sym_and] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_xor] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_LT_LT_PIPE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_try] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [sym_none] = ACTIONS(550), + [sym_undefined] = ACTIONS(550), + [sym_sink] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [sym_float] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(548), + [sym_multiline_string] = ACTIONS(548), + [sym_character] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(548), }, [STATE(52)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(520), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(175), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(595), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1133), + [aux_sym_block_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(539), + [sym__newline] = ACTIONS(554), }, [STATE(53)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(523), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [anon_sym_import] = ACTIONS(558), + [anon_sym_test] = ACTIONS(558), + [anon_sym_hide] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_defer] = ACTIONS(558), + [anon_sym_errdefer] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(556), }, [STATE(54)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(513), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(552), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(541), + [sym__newline] = ACTIONS(560), }, [STATE(55)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(543), - [sym_identifier] = ACTIONS(545), - [anon_sym_import] = ACTIONS(545), - [anon_sym_test] = ACTIONS(545), - [anon_sym_hide] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_defer] = ACTIONS(545), - [anon_sym_errdefer] = ACTIONS(545), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(545), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(545), - [anon_sym_match] = ACTIONS(545), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(571), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(466), }, [STATE(56)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(530), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(556), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(547), + [sym__newline] = ACTIONS(466), }, [STATE(57)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_LT_LT_PIPE] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(524), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(564), }, [STATE(58)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_import] = ACTIONS(568), + [anon_sym_test] = ACTIONS(568), + [anon_sym_hide] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_defer] = ACTIONS(568), + [anon_sym_errdefer] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(566), }, [STATE(59)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_LT_LT_PIPE] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_LT_LT_PIPE] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(570), }, [STATE(60)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(570), }, [STATE(61)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_LT_LT_PIPE] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(570), }, [STATE(62)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(521), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(175), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(603), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1161), + [aux_sym_block_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(557), + [sym__newline] = ACTIONS(554), }, [STATE(63)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(347), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(591), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1048), - [aux_sym_block_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(570), }, [STATE(64)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [anon_sym_import] = ACTIONS(563), - [anon_sym_test] = ACTIONS(563), - [anon_sym_hide] = ACTIONS(563), - [anon_sym_func] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(563), - [anon_sym_anyopaque] = ACTIONS(563), - [anon_sym_bool] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_uint] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_range] = ACTIONS(563), - [anon_sym_i8] = ACTIONS(563), - [anon_sym_i16] = ACTIONS(563), - [anon_sym_i32] = ACTIONS(563), - [anon_sym_i64] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(563), - [anon_sym_u16] = ACTIONS(563), - [anon_sym_u32] = ACTIONS(563), - [anon_sym_u64] = ACTIONS(563), - [anon_sym_isize] = ACTIONS(563), - [anon_sym_usize] = ACTIONS(563), - [anon_sym_f32] = ACTIONS(563), - [anon_sym_f64] = ACTIONS(563), - [anon_sym_c_char] = ACTIONS(563), - [anon_sym_c_schar] = ACTIONS(563), - [anon_sym_c_uchar] = ACTIONS(563), - [anon_sym_c_short] = ACTIONS(563), - [anon_sym_c_ushort] = ACTIONS(563), - [anon_sym_c_int] = ACTIONS(563), - [anon_sym_c_uint] = ACTIONS(563), - [anon_sym_c_long] = ACTIONS(563), - [anon_sym_c_ulong] = ACTIONS(563), - [anon_sym_c_longlong] = ACTIONS(563), - [anon_sym_c_ulonglong] = ACTIONS(563), - [anon_sym_c_float] = ACTIONS(563), - [anon_sym_c_double] = ACTIONS(563), - [anon_sym_c_longdouble] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_xor_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_errdefer] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_expand] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(561), - [anon_sym_orelse] = ACTIONS(563), - [anon_sym_catch] = ACTIONS(563), - [anon_sym_or] = ACTIONS(563), - [anon_sym_and] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(563), - [anon_sym_false] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [sym_sink] = ACTIONS(563), - [sym_integer] = ACTIONS(563), - [sym_float] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(561), - [sym_multiline_string] = ACTIONS(561), - [sym_character] = ACTIONS(561), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(578), + [anon_sym_test] = ACTIONS(578), + [anon_sym_hide] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_xor_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_defer] = ACTIONS(578), + [anon_sym_errdefer] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_expand] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_match] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_try] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [sym_none] = ACTIONS(578), + [sym_undefined] = ACTIONS(578), + [sym_sink] = ACTIONS(578), + [sym_integer] = ACTIONS(578), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(561), + [sym__newline] = ACTIONS(576), }, [STATE(65)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(373), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(590), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1089), + [aux_sym_block_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(554), }, [STATE(66)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_AMP_EQ] = ACTIONS(549), - [anon_sym_PIPE_EQ] = ACTIONS(549), - [anon_sym_xor_EQ] = ACTIONS(549), - [anon_sym_LT_LT_EQ] = ACTIONS(549), - [anon_sym_GT_GT_EQ] = ACTIONS(549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_LT_LT_PIPE] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(578), + [anon_sym_test] = ACTIONS(578), + [anon_sym_hide] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_xor_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_defer] = ACTIONS(578), + [anon_sym_errdefer] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_expand] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_match] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_try] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [sym_none] = ACTIONS(578), + [sym_undefined] = ACTIONS(578), + [sym_sink] = ACTIONS(578), + [sym_integer] = ACTIONS(578), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(576), }, [STATE(67)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(526), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(570), }, [STATE(68)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(360), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(583), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1104), - [aux_sym_block_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_LT_LT_PIPE] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(570), }, [STATE(69)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(515), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(534), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(47), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -20849,7 +22191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -20861,1191 +22203,1202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(582), }, [STATE(70)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_LT_LT_PIPE] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(381), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(595), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1133), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(554), }, [STATE(71)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(93), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(591), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1048), - [aux_sym_block_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(554), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(584), }, [STATE(72)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(596), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1195), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_LT_LT_PIPE] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(468), }, [STATE(73)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(567), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(389), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(596), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1177), + [aux_sym_block_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(567), + [sym__newline] = ACTIONS(554), }, [STATE(74)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(540), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(175), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(590), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1089), + [aux_sym_block_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(554), }, [STATE(75)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(544), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(326), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(603), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1161), + [aux_sym_block_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(569), + [sym__newline] = ACTIONS(554), }, [STATE(76)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(93), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(596), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1195), - [aux_sym_block_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(566), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(588), }, [STATE(77)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(568), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(466), }, [STATE(78)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(551), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(519), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(604), }, [STATE(79)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(549), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(521), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(585), + [sym__newline] = ACTIONS(466), }, [STATE(80)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(557), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(227), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(563), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -22078,5529 +23431,11455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(587), + [sym__newline] = ACTIONS(466), }, [STATE(81)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(559), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(529), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(620), }, [STATE(82)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_LT_LT_PIPE] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(544), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(622), }, [STATE(83)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_xor_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(547), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(466), }, [STATE(84)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(563), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), + [sym__newline] = ACTIONS(468), }, [STATE(85)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_error_capture] = STATE(565), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_xor_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(468), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_LT_LT_PIPE] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(468), }, [STATE(86)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [anon_sym_import] = ACTIONS(563), - [anon_sym_test] = ACTIONS(563), - [anon_sym_hide] = ACTIONS(563), - [anon_sym_func] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(563), - [anon_sym_anyopaque] = ACTIONS(563), - [anon_sym_bool] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_uint] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_range] = ACTIONS(563), - [anon_sym_i8] = ACTIONS(563), - [anon_sym_i16] = ACTIONS(563), - [anon_sym_i32] = ACTIONS(563), - [anon_sym_i64] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(563), - [anon_sym_u16] = ACTIONS(563), - [anon_sym_u32] = ACTIONS(563), - [anon_sym_u64] = ACTIONS(563), - [anon_sym_isize] = ACTIONS(563), - [anon_sym_usize] = ACTIONS(563), - [anon_sym_f32] = ACTIONS(563), - [anon_sym_f64] = ACTIONS(563), - [anon_sym_c_char] = ACTIONS(563), - [anon_sym_c_schar] = ACTIONS(563), - [anon_sym_c_uchar] = ACTIONS(563), - [anon_sym_c_short] = ACTIONS(563), - [anon_sym_c_ushort] = ACTIONS(563), - [anon_sym_c_int] = ACTIONS(563), - [anon_sym_c_uint] = ACTIONS(563), - [anon_sym_c_long] = ACTIONS(563), - [anon_sym_c_ulong] = ACTIONS(563), - [anon_sym_c_longlong] = ACTIONS(563), - [anon_sym_c_ulonglong] = ACTIONS(563), - [anon_sym_c_float] = ACTIONS(563), - [anon_sym_c_double] = ACTIONS(563), - [anon_sym_c_longdouble] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_xor_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(561), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_errdefer] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_expand] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(561), - [anon_sym_orelse] = ACTIONS(563), - [anon_sym_catch] = ACTIONS(563), - [anon_sym_or] = ACTIONS(563), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(563), - [anon_sym_false] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [sym_sink] = ACTIONS(563), - [sym_integer] = ACTIONS(563), - [sym_float] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(561), - [sym_multiline_string] = ACTIONS(561), - [sym_character] = ACTIONS(561), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_error_capture] = STATE(561), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(561), + [sym__newline] = ACTIONS(624), }, [STATE(87)] = { - [ts_builtin_sym_end] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_test] = ACTIONS(607), - [anon_sym_hide] = ACTIONS(607), - [anon_sym_func] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(605), - [anon_sym_void] = ACTIONS(607), - [anon_sym_anyopaque] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_int] = ACTIONS(607), - [anon_sym_uint] = ACTIONS(607), - [anon_sym_float] = ACTIONS(607), - [anon_sym_range] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_c_char] = ACTIONS(607), - [anon_sym_c_schar] = ACTIONS(607), - [anon_sym_c_uchar] = ACTIONS(607), - [anon_sym_c_short] = ACTIONS(607), - [anon_sym_c_ushort] = ACTIONS(607), - [anon_sym_c_int] = ACTIONS(607), - [anon_sym_c_uint] = ACTIONS(607), - [anon_sym_c_long] = ACTIONS(607), - [anon_sym_c_ulong] = ACTIONS(607), - [anon_sym_c_longlong] = ACTIONS(607), - [anon_sym_c_ulonglong] = ACTIONS(607), - [anon_sym_c_float] = ACTIONS(607), - [anon_sym_c_double] = ACTIONS(607), - [anon_sym_c_longdouble] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(605), - [anon_sym_DASH_EQ] = ACTIONS(605), - [anon_sym_STAR_EQ] = ACTIONS(605), - [anon_sym_SLASH_EQ] = ACTIONS(605), - [anon_sym_AMP_EQ] = ACTIONS(605), - [anon_sym_PIPE_EQ] = ACTIONS(605), - [anon_sym_xor_EQ] = ACTIONS(605), - [anon_sym_LT_LT_EQ] = ACTIONS(605), - [anon_sym_GT_GT_EQ] = ACTIONS(605), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(605), - [anon_sym_return] = ACTIONS(607), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_errdefer] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_expand] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(605), - [anon_sym_orelse] = ACTIONS(607), - [anon_sym_catch] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_and] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_xor] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_LT_LT_PIPE] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_try] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_true] = ACTIONS(607), - [anon_sym_false] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_undefined] = ACTIONS(607), - [sym_sink] = ACTIONS(607), - [sym_integer] = ACTIONS(607), - [sym_float] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_multiline_string] = ACTIONS(605), - [sym_character] = ACTIONS(605), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_xor_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(605), + [sym__newline] = ACTIONS(570), }, [STATE(88)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [anon_sym_import] = ACTIONS(628), + [anon_sym_test] = ACTIONS(628), + [anon_sym_hide] = ACTIONS(628), + [anon_sym_func] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(628), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_void] = ACTIONS(628), + [anon_sym_type] = ACTIONS(628), + [anon_sym_anyopaque] = ACTIONS(628), + [anon_sym_bool] = ACTIONS(628), + [anon_sym_int] = ACTIONS(628), + [anon_sym_uint] = ACTIONS(628), + [anon_sym_float] = ACTIONS(628), + [anon_sym_range] = ACTIONS(628), + [anon_sym_i8] = ACTIONS(628), + [anon_sym_i16] = ACTIONS(628), + [anon_sym_i32] = ACTIONS(628), + [anon_sym_i64] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(628), + [anon_sym_u16] = ACTIONS(628), + [anon_sym_u32] = ACTIONS(628), + [anon_sym_u64] = ACTIONS(628), + [anon_sym_isize] = ACTIONS(628), + [anon_sym_usize] = ACTIONS(628), + [anon_sym_f32] = ACTIONS(628), + [anon_sym_f64] = ACTIONS(628), + [anon_sym_c_char] = ACTIONS(628), + [anon_sym_c_schar] = ACTIONS(628), + [anon_sym_c_uchar] = ACTIONS(628), + [anon_sym_c_short] = ACTIONS(628), + [anon_sym_c_ushort] = ACTIONS(628), + [anon_sym_c_int] = ACTIONS(628), + [anon_sym_c_uint] = ACTIONS(628), + [anon_sym_c_long] = ACTIONS(628), + [anon_sym_c_ulong] = ACTIONS(628), + [anon_sym_c_longlong] = ACTIONS(628), + [anon_sym_c_ulonglong] = ACTIONS(628), + [anon_sym_c_float] = ACTIONS(628), + [anon_sym_c_double] = ACTIONS(628), + [anon_sym_c_longdouble] = ACTIONS(628), + [anon_sym_PLUS_EQ] = ACTIONS(626), + [anon_sym_DASH_EQ] = ACTIONS(626), + [anon_sym_STAR_EQ] = ACTIONS(626), + [anon_sym_SLASH_EQ] = ACTIONS(626), + [anon_sym_AMP_EQ] = ACTIONS(626), + [anon_sym_PIPE_EQ] = ACTIONS(626), + [anon_sym_xor_EQ] = ACTIONS(626), + [anon_sym_LT_LT_EQ] = ACTIONS(626), + [anon_sym_GT_GT_EQ] = ACTIONS(626), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_defer] = ACTIONS(628), + [anon_sym_errdefer] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_expand] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_match] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(626), + [anon_sym_orelse] = ACTIONS(628), + [anon_sym_catch] = ACTIONS(628), + [anon_sym_or] = ACTIONS(628), + [anon_sym_and] = ACTIONS(628), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(628), + [anon_sym_xor] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(628), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LT_LT_PIPE] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(628), + [anon_sym_SLASH] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_try] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(628), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_true] = ACTIONS(628), + [anon_sym_false] = ACTIONS(628), + [sym_none] = ACTIONS(628), + [sym_undefined] = ACTIONS(628), + [sym_sink] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_multiline_string] = ACTIONS(626), + [sym_character] = ACTIONS(626), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(626), }, [STATE(89)] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(611), - [anon_sym_import] = ACTIONS(611), - [anon_sym_test] = ACTIONS(611), - [anon_sym_hide] = ACTIONS(611), - [anon_sym_func] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_void] = ACTIONS(611), - [anon_sym_anyopaque] = ACTIONS(611), - [anon_sym_bool] = ACTIONS(611), - [anon_sym_int] = ACTIONS(611), - [anon_sym_uint] = ACTIONS(611), - [anon_sym_float] = ACTIONS(611), - [anon_sym_range] = ACTIONS(611), - [anon_sym_i8] = ACTIONS(611), - [anon_sym_i16] = ACTIONS(611), - [anon_sym_i32] = ACTIONS(611), - [anon_sym_i64] = ACTIONS(611), - [anon_sym_u8] = ACTIONS(611), - [anon_sym_u16] = ACTIONS(611), - [anon_sym_u32] = ACTIONS(611), - [anon_sym_u64] = ACTIONS(611), - [anon_sym_isize] = ACTIONS(611), - [anon_sym_usize] = ACTIONS(611), - [anon_sym_f32] = ACTIONS(611), - [anon_sym_f64] = ACTIONS(611), - [anon_sym_c_char] = ACTIONS(611), - [anon_sym_c_schar] = ACTIONS(611), - [anon_sym_c_uchar] = ACTIONS(611), - [anon_sym_c_short] = ACTIONS(611), - [anon_sym_c_ushort] = ACTIONS(611), - [anon_sym_c_int] = ACTIONS(611), - [anon_sym_c_uint] = ACTIONS(611), - [anon_sym_c_long] = ACTIONS(611), - [anon_sym_c_ulong] = ACTIONS(611), - [anon_sym_c_longlong] = ACTIONS(611), - [anon_sym_c_ulonglong] = ACTIONS(611), - [anon_sym_c_float] = ACTIONS(611), - [anon_sym_c_double] = ACTIONS(611), - [anon_sym_c_longdouble] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_xor_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(609), - [anon_sym_return] = ACTIONS(611), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_defer] = ACTIONS(611), - [anon_sym_errdefer] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_else] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_expand] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_match] = ACTIONS(611), - [anon_sym_DOT_DOT] = ACTIONS(611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_orelse] = ACTIONS(611), - [anon_sym_catch] = ACTIONS(611), - [anon_sym_or] = ACTIONS(611), - [anon_sym_and] = ACTIONS(611), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_xor] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_LT_LT_PIPE] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_try] = ACTIONS(611), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_true] = ACTIONS(611), - [anon_sym_false] = ACTIONS(611), - [sym_none] = ACTIONS(611), - [sym_undefined] = ACTIONS(611), - [sym_sink] = ACTIONS(611), - [sym_integer] = ACTIONS(611), - [sym_float] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(609), - [sym_multiline_string] = ACTIONS(609), - [sym_character] = ACTIONS(609), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(609), + [sym__newline] = ACTIONS(466), }, [STATE(90)] = { - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(385), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2943), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2943), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(466), }, [STATE(91)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2515), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2515), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(630), }, [STATE(92)] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_test] = ACTIONS(615), - [anon_sym_hide] = ACTIONS(615), - [anon_sym_func] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_void] = ACTIONS(615), - [anon_sym_anyopaque] = ACTIONS(615), - [anon_sym_bool] = ACTIONS(615), - [anon_sym_int] = ACTIONS(615), - [anon_sym_uint] = ACTIONS(615), - [anon_sym_float] = ACTIONS(615), - [anon_sym_range] = ACTIONS(615), - [anon_sym_i8] = ACTIONS(615), - [anon_sym_i16] = ACTIONS(615), - [anon_sym_i32] = ACTIONS(615), - [anon_sym_i64] = ACTIONS(615), - [anon_sym_u8] = ACTIONS(615), - [anon_sym_u16] = ACTIONS(615), - [anon_sym_u32] = ACTIONS(615), - [anon_sym_u64] = ACTIONS(615), - [anon_sym_isize] = ACTIONS(615), - [anon_sym_usize] = ACTIONS(615), - [anon_sym_f32] = ACTIONS(615), - [anon_sym_f64] = ACTIONS(615), - [anon_sym_c_char] = ACTIONS(615), - [anon_sym_c_schar] = ACTIONS(615), - [anon_sym_c_uchar] = ACTIONS(615), - [anon_sym_c_short] = ACTIONS(615), - [anon_sym_c_ushort] = ACTIONS(615), - [anon_sym_c_int] = ACTIONS(615), - [anon_sym_c_uint] = ACTIONS(615), - [anon_sym_c_long] = ACTIONS(615), - [anon_sym_c_ulong] = ACTIONS(615), - [anon_sym_c_longlong] = ACTIONS(615), - [anon_sym_c_ulonglong] = ACTIONS(615), - [anon_sym_c_float] = ACTIONS(615), - [anon_sym_c_double] = ACTIONS(615), - [anon_sym_c_longdouble] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_xor_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(613), - [anon_sym_return] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_errdefer] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_expand] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(613), - [anon_sym_orelse] = ACTIONS(615), - [anon_sym_catch] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_and] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_xor] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_LT_LT_PIPE] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_try] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_true] = ACTIONS(615), - [anon_sym_false] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_undefined] = ACTIONS(615), - [sym_sink] = ACTIONS(615), - [sym_integer] = ACTIONS(615), - [sym_float] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_multiline_string] = ACTIONS(613), - [sym_character] = ACTIONS(613), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2945), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2945), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), + [sym__newline] = ACTIONS(632), }, [STATE(93)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(109), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2945), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2945), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(466), }, [STATE(94)] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [anon_sym_import] = ACTIONS(623), - [anon_sym_test] = ACTIONS(623), - [anon_sym_hide] = ACTIONS(623), - [anon_sym_func] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_void] = ACTIONS(623), - [anon_sym_anyopaque] = ACTIONS(623), - [anon_sym_bool] = ACTIONS(623), - [anon_sym_int] = ACTIONS(623), - [anon_sym_uint] = ACTIONS(623), - [anon_sym_float] = ACTIONS(623), - [anon_sym_range] = ACTIONS(623), - [anon_sym_i8] = ACTIONS(623), - [anon_sym_i16] = ACTIONS(623), - [anon_sym_i32] = ACTIONS(623), - [anon_sym_i64] = ACTIONS(623), - [anon_sym_u8] = ACTIONS(623), - [anon_sym_u16] = ACTIONS(623), - [anon_sym_u32] = ACTIONS(623), - [anon_sym_u64] = ACTIONS(623), - [anon_sym_isize] = ACTIONS(623), - [anon_sym_usize] = ACTIONS(623), - [anon_sym_f32] = ACTIONS(623), - [anon_sym_f64] = ACTIONS(623), - [anon_sym_c_char] = ACTIONS(623), - [anon_sym_c_schar] = ACTIONS(623), - [anon_sym_c_uchar] = ACTIONS(623), - [anon_sym_c_short] = ACTIONS(623), - [anon_sym_c_ushort] = ACTIONS(623), - [anon_sym_c_int] = ACTIONS(623), - [anon_sym_c_uint] = ACTIONS(623), - [anon_sym_c_long] = ACTIONS(623), - [anon_sym_c_ulong] = ACTIONS(623), - [anon_sym_c_longlong] = ACTIONS(623), - [anon_sym_c_ulonglong] = ACTIONS(623), - [anon_sym_c_float] = ACTIONS(623), - [anon_sym_c_double] = ACTIONS(623), - [anon_sym_c_longdouble] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_xor_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(621), - [anon_sym_return] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_errdefer] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_else] = ACTIONS(623), - [anon_sym_while] = ACTIONS(623), - [anon_sym_expand] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_DOT_DOT] = ACTIONS(623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(621), - [anon_sym_orelse] = ACTIONS(623), - [anon_sym_catch] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_and] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_xor] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_LT_LT_PIPE] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_try] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_true] = ACTIONS(623), - [anon_sym_false] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_undefined] = ACTIONS(623), - [sym_sink] = ACTIONS(623), - [sym_integer] = ACTIONS(623), - [sym_float] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(621), - [sym_multiline_string] = ACTIONS(621), - [sym_character] = ACTIONS(621), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(621), + [sym__newline] = ACTIONS(634), }, [STATE(95)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(625), + [sym__newline] = ACTIONS(466), }, [STATE(96)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(636), }, [STATE(97)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2922), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2922), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(627), + [sym__newline] = ACTIONS(466), }, [STATE(98)] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_test] = ACTIONS(631), - [anon_sym_hide] = ACTIONS(631), - [anon_sym_func] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_struct] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(629), - [anon_sym_void] = ACTIONS(631), - [anon_sym_anyopaque] = ACTIONS(631), - [anon_sym_bool] = ACTIONS(631), - [anon_sym_int] = ACTIONS(631), - [anon_sym_uint] = ACTIONS(631), - [anon_sym_float] = ACTIONS(631), - [anon_sym_range] = ACTIONS(631), - [anon_sym_i8] = ACTIONS(631), - [anon_sym_i16] = ACTIONS(631), - [anon_sym_i32] = ACTIONS(631), - [anon_sym_i64] = ACTIONS(631), - [anon_sym_u8] = ACTIONS(631), - [anon_sym_u16] = ACTIONS(631), - [anon_sym_u32] = ACTIONS(631), - [anon_sym_u64] = ACTIONS(631), - [anon_sym_isize] = ACTIONS(631), - [anon_sym_usize] = ACTIONS(631), - [anon_sym_f32] = ACTIONS(631), - [anon_sym_f64] = ACTIONS(631), - [anon_sym_c_char] = ACTIONS(631), - [anon_sym_c_schar] = ACTIONS(631), - [anon_sym_c_uchar] = ACTIONS(631), - [anon_sym_c_short] = ACTIONS(631), - [anon_sym_c_ushort] = ACTIONS(631), - [anon_sym_c_int] = ACTIONS(631), - [anon_sym_c_uint] = ACTIONS(631), - [anon_sym_c_long] = ACTIONS(631), - [anon_sym_c_ulong] = ACTIONS(631), - [anon_sym_c_longlong] = ACTIONS(631), - [anon_sym_c_ulonglong] = ACTIONS(631), - [anon_sym_c_float] = ACTIONS(631), - [anon_sym_c_double] = ACTIONS(631), - [anon_sym_c_longdouble] = ACTIONS(631), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), - [anon_sym_STAR_EQ] = ACTIONS(629), - [anon_sym_SLASH_EQ] = ACTIONS(629), - [anon_sym_AMP_EQ] = ACTIONS(629), - [anon_sym_PIPE_EQ] = ACTIONS(629), - [anon_sym_xor_EQ] = ACTIONS(629), - [anon_sym_LT_LT_EQ] = ACTIONS(629), - [anon_sym_GT_GT_EQ] = ACTIONS(629), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(629), - [anon_sym_return] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_defer] = ACTIONS(631), - [anon_sym_errdefer] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_expand] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_match] = ACTIONS(631), - [anon_sym_DOT_DOT] = ACTIONS(631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_orelse] = ACTIONS(631), - [anon_sym_catch] = ACTIONS(631), - [anon_sym_or] = ACTIONS(631), - [anon_sym_and] = ACTIONS(631), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_xor] = ACTIONS(631), - [anon_sym_LT_LT] = ACTIONS(631), - [anon_sym_GT_GT] = ACTIONS(631), - [anon_sym_LT_LT_PIPE] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_try] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym_true] = ACTIONS(631), - [anon_sym_false] = ACTIONS(631), - [sym_none] = ACTIONS(631), - [sym_undefined] = ACTIONS(631), - [sym_sink] = ACTIONS(631), - [sym_integer] = ACTIONS(631), - [sym_float] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_multiline_string] = ACTIONS(629), - [sym_character] = ACTIONS(629), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(105), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), + [sym__newline] = ACTIONS(638), }, [STATE(99)] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [anon_sym_import] = ACTIONS(635), - [anon_sym_test] = ACTIONS(635), - [anon_sym_hide] = ACTIONS(635), - [anon_sym_func] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_COMMA] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_void] = ACTIONS(635), - [anon_sym_anyopaque] = ACTIONS(635), - [anon_sym_bool] = ACTIONS(635), - [anon_sym_int] = ACTIONS(635), - [anon_sym_uint] = ACTIONS(635), - [anon_sym_float] = ACTIONS(635), - [anon_sym_range] = ACTIONS(635), - [anon_sym_i8] = ACTIONS(635), - [anon_sym_i16] = ACTIONS(635), - [anon_sym_i32] = ACTIONS(635), - [anon_sym_i64] = ACTIONS(635), - [anon_sym_u8] = ACTIONS(635), - [anon_sym_u16] = ACTIONS(635), - [anon_sym_u32] = ACTIONS(635), - [anon_sym_u64] = ACTIONS(635), - [anon_sym_isize] = ACTIONS(635), - [anon_sym_usize] = ACTIONS(635), - [anon_sym_f32] = ACTIONS(635), - [anon_sym_f64] = ACTIONS(635), - [anon_sym_c_char] = ACTIONS(635), - [anon_sym_c_schar] = ACTIONS(635), - [anon_sym_c_uchar] = ACTIONS(635), - [anon_sym_c_short] = ACTIONS(635), - [anon_sym_c_ushort] = ACTIONS(635), - [anon_sym_c_int] = ACTIONS(635), - [anon_sym_c_uint] = ACTIONS(635), - [anon_sym_c_long] = ACTIONS(635), - [anon_sym_c_ulong] = ACTIONS(635), - [anon_sym_c_longlong] = ACTIONS(635), - [anon_sym_c_ulonglong] = ACTIONS(635), - [anon_sym_c_float] = ACTIONS(635), - [anon_sym_c_double] = ACTIONS(635), - [anon_sym_c_longdouble] = ACTIONS(635), - [anon_sym_PLUS_EQ] = ACTIONS(633), - [anon_sym_DASH_EQ] = ACTIONS(633), - [anon_sym_STAR_EQ] = ACTIONS(633), - [anon_sym_SLASH_EQ] = ACTIONS(633), - [anon_sym_AMP_EQ] = ACTIONS(633), - [anon_sym_PIPE_EQ] = ACTIONS(633), - [anon_sym_xor_EQ] = ACTIONS(633), - [anon_sym_LT_LT_EQ] = ACTIONS(633), - [anon_sym_GT_GT_EQ] = ACTIONS(633), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(633), - [anon_sym_return] = ACTIONS(635), - [anon_sym_yield] = ACTIONS(635), - [anon_sym_break] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_defer] = ACTIONS(635), - [anon_sym_errdefer] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_else] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_expand] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_match] = ACTIONS(635), - [anon_sym_DOT_DOT] = ACTIONS(635), - [anon_sym_DOT_DOT_EQ] = ACTIONS(633), - [anon_sym_orelse] = ACTIONS(635), - [anon_sym_catch] = ACTIONS(635), - [anon_sym_or] = ACTIONS(635), - [anon_sym_and] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), - [anon_sym_xor] = ACTIONS(635), - [anon_sym_LT_LT] = ACTIONS(635), - [anon_sym_GT_GT] = ACTIONS(635), - [anon_sym_LT_LT_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(635), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_try] = ACTIONS(635), - [anon_sym_DOT] = ACTIONS(635), - [anon_sym_CARET] = ACTIONS(633), - [anon_sym_true] = ACTIONS(635), - [anon_sym_false] = ACTIONS(635), - [sym_none] = ACTIONS(635), - [sym_undefined] = ACTIONS(635), - [sym_sink] = ACTIONS(635), - [sym_integer] = ACTIONS(635), - [sym_float] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_multiline_string] = ACTIONS(633), - [sym_character] = ACTIONS(633), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1897), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1897), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), + [sym__newline] = ACTIONS(640), }, [STATE(100)] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_import] = ACTIONS(639), - [anon_sym_test] = ACTIONS(639), - [anon_sym_hide] = ACTIONS(639), - [anon_sym_func] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_void] = ACTIONS(639), - [anon_sym_anyopaque] = ACTIONS(639), - [anon_sym_bool] = ACTIONS(639), - [anon_sym_int] = ACTIONS(639), - [anon_sym_uint] = ACTIONS(639), - [anon_sym_float] = ACTIONS(639), - [anon_sym_range] = ACTIONS(639), - [anon_sym_i8] = ACTIONS(639), - [anon_sym_i16] = ACTIONS(639), - [anon_sym_i32] = ACTIONS(639), - [anon_sym_i64] = ACTIONS(639), - [anon_sym_u8] = ACTIONS(639), - [anon_sym_u16] = ACTIONS(639), - [anon_sym_u32] = ACTIONS(639), - [anon_sym_u64] = ACTIONS(639), - [anon_sym_isize] = ACTIONS(639), - [anon_sym_usize] = ACTIONS(639), - [anon_sym_f32] = ACTIONS(639), - [anon_sym_f64] = ACTIONS(639), - [anon_sym_c_char] = ACTIONS(639), - [anon_sym_c_schar] = ACTIONS(639), - [anon_sym_c_uchar] = ACTIONS(639), - [anon_sym_c_short] = ACTIONS(639), - [anon_sym_c_ushort] = ACTIONS(639), - [anon_sym_c_int] = ACTIONS(639), - [anon_sym_c_uint] = ACTIONS(639), - [anon_sym_c_long] = ACTIONS(639), - [anon_sym_c_ulong] = ACTIONS(639), - [anon_sym_c_longlong] = ACTIONS(639), - [anon_sym_c_ulonglong] = ACTIONS(639), - [anon_sym_c_float] = ACTIONS(639), - [anon_sym_c_double] = ACTIONS(639), - [anon_sym_c_longdouble] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), - [anon_sym_STAR_EQ] = ACTIONS(637), - [anon_sym_SLASH_EQ] = ACTIONS(637), - [anon_sym_AMP_EQ] = ACTIONS(637), - [anon_sym_PIPE_EQ] = ACTIONS(637), - [anon_sym_xor_EQ] = ACTIONS(637), - [anon_sym_LT_LT_EQ] = ACTIONS(637), - [anon_sym_GT_GT_EQ] = ACTIONS(637), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(637), - [anon_sym_return] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_defer] = ACTIONS(639), - [anon_sym_errdefer] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_expand] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_match] = ACTIONS(639), - [anon_sym_DOT_DOT] = ACTIONS(639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(637), - [anon_sym_orelse] = ACTIONS(639), - [anon_sym_catch] = ACTIONS(639), - [anon_sym_or] = ACTIONS(639), - [anon_sym_and] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_xor] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_LT_LT_PIPE] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_try] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [sym_none] = ACTIONS(639), - [sym_undefined] = ACTIONS(639), - [sym_sink] = ACTIONS(639), - [sym_integer] = ACTIONS(639), - [sym_float] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_multiline_string] = ACTIONS(637), - [sym_character] = ACTIONS(637), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), + [sym__newline] = ACTIONS(466), }, [STATE(101)] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_test] = ACTIONS(643), - [anon_sym_hide] = ACTIONS(643), - [anon_sym_func] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(641), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_void] = ACTIONS(643), - [anon_sym_anyopaque] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_uint] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_range] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_c_char] = ACTIONS(643), - [anon_sym_c_schar] = ACTIONS(643), - [anon_sym_c_uchar] = ACTIONS(643), - [anon_sym_c_short] = ACTIONS(643), - [anon_sym_c_ushort] = ACTIONS(643), - [anon_sym_c_int] = ACTIONS(643), - [anon_sym_c_uint] = ACTIONS(643), - [anon_sym_c_long] = ACTIONS(643), - [anon_sym_c_ulong] = ACTIONS(643), - [anon_sym_c_longlong] = ACTIONS(643), - [anon_sym_c_ulonglong] = ACTIONS(643), - [anon_sym_c_float] = ACTIONS(643), - [anon_sym_c_double] = ACTIONS(643), - [anon_sym_c_longdouble] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(641), - [anon_sym_DASH_EQ] = ACTIONS(641), - [anon_sym_STAR_EQ] = ACTIONS(641), - [anon_sym_SLASH_EQ] = ACTIONS(641), - [anon_sym_AMP_EQ] = ACTIONS(641), - [anon_sym_PIPE_EQ] = ACTIONS(641), - [anon_sym_xor_EQ] = ACTIONS(641), - [anon_sym_LT_LT_EQ] = ACTIONS(641), - [anon_sym_GT_GT_EQ] = ACTIONS(641), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_defer] = ACTIONS(643), - [anon_sym_errdefer] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_expand] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(641), - [anon_sym_orelse] = ACTIONS(643), - [anon_sym_catch] = ACTIONS(643), - [anon_sym_or] = ACTIONS(643), - [anon_sym_and] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_xor] = ACTIONS(643), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_LT_LT_PIPE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_try] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(641), - [anon_sym_true] = ACTIONS(643), - [anon_sym_false] = ACTIONS(643), - [sym_none] = ACTIONS(643), - [sym_undefined] = ACTIONS(643), - [sym_sink] = ACTIONS(643), - [sym_integer] = ACTIONS(643), - [sym_float] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_multiline_string] = ACTIONS(641), - [sym_character] = ACTIONS(641), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(641), + [sym__newline] = ACTIONS(642), }, [STATE(102)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2525), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2525), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(644), }, [STATE(103)] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [anon_sym_import] = ACTIONS(647), - [anon_sym_test] = ACTIONS(647), - [anon_sym_hide] = ACTIONS(647), - [anon_sym_func] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_void] = ACTIONS(647), - [anon_sym_anyopaque] = ACTIONS(647), - [anon_sym_bool] = ACTIONS(647), - [anon_sym_int] = ACTIONS(647), - [anon_sym_uint] = ACTIONS(647), - [anon_sym_float] = ACTIONS(647), - [anon_sym_range] = ACTIONS(647), - [anon_sym_i8] = ACTIONS(647), - [anon_sym_i16] = ACTIONS(647), - [anon_sym_i32] = ACTIONS(647), - [anon_sym_i64] = ACTIONS(647), - [anon_sym_u8] = ACTIONS(647), - [anon_sym_u16] = ACTIONS(647), - [anon_sym_u32] = ACTIONS(647), - [anon_sym_u64] = ACTIONS(647), - [anon_sym_isize] = ACTIONS(647), - [anon_sym_usize] = ACTIONS(647), - [anon_sym_f32] = ACTIONS(647), - [anon_sym_f64] = ACTIONS(647), - [anon_sym_c_char] = ACTIONS(647), - [anon_sym_c_schar] = ACTIONS(647), - [anon_sym_c_uchar] = ACTIONS(647), - [anon_sym_c_short] = ACTIONS(647), - [anon_sym_c_ushort] = ACTIONS(647), - [anon_sym_c_int] = ACTIONS(647), - [anon_sym_c_uint] = ACTIONS(647), - [anon_sym_c_long] = ACTIONS(647), - [anon_sym_c_ulong] = ACTIONS(647), - [anon_sym_c_longlong] = ACTIONS(647), - [anon_sym_c_ulonglong] = ACTIONS(647), - [anon_sym_c_float] = ACTIONS(647), - [anon_sym_c_double] = ACTIONS(647), - [anon_sym_c_longdouble] = ACTIONS(647), - [anon_sym_PLUS_EQ] = ACTIONS(645), - [anon_sym_DASH_EQ] = ACTIONS(645), - [anon_sym_STAR_EQ] = ACTIONS(645), - [anon_sym_SLASH_EQ] = ACTIONS(645), - [anon_sym_AMP_EQ] = ACTIONS(645), - [anon_sym_PIPE_EQ] = ACTIONS(645), - [anon_sym_xor_EQ] = ACTIONS(645), - [anon_sym_LT_LT_EQ] = ACTIONS(645), - [anon_sym_GT_GT_EQ] = ACTIONS(645), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(645), - [anon_sym_return] = ACTIONS(647), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_break] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_defer] = ACTIONS(647), - [anon_sym_errdefer] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_expand] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_match] = ACTIONS(647), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_DOT_DOT_EQ] = ACTIONS(645), - [anon_sym_orelse] = ACTIONS(647), - [anon_sym_catch] = ACTIONS(647), - [anon_sym_or] = ACTIONS(647), - [anon_sym_and] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_BANG_EQ] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(645), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_xor] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT_PIPE] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_try] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_true] = ACTIONS(647), - [anon_sym_false] = ACTIONS(647), - [sym_none] = ACTIONS(647), - [sym_undefined] = ACTIONS(647), - [sym_sink] = ACTIONS(647), - [sym_integer] = ACTIONS(647), - [sym_float] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [sym_multiline_string] = ACTIONS(645), - [sym_character] = ACTIONS(645), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(645), + [sym__newline] = ACTIONS(466), }, [STATE(104)] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [anon_sym_import] = ACTIONS(651), - [anon_sym_test] = ACTIONS(651), - [anon_sym_hide] = ACTIONS(651), - [anon_sym_func] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_struct] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(649), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_void] = ACTIONS(651), - [anon_sym_anyopaque] = ACTIONS(651), - [anon_sym_bool] = ACTIONS(651), - [anon_sym_int] = ACTIONS(651), - [anon_sym_uint] = ACTIONS(651), - [anon_sym_float] = ACTIONS(651), - [anon_sym_range] = ACTIONS(651), - [anon_sym_i8] = ACTIONS(651), - [anon_sym_i16] = ACTIONS(651), - [anon_sym_i32] = ACTIONS(651), - [anon_sym_i64] = ACTIONS(651), - [anon_sym_u8] = ACTIONS(651), - [anon_sym_u16] = ACTIONS(651), - [anon_sym_u32] = ACTIONS(651), - [anon_sym_u64] = ACTIONS(651), - [anon_sym_isize] = ACTIONS(651), - [anon_sym_usize] = ACTIONS(651), - [anon_sym_f32] = ACTIONS(651), - [anon_sym_f64] = ACTIONS(651), - [anon_sym_c_char] = ACTIONS(651), - [anon_sym_c_schar] = ACTIONS(651), - [anon_sym_c_uchar] = ACTIONS(651), - [anon_sym_c_short] = ACTIONS(651), - [anon_sym_c_ushort] = ACTIONS(651), - [anon_sym_c_int] = ACTIONS(651), - [anon_sym_c_uint] = ACTIONS(651), - [anon_sym_c_long] = ACTIONS(651), - [anon_sym_c_ulong] = ACTIONS(651), - [anon_sym_c_longlong] = ACTIONS(651), - [anon_sym_c_ulonglong] = ACTIONS(651), - [anon_sym_c_float] = ACTIONS(651), - [anon_sym_c_double] = ACTIONS(651), - [anon_sym_c_longdouble] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_AMP_EQ] = ACTIONS(649), - [anon_sym_PIPE_EQ] = ACTIONS(649), - [anon_sym_xor_EQ] = ACTIONS(649), - [anon_sym_LT_LT_EQ] = ACTIONS(649), - [anon_sym_GT_GT_EQ] = ACTIONS(649), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(649), - [anon_sym_return] = ACTIONS(651), - [anon_sym_yield] = ACTIONS(651), - [anon_sym_break] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(651), - [anon_sym_defer] = ACTIONS(651), - [anon_sym_errdefer] = ACTIONS(651), - [anon_sym_if] = ACTIONS(651), - [anon_sym_else] = ACTIONS(651), - [anon_sym_while] = ACTIONS(651), - [anon_sym_expand] = ACTIONS(651), - [anon_sym_for] = ACTIONS(651), - [anon_sym_match] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(649), - [anon_sym_orelse] = ACTIONS(651), - [anon_sym_catch] = ACTIONS(651), - [anon_sym_or] = ACTIONS(651), - [anon_sym_and] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_BANG_EQ] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(651), - [anon_sym_xor] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_LT_LT_PIPE] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_try] = ACTIONS(651), - [anon_sym_DOT] = ACTIONS(651), - [anon_sym_CARET] = ACTIONS(649), - [anon_sym_true] = ACTIONS(651), - [anon_sym_false] = ACTIONS(651), - [sym_none] = ACTIONS(651), - [sym_undefined] = ACTIONS(651), - [sym_sink] = ACTIONS(651), - [sym_integer] = ACTIONS(651), - [sym_float] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [sym_multiline_string] = ACTIONS(649), - [sym_character] = ACTIONS(649), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(649), + [sym__newline] = ACTIONS(646), }, [STATE(105)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(653), + [sym__newline] = ACTIONS(466), }, [STATE(106)] = { - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(657), - [anon_sym_import] = ACTIONS(657), - [anon_sym_test] = ACTIONS(657), - [anon_sym_hide] = ACTIONS(657), - [anon_sym_func] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_struct] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_void] = ACTIONS(657), - [anon_sym_anyopaque] = ACTIONS(657), - [anon_sym_bool] = ACTIONS(657), - [anon_sym_int] = ACTIONS(657), - [anon_sym_uint] = ACTIONS(657), - [anon_sym_float] = ACTIONS(657), - [anon_sym_range] = ACTIONS(657), - [anon_sym_i8] = ACTIONS(657), - [anon_sym_i16] = ACTIONS(657), - [anon_sym_i32] = ACTIONS(657), - [anon_sym_i64] = ACTIONS(657), - [anon_sym_u8] = ACTIONS(657), - [anon_sym_u16] = ACTIONS(657), - [anon_sym_u32] = ACTIONS(657), - [anon_sym_u64] = ACTIONS(657), - [anon_sym_isize] = ACTIONS(657), - [anon_sym_usize] = ACTIONS(657), - [anon_sym_f32] = ACTIONS(657), - [anon_sym_f64] = ACTIONS(657), - [anon_sym_c_char] = ACTIONS(657), - [anon_sym_c_schar] = ACTIONS(657), - [anon_sym_c_uchar] = ACTIONS(657), - [anon_sym_c_short] = ACTIONS(657), - [anon_sym_c_ushort] = ACTIONS(657), - [anon_sym_c_int] = ACTIONS(657), - [anon_sym_c_uint] = ACTIONS(657), - [anon_sym_c_long] = ACTIONS(657), - [anon_sym_c_ulong] = ACTIONS(657), - [anon_sym_c_longlong] = ACTIONS(657), - [anon_sym_c_ulonglong] = ACTIONS(657), - [anon_sym_c_float] = ACTIONS(657), - [anon_sym_c_double] = ACTIONS(657), - [anon_sym_c_longdouble] = ACTIONS(657), - [anon_sym_PLUS_EQ] = ACTIONS(655), - [anon_sym_DASH_EQ] = ACTIONS(655), - [anon_sym_STAR_EQ] = ACTIONS(655), - [anon_sym_SLASH_EQ] = ACTIONS(655), - [anon_sym_AMP_EQ] = ACTIONS(655), - [anon_sym_PIPE_EQ] = ACTIONS(655), - [anon_sym_xor_EQ] = ACTIONS(655), - [anon_sym_LT_LT_EQ] = ACTIONS(655), - [anon_sym_GT_GT_EQ] = ACTIONS(655), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_break] = ACTIONS(657), - [anon_sym_continue] = ACTIONS(657), - [anon_sym_defer] = ACTIONS(657), - [anon_sym_errdefer] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_else] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_expand] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_match] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(655), - [anon_sym_orelse] = ACTIONS(657), - [anon_sym_catch] = ACTIONS(657), - [anon_sym_or] = ACTIONS(657), - [anon_sym_and] = ACTIONS(657), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_xor] = ACTIONS(657), - [anon_sym_LT_LT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(657), - [anon_sym_LT_LT_PIPE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_try] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(657), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_true] = ACTIONS(657), - [anon_sym_false] = ACTIONS(657), - [sym_none] = ACTIONS(657), - [sym_undefined] = ACTIONS(657), - [sym_sink] = ACTIONS(657), - [sym_integer] = ACTIONS(657), - [sym_float] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_multiline_string] = ACTIONS(655), - [sym_character] = ACTIONS(655), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - }, - [STATE(107)] = { - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym_import] = ACTIONS(661), - [anon_sym_test] = ACTIONS(661), - [anon_sym_hide] = ACTIONS(661), - [anon_sym_func] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_RBRACE] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_void] = ACTIONS(661), - [anon_sym_anyopaque] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_int] = ACTIONS(661), - [anon_sym_uint] = ACTIONS(661), - [anon_sym_float] = ACTIONS(661), - [anon_sym_range] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_c_char] = ACTIONS(661), - [anon_sym_c_schar] = ACTIONS(661), - [anon_sym_c_uchar] = ACTIONS(661), - [anon_sym_c_short] = ACTIONS(661), - [anon_sym_c_ushort] = ACTIONS(661), - [anon_sym_c_int] = ACTIONS(661), - [anon_sym_c_uint] = ACTIONS(661), - [anon_sym_c_long] = ACTIONS(661), - [anon_sym_c_ulong] = ACTIONS(661), - [anon_sym_c_longlong] = ACTIONS(661), - [anon_sym_c_ulonglong] = ACTIONS(661), - [anon_sym_c_float] = ACTIONS(661), - [anon_sym_c_double] = ACTIONS(661), - [anon_sym_c_longdouble] = ACTIONS(661), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_xor_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_defer] = ACTIONS(661), - [anon_sym_errdefer] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_expand] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(659), - [anon_sym_orelse] = ACTIONS(661), - [anon_sym_catch] = ACTIONS(661), - [anon_sym_or] = ACTIONS(661), - [anon_sym_and] = ACTIONS(661), - [anon_sym_EQ_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_xor] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_LT_LT_PIPE] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_try] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_true] = ACTIONS(661), - [anon_sym_false] = ACTIONS(661), - [sym_none] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [sym_sink] = ACTIONS(661), - [sym_integer] = ACTIONS(661), - [sym_float] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(659), - [sym_multiline_string] = ACTIONS(659), - [sym_character] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(659), - }, - [STATE(108)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1744), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1744), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), + [sym__newline] = ACTIONS(648), + }, + [STATE(107)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1894), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1894), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(108)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1894), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1894), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(650), }, [STATE(109)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(109), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(665), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1895), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1895), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(652), + }, + [STATE(110)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1896), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1896), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(654), + }, + [STATE(111)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(112)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(113)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(656), + }, + [STATE(114)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(115)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(658), + }, + [STATE(116)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(660), + }, + [STATE(117)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(118)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1898), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1898), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(119)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1892), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1892), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(120)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1893), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1893), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(121)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1893), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1893), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(662), + }, + [STATE(122)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(123)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(124)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(125)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(664), + }, + [STATE(126)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1899), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1899), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(127)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(128)] = { + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_test] = ACTIONS(668), + [anon_sym_hide] = ACTIONS(668), [anon_sym_func] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_void] = ACTIONS(691), - [anon_sym_anyopaque] = ACTIONS(691), - [anon_sym_bool] = ACTIONS(691), - [anon_sym_int] = ACTIONS(691), - [anon_sym_uint] = ACTIONS(691), - [anon_sym_float] = ACTIONS(691), - [anon_sym_range] = ACTIONS(691), - [anon_sym_i8] = ACTIONS(691), - [anon_sym_i16] = ACTIONS(691), - [anon_sym_i32] = ACTIONS(691), - [anon_sym_i64] = ACTIONS(691), - [anon_sym_u8] = ACTIONS(691), - [anon_sym_u16] = ACTIONS(691), - [anon_sym_u32] = ACTIONS(691), - [anon_sym_u64] = ACTIONS(691), - [anon_sym_isize] = ACTIONS(691), - [anon_sym_usize] = ACTIONS(691), - [anon_sym_f32] = ACTIONS(691), - [anon_sym_f64] = ACTIONS(691), - [anon_sym_c_char] = ACTIONS(691), - [anon_sym_c_schar] = ACTIONS(691), - [anon_sym_c_uchar] = ACTIONS(691), - [anon_sym_c_short] = ACTIONS(691), - [anon_sym_c_ushort] = ACTIONS(691), - [anon_sym_c_int] = ACTIONS(691), - [anon_sym_c_uint] = ACTIONS(691), - [anon_sym_c_long] = ACTIONS(691), - [anon_sym_c_ulong] = ACTIONS(691), - [anon_sym_c_longlong] = ACTIONS(691), - [anon_sym_c_ulonglong] = ACTIONS(691), - [anon_sym_c_float] = ACTIONS(691), - [anon_sym_c_double] = ACTIONS(691), - [anon_sym_c_longdouble] = ACTIONS(691), - [anon_sym_return] = ACTIONS(694), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(703), - [anon_sym_defer] = ACTIONS(706), - [anon_sym_errdefer] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_struct] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_DOLLAR] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_void] = ACTIONS(668), + [anon_sym_type] = ACTIONS(668), + [anon_sym_anyopaque] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_uint] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_range] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_c_char] = ACTIONS(668), + [anon_sym_c_schar] = ACTIONS(668), + [anon_sym_c_uchar] = ACTIONS(668), + [anon_sym_c_short] = ACTIONS(668), + [anon_sym_c_ushort] = ACTIONS(668), + [anon_sym_c_int] = ACTIONS(668), + [anon_sym_c_uint] = ACTIONS(668), + [anon_sym_c_long] = ACTIONS(668), + [anon_sym_c_ulong] = ACTIONS(668), + [anon_sym_c_longlong] = ACTIONS(668), + [anon_sym_c_ulonglong] = ACTIONS(668), + [anon_sym_c_float] = ACTIONS(668), + [anon_sym_c_double] = ACTIONS(668), + [anon_sym_c_longdouble] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_xor_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_defer] = ACTIONS(668), + [anon_sym_errdefer] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_expand] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_match] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(666), + [anon_sym_orelse] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_xor] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_LT_LT_PIPE] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_true] = ACTIONS(668), + [anon_sym_false] = ACTIONS(668), + [sym_none] = ACTIONS(668), + [sym_undefined] = ACTIONS(668), + [sym_sink] = ACTIONS(668), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_multiline_string] = ACTIONS(666), + [sym_character] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(666), + }, + [STATE(129)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(175), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(672), + }, + [STATE(130)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1845), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1845), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(674), + }, + [STATE(131)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1845), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1845), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(132)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1851), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1851), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(133)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(676), + }, + [STATE(134)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1853), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1853), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(678), + }, + [STATE(135)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1853), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1853), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(136)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(680), + }, + [STATE(137)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(138)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(682), + }, + [STATE(139)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1843), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1843), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(140)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(684), + }, + [STATE(141)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(142)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(686), + }, + [STATE(143)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(688), + }, + [STATE(144)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(145)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(690), + }, + [STATE(146)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(147)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(692), + }, + [STATE(148)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(149)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(150)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(694), + }, + [STATE(151)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(152)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(696), + }, + [STATE(153)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(698), + }, + [STATE(154)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(155)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(156)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(157)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(158)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(700), + }, + [STATE(159)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(160)] = { + [ts_builtin_sym_end] = ACTIONS(702), + [sym_identifier] = ACTIONS(704), + [anon_sym_import] = ACTIONS(704), + [anon_sym_test] = ACTIONS(704), + [anon_sym_hide] = ACTIONS(704), + [anon_sym_func] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_void] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_anyopaque] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_int] = ACTIONS(704), + [anon_sym_uint] = ACTIONS(704), + [anon_sym_float] = ACTIONS(704), + [anon_sym_range] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_c_char] = ACTIONS(704), + [anon_sym_c_schar] = ACTIONS(704), + [anon_sym_c_uchar] = ACTIONS(704), + [anon_sym_c_short] = ACTIONS(704), + [anon_sym_c_ushort] = ACTIONS(704), + [anon_sym_c_int] = ACTIONS(704), + [anon_sym_c_uint] = ACTIONS(704), + [anon_sym_c_long] = ACTIONS(704), + [anon_sym_c_ulong] = ACTIONS(704), + [anon_sym_c_longlong] = ACTIONS(704), + [anon_sym_c_ulonglong] = ACTIONS(704), + [anon_sym_c_float] = ACTIONS(704), + [anon_sym_c_double] = ACTIONS(704), + [anon_sym_c_longdouble] = ACTIONS(704), + [anon_sym_PLUS_EQ] = ACTIONS(702), + [anon_sym_DASH_EQ] = ACTIONS(702), + [anon_sym_STAR_EQ] = ACTIONS(702), + [anon_sym_SLASH_EQ] = ACTIONS(702), + [anon_sym_AMP_EQ] = ACTIONS(702), + [anon_sym_PIPE_EQ] = ACTIONS(702), + [anon_sym_xor_EQ] = ACTIONS(702), + [anon_sym_LT_LT_EQ] = ACTIONS(702), + [anon_sym_GT_GT_EQ] = ACTIONS(702), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(702), + [anon_sym_return] = ACTIONS(704), + [anon_sym_yield] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_defer] = ACTIONS(704), + [anon_sym_errdefer] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_expand] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(702), + [anon_sym_orelse] = ACTIONS(704), + [anon_sym_catch] = ACTIONS(704), + [anon_sym_or] = ACTIONS(704), + [anon_sym_and] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(702), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_xor] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_LT_LT_PIPE] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_try] = ACTIONS(704), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym_true] = ACTIONS(704), + [anon_sym_false] = ACTIONS(704), + [sym_none] = ACTIONS(704), + [sym_undefined] = ACTIONS(704), + [sym_sink] = ACTIONS(704), + [sym_integer] = ACTIONS(704), + [sym_float] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(702), + [sym_multiline_string] = ACTIONS(702), + [sym_character] = ACTIONS(702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(702), + }, + [STATE(161)] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(162)] = { + [ts_builtin_sym_end] = ACTIONS(706), + [sym_identifier] = ACTIONS(708), + [anon_sym_import] = ACTIONS(708), + [anon_sym_test] = ACTIONS(708), + [anon_sym_hide] = ACTIONS(708), + [anon_sym_func] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_void] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_anyopaque] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_int] = ACTIONS(708), + [anon_sym_uint] = ACTIONS(708), + [anon_sym_float] = ACTIONS(708), + [anon_sym_range] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_c_char] = ACTIONS(708), + [anon_sym_c_schar] = ACTIONS(708), + [anon_sym_c_uchar] = ACTIONS(708), + [anon_sym_c_short] = ACTIONS(708), + [anon_sym_c_ushort] = ACTIONS(708), + [anon_sym_c_int] = ACTIONS(708), + [anon_sym_c_uint] = ACTIONS(708), + [anon_sym_c_long] = ACTIONS(708), + [anon_sym_c_ulong] = ACTIONS(708), + [anon_sym_c_longlong] = ACTIONS(708), + [anon_sym_c_ulonglong] = ACTIONS(708), + [anon_sym_c_float] = ACTIONS(708), + [anon_sym_c_double] = ACTIONS(708), + [anon_sym_c_longdouble] = ACTIONS(708), + [anon_sym_PLUS_EQ] = ACTIONS(706), + [anon_sym_DASH_EQ] = ACTIONS(706), + [anon_sym_STAR_EQ] = ACTIONS(706), + [anon_sym_SLASH_EQ] = ACTIONS(706), + [anon_sym_AMP_EQ] = ACTIONS(706), + [anon_sym_PIPE_EQ] = ACTIONS(706), + [anon_sym_xor_EQ] = ACTIONS(706), + [anon_sym_LT_LT_EQ] = ACTIONS(706), + [anon_sym_GT_GT_EQ] = ACTIONS(706), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(706), + [anon_sym_return] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_defer] = ACTIONS(708), + [anon_sym_errdefer] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_expand] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(706), + [anon_sym_orelse] = ACTIONS(708), + [anon_sym_catch] = ACTIONS(708), + [anon_sym_or] = ACTIONS(708), + [anon_sym_and] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [anon_sym_xor] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(708), + [anon_sym_LT_LT_PIPE] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_SLASH] = ACTIONS(708), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_try] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_none] = ACTIONS(708), + [sym_undefined] = ACTIONS(708), + [sym_sink] = ACTIONS(708), + [sym_integer] = ACTIONS(708), + [sym_float] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [sym_multiline_string] = ACTIONS(706), + [sym_character] = ACTIONS(706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(706), + }, + [STATE(163)] = { + [ts_builtin_sym_end] = ACTIONS(710), + [sym_identifier] = ACTIONS(712), + [anon_sym_import] = ACTIONS(712), + [anon_sym_test] = ACTIONS(712), + [anon_sym_hide] = ACTIONS(712), + [anon_sym_func] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(712), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_void] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_anyopaque] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_int] = ACTIONS(712), + [anon_sym_uint] = ACTIONS(712), + [anon_sym_float] = ACTIONS(712), + [anon_sym_range] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_c_char] = ACTIONS(712), + [anon_sym_c_schar] = ACTIONS(712), + [anon_sym_c_uchar] = ACTIONS(712), + [anon_sym_c_short] = ACTIONS(712), + [anon_sym_c_ushort] = ACTIONS(712), + [anon_sym_c_int] = ACTIONS(712), + [anon_sym_c_uint] = ACTIONS(712), + [anon_sym_c_long] = ACTIONS(712), + [anon_sym_c_ulong] = ACTIONS(712), + [anon_sym_c_longlong] = ACTIONS(712), + [anon_sym_c_ulonglong] = ACTIONS(712), + [anon_sym_c_float] = ACTIONS(712), + [anon_sym_c_double] = ACTIONS(712), + [anon_sym_c_longdouble] = ACTIONS(712), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_xor_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(710), + [anon_sym_return] = ACTIONS(712), + [anon_sym_yield] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_defer] = ACTIONS(712), + [anon_sym_errdefer] = ACTIONS(712), [anon_sym_if] = ACTIONS(712), - [anon_sym_while] = ACTIONS(715), - [anon_sym_expand] = ACTIONS(718), - [anon_sym_for] = ACTIONS(721), + [anon_sym_else] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_expand] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_orelse] = ACTIONS(712), + [anon_sym_catch] = ACTIONS(712), + [anon_sym_or] = ACTIONS(712), + [anon_sym_and] = ACTIONS(712), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_xor] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_LT_LT_PIPE] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_try] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_true] = ACTIONS(712), + [anon_sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), + [sym_undefined] = ACTIONS(712), + [sym_sink] = ACTIONS(712), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(710), + [sym_multiline_string] = ACTIONS(710), + [sym_character] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(710), + }, + [STATE(164)] = { + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [anon_sym_import] = ACTIONS(716), + [anon_sym_test] = ACTIONS(716), + [anon_sym_hide] = ACTIONS(716), + [anon_sym_func] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_struct] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_COMMA] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PIPE] = ACTIONS(716), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_void] = ACTIONS(716), + [anon_sym_type] = ACTIONS(716), + [anon_sym_anyopaque] = ACTIONS(716), + [anon_sym_bool] = ACTIONS(716), + [anon_sym_int] = ACTIONS(716), + [anon_sym_uint] = ACTIONS(716), + [anon_sym_float] = ACTIONS(716), + [anon_sym_range] = ACTIONS(716), + [anon_sym_i8] = ACTIONS(716), + [anon_sym_i16] = ACTIONS(716), + [anon_sym_i32] = ACTIONS(716), + [anon_sym_i64] = ACTIONS(716), + [anon_sym_u8] = ACTIONS(716), + [anon_sym_u16] = ACTIONS(716), + [anon_sym_u32] = ACTIONS(716), + [anon_sym_u64] = ACTIONS(716), + [anon_sym_isize] = ACTIONS(716), + [anon_sym_usize] = ACTIONS(716), + [anon_sym_f32] = ACTIONS(716), + [anon_sym_f64] = ACTIONS(716), + [anon_sym_c_char] = ACTIONS(716), + [anon_sym_c_schar] = ACTIONS(716), + [anon_sym_c_uchar] = ACTIONS(716), + [anon_sym_c_short] = ACTIONS(716), + [anon_sym_c_ushort] = ACTIONS(716), + [anon_sym_c_int] = ACTIONS(716), + [anon_sym_c_uint] = ACTIONS(716), + [anon_sym_c_long] = ACTIONS(716), + [anon_sym_c_ulong] = ACTIONS(716), + [anon_sym_c_longlong] = ACTIONS(716), + [anon_sym_c_ulonglong] = ACTIONS(716), + [anon_sym_c_float] = ACTIONS(716), + [anon_sym_c_double] = ACTIONS(716), + [anon_sym_c_longdouble] = ACTIONS(716), + [anon_sym_PLUS_EQ] = ACTIONS(714), + [anon_sym_DASH_EQ] = ACTIONS(714), + [anon_sym_STAR_EQ] = ACTIONS(714), + [anon_sym_SLASH_EQ] = ACTIONS(714), + [anon_sym_AMP_EQ] = ACTIONS(714), + [anon_sym_PIPE_EQ] = ACTIONS(714), + [anon_sym_xor_EQ] = ACTIONS(714), + [anon_sym_LT_LT_EQ] = ACTIONS(714), + [anon_sym_GT_GT_EQ] = ACTIONS(714), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(714), + [anon_sym_return] = ACTIONS(716), + [anon_sym_yield] = ACTIONS(716), + [anon_sym_break] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_defer] = ACTIONS(716), + [anon_sym_errdefer] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_expand] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_match] = ACTIONS(716), + [anon_sym_DOT_DOT] = ACTIONS(716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(714), + [anon_sym_orelse] = ACTIONS(716), + [anon_sym_catch] = ACTIONS(716), + [anon_sym_or] = ACTIONS(716), + [anon_sym_and] = ACTIONS(716), + [anon_sym_EQ_EQ] = ACTIONS(714), + [anon_sym_BANG_EQ] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(716), + [anon_sym_LT_EQ] = ACTIONS(714), + [anon_sym_GT] = ACTIONS(716), + [anon_sym_GT_EQ] = ACTIONS(714), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_xor] = ACTIONS(716), + [anon_sym_LT_LT] = ACTIONS(716), + [anon_sym_GT_GT] = ACTIONS(716), + [anon_sym_LT_LT_PIPE] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_SLASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_try] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(714), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_none] = ACTIONS(716), + [sym_undefined] = ACTIONS(716), + [sym_sink] = ACTIONS(716), + [sym_integer] = ACTIONS(716), + [sym_float] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_multiline_string] = ACTIONS(714), + [sym_character] = ACTIONS(714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(714), + }, + [STATE(165)] = { + [ts_builtin_sym_end] = ACTIONS(718), + [sym_identifier] = ACTIONS(720), + [anon_sym_import] = ACTIONS(720), + [anon_sym_test] = ACTIONS(720), + [anon_sym_hide] = ACTIONS(720), + [anon_sym_func] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_struct] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(718), + [anon_sym_void] = ACTIONS(720), + [anon_sym_type] = ACTIONS(720), + [anon_sym_anyopaque] = ACTIONS(720), + [anon_sym_bool] = ACTIONS(720), + [anon_sym_int] = ACTIONS(720), + [anon_sym_uint] = ACTIONS(720), + [anon_sym_float] = ACTIONS(720), + [anon_sym_range] = ACTIONS(720), + [anon_sym_i8] = ACTIONS(720), + [anon_sym_i16] = ACTIONS(720), + [anon_sym_i32] = ACTIONS(720), + [anon_sym_i64] = ACTIONS(720), + [anon_sym_u8] = ACTIONS(720), + [anon_sym_u16] = ACTIONS(720), + [anon_sym_u32] = ACTIONS(720), + [anon_sym_u64] = ACTIONS(720), + [anon_sym_isize] = ACTIONS(720), + [anon_sym_usize] = ACTIONS(720), + [anon_sym_f32] = ACTIONS(720), + [anon_sym_f64] = ACTIONS(720), + [anon_sym_c_char] = ACTIONS(720), + [anon_sym_c_schar] = ACTIONS(720), + [anon_sym_c_uchar] = ACTIONS(720), + [anon_sym_c_short] = ACTIONS(720), + [anon_sym_c_ushort] = ACTIONS(720), + [anon_sym_c_int] = ACTIONS(720), + [anon_sym_c_uint] = ACTIONS(720), + [anon_sym_c_long] = ACTIONS(720), + [anon_sym_c_ulong] = ACTIONS(720), + [anon_sym_c_longlong] = ACTIONS(720), + [anon_sym_c_ulonglong] = ACTIONS(720), + [anon_sym_c_float] = ACTIONS(720), + [anon_sym_c_double] = ACTIONS(720), + [anon_sym_c_longdouble] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(718), + [anon_sym_DASH_EQ] = ACTIONS(718), + [anon_sym_STAR_EQ] = ACTIONS(718), + [anon_sym_SLASH_EQ] = ACTIONS(718), + [anon_sym_AMP_EQ] = ACTIONS(718), + [anon_sym_PIPE_EQ] = ACTIONS(718), + [anon_sym_xor_EQ] = ACTIONS(718), + [anon_sym_LT_LT_EQ] = ACTIONS(718), + [anon_sym_GT_GT_EQ] = ACTIONS(718), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(718), + [anon_sym_return] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(720), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_defer] = ACTIONS(720), + [anon_sym_errdefer] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_else] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_expand] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_match] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(718), + [anon_sym_orelse] = ACTIONS(720), + [anon_sym_catch] = ACTIONS(720), + [anon_sym_or] = ACTIONS(720), + [anon_sym_and] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(718), + [anon_sym_BANG_EQ] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_LT_EQ] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_xor] = ACTIONS(720), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_LT_LT_PIPE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_try] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(718), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_none] = ACTIONS(720), + [sym_undefined] = ACTIONS(720), + [sym_sink] = ACTIONS(720), + [sym_integer] = ACTIONS(720), + [sym_float] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(718), + [sym_multiline_string] = ACTIONS(718), + [sym_character] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(718), + }, + [STATE(166)] = { + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [anon_sym_import] = ACTIONS(724), + [anon_sym_test] = ACTIONS(724), + [anon_sym_hide] = ACTIONS(724), + [anon_sym_func] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(724), + [anon_sym_struct] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_void] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_anyopaque] = ACTIONS(724), + [anon_sym_bool] = ACTIONS(724), + [anon_sym_int] = ACTIONS(724), + [anon_sym_uint] = ACTIONS(724), + [anon_sym_float] = ACTIONS(724), + [anon_sym_range] = ACTIONS(724), + [anon_sym_i8] = ACTIONS(724), + [anon_sym_i16] = ACTIONS(724), + [anon_sym_i32] = ACTIONS(724), + [anon_sym_i64] = ACTIONS(724), + [anon_sym_u8] = ACTIONS(724), + [anon_sym_u16] = ACTIONS(724), + [anon_sym_u32] = ACTIONS(724), + [anon_sym_u64] = ACTIONS(724), + [anon_sym_isize] = ACTIONS(724), + [anon_sym_usize] = ACTIONS(724), + [anon_sym_f32] = ACTIONS(724), + [anon_sym_f64] = ACTIONS(724), + [anon_sym_c_char] = ACTIONS(724), + [anon_sym_c_schar] = ACTIONS(724), + [anon_sym_c_uchar] = ACTIONS(724), + [anon_sym_c_short] = ACTIONS(724), + [anon_sym_c_ushort] = ACTIONS(724), + [anon_sym_c_int] = ACTIONS(724), + [anon_sym_c_uint] = ACTIONS(724), + [anon_sym_c_long] = ACTIONS(724), + [anon_sym_c_ulong] = ACTIONS(724), + [anon_sym_c_longlong] = ACTIONS(724), + [anon_sym_c_ulonglong] = ACTIONS(724), + [anon_sym_c_float] = ACTIONS(724), + [anon_sym_c_double] = ACTIONS(724), + [anon_sym_c_longdouble] = ACTIONS(724), + [anon_sym_PLUS_EQ] = ACTIONS(722), + [anon_sym_DASH_EQ] = ACTIONS(722), + [anon_sym_STAR_EQ] = ACTIONS(722), + [anon_sym_SLASH_EQ] = ACTIONS(722), + [anon_sym_AMP_EQ] = ACTIONS(722), + [anon_sym_PIPE_EQ] = ACTIONS(722), + [anon_sym_xor_EQ] = ACTIONS(722), + [anon_sym_LT_LT_EQ] = ACTIONS(722), + [anon_sym_GT_GT_EQ] = ACTIONS(722), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(722), + [anon_sym_return] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_defer] = ACTIONS(724), + [anon_sym_errdefer] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_expand] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), [anon_sym_match] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_try] = ACTIONS(727), - [anon_sym_DOT] = ACTIONS(730), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), + [anon_sym_DOT_DOT] = ACTIONS(724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(722), + [anon_sym_orelse] = ACTIONS(724), + [anon_sym_catch] = ACTIONS(724), + [anon_sym_or] = ACTIONS(724), + [anon_sym_and] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(722), + [anon_sym_BANG_EQ] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_LT_EQ] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_EQ] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_xor] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_LT_LT_PIPE] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_try] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(722), + [anon_sym_true] = ACTIONS(724), + [anon_sym_false] = ACTIONS(724), + [sym_none] = ACTIONS(724), + [sym_undefined] = ACTIONS(724), + [sym_sink] = ACTIONS(724), + [sym_integer] = ACTIONS(724), + [sym_float] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym_multiline_string] = ACTIONS(722), + [sym_character] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(722), + }, + [STATE(167)] = { + [ts_builtin_sym_end] = ACTIONS(726), + [sym_identifier] = ACTIONS(728), + [anon_sym_import] = ACTIONS(728), + [anon_sym_test] = ACTIONS(728), + [anon_sym_hide] = ACTIONS(728), + [anon_sym_func] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(728), + [anon_sym_EQ] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_void] = ACTIONS(728), + [anon_sym_type] = ACTIONS(728), + [anon_sym_anyopaque] = ACTIONS(728), + [anon_sym_bool] = ACTIONS(728), + [anon_sym_int] = ACTIONS(728), + [anon_sym_uint] = ACTIONS(728), + [anon_sym_float] = ACTIONS(728), + [anon_sym_range] = ACTIONS(728), + [anon_sym_i8] = ACTIONS(728), + [anon_sym_i16] = ACTIONS(728), + [anon_sym_i32] = ACTIONS(728), + [anon_sym_i64] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(728), + [anon_sym_u16] = ACTIONS(728), + [anon_sym_u32] = ACTIONS(728), + [anon_sym_u64] = ACTIONS(728), + [anon_sym_isize] = ACTIONS(728), + [anon_sym_usize] = ACTIONS(728), + [anon_sym_f32] = ACTIONS(728), + [anon_sym_f64] = ACTIONS(728), + [anon_sym_c_char] = ACTIONS(728), + [anon_sym_c_schar] = ACTIONS(728), + [anon_sym_c_uchar] = ACTIONS(728), + [anon_sym_c_short] = ACTIONS(728), + [anon_sym_c_ushort] = ACTIONS(728), + [anon_sym_c_int] = ACTIONS(728), + [anon_sym_c_uint] = ACTIONS(728), + [anon_sym_c_long] = ACTIONS(728), + [anon_sym_c_ulong] = ACTIONS(728), + [anon_sym_c_longlong] = ACTIONS(728), + [anon_sym_c_ulonglong] = ACTIONS(728), + [anon_sym_c_float] = ACTIONS(728), + [anon_sym_c_double] = ACTIONS(728), + [anon_sym_c_longdouble] = ACTIONS(728), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_AMP_EQ] = ACTIONS(726), + [anon_sym_PIPE_EQ] = ACTIONS(726), + [anon_sym_xor_EQ] = ACTIONS(726), + [anon_sym_LT_LT_EQ] = ACTIONS(726), + [anon_sym_GT_GT_EQ] = ACTIONS(726), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(726), + [anon_sym_return] = ACTIONS(728), + [anon_sym_yield] = ACTIONS(728), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_defer] = ACTIONS(728), + [anon_sym_errdefer] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_expand] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_match] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(726), + [anon_sym_orelse] = ACTIONS(728), + [anon_sym_catch] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + [anon_sym_xor] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_LT_LT_PIPE] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_try] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [sym_none] = ACTIONS(728), + [sym_undefined] = ACTIONS(728), + [sym_sink] = ACTIONS(728), + [sym_integer] = ACTIONS(728), + [sym_float] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_multiline_string] = ACTIONS(726), + [sym_character] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(726), + }, + [STATE(168)] = { + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [anon_sym_import] = ACTIONS(732), + [anon_sym_test] = ACTIONS(732), + [anon_sym_hide] = ACTIONS(732), + [anon_sym_func] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_EQ] = ACTIONS(732), + [anon_sym_struct] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_QMARK] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_void] = ACTIONS(732), + [anon_sym_type] = ACTIONS(732), + [anon_sym_anyopaque] = ACTIONS(732), + [anon_sym_bool] = ACTIONS(732), + [anon_sym_int] = ACTIONS(732), + [anon_sym_uint] = ACTIONS(732), + [anon_sym_float] = ACTIONS(732), + [anon_sym_range] = ACTIONS(732), + [anon_sym_i8] = ACTIONS(732), + [anon_sym_i16] = ACTIONS(732), + [anon_sym_i32] = ACTIONS(732), + [anon_sym_i64] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(732), + [anon_sym_u16] = ACTIONS(732), + [anon_sym_u32] = ACTIONS(732), + [anon_sym_u64] = ACTIONS(732), + [anon_sym_isize] = ACTIONS(732), + [anon_sym_usize] = ACTIONS(732), + [anon_sym_f32] = ACTIONS(732), + [anon_sym_f64] = ACTIONS(732), + [anon_sym_c_char] = ACTIONS(732), + [anon_sym_c_schar] = ACTIONS(732), + [anon_sym_c_uchar] = ACTIONS(732), + [anon_sym_c_short] = ACTIONS(732), + [anon_sym_c_ushort] = ACTIONS(732), + [anon_sym_c_int] = ACTIONS(732), + [anon_sym_c_uint] = ACTIONS(732), + [anon_sym_c_long] = ACTIONS(732), + [anon_sym_c_ulong] = ACTIONS(732), + [anon_sym_c_longlong] = ACTIONS(732), + [anon_sym_c_ulonglong] = ACTIONS(732), + [anon_sym_c_float] = ACTIONS(732), + [anon_sym_c_double] = ACTIONS(732), + [anon_sym_c_longdouble] = ACTIONS(732), + [anon_sym_PLUS_EQ] = ACTIONS(730), + [anon_sym_DASH_EQ] = ACTIONS(730), + [anon_sym_STAR_EQ] = ACTIONS(730), + [anon_sym_SLASH_EQ] = ACTIONS(730), + [anon_sym_AMP_EQ] = ACTIONS(730), + [anon_sym_PIPE_EQ] = ACTIONS(730), + [anon_sym_xor_EQ] = ACTIONS(730), + [anon_sym_LT_LT_EQ] = ACTIONS(730), + [anon_sym_GT_GT_EQ] = ACTIONS(730), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(730), + [anon_sym_return] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(732), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_defer] = ACTIONS(732), + [anon_sym_errdefer] = ACTIONS(732), + [anon_sym_if] = ACTIONS(732), + [anon_sym_else] = ACTIONS(732), + [anon_sym_while] = ACTIONS(732), + [anon_sym_expand] = ACTIONS(732), + [anon_sym_for] = ACTIONS(732), + [anon_sym_match] = ACTIONS(732), + [anon_sym_DOT_DOT] = ACTIONS(732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [anon_sym_orelse] = ACTIONS(732), + [anon_sym_catch] = ACTIONS(732), + [anon_sym_or] = ACTIONS(732), + [anon_sym_and] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + [anon_sym_xor] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_LT_LT_PIPE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(732), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_try] = ACTIONS(732), + [anon_sym_DOT] = ACTIONS(732), + [anon_sym_CARET] = ACTIONS(730), + [anon_sym_true] = ACTIONS(732), + [anon_sym_false] = ACTIONS(732), + [sym_none] = ACTIONS(732), + [sym_undefined] = ACTIONS(732), + [sym_sink] = ACTIONS(732), + [sym_integer] = ACTIONS(732), + [sym_float] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym_multiline_string] = ACTIONS(730), + [sym_character] = ACTIONS(730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(730), + }, + [STATE(169)] = { + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [anon_sym_import] = ACTIONS(736), + [anon_sym_test] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_func] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_struct] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_void] = ACTIONS(736), + [anon_sym_type] = ACTIONS(736), + [anon_sym_anyopaque] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_int] = ACTIONS(736), + [anon_sym_uint] = ACTIONS(736), + [anon_sym_float] = ACTIONS(736), + [anon_sym_range] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_c_char] = ACTIONS(736), + [anon_sym_c_schar] = ACTIONS(736), + [anon_sym_c_uchar] = ACTIONS(736), + [anon_sym_c_short] = ACTIONS(736), + [anon_sym_c_ushort] = ACTIONS(736), + [anon_sym_c_int] = ACTIONS(736), + [anon_sym_c_uint] = ACTIONS(736), + [anon_sym_c_long] = ACTIONS(736), + [anon_sym_c_ulong] = ACTIONS(736), + [anon_sym_c_longlong] = ACTIONS(736), + [anon_sym_c_ulonglong] = ACTIONS(736), + [anon_sym_c_float] = ACTIONS(736), + [anon_sym_c_double] = ACTIONS(736), + [anon_sym_c_longdouble] = ACTIONS(736), + [anon_sym_PLUS_EQ] = ACTIONS(734), + [anon_sym_DASH_EQ] = ACTIONS(734), + [anon_sym_STAR_EQ] = ACTIONS(734), + [anon_sym_SLASH_EQ] = ACTIONS(734), + [anon_sym_AMP_EQ] = ACTIONS(734), + [anon_sym_PIPE_EQ] = ACTIONS(734), + [anon_sym_xor_EQ] = ACTIONS(734), + [anon_sym_LT_LT_EQ] = ACTIONS(734), + [anon_sym_GT_GT_EQ] = ACTIONS(734), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(734), + [anon_sym_return] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_defer] = ACTIONS(736), + [anon_sym_errdefer] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_else] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_expand] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(734), + [anon_sym_orelse] = ACTIONS(736), + [anon_sym_catch] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(734), + [anon_sym_BANG_EQ] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_LT_LT_PIPE] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_try] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), [sym_none] = ACTIONS(736), [sym_undefined] = ACTIONS(736), - [sym_sink] = ACTIONS(739), + [sym_sink] = ACTIONS(736), [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(742), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_multiline_string] = ACTIONS(742), - [sym_character] = ACTIONS(742), + [sym_float] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_multiline_string] = ACTIONS(734), + [sym_character] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(734), + }, + [STATE(170)] = { + [ts_builtin_sym_end] = ACTIONS(738), + [sym_identifier] = ACTIONS(740), + [anon_sym_import] = ACTIONS(740), + [anon_sym_test] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_func] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_EQ] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(738), + [anon_sym_void] = ACTIONS(740), + [anon_sym_type] = ACTIONS(740), + [anon_sym_anyopaque] = ACTIONS(740), + [anon_sym_bool] = ACTIONS(740), + [anon_sym_int] = ACTIONS(740), + [anon_sym_uint] = ACTIONS(740), + [anon_sym_float] = ACTIONS(740), + [anon_sym_range] = ACTIONS(740), + [anon_sym_i8] = ACTIONS(740), + [anon_sym_i16] = ACTIONS(740), + [anon_sym_i32] = ACTIONS(740), + [anon_sym_i64] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(740), + [anon_sym_u16] = ACTIONS(740), + [anon_sym_u32] = ACTIONS(740), + [anon_sym_u64] = ACTIONS(740), + [anon_sym_isize] = ACTIONS(740), + [anon_sym_usize] = ACTIONS(740), + [anon_sym_f32] = ACTIONS(740), + [anon_sym_f64] = ACTIONS(740), + [anon_sym_c_char] = ACTIONS(740), + [anon_sym_c_schar] = ACTIONS(740), + [anon_sym_c_uchar] = ACTIONS(740), + [anon_sym_c_short] = ACTIONS(740), + [anon_sym_c_ushort] = ACTIONS(740), + [anon_sym_c_int] = ACTIONS(740), + [anon_sym_c_uint] = ACTIONS(740), + [anon_sym_c_long] = ACTIONS(740), + [anon_sym_c_ulong] = ACTIONS(740), + [anon_sym_c_longlong] = ACTIONS(740), + [anon_sym_c_ulonglong] = ACTIONS(740), + [anon_sym_c_float] = ACTIONS(740), + [anon_sym_c_double] = ACTIONS(740), + [anon_sym_c_longdouble] = ACTIONS(740), + [anon_sym_PLUS_EQ] = ACTIONS(738), + [anon_sym_DASH_EQ] = ACTIONS(738), + [anon_sym_STAR_EQ] = ACTIONS(738), + [anon_sym_SLASH_EQ] = ACTIONS(738), + [anon_sym_AMP_EQ] = ACTIONS(738), + [anon_sym_PIPE_EQ] = ACTIONS(738), + [anon_sym_xor_EQ] = ACTIONS(738), + [anon_sym_LT_LT_EQ] = ACTIONS(738), + [anon_sym_GT_GT_EQ] = ACTIONS(738), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(738), + [anon_sym_return] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_defer] = ACTIONS(740), + [anon_sym_errdefer] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_else] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_expand] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(738), + [anon_sym_orelse] = ACTIONS(740), + [anon_sym_catch] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(738), + [anon_sym_BANG_EQ] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(740), + [anon_sym_GT_GT] = ACTIONS(740), + [anon_sym_LT_LT_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_try] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [sym_none] = ACTIONS(740), + [sym_undefined] = ACTIONS(740), + [sym_sink] = ACTIONS(740), + [sym_integer] = ACTIONS(740), + [sym_float] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_multiline_string] = ACTIONS(738), + [sym_character] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(738), + }, + [STATE(171)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3063), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3063), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(742), + }, + [STATE(172)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3063), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3063), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(173)] = { + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_test] = ACTIONS(746), + [anon_sym_hide] = ACTIONS(746), + [anon_sym_func] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_struct] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_void] = ACTIONS(746), + [anon_sym_type] = ACTIONS(746), + [anon_sym_anyopaque] = ACTIONS(746), + [anon_sym_bool] = ACTIONS(746), + [anon_sym_int] = ACTIONS(746), + [anon_sym_uint] = ACTIONS(746), + [anon_sym_float] = ACTIONS(746), + [anon_sym_range] = ACTIONS(746), + [anon_sym_i8] = ACTIONS(746), + [anon_sym_i16] = ACTIONS(746), + [anon_sym_i32] = ACTIONS(746), + [anon_sym_i64] = ACTIONS(746), + [anon_sym_u8] = ACTIONS(746), + [anon_sym_u16] = ACTIONS(746), + [anon_sym_u32] = ACTIONS(746), + [anon_sym_u64] = ACTIONS(746), + [anon_sym_isize] = ACTIONS(746), + [anon_sym_usize] = ACTIONS(746), + [anon_sym_f32] = ACTIONS(746), + [anon_sym_f64] = ACTIONS(746), + [anon_sym_c_char] = ACTIONS(746), + [anon_sym_c_schar] = ACTIONS(746), + [anon_sym_c_uchar] = ACTIONS(746), + [anon_sym_c_short] = ACTIONS(746), + [anon_sym_c_ushort] = ACTIONS(746), + [anon_sym_c_int] = ACTIONS(746), + [anon_sym_c_uint] = ACTIONS(746), + [anon_sym_c_long] = ACTIONS(746), + [anon_sym_c_ulong] = ACTIONS(746), + [anon_sym_c_longlong] = ACTIONS(746), + [anon_sym_c_ulonglong] = ACTIONS(746), + [anon_sym_c_float] = ACTIONS(746), + [anon_sym_c_double] = ACTIONS(746), + [anon_sym_c_longdouble] = ACTIONS(746), + [anon_sym_PLUS_EQ] = ACTIONS(744), + [anon_sym_DASH_EQ] = ACTIONS(744), + [anon_sym_STAR_EQ] = ACTIONS(744), + [anon_sym_SLASH_EQ] = ACTIONS(744), + [anon_sym_AMP_EQ] = ACTIONS(744), + [anon_sym_PIPE_EQ] = ACTIONS(744), + [anon_sym_xor_EQ] = ACTIONS(744), + [anon_sym_LT_LT_EQ] = ACTIONS(744), + [anon_sym_GT_GT_EQ] = ACTIONS(744), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(744), + [anon_sym_return] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_break] = ACTIONS(746), + [anon_sym_continue] = ACTIONS(746), + [anon_sym_defer] = ACTIONS(746), + [anon_sym_errdefer] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_else] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_expand] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_match] = ACTIONS(746), + [anon_sym_DOT_DOT] = ACTIONS(746), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [anon_sym_orelse] = ACTIONS(746), + [anon_sym_catch] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_xor] = ACTIONS(746), + [anon_sym_LT_LT] = ACTIONS(746), + [anon_sym_GT_GT] = ACTIONS(746), + [anon_sym_LT_LT_PIPE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_try] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_true] = ACTIONS(746), + [anon_sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_sink] = ACTIONS(746), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym_multiline_string] = ACTIONS(744), + [sym_character] = ACTIONS(744), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(744), + }, + [STATE(174)] = { + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_test] = ACTIONS(750), + [anon_sym_hide] = ACTIONS(750), + [anon_sym_func] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_struct] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_void] = ACTIONS(750), + [anon_sym_type] = ACTIONS(750), + [anon_sym_anyopaque] = ACTIONS(750), + [anon_sym_bool] = ACTIONS(750), + [anon_sym_int] = ACTIONS(750), + [anon_sym_uint] = ACTIONS(750), + [anon_sym_float] = ACTIONS(750), + [anon_sym_range] = ACTIONS(750), + [anon_sym_i8] = ACTIONS(750), + [anon_sym_i16] = ACTIONS(750), + [anon_sym_i32] = ACTIONS(750), + [anon_sym_i64] = ACTIONS(750), + [anon_sym_u8] = ACTIONS(750), + [anon_sym_u16] = ACTIONS(750), + [anon_sym_u32] = ACTIONS(750), + [anon_sym_u64] = ACTIONS(750), + [anon_sym_isize] = ACTIONS(750), + [anon_sym_usize] = ACTIONS(750), + [anon_sym_f32] = ACTIONS(750), + [anon_sym_f64] = ACTIONS(750), + [anon_sym_c_char] = ACTIONS(750), + [anon_sym_c_schar] = ACTIONS(750), + [anon_sym_c_uchar] = ACTIONS(750), + [anon_sym_c_short] = ACTIONS(750), + [anon_sym_c_ushort] = ACTIONS(750), + [anon_sym_c_int] = ACTIONS(750), + [anon_sym_c_uint] = ACTIONS(750), + [anon_sym_c_long] = ACTIONS(750), + [anon_sym_c_ulong] = ACTIONS(750), + [anon_sym_c_longlong] = ACTIONS(750), + [anon_sym_c_ulonglong] = ACTIONS(750), + [anon_sym_c_float] = ACTIONS(750), + [anon_sym_c_double] = ACTIONS(750), + [anon_sym_c_longdouble] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(748), + [anon_sym_DASH_EQ] = ACTIONS(748), + [anon_sym_STAR_EQ] = ACTIONS(748), + [anon_sym_SLASH_EQ] = ACTIONS(748), + [anon_sym_AMP_EQ] = ACTIONS(748), + [anon_sym_PIPE_EQ] = ACTIONS(748), + [anon_sym_xor_EQ] = ACTIONS(748), + [anon_sym_LT_LT_EQ] = ACTIONS(748), + [anon_sym_GT_GT_EQ] = ACTIONS(748), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(748), + [anon_sym_return] = ACTIONS(750), + [anon_sym_yield] = ACTIONS(750), + [anon_sym_break] = ACTIONS(750), + [anon_sym_continue] = ACTIONS(750), + [anon_sym_defer] = ACTIONS(750), + [anon_sym_errdefer] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_else] = ACTIONS(750), + [anon_sym_while] = ACTIONS(750), + [anon_sym_expand] = ACTIONS(750), + [anon_sym_for] = ACTIONS(750), + [anon_sym_match] = ACTIONS(750), + [anon_sym_DOT_DOT] = ACTIONS(750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [anon_sym_orelse] = ACTIONS(750), + [anon_sym_catch] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_xor] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(750), + [anon_sym_LT_LT_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_try] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), + [sym_sink] = ACTIONS(750), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_multiline_string] = ACTIONS(748), + [sym_character] = ACTIONS(748), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(748), }, - [STATE(110)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2755), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2755), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [STATE(175)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(751), + [sym__newline] = ACTIONS(754), }, - [STATE(111)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2755), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2755), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [STATE(176)] = { + [ts_builtin_sym_end] = ACTIONS(756), + [sym_identifier] = ACTIONS(758), + [anon_sym_import] = ACTIONS(758), + [anon_sym_test] = ACTIONS(758), + [anon_sym_hide] = ACTIONS(758), + [anon_sym_func] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_void] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_anyopaque] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_int] = ACTIONS(758), + [anon_sym_uint] = ACTIONS(758), + [anon_sym_float] = ACTIONS(758), + [anon_sym_range] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_c_char] = ACTIONS(758), + [anon_sym_c_schar] = ACTIONS(758), + [anon_sym_c_uchar] = ACTIONS(758), + [anon_sym_c_short] = ACTIONS(758), + [anon_sym_c_ushort] = ACTIONS(758), + [anon_sym_c_int] = ACTIONS(758), + [anon_sym_c_uint] = ACTIONS(758), + [anon_sym_c_long] = ACTIONS(758), + [anon_sym_c_ulong] = ACTIONS(758), + [anon_sym_c_longlong] = ACTIONS(758), + [anon_sym_c_ulonglong] = ACTIONS(758), + [anon_sym_c_float] = ACTIONS(758), + [anon_sym_c_double] = ACTIONS(758), + [anon_sym_c_longdouble] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(756), + [anon_sym_DASH_EQ] = ACTIONS(756), + [anon_sym_STAR_EQ] = ACTIONS(756), + [anon_sym_SLASH_EQ] = ACTIONS(756), + [anon_sym_AMP_EQ] = ACTIONS(756), + [anon_sym_PIPE_EQ] = ACTIONS(756), + [anon_sym_xor_EQ] = ACTIONS(756), + [anon_sym_LT_LT_EQ] = ACTIONS(756), + [anon_sym_GT_GT_EQ] = ACTIONS(756), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(756), + [anon_sym_return] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_defer] = ACTIONS(758), + [anon_sym_errdefer] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_else] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_expand] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [anon_sym_orelse] = ACTIONS(758), + [anon_sym_catch] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_LT_LT_PIPE] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_try] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_none] = ACTIONS(758), + [sym_undefined] = ACTIONS(758), + [sym_sink] = ACTIONS(758), + [sym_integer] = ACTIONS(758), + [sym_float] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_multiline_string] = ACTIONS(756), + [sym_character] = ACTIONS(756), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(756), }, - [STATE(112)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2536), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2536), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [STATE(177)] = { + [ts_builtin_sym_end] = ACTIONS(760), + [sym_identifier] = ACTIONS(762), + [anon_sym_import] = ACTIONS(762), + [anon_sym_test] = ACTIONS(762), + [anon_sym_hide] = ACTIONS(762), + [anon_sym_func] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_void] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_anyopaque] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_int] = ACTIONS(762), + [anon_sym_uint] = ACTIONS(762), + [anon_sym_float] = ACTIONS(762), + [anon_sym_range] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_c_char] = ACTIONS(762), + [anon_sym_c_schar] = ACTIONS(762), + [anon_sym_c_uchar] = ACTIONS(762), + [anon_sym_c_short] = ACTIONS(762), + [anon_sym_c_ushort] = ACTIONS(762), + [anon_sym_c_int] = ACTIONS(762), + [anon_sym_c_uint] = ACTIONS(762), + [anon_sym_c_long] = ACTIONS(762), + [anon_sym_c_ulong] = ACTIONS(762), + [anon_sym_c_longlong] = ACTIONS(762), + [anon_sym_c_ulonglong] = ACTIONS(762), + [anon_sym_c_float] = ACTIONS(762), + [anon_sym_c_double] = ACTIONS(762), + [anon_sym_c_longdouble] = ACTIONS(762), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_xor_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(760), + [anon_sym_return] = ACTIONS(762), + [anon_sym_yield] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_defer] = ACTIONS(762), + [anon_sym_errdefer] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_else] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_expand] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_orelse] = ACTIONS(762), + [anon_sym_catch] = ACTIONS(762), + [anon_sym_or] = ACTIONS(762), + [anon_sym_and] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_xor] = ACTIONS(762), + [anon_sym_LT_LT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_LT_LT_PIPE] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_try] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [sym_none] = ACTIONS(762), + [sym_undefined] = ACTIONS(762), + [sym_sink] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_multiline_string] = ACTIONS(760), + [sym_character] = ACTIONS(760), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(753), + [sym__newline] = ACTIONS(760), }, - [STATE(113)] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_test] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_func] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_void] = ACTIONS(757), - [anon_sym_anyopaque] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_int] = ACTIONS(757), - [anon_sym_uint] = ACTIONS(757), - [anon_sym_float] = ACTIONS(757), - [anon_sym_range] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_c_char] = ACTIONS(757), - [anon_sym_c_schar] = ACTIONS(757), - [anon_sym_c_uchar] = ACTIONS(757), - [anon_sym_c_short] = ACTIONS(757), - [anon_sym_c_ushort] = ACTIONS(757), - [anon_sym_c_int] = ACTIONS(757), - [anon_sym_c_uint] = ACTIONS(757), - [anon_sym_c_long] = ACTIONS(757), - [anon_sym_c_ulong] = ACTIONS(757), - [anon_sym_c_longlong] = ACTIONS(757), - [anon_sym_c_ulonglong] = ACTIONS(757), - [anon_sym_c_float] = ACTIONS(757), - [anon_sym_c_double] = ACTIONS(757), - [anon_sym_c_longdouble] = ACTIONS(757), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_xor_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(755), - [anon_sym_return] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_defer] = ACTIONS(757), - [anon_sym_errdefer] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_expand] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_orelse] = ACTIONS(757), - [anon_sym_catch] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_LT_LT_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_try] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(755), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_undefined] = ACTIONS(757), - [sym_sink] = ACTIONS(757), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_multiline_string] = ACTIONS(755), - [sym_character] = ACTIONS(755), + [STATE(178)] = { + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_test] = ACTIONS(766), + [anon_sym_hide] = ACTIONS(766), + [anon_sym_func] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_void] = ACTIONS(766), + [anon_sym_type] = ACTIONS(766), + [anon_sym_anyopaque] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_int] = ACTIONS(766), + [anon_sym_uint] = ACTIONS(766), + [anon_sym_float] = ACTIONS(766), + [anon_sym_range] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_c_char] = ACTIONS(766), + [anon_sym_c_schar] = ACTIONS(766), + [anon_sym_c_uchar] = ACTIONS(766), + [anon_sym_c_short] = ACTIONS(766), + [anon_sym_c_ushort] = ACTIONS(766), + [anon_sym_c_int] = ACTIONS(766), + [anon_sym_c_uint] = ACTIONS(766), + [anon_sym_c_long] = ACTIONS(766), + [anon_sym_c_ulong] = ACTIONS(766), + [anon_sym_c_longlong] = ACTIONS(766), + [anon_sym_c_ulonglong] = ACTIONS(766), + [anon_sym_c_float] = ACTIONS(766), + [anon_sym_c_double] = ACTIONS(766), + [anon_sym_c_longdouble] = ACTIONS(766), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_AMP_EQ] = ACTIONS(764), + [anon_sym_PIPE_EQ] = ACTIONS(764), + [anon_sym_xor_EQ] = ACTIONS(764), + [anon_sym_LT_LT_EQ] = ACTIONS(764), + [anon_sym_GT_GT_EQ] = ACTIONS(764), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(764), + [anon_sym_return] = ACTIONS(766), + [anon_sym_yield] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_defer] = ACTIONS(766), + [anon_sym_errdefer] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_expand] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_match] = ACTIONS(766), + [anon_sym_DOT_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_orelse] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_or] = ACTIONS(766), + [anon_sym_and] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_xor] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(766), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_LT_LT_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [sym_none] = ACTIONS(766), + [sym_undefined] = ACTIONS(766), + [sym_sink] = ACTIONS(766), + [sym_integer] = ACTIONS(766), + [sym_float] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_multiline_string] = ACTIONS(764), + [sym_character] = ACTIONS(764), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), + [sym__newline] = ACTIONS(764), }, - [STATE(114)] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(761), - [anon_sym_import] = ACTIONS(761), - [anon_sym_test] = ACTIONS(761), - [anon_sym_hide] = ACTIONS(761), - [anon_sym_func] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(761), - [anon_sym_struct] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_void] = ACTIONS(761), - [anon_sym_anyopaque] = ACTIONS(761), - [anon_sym_bool] = ACTIONS(761), - [anon_sym_int] = ACTIONS(761), - [anon_sym_uint] = ACTIONS(761), - [anon_sym_float] = ACTIONS(761), - [anon_sym_range] = ACTIONS(761), - [anon_sym_i8] = ACTIONS(761), - [anon_sym_i16] = ACTIONS(761), - [anon_sym_i32] = ACTIONS(761), - [anon_sym_i64] = ACTIONS(761), - [anon_sym_u8] = ACTIONS(761), - [anon_sym_u16] = ACTIONS(761), - [anon_sym_u32] = ACTIONS(761), - [anon_sym_u64] = ACTIONS(761), - [anon_sym_isize] = ACTIONS(761), - [anon_sym_usize] = ACTIONS(761), - [anon_sym_f32] = ACTIONS(761), - [anon_sym_f64] = ACTIONS(761), - [anon_sym_c_char] = ACTIONS(761), - [anon_sym_c_schar] = ACTIONS(761), - [anon_sym_c_uchar] = ACTIONS(761), - [anon_sym_c_short] = ACTIONS(761), - [anon_sym_c_ushort] = ACTIONS(761), - [anon_sym_c_int] = ACTIONS(761), - [anon_sym_c_uint] = ACTIONS(761), - [anon_sym_c_long] = ACTIONS(761), - [anon_sym_c_ulong] = ACTIONS(761), - [anon_sym_c_longlong] = ACTIONS(761), - [anon_sym_c_ulonglong] = ACTIONS(761), - [anon_sym_c_float] = ACTIONS(761), - [anon_sym_c_double] = ACTIONS(761), - [anon_sym_c_longdouble] = ACTIONS(761), - [anon_sym_PLUS_EQ] = ACTIONS(759), - [anon_sym_DASH_EQ] = ACTIONS(759), - [anon_sym_STAR_EQ] = ACTIONS(759), - [anon_sym_SLASH_EQ] = ACTIONS(759), - [anon_sym_AMP_EQ] = ACTIONS(759), - [anon_sym_PIPE_EQ] = ACTIONS(759), - [anon_sym_xor_EQ] = ACTIONS(759), - [anon_sym_LT_LT_EQ] = ACTIONS(759), - [anon_sym_GT_GT_EQ] = ACTIONS(759), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(759), - [anon_sym_return] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_break] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(761), - [anon_sym_defer] = ACTIONS(761), - [anon_sym_errdefer] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_expand] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_match] = ACTIONS(761), - [anon_sym_DOT_DOT] = ACTIONS(761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_orelse] = ACTIONS(761), - [anon_sym_catch] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_LT_LT] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(761), - [anon_sym_LT_LT_PIPE] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(761), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_try] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_true] = ACTIONS(761), - [anon_sym_false] = ACTIONS(761), - [sym_none] = ACTIONS(761), - [sym_undefined] = ACTIONS(761), - [sym_sink] = ACTIONS(761), - [sym_integer] = ACTIONS(761), - [sym_float] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_multiline_string] = ACTIONS(759), - [sym_character] = ACTIONS(759), + [STATE(179)] = { + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_test] = ACTIONS(770), + [anon_sym_hide] = ACTIONS(770), + [anon_sym_func] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_struct] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_void] = ACTIONS(770), + [anon_sym_type] = ACTIONS(770), + [anon_sym_anyopaque] = ACTIONS(770), + [anon_sym_bool] = ACTIONS(770), + [anon_sym_int] = ACTIONS(770), + [anon_sym_uint] = ACTIONS(770), + [anon_sym_float] = ACTIONS(770), + [anon_sym_range] = ACTIONS(770), + [anon_sym_i8] = ACTIONS(770), + [anon_sym_i16] = ACTIONS(770), + [anon_sym_i32] = ACTIONS(770), + [anon_sym_i64] = ACTIONS(770), + [anon_sym_u8] = ACTIONS(770), + [anon_sym_u16] = ACTIONS(770), + [anon_sym_u32] = ACTIONS(770), + [anon_sym_u64] = ACTIONS(770), + [anon_sym_isize] = ACTIONS(770), + [anon_sym_usize] = ACTIONS(770), + [anon_sym_f32] = ACTIONS(770), + [anon_sym_f64] = ACTIONS(770), + [anon_sym_c_char] = ACTIONS(770), + [anon_sym_c_schar] = ACTIONS(770), + [anon_sym_c_uchar] = ACTIONS(770), + [anon_sym_c_short] = ACTIONS(770), + [anon_sym_c_ushort] = ACTIONS(770), + [anon_sym_c_int] = ACTIONS(770), + [anon_sym_c_uint] = ACTIONS(770), + [anon_sym_c_long] = ACTIONS(770), + [anon_sym_c_ulong] = ACTIONS(770), + [anon_sym_c_longlong] = ACTIONS(770), + [anon_sym_c_ulonglong] = ACTIONS(770), + [anon_sym_c_float] = ACTIONS(770), + [anon_sym_c_double] = ACTIONS(770), + [anon_sym_c_longdouble] = ACTIONS(770), + [anon_sym_PLUS_EQ] = ACTIONS(768), + [anon_sym_DASH_EQ] = ACTIONS(768), + [anon_sym_STAR_EQ] = ACTIONS(768), + [anon_sym_SLASH_EQ] = ACTIONS(768), + [anon_sym_AMP_EQ] = ACTIONS(768), + [anon_sym_PIPE_EQ] = ACTIONS(768), + [anon_sym_xor_EQ] = ACTIONS(768), + [anon_sym_LT_LT_EQ] = ACTIONS(768), + [anon_sym_GT_GT_EQ] = ACTIONS(768), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(768), + [anon_sym_return] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_defer] = ACTIONS(770), + [anon_sym_errdefer] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_expand] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_match] = ACTIONS(770), + [anon_sym_DOT_DOT] = ACTIONS(770), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [anon_sym_orelse] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_or] = ACTIONS(770), + [anon_sym_and] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_xor] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_LT_LT_PIPE] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_true] = ACTIONS(770), + [anon_sym_false] = ACTIONS(770), + [sym_none] = ACTIONS(770), + [sym_undefined] = ACTIONS(770), + [sym_sink] = ACTIONS(770), + [sym_integer] = ACTIONS(770), + [sym_float] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_multiline_string] = ACTIONS(768), + [sym_character] = ACTIONS(768), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), + [sym__newline] = ACTIONS(768), }, - [STATE(115)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [STATE(180)] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_test] = ACTIONS(774), + [anon_sym_hide] = ACTIONS(774), + [anon_sym_func] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_void] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_anyopaque] = ACTIONS(774), + [anon_sym_bool] = ACTIONS(774), + [anon_sym_int] = ACTIONS(774), + [anon_sym_uint] = ACTIONS(774), + [anon_sym_float] = ACTIONS(774), + [anon_sym_range] = ACTIONS(774), + [anon_sym_i8] = ACTIONS(774), + [anon_sym_i16] = ACTIONS(774), + [anon_sym_i32] = ACTIONS(774), + [anon_sym_i64] = ACTIONS(774), + [anon_sym_u8] = ACTIONS(774), + [anon_sym_u16] = ACTIONS(774), + [anon_sym_u32] = ACTIONS(774), + [anon_sym_u64] = ACTIONS(774), + [anon_sym_isize] = ACTIONS(774), + [anon_sym_usize] = ACTIONS(774), + [anon_sym_f32] = ACTIONS(774), + [anon_sym_f64] = ACTIONS(774), + [anon_sym_c_char] = ACTIONS(774), + [anon_sym_c_schar] = ACTIONS(774), + [anon_sym_c_uchar] = ACTIONS(774), + [anon_sym_c_short] = ACTIONS(774), + [anon_sym_c_ushort] = ACTIONS(774), + [anon_sym_c_int] = ACTIONS(774), + [anon_sym_c_uint] = ACTIONS(774), + [anon_sym_c_long] = ACTIONS(774), + [anon_sym_c_ulong] = ACTIONS(774), + [anon_sym_c_longlong] = ACTIONS(774), + [anon_sym_c_ulonglong] = ACTIONS(774), + [anon_sym_c_float] = ACTIONS(774), + [anon_sym_c_double] = ACTIONS(774), + [anon_sym_c_longdouble] = ACTIONS(774), + [anon_sym_PLUS_EQ] = ACTIONS(772), + [anon_sym_DASH_EQ] = ACTIONS(772), + [anon_sym_STAR_EQ] = ACTIONS(772), + [anon_sym_SLASH_EQ] = ACTIONS(772), + [anon_sym_AMP_EQ] = ACTIONS(772), + [anon_sym_PIPE_EQ] = ACTIONS(772), + [anon_sym_xor_EQ] = ACTIONS(772), + [anon_sym_LT_LT_EQ] = ACTIONS(772), + [anon_sym_GT_GT_EQ] = ACTIONS(772), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(772), + [anon_sym_return] = ACTIONS(774), + [anon_sym_yield] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_defer] = ACTIONS(774), + [anon_sym_errdefer] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_expand] = ACTIONS(774), + [anon_sym_for] = ACTIONS(774), + [anon_sym_match] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [anon_sym_orelse] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_or] = ACTIONS(774), + [anon_sym_and] = ACTIONS(774), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_xor] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_LT_LT_PIPE] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_true] = ACTIONS(774), + [anon_sym_false] = ACTIONS(774), + [sym_none] = ACTIONS(774), + [sym_undefined] = ACTIONS(774), + [sym_sink] = ACTIONS(774), + [sym_integer] = ACTIONS(774), + [sym_float] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_multiline_string] = ACTIONS(772), + [sym_character] = ACTIONS(772), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(772), }, - [STATE(116)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [STATE(181)] = { + [ts_builtin_sym_end] = ACTIONS(776), + [sym_identifier] = ACTIONS(778), + [anon_sym_import] = ACTIONS(778), + [anon_sym_test] = ACTIONS(778), + [anon_sym_hide] = ACTIONS(778), + [anon_sym_func] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(778), + [anon_sym_struct] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_void] = ACTIONS(778), + [anon_sym_type] = ACTIONS(778), + [anon_sym_anyopaque] = ACTIONS(778), + [anon_sym_bool] = ACTIONS(778), + [anon_sym_int] = ACTIONS(778), + [anon_sym_uint] = ACTIONS(778), + [anon_sym_float] = ACTIONS(778), + [anon_sym_range] = ACTIONS(778), + [anon_sym_i8] = ACTIONS(778), + [anon_sym_i16] = ACTIONS(778), + [anon_sym_i32] = ACTIONS(778), + [anon_sym_i64] = ACTIONS(778), + [anon_sym_u8] = ACTIONS(778), + [anon_sym_u16] = ACTIONS(778), + [anon_sym_u32] = ACTIONS(778), + [anon_sym_u64] = ACTIONS(778), + [anon_sym_isize] = ACTIONS(778), + [anon_sym_usize] = ACTIONS(778), + [anon_sym_f32] = ACTIONS(778), + [anon_sym_f64] = ACTIONS(778), + [anon_sym_c_char] = ACTIONS(778), + [anon_sym_c_schar] = ACTIONS(778), + [anon_sym_c_uchar] = ACTIONS(778), + [anon_sym_c_short] = ACTIONS(778), + [anon_sym_c_ushort] = ACTIONS(778), + [anon_sym_c_int] = ACTIONS(778), + [anon_sym_c_uint] = ACTIONS(778), + [anon_sym_c_long] = ACTIONS(778), + [anon_sym_c_ulong] = ACTIONS(778), + [anon_sym_c_longlong] = ACTIONS(778), + [anon_sym_c_ulonglong] = ACTIONS(778), + [anon_sym_c_float] = ACTIONS(778), + [anon_sym_c_double] = ACTIONS(778), + [anon_sym_c_longdouble] = ACTIONS(778), + [anon_sym_PLUS_EQ] = ACTIONS(776), + [anon_sym_DASH_EQ] = ACTIONS(776), + [anon_sym_STAR_EQ] = ACTIONS(776), + [anon_sym_SLASH_EQ] = ACTIONS(776), + [anon_sym_AMP_EQ] = ACTIONS(776), + [anon_sym_PIPE_EQ] = ACTIONS(776), + [anon_sym_xor_EQ] = ACTIONS(776), + [anon_sym_LT_LT_EQ] = ACTIONS(776), + [anon_sym_GT_GT_EQ] = ACTIONS(776), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(776), + [anon_sym_return] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(778), + [anon_sym_break] = ACTIONS(778), + [anon_sym_continue] = ACTIONS(778), + [anon_sym_defer] = ACTIONS(778), + [anon_sym_errdefer] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_else] = ACTIONS(778), + [anon_sym_while] = ACTIONS(778), + [anon_sym_expand] = ACTIONS(778), + [anon_sym_for] = ACTIONS(778), + [anon_sym_match] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(776), + [anon_sym_orelse] = ACTIONS(778), + [anon_sym_catch] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(776), + [anon_sym_BANG_EQ] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(776), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_xor] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT_PIPE] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_SLASH] = ACTIONS(778), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_try] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(776), + [anon_sym_true] = ACTIONS(778), + [anon_sym_false] = ACTIONS(778), + [sym_none] = ACTIONS(778), + [sym_undefined] = ACTIONS(778), + [sym_sink] = ACTIONS(778), + [sym_integer] = ACTIONS(778), + [sym_float] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(776), + [sym_multiline_string] = ACTIONS(776), + [sym_character] = ACTIONS(776), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(763), + [sym__newline] = ACTIONS(776), }, - [STATE(117)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(765), - }, - [STATE(118)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(119)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(767), - }, - [STATE(120)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(121)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(769), - }, - [STATE(122)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1739), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1739), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(123)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1739), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1739), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(771), - }, - [STATE(124)] = { - [ts_builtin_sym_end] = ACTIONS(773), - [sym_identifier] = ACTIONS(775), - [anon_sym_import] = ACTIONS(775), - [anon_sym_test] = ACTIONS(775), - [anon_sym_hide] = ACTIONS(775), - [anon_sym_func] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_void] = ACTIONS(775), - [anon_sym_anyopaque] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_int] = ACTIONS(775), - [anon_sym_uint] = ACTIONS(775), - [anon_sym_float] = ACTIONS(775), - [anon_sym_range] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_c_char] = ACTIONS(775), - [anon_sym_c_schar] = ACTIONS(775), - [anon_sym_c_uchar] = ACTIONS(775), - [anon_sym_c_short] = ACTIONS(775), - [anon_sym_c_ushort] = ACTIONS(775), - [anon_sym_c_int] = ACTIONS(775), - [anon_sym_c_uint] = ACTIONS(775), - [anon_sym_c_long] = ACTIONS(775), - [anon_sym_c_ulong] = ACTIONS(775), - [anon_sym_c_longlong] = ACTIONS(775), - [anon_sym_c_ulonglong] = ACTIONS(775), - [anon_sym_c_float] = ACTIONS(775), - [anon_sym_c_double] = ACTIONS(775), - [anon_sym_c_longdouble] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_xor_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(773), - [anon_sym_return] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_defer] = ACTIONS(775), - [anon_sym_errdefer] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_else] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [anon_sym_expand] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_orelse] = ACTIONS(775), - [anon_sym_catch] = ACTIONS(775), - [anon_sym_or] = ACTIONS(775), - [anon_sym_and] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_xor] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_try] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(773), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [sym_none] = ACTIONS(775), - [sym_undefined] = ACTIONS(775), - [sym_sink] = ACTIONS(775), - [sym_integer] = ACTIONS(775), - [sym_float] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [sym_multiline_string] = ACTIONS(773), - [sym_character] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(773), - }, - [STATE(125)] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_identifier] = ACTIONS(779), - [anon_sym_import] = ACTIONS(779), - [anon_sym_test] = ACTIONS(779), - [anon_sym_hide] = ACTIONS(779), - [anon_sym_func] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_void] = ACTIONS(779), - [anon_sym_anyopaque] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_int] = ACTIONS(779), - [anon_sym_uint] = ACTIONS(779), - [anon_sym_float] = ACTIONS(779), - [anon_sym_range] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_c_char] = ACTIONS(779), - [anon_sym_c_schar] = ACTIONS(779), - [anon_sym_c_uchar] = ACTIONS(779), - [anon_sym_c_short] = ACTIONS(779), - [anon_sym_c_ushort] = ACTIONS(779), - [anon_sym_c_int] = ACTIONS(779), - [anon_sym_c_uint] = ACTIONS(779), - [anon_sym_c_long] = ACTIONS(779), - [anon_sym_c_ulong] = ACTIONS(779), - [anon_sym_c_longlong] = ACTIONS(779), - [anon_sym_c_ulonglong] = ACTIONS(779), - [anon_sym_c_float] = ACTIONS(779), - [anon_sym_c_double] = ACTIONS(779), - [anon_sym_c_longdouble] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_xor_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(777), - [anon_sym_return] = ACTIONS(779), - [anon_sym_yield] = ACTIONS(779), - [anon_sym_break] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_defer] = ACTIONS(779), - [anon_sym_errdefer] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_expand] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_orelse] = ACTIONS(779), - [anon_sym_catch] = ACTIONS(779), - [anon_sym_or] = ACTIONS(779), - [anon_sym_and] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_xor] = ACTIONS(779), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(779), - [anon_sym_LT_LT_PIPE] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_try] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), - [sym_undefined] = ACTIONS(779), - [sym_sink] = ACTIONS(779), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_multiline_string] = ACTIONS(777), - [sym_character] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - }, - [STATE(126)] = { - [ts_builtin_sym_end] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [anon_sym_import] = ACTIONS(783), - [anon_sym_test] = ACTIONS(783), - [anon_sym_hide] = ACTIONS(783), - [anon_sym_func] = ACTIONS(783), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_void] = ACTIONS(783), - [anon_sym_anyopaque] = ACTIONS(783), - [anon_sym_bool] = ACTIONS(783), - [anon_sym_int] = ACTIONS(783), - [anon_sym_uint] = ACTIONS(783), - [anon_sym_float] = ACTIONS(783), - [anon_sym_range] = ACTIONS(783), - [anon_sym_i8] = ACTIONS(783), - [anon_sym_i16] = ACTIONS(783), - [anon_sym_i32] = ACTIONS(783), - [anon_sym_i64] = ACTIONS(783), - [anon_sym_u8] = ACTIONS(783), - [anon_sym_u16] = ACTIONS(783), - [anon_sym_u32] = ACTIONS(783), - [anon_sym_u64] = ACTIONS(783), - [anon_sym_isize] = ACTIONS(783), - [anon_sym_usize] = ACTIONS(783), - [anon_sym_f32] = ACTIONS(783), - [anon_sym_f64] = ACTIONS(783), - [anon_sym_c_char] = ACTIONS(783), - [anon_sym_c_schar] = ACTIONS(783), - [anon_sym_c_uchar] = ACTIONS(783), - [anon_sym_c_short] = ACTIONS(783), - [anon_sym_c_ushort] = ACTIONS(783), - [anon_sym_c_int] = ACTIONS(783), - [anon_sym_c_uint] = ACTIONS(783), - [anon_sym_c_long] = ACTIONS(783), - [anon_sym_c_ulong] = ACTIONS(783), - [anon_sym_c_longlong] = ACTIONS(783), - [anon_sym_c_ulonglong] = ACTIONS(783), - [anon_sym_c_float] = ACTIONS(783), - [anon_sym_c_double] = ACTIONS(783), - [anon_sym_c_longdouble] = ACTIONS(783), - [anon_sym_PLUS_EQ] = ACTIONS(781), - [anon_sym_DASH_EQ] = ACTIONS(781), - [anon_sym_STAR_EQ] = ACTIONS(781), - [anon_sym_SLASH_EQ] = ACTIONS(781), - [anon_sym_AMP_EQ] = ACTIONS(781), - [anon_sym_PIPE_EQ] = ACTIONS(781), - [anon_sym_xor_EQ] = ACTIONS(781), - [anon_sym_LT_LT_EQ] = ACTIONS(781), - [anon_sym_GT_GT_EQ] = ACTIONS(781), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_yield] = ACTIONS(783), - [anon_sym_break] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(783), - [anon_sym_defer] = ACTIONS(783), - [anon_sym_errdefer] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_else] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_expand] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(783), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_orelse] = ACTIONS(783), - [anon_sym_catch] = ACTIONS(783), - [anon_sym_or] = ACTIONS(783), - [anon_sym_and] = ACTIONS(783), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_xor] = ACTIONS(783), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(783), - [anon_sym_LT_LT_PIPE] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_try] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_true] = ACTIONS(783), - [anon_sym_false] = ACTIONS(783), - [sym_none] = ACTIONS(783), - [sym_undefined] = ACTIONS(783), - [sym_sink] = ACTIONS(783), - [sym_integer] = ACTIONS(783), - [sym_float] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_multiline_string] = ACTIONS(781), - [sym_character] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - }, - [STATE(127)] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_import] = ACTIONS(787), - [anon_sym_test] = ACTIONS(787), - [anon_sym_hide] = ACTIONS(787), - [anon_sym_func] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_struct] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_void] = ACTIONS(787), - [anon_sym_anyopaque] = ACTIONS(787), - [anon_sym_bool] = ACTIONS(787), - [anon_sym_int] = ACTIONS(787), - [anon_sym_uint] = ACTIONS(787), - [anon_sym_float] = ACTIONS(787), - [anon_sym_range] = ACTIONS(787), - [anon_sym_i8] = ACTIONS(787), - [anon_sym_i16] = ACTIONS(787), - [anon_sym_i32] = ACTIONS(787), - [anon_sym_i64] = ACTIONS(787), - [anon_sym_u8] = ACTIONS(787), - [anon_sym_u16] = ACTIONS(787), - [anon_sym_u32] = ACTIONS(787), - [anon_sym_u64] = ACTIONS(787), - [anon_sym_isize] = ACTIONS(787), - [anon_sym_usize] = ACTIONS(787), - [anon_sym_f32] = ACTIONS(787), - [anon_sym_f64] = ACTIONS(787), - [anon_sym_c_char] = ACTIONS(787), - [anon_sym_c_schar] = ACTIONS(787), - [anon_sym_c_uchar] = ACTIONS(787), - [anon_sym_c_short] = ACTIONS(787), - [anon_sym_c_ushort] = ACTIONS(787), - [anon_sym_c_int] = ACTIONS(787), - [anon_sym_c_uint] = ACTIONS(787), - [anon_sym_c_long] = ACTIONS(787), - [anon_sym_c_ulong] = ACTIONS(787), - [anon_sym_c_longlong] = ACTIONS(787), - [anon_sym_c_ulonglong] = ACTIONS(787), - [anon_sym_c_float] = ACTIONS(787), - [anon_sym_c_double] = ACTIONS(787), - [anon_sym_c_longdouble] = ACTIONS(787), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_xor_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(785), - [anon_sym_return] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_defer] = ACTIONS(787), - [anon_sym_errdefer] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_else] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_expand] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_match] = ACTIONS(787), - [anon_sym_DOT_DOT] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(785), - [anon_sym_orelse] = ACTIONS(787), - [anon_sym_catch] = ACTIONS(787), - [anon_sym_or] = ACTIONS(787), - [anon_sym_and] = ACTIONS(787), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_xor] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_LT_LT_PIPE] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_try] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), - [sym_undefined] = ACTIONS(787), - [sym_sink] = ACTIONS(787), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_multiline_string] = ACTIONS(785), - [sym_character] = ACTIONS(785), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), - }, - [STATE(128)] = { - [ts_builtin_sym_end] = ACTIONS(789), - [sym_identifier] = ACTIONS(791), - [anon_sym_import] = ACTIONS(791), - [anon_sym_test] = ACTIONS(791), - [anon_sym_hide] = ACTIONS(791), - [anon_sym_func] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(791), - [anon_sym_struct] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_void] = ACTIONS(791), - [anon_sym_anyopaque] = ACTIONS(791), - [anon_sym_bool] = ACTIONS(791), - [anon_sym_int] = ACTIONS(791), - [anon_sym_uint] = ACTIONS(791), - [anon_sym_float] = ACTIONS(791), - [anon_sym_range] = ACTIONS(791), - [anon_sym_i8] = ACTIONS(791), - [anon_sym_i16] = ACTIONS(791), - [anon_sym_i32] = ACTIONS(791), - [anon_sym_i64] = ACTIONS(791), - [anon_sym_u8] = ACTIONS(791), - [anon_sym_u16] = ACTIONS(791), - [anon_sym_u32] = ACTIONS(791), - [anon_sym_u64] = ACTIONS(791), - [anon_sym_isize] = ACTIONS(791), - [anon_sym_usize] = ACTIONS(791), - [anon_sym_f32] = ACTIONS(791), - [anon_sym_f64] = ACTIONS(791), - [anon_sym_c_char] = ACTIONS(791), - [anon_sym_c_schar] = ACTIONS(791), - [anon_sym_c_uchar] = ACTIONS(791), - [anon_sym_c_short] = ACTIONS(791), - [anon_sym_c_ushort] = ACTIONS(791), - [anon_sym_c_int] = ACTIONS(791), - [anon_sym_c_uint] = ACTIONS(791), - [anon_sym_c_long] = ACTIONS(791), - [anon_sym_c_ulong] = ACTIONS(791), - [anon_sym_c_longlong] = ACTIONS(791), - [anon_sym_c_ulonglong] = ACTIONS(791), - [anon_sym_c_float] = ACTIONS(791), - [anon_sym_c_double] = ACTIONS(791), - [anon_sym_c_longdouble] = ACTIONS(791), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_xor_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(789), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_break] = ACTIONS(791), - [anon_sym_continue] = ACTIONS(791), - [anon_sym_defer] = ACTIONS(791), - [anon_sym_errdefer] = ACTIONS(791), - [anon_sym_if] = ACTIONS(791), - [anon_sym_else] = ACTIONS(791), - [anon_sym_while] = ACTIONS(791), - [anon_sym_expand] = ACTIONS(791), - [anon_sym_for] = ACTIONS(791), - [anon_sym_match] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [anon_sym_orelse] = ACTIONS(791), - [anon_sym_catch] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_LT_LT_PIPE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_try] = ACTIONS(791), - [anon_sym_DOT] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_true] = ACTIONS(791), - [anon_sym_false] = ACTIONS(791), - [sym_none] = ACTIONS(791), - [sym_undefined] = ACTIONS(791), - [sym_sink] = ACTIONS(791), - [sym_integer] = ACTIONS(791), - [sym_float] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym_multiline_string] = ACTIONS(789), - [sym_character] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(789), - }, - [STATE(129)] = { - [ts_builtin_sym_end] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [anon_sym_import] = ACTIONS(795), - [anon_sym_test] = ACTIONS(795), - [anon_sym_hide] = ACTIONS(795), - [anon_sym_func] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_void] = ACTIONS(795), - [anon_sym_anyopaque] = ACTIONS(795), - [anon_sym_bool] = ACTIONS(795), - [anon_sym_int] = ACTIONS(795), - [anon_sym_uint] = ACTIONS(795), - [anon_sym_float] = ACTIONS(795), - [anon_sym_range] = ACTIONS(795), - [anon_sym_i8] = ACTIONS(795), - [anon_sym_i16] = ACTIONS(795), - [anon_sym_i32] = ACTIONS(795), - [anon_sym_i64] = ACTIONS(795), - [anon_sym_u8] = ACTIONS(795), - [anon_sym_u16] = ACTIONS(795), - [anon_sym_u32] = ACTIONS(795), - [anon_sym_u64] = ACTIONS(795), - [anon_sym_isize] = ACTIONS(795), - [anon_sym_usize] = ACTIONS(795), - [anon_sym_f32] = ACTIONS(795), - [anon_sym_f64] = ACTIONS(795), - [anon_sym_c_char] = ACTIONS(795), - [anon_sym_c_schar] = ACTIONS(795), - [anon_sym_c_uchar] = ACTIONS(795), - [anon_sym_c_short] = ACTIONS(795), - [anon_sym_c_ushort] = ACTIONS(795), - [anon_sym_c_int] = ACTIONS(795), - [anon_sym_c_uint] = ACTIONS(795), - [anon_sym_c_long] = ACTIONS(795), - [anon_sym_c_ulong] = ACTIONS(795), - [anon_sym_c_longlong] = ACTIONS(795), - [anon_sym_c_ulonglong] = ACTIONS(795), - [anon_sym_c_float] = ACTIONS(795), - [anon_sym_c_double] = ACTIONS(795), - [anon_sym_c_longdouble] = ACTIONS(795), - [anon_sym_PLUS_EQ] = ACTIONS(793), - [anon_sym_DASH_EQ] = ACTIONS(793), - [anon_sym_STAR_EQ] = ACTIONS(793), - [anon_sym_SLASH_EQ] = ACTIONS(793), - [anon_sym_AMP_EQ] = ACTIONS(793), - [anon_sym_PIPE_EQ] = ACTIONS(793), - [anon_sym_xor_EQ] = ACTIONS(793), - [anon_sym_LT_LT_EQ] = ACTIONS(793), - [anon_sym_GT_GT_EQ] = ACTIONS(793), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(793), - [anon_sym_return] = ACTIONS(795), - [anon_sym_yield] = ACTIONS(795), - [anon_sym_break] = ACTIONS(795), - [anon_sym_continue] = ACTIONS(795), - [anon_sym_defer] = ACTIONS(795), - [anon_sym_errdefer] = ACTIONS(795), - [anon_sym_if] = ACTIONS(795), - [anon_sym_else] = ACTIONS(795), - [anon_sym_while] = ACTIONS(795), - [anon_sym_expand] = ACTIONS(795), - [anon_sym_for] = ACTIONS(795), - [anon_sym_match] = ACTIONS(795), - [anon_sym_DOT_DOT] = ACTIONS(795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [anon_sym_orelse] = ACTIONS(795), - [anon_sym_catch] = ACTIONS(795), - [anon_sym_or] = ACTIONS(795), - [anon_sym_and] = ACTIONS(795), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_xor] = ACTIONS(795), - [anon_sym_LT_LT] = ACTIONS(795), - [anon_sym_GT_GT] = ACTIONS(795), - [anon_sym_LT_LT_PIPE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_true] = ACTIONS(795), - [anon_sym_false] = ACTIONS(795), - [sym_none] = ACTIONS(795), - [sym_undefined] = ACTIONS(795), - [sym_sink] = ACTIONS(795), - [sym_integer] = ACTIONS(795), - [sym_float] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym_multiline_string] = ACTIONS(793), - [sym_character] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(793), - }, - [STATE(130)] = { + [STATE(182)] = { [ts_builtin_sym_end] = ACTIONS(253), [sym_identifier] = ACTIONS(258), [anon_sym_import] = ACTIONS(258), @@ -27622,6 +34901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(258), [anon_sym_LBRACK] = ACTIONS(253), [anon_sym_void] = ACTIONS(258), + [anon_sym_type] = ACTIONS(258), [anon_sym_anyopaque] = ACTIONS(258), [anon_sym_bool] = ACTIONS(258), [anon_sym_int] = ACTIONS(258), @@ -27712,1239 +34992,2606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(253), }, - [STATE(131)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1738), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1738), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [STATE(183)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3089), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3089), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(797), + [sym__newline] = ACTIONS(466), }, - [STATE(132)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1743), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1743), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [STATE(184)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(799), + [sym__newline] = ACTIONS(780), }, - [STATE(133)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2620), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2620), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [STATE(185)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3090), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3090), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(782), }, - [STATE(134)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [STATE(186)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3090), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3090), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(801), + [sym__newline] = ACTIONS(466), }, - [STATE(135)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2621), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2621), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [STATE(187)] = { + [ts_builtin_sym_end] = ACTIONS(784), + [sym_identifier] = ACTIONS(786), + [anon_sym_import] = ACTIONS(786), + [anon_sym_test] = ACTIONS(786), + [anon_sym_hide] = ACTIONS(786), + [anon_sym_func] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_struct] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_void] = ACTIONS(786), + [anon_sym_type] = ACTIONS(786), + [anon_sym_anyopaque] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_int] = ACTIONS(786), + [anon_sym_uint] = ACTIONS(786), + [anon_sym_float] = ACTIONS(786), + [anon_sym_range] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_c_char] = ACTIONS(786), + [anon_sym_c_schar] = ACTIONS(786), + [anon_sym_c_uchar] = ACTIONS(786), + [anon_sym_c_short] = ACTIONS(786), + [anon_sym_c_ushort] = ACTIONS(786), + [anon_sym_c_int] = ACTIONS(786), + [anon_sym_c_uint] = ACTIONS(786), + [anon_sym_c_long] = ACTIONS(786), + [anon_sym_c_ulong] = ACTIONS(786), + [anon_sym_c_longlong] = ACTIONS(786), + [anon_sym_c_ulonglong] = ACTIONS(786), + [anon_sym_c_float] = ACTIONS(786), + [anon_sym_c_double] = ACTIONS(786), + [anon_sym_c_longdouble] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_xor_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(784), + [anon_sym_return] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_break] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_defer] = ACTIONS(786), + [anon_sym_errdefer] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_else] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [anon_sym_expand] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_match] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [anon_sym_orelse] = ACTIONS(786), + [anon_sym_catch] = ACTIONS(786), + [anon_sym_or] = ACTIONS(786), + [anon_sym_and] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_xor] = ACTIONS(786), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_LT_LT_PIPE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(784), + [anon_sym_try] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_sink] = ACTIONS(786), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_multiline_string] = ACTIONS(784), + [sym_character] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(784), + }, + [STATE(188)] = { + [ts_builtin_sym_end] = ACTIONS(788), + [sym_identifier] = ACTIONS(790), + [anon_sym_import] = ACTIONS(790), + [anon_sym_test] = ACTIONS(790), + [anon_sym_hide] = ACTIONS(790), + [anon_sym_func] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_struct] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_void] = ACTIONS(790), + [anon_sym_type] = ACTIONS(790), + [anon_sym_anyopaque] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_int] = ACTIONS(790), + [anon_sym_uint] = ACTIONS(790), + [anon_sym_float] = ACTIONS(790), + [anon_sym_range] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_c_char] = ACTIONS(790), + [anon_sym_c_schar] = ACTIONS(790), + [anon_sym_c_uchar] = ACTIONS(790), + [anon_sym_c_short] = ACTIONS(790), + [anon_sym_c_ushort] = ACTIONS(790), + [anon_sym_c_int] = ACTIONS(790), + [anon_sym_c_uint] = ACTIONS(790), + [anon_sym_c_long] = ACTIONS(790), + [anon_sym_c_ulong] = ACTIONS(790), + [anon_sym_c_longlong] = ACTIONS(790), + [anon_sym_c_ulonglong] = ACTIONS(790), + [anon_sym_c_float] = ACTIONS(790), + [anon_sym_c_double] = ACTIONS(790), + [anon_sym_c_longdouble] = ACTIONS(790), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [anon_sym_DASH_EQ] = ACTIONS(788), + [anon_sym_STAR_EQ] = ACTIONS(788), + [anon_sym_SLASH_EQ] = ACTIONS(788), + [anon_sym_AMP_EQ] = ACTIONS(788), + [anon_sym_PIPE_EQ] = ACTIONS(788), + [anon_sym_xor_EQ] = ACTIONS(788), + [anon_sym_LT_LT_EQ] = ACTIONS(788), + [anon_sym_GT_GT_EQ] = ACTIONS(788), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(788), + [anon_sym_return] = ACTIONS(790), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_defer] = ACTIONS(790), + [anon_sym_errdefer] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_else] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_expand] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_match] = ACTIONS(790), + [anon_sym_DOT_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_orelse] = ACTIONS(790), + [anon_sym_catch] = ACTIONS(790), + [anon_sym_or] = ACTIONS(790), + [anon_sym_and] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_xor] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_LT_LT_PIPE] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(788), + [anon_sym_true] = ACTIONS(790), + [anon_sym_false] = ACTIONS(790), + [sym_none] = ACTIONS(790), + [sym_undefined] = ACTIONS(790), + [sym_sink] = ACTIONS(790), + [sym_integer] = ACTIONS(790), + [sym_float] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_multiline_string] = ACTIONS(788), + [sym_character] = ACTIONS(788), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(788), + }, + [STATE(189)] = { + [ts_builtin_sym_end] = ACTIONS(383), + [sym_identifier] = ACTIONS(381), + [anon_sym_import] = ACTIONS(381), + [anon_sym_test] = ACTIONS(381), + [anon_sym_hide] = ACTIONS(381), + [anon_sym_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_struct] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_void] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), + [anon_sym_anyopaque] = ACTIONS(381), + [anon_sym_bool] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_uint] = ACTIONS(381), + [anon_sym_float] = ACTIONS(381), + [anon_sym_range] = ACTIONS(381), + [anon_sym_i8] = ACTIONS(381), + [anon_sym_i16] = ACTIONS(381), + [anon_sym_i32] = ACTIONS(381), + [anon_sym_i64] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(381), + [anon_sym_u16] = ACTIONS(381), + [anon_sym_u32] = ACTIONS(381), + [anon_sym_u64] = ACTIONS(381), + [anon_sym_isize] = ACTIONS(381), + [anon_sym_usize] = ACTIONS(381), + [anon_sym_f32] = ACTIONS(381), + [anon_sym_f64] = ACTIONS(381), + [anon_sym_c_char] = ACTIONS(381), + [anon_sym_c_schar] = ACTIONS(381), + [anon_sym_c_uchar] = ACTIONS(381), + [anon_sym_c_short] = ACTIONS(381), + [anon_sym_c_ushort] = ACTIONS(381), + [anon_sym_c_int] = ACTIONS(381), + [anon_sym_c_uint] = ACTIONS(381), + [anon_sym_c_long] = ACTIONS(381), + [anon_sym_c_ulong] = ACTIONS(381), + [anon_sym_c_longlong] = ACTIONS(381), + [anon_sym_c_ulonglong] = ACTIONS(381), + [anon_sym_c_float] = ACTIONS(381), + [anon_sym_c_double] = ACTIONS(381), + [anon_sym_c_longdouble] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_xor_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(383), + [anon_sym_return] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(381), + [anon_sym_break] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_defer] = ACTIONS(381), + [anon_sym_errdefer] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(381), + [anon_sym_while] = ACTIONS(381), + [anon_sym_expand] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_orelse] = ACTIONS(381), + [anon_sym_catch] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_and] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT_PIPE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_try] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_true] = ACTIONS(381), + [anon_sym_false] = ACTIONS(381), + [sym_none] = ACTIONS(381), + [sym_undefined] = ACTIONS(381), + [sym_sink] = ACTIONS(381), + [sym_integer] = ACTIONS(381), + [sym_float] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_multiline_string] = ACTIONS(383), + [sym_character] = ACTIONS(383), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(383), + }, + [STATE(190)] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [anon_sym_import] = ACTIONS(794), + [anon_sym_test] = ACTIONS(794), + [anon_sym_hide] = ACTIONS(794), + [anon_sym_func] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_void] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_anyopaque] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_int] = ACTIONS(794), + [anon_sym_uint] = ACTIONS(794), + [anon_sym_float] = ACTIONS(794), + [anon_sym_range] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_c_char] = ACTIONS(794), + [anon_sym_c_schar] = ACTIONS(794), + [anon_sym_c_uchar] = ACTIONS(794), + [anon_sym_c_short] = ACTIONS(794), + [anon_sym_c_ushort] = ACTIONS(794), + [anon_sym_c_int] = ACTIONS(794), + [anon_sym_c_uint] = ACTIONS(794), + [anon_sym_c_long] = ACTIONS(794), + [anon_sym_c_ulong] = ACTIONS(794), + [anon_sym_c_longlong] = ACTIONS(794), + [anon_sym_c_ulonglong] = ACTIONS(794), + [anon_sym_c_float] = ACTIONS(794), + [anon_sym_c_double] = ACTIONS(794), + [anon_sym_c_longdouble] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(792), + [anon_sym_DASH_EQ] = ACTIONS(792), + [anon_sym_STAR_EQ] = ACTIONS(792), + [anon_sym_SLASH_EQ] = ACTIONS(792), + [anon_sym_AMP_EQ] = ACTIONS(792), + [anon_sym_PIPE_EQ] = ACTIONS(792), + [anon_sym_xor_EQ] = ACTIONS(792), + [anon_sym_LT_LT_EQ] = ACTIONS(792), + [anon_sym_GT_GT_EQ] = ACTIONS(792), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_defer] = ACTIONS(794), + [anon_sym_errdefer] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_expand] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_match] = ACTIONS(794), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(792), + [anon_sym_orelse] = ACTIONS(794), + [anon_sym_catch] = ACTIONS(794), + [anon_sym_or] = ACTIONS(794), + [anon_sym_and] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_xor] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_LT_LT_PIPE] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [sym_none] = ACTIONS(794), + [sym_undefined] = ACTIONS(794), + [sym_sink] = ACTIONS(794), + [sym_integer] = ACTIONS(794), + [sym_float] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [sym_multiline_string] = ACTIONS(792), + [sym_character] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(792), + }, + [STATE(191)] = { + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_test] = ACTIONS(798), + [anon_sym_hide] = ACTIONS(798), + [anon_sym_func] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_struct] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_DOLLAR] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_void] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_anyopaque] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_uint] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_range] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_c_char] = ACTIONS(798), + [anon_sym_c_schar] = ACTIONS(798), + [anon_sym_c_uchar] = ACTIONS(798), + [anon_sym_c_short] = ACTIONS(798), + [anon_sym_c_ushort] = ACTIONS(798), + [anon_sym_c_int] = ACTIONS(798), + [anon_sym_c_uint] = ACTIONS(798), + [anon_sym_c_long] = ACTIONS(798), + [anon_sym_c_ulong] = ACTIONS(798), + [anon_sym_c_longlong] = ACTIONS(798), + [anon_sym_c_ulonglong] = ACTIONS(798), + [anon_sym_c_float] = ACTIONS(798), + [anon_sym_c_double] = ACTIONS(798), + [anon_sym_c_longdouble] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_xor_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(796), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_defer] = ACTIONS(798), + [anon_sym_errdefer] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_expand] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_match] = ACTIONS(798), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_orelse] = ACTIONS(798), + [anon_sym_catch] = ACTIONS(798), + [anon_sym_or] = ACTIONS(798), + [anon_sym_and] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_xor] = ACTIONS(798), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(798), + [anon_sym_LT_LT_PIPE] = ACTIONS(798), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_try] = ACTIONS(798), + [anon_sym_DOT] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(796), + [anon_sym_true] = ACTIONS(798), + [anon_sym_false] = ACTIONS(798), + [sym_none] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [sym_sink] = ACTIONS(798), + [sym_integer] = ACTIONS(798), + [sym_float] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [sym_multiline_string] = ACTIONS(796), + [sym_character] = ACTIONS(796), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(796), + }, + [STATE(192)] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_test] = ACTIONS(802), + [anon_sym_hide] = ACTIONS(802), + [anon_sym_func] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_EQ] = ACTIONS(802), + [anon_sym_struct] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(802), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_void] = ACTIONS(802), + [anon_sym_type] = ACTIONS(802), + [anon_sym_anyopaque] = ACTIONS(802), + [anon_sym_bool] = ACTIONS(802), + [anon_sym_int] = ACTIONS(802), + [anon_sym_uint] = ACTIONS(802), + [anon_sym_float] = ACTIONS(802), + [anon_sym_range] = ACTIONS(802), + [anon_sym_i8] = ACTIONS(802), + [anon_sym_i16] = ACTIONS(802), + [anon_sym_i32] = ACTIONS(802), + [anon_sym_i64] = ACTIONS(802), + [anon_sym_u8] = ACTIONS(802), + [anon_sym_u16] = ACTIONS(802), + [anon_sym_u32] = ACTIONS(802), + [anon_sym_u64] = ACTIONS(802), + [anon_sym_isize] = ACTIONS(802), + [anon_sym_usize] = ACTIONS(802), + [anon_sym_f32] = ACTIONS(802), + [anon_sym_f64] = ACTIONS(802), + [anon_sym_c_char] = ACTIONS(802), + [anon_sym_c_schar] = ACTIONS(802), + [anon_sym_c_uchar] = ACTIONS(802), + [anon_sym_c_short] = ACTIONS(802), + [anon_sym_c_ushort] = ACTIONS(802), + [anon_sym_c_int] = ACTIONS(802), + [anon_sym_c_uint] = ACTIONS(802), + [anon_sym_c_long] = ACTIONS(802), + [anon_sym_c_ulong] = ACTIONS(802), + [anon_sym_c_longlong] = ACTIONS(802), + [anon_sym_c_ulonglong] = ACTIONS(802), + [anon_sym_c_float] = ACTIONS(802), + [anon_sym_c_double] = ACTIONS(802), + [anon_sym_c_longdouble] = ACTIONS(802), + [anon_sym_PLUS_EQ] = ACTIONS(800), + [anon_sym_DASH_EQ] = ACTIONS(800), + [anon_sym_STAR_EQ] = ACTIONS(800), + [anon_sym_SLASH_EQ] = ACTIONS(800), + [anon_sym_AMP_EQ] = ACTIONS(800), + [anon_sym_PIPE_EQ] = ACTIONS(800), + [anon_sym_xor_EQ] = ACTIONS(800), + [anon_sym_LT_LT_EQ] = ACTIONS(800), + [anon_sym_GT_GT_EQ] = ACTIONS(800), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_defer] = ACTIONS(802), + [anon_sym_errdefer] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_expand] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_match] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(800), + [anon_sym_orelse] = ACTIONS(802), + [anon_sym_catch] = ACTIONS(802), + [anon_sym_or] = ACTIONS(802), + [anon_sym_and] = ACTIONS(802), + [anon_sym_EQ_EQ] = ACTIONS(800), + [anon_sym_BANG_EQ] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_LT_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(802), + [anon_sym_GT_EQ] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_xor] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(802), + [anon_sym_GT_GT] = ACTIONS(802), + [anon_sym_LT_LT_PIPE] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_try] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(802), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [sym_none] = ACTIONS(802), + [sym_undefined] = ACTIONS(802), + [sym_sink] = ACTIONS(802), + [sym_integer] = ACTIONS(802), + [sym_float] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(800), + [sym_multiline_string] = ACTIONS(800), + [sym_character] = ACTIONS(800), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(800), + }, + [STATE(193)] = { + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(806), + [anon_sym_import] = ACTIONS(806), + [anon_sym_test] = ACTIONS(806), + [anon_sym_hide] = ACTIONS(806), + [anon_sym_func] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DOLLAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_void] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_anyopaque] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_uint] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_range] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_c_char] = ACTIONS(806), + [anon_sym_c_schar] = ACTIONS(806), + [anon_sym_c_uchar] = ACTIONS(806), + [anon_sym_c_short] = ACTIONS(806), + [anon_sym_c_ushort] = ACTIONS(806), + [anon_sym_c_int] = ACTIONS(806), + [anon_sym_c_uint] = ACTIONS(806), + [anon_sym_c_long] = ACTIONS(806), + [anon_sym_c_ulong] = ACTIONS(806), + [anon_sym_c_longlong] = ACTIONS(806), + [anon_sym_c_ulonglong] = ACTIONS(806), + [anon_sym_c_float] = ACTIONS(806), + [anon_sym_c_double] = ACTIONS(806), + [anon_sym_c_longdouble] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_xor_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(804), + [anon_sym_return] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_defer] = ACTIONS(806), + [anon_sym_errdefer] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_expand] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_match] = ACTIONS(806), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(804), + [anon_sym_orelse] = ACTIONS(806), + [anon_sym_catch] = ACTIONS(806), + [anon_sym_or] = ACTIONS(806), + [anon_sym_and] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(804), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_LT_EQ] = ACTIONS(804), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_GT_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_xor] = ACTIONS(806), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(806), + [anon_sym_LT_LT_PIPE] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_try] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(804), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [sym_none] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [sym_sink] = ACTIONS(806), + [sym_integer] = ACTIONS(806), + [sym_float] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(804), + [sym_multiline_string] = ACTIONS(804), + [sym_character] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(804), + }, + [STATE(194)] = { + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [anon_sym_import] = ACTIONS(810), + [anon_sym_test] = ACTIONS(810), + [anon_sym_hide] = ACTIONS(810), + [anon_sym_func] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(810), + [anon_sym_struct] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_void] = ACTIONS(810), + [anon_sym_type] = ACTIONS(810), + [anon_sym_anyopaque] = ACTIONS(810), + [anon_sym_bool] = ACTIONS(810), + [anon_sym_int] = ACTIONS(810), + [anon_sym_uint] = ACTIONS(810), + [anon_sym_float] = ACTIONS(810), + [anon_sym_range] = ACTIONS(810), + [anon_sym_i8] = ACTIONS(810), + [anon_sym_i16] = ACTIONS(810), + [anon_sym_i32] = ACTIONS(810), + [anon_sym_i64] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(810), + [anon_sym_u16] = ACTIONS(810), + [anon_sym_u32] = ACTIONS(810), + [anon_sym_u64] = ACTIONS(810), + [anon_sym_isize] = ACTIONS(810), + [anon_sym_usize] = ACTIONS(810), + [anon_sym_f32] = ACTIONS(810), + [anon_sym_f64] = ACTIONS(810), + [anon_sym_c_char] = ACTIONS(810), + [anon_sym_c_schar] = ACTIONS(810), + [anon_sym_c_uchar] = ACTIONS(810), + [anon_sym_c_short] = ACTIONS(810), + [anon_sym_c_ushort] = ACTIONS(810), + [anon_sym_c_int] = ACTIONS(810), + [anon_sym_c_uint] = ACTIONS(810), + [anon_sym_c_long] = ACTIONS(810), + [anon_sym_c_ulong] = ACTIONS(810), + [anon_sym_c_longlong] = ACTIONS(810), + [anon_sym_c_ulonglong] = ACTIONS(810), + [anon_sym_c_float] = ACTIONS(810), + [anon_sym_c_double] = ACTIONS(810), + [anon_sym_c_longdouble] = ACTIONS(810), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_xor_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(808), + [anon_sym_return] = ACTIONS(810), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_defer] = ACTIONS(810), + [anon_sym_errdefer] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_else] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_expand] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_match] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_orelse] = ACTIONS(810), + [anon_sym_catch] = ACTIONS(810), + [anon_sym_or] = ACTIONS(810), + [anon_sym_and] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_xor] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_LT_LT_PIPE] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(810), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_try] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_true] = ACTIONS(810), + [anon_sym_false] = ACTIONS(810), + [sym_none] = ACTIONS(810), + [sym_undefined] = ACTIONS(810), + [sym_sink] = ACTIONS(810), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(808), + [sym_multiline_string] = ACTIONS(808), + [sym_character] = ACTIONS(808), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(808), + }, + [STATE(195)] = { + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_void] = ACTIONS(289), + [anon_sym_type] = ACTIONS(289), + [anon_sym_anyopaque] = ACTIONS(289), + [anon_sym_bool] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_uint] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_range] = ACTIONS(289), + [anon_sym_i8] = ACTIONS(289), + [anon_sym_i16] = ACTIONS(289), + [anon_sym_i32] = ACTIONS(289), + [anon_sym_i64] = ACTIONS(289), + [anon_sym_u8] = ACTIONS(289), + [anon_sym_u16] = ACTIONS(289), + [anon_sym_u32] = ACTIONS(289), + [anon_sym_u64] = ACTIONS(289), + [anon_sym_isize] = ACTIONS(289), + [anon_sym_usize] = ACTIONS(289), + [anon_sym_f32] = ACTIONS(289), + [anon_sym_f64] = ACTIONS(289), + [anon_sym_c_char] = ACTIONS(289), + [anon_sym_c_schar] = ACTIONS(289), + [anon_sym_c_uchar] = ACTIONS(289), + [anon_sym_c_short] = ACTIONS(289), + [anon_sym_c_ushort] = ACTIONS(289), + [anon_sym_c_int] = ACTIONS(289), + [anon_sym_c_uint] = ACTIONS(289), + [anon_sym_c_long] = ACTIONS(289), + [anon_sym_c_ulong] = ACTIONS(289), + [anon_sym_c_longlong] = ACTIONS(289), + [anon_sym_c_ulonglong] = ACTIONS(289), + [anon_sym_c_float] = ACTIONS(289), + [anon_sym_c_double] = ACTIONS(289), + [anon_sym_c_longdouble] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_defer] = ACTIONS(289), + [anon_sym_errdefer] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_expand] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_LT_LT_PIPE] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_try] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [sym_none] = ACTIONS(289), + [sym_undefined] = ACTIONS(289), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(289), + [sym_float] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_multiline_string] = ACTIONS(284), + [sym_character] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(196)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(803), + [sym__newline] = ACTIONS(812), }, - [STATE(136)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2621), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2621), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [STATE(197)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(137)] = { - [ts_builtin_sym_end] = ACTIONS(805), - [sym_identifier] = ACTIONS(807), - [anon_sym_import] = ACTIONS(807), - [anon_sym_test] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_func] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(805), - [anon_sym_void] = ACTIONS(807), - [anon_sym_anyopaque] = ACTIONS(807), - [anon_sym_bool] = ACTIONS(807), - [anon_sym_int] = ACTIONS(807), - [anon_sym_uint] = ACTIONS(807), - [anon_sym_float] = ACTIONS(807), - [anon_sym_range] = ACTIONS(807), - [anon_sym_i8] = ACTIONS(807), - [anon_sym_i16] = ACTIONS(807), - [anon_sym_i32] = ACTIONS(807), - [anon_sym_i64] = ACTIONS(807), - [anon_sym_u8] = ACTIONS(807), - [anon_sym_u16] = ACTIONS(807), - [anon_sym_u32] = ACTIONS(807), - [anon_sym_u64] = ACTIONS(807), - [anon_sym_isize] = ACTIONS(807), - [anon_sym_usize] = ACTIONS(807), - [anon_sym_f32] = ACTIONS(807), - [anon_sym_f64] = ACTIONS(807), - [anon_sym_c_char] = ACTIONS(807), - [anon_sym_c_schar] = ACTIONS(807), - [anon_sym_c_uchar] = ACTIONS(807), - [anon_sym_c_short] = ACTIONS(807), - [anon_sym_c_ushort] = ACTIONS(807), - [anon_sym_c_int] = ACTIONS(807), - [anon_sym_c_uint] = ACTIONS(807), - [anon_sym_c_long] = ACTIONS(807), - [anon_sym_c_ulong] = ACTIONS(807), - [anon_sym_c_longlong] = ACTIONS(807), - [anon_sym_c_ulonglong] = ACTIONS(807), - [anon_sym_c_float] = ACTIONS(807), - [anon_sym_c_double] = ACTIONS(807), - [anon_sym_c_longdouble] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(805), - [anon_sym_DASH_EQ] = ACTIONS(805), - [anon_sym_STAR_EQ] = ACTIONS(805), - [anon_sym_SLASH_EQ] = ACTIONS(805), - [anon_sym_AMP_EQ] = ACTIONS(805), - [anon_sym_PIPE_EQ] = ACTIONS(805), - [anon_sym_xor_EQ] = ACTIONS(805), - [anon_sym_LT_LT_EQ] = ACTIONS(805), - [anon_sym_GT_GT_EQ] = ACTIONS(805), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(805), - [anon_sym_return] = ACTIONS(807), - [anon_sym_yield] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_defer] = ACTIONS(807), - [anon_sym_errdefer] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_expand] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(805), - [anon_sym_orelse] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_LT_LT_PIPE] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_try] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [sym_none] = ACTIONS(807), - [sym_undefined] = ACTIONS(807), - [sym_sink] = ACTIONS(807), - [sym_integer] = ACTIONS(807), - [sym_float] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), - [sym_multiline_string] = ACTIONS(805), - [sym_character] = ACTIONS(805), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - }, - [STATE(138)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2536), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2536), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [STATE(198)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(814), }, - [STATE(139)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [STATE(199)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3106), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3106), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(140)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [STATE(200)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(217), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(816), }, - [STATE(141)] = { - [ts_builtin_sym_end] = ACTIONS(809), - [sym_identifier] = ACTIONS(811), - [anon_sym_import] = ACTIONS(811), - [anon_sym_test] = ACTIONS(811), - [anon_sym_hide] = ACTIONS(811), - [anon_sym_func] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_struct] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_void] = ACTIONS(811), - [anon_sym_anyopaque] = ACTIONS(811), - [anon_sym_bool] = ACTIONS(811), - [anon_sym_int] = ACTIONS(811), - [anon_sym_uint] = ACTIONS(811), - [anon_sym_float] = ACTIONS(811), - [anon_sym_range] = ACTIONS(811), - [anon_sym_i8] = ACTIONS(811), - [anon_sym_i16] = ACTIONS(811), - [anon_sym_i32] = ACTIONS(811), - [anon_sym_i64] = ACTIONS(811), - [anon_sym_u8] = ACTIONS(811), - [anon_sym_u16] = ACTIONS(811), - [anon_sym_u32] = ACTIONS(811), - [anon_sym_u64] = ACTIONS(811), - [anon_sym_isize] = ACTIONS(811), - [anon_sym_usize] = ACTIONS(811), - [anon_sym_f32] = ACTIONS(811), - [anon_sym_f64] = ACTIONS(811), - [anon_sym_c_char] = ACTIONS(811), - [anon_sym_c_schar] = ACTIONS(811), - [anon_sym_c_uchar] = ACTIONS(811), - [anon_sym_c_short] = ACTIONS(811), - [anon_sym_c_ushort] = ACTIONS(811), - [anon_sym_c_int] = ACTIONS(811), - [anon_sym_c_uint] = ACTIONS(811), - [anon_sym_c_long] = ACTIONS(811), - [anon_sym_c_ulong] = ACTIONS(811), - [anon_sym_c_longlong] = ACTIONS(811), - [anon_sym_c_ulonglong] = ACTIONS(811), - [anon_sym_c_float] = ACTIONS(811), - [anon_sym_c_double] = ACTIONS(811), - [anon_sym_c_longdouble] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(809), - [anon_sym_STAR_EQ] = ACTIONS(809), - [anon_sym_SLASH_EQ] = ACTIONS(809), - [anon_sym_AMP_EQ] = ACTIONS(809), - [anon_sym_PIPE_EQ] = ACTIONS(809), - [anon_sym_xor_EQ] = ACTIONS(809), - [anon_sym_LT_LT_EQ] = ACTIONS(809), - [anon_sym_GT_GT_EQ] = ACTIONS(809), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(809), - [anon_sym_return] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(811), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(811), - [anon_sym_defer] = ACTIONS(811), - [anon_sym_errdefer] = ACTIONS(811), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(811), - [anon_sym_while] = ACTIONS(811), - [anon_sym_expand] = ACTIONS(811), - [anon_sym_for] = ACTIONS(811), - [anon_sym_match] = ACTIONS(811), - [anon_sym_DOT_DOT] = ACTIONS(811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(809), - [anon_sym_orelse] = ACTIONS(811), - [anon_sym_catch] = ACTIONS(811), - [anon_sym_or] = ACTIONS(811), - [anon_sym_and] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_xor] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_LT_LT_PIPE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_try] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_true] = ACTIONS(811), - [anon_sym_false] = ACTIONS(811), - [sym_none] = ACTIONS(811), - [sym_undefined] = ACTIONS(811), - [sym_sink] = ACTIONS(811), - [sym_integer] = ACTIONS(811), - [sym_float] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym_multiline_string] = ACTIONS(809), - [sym_character] = ACTIONS(809), + [STATE(201)] = { + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [anon_sym_import] = ACTIONS(820), + [anon_sym_test] = ACTIONS(820), + [anon_sym_hide] = ACTIONS(820), + [anon_sym_func] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_struct] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(818), + [anon_sym_void] = ACTIONS(820), + [anon_sym_type] = ACTIONS(820), + [anon_sym_anyopaque] = ACTIONS(820), + [anon_sym_bool] = ACTIONS(820), + [anon_sym_int] = ACTIONS(820), + [anon_sym_uint] = ACTIONS(820), + [anon_sym_float] = ACTIONS(820), + [anon_sym_range] = ACTIONS(820), + [anon_sym_i8] = ACTIONS(820), + [anon_sym_i16] = ACTIONS(820), + [anon_sym_i32] = ACTIONS(820), + [anon_sym_i64] = ACTIONS(820), + [anon_sym_u8] = ACTIONS(820), + [anon_sym_u16] = ACTIONS(820), + [anon_sym_u32] = ACTIONS(820), + [anon_sym_u64] = ACTIONS(820), + [anon_sym_isize] = ACTIONS(820), + [anon_sym_usize] = ACTIONS(820), + [anon_sym_f32] = ACTIONS(820), + [anon_sym_f64] = ACTIONS(820), + [anon_sym_c_char] = ACTIONS(820), + [anon_sym_c_schar] = ACTIONS(820), + [anon_sym_c_uchar] = ACTIONS(820), + [anon_sym_c_short] = ACTIONS(820), + [anon_sym_c_ushort] = ACTIONS(820), + [anon_sym_c_int] = ACTIONS(820), + [anon_sym_c_uint] = ACTIONS(820), + [anon_sym_c_long] = ACTIONS(820), + [anon_sym_c_ulong] = ACTIONS(820), + [anon_sym_c_longlong] = ACTIONS(820), + [anon_sym_c_ulonglong] = ACTIONS(820), + [anon_sym_c_float] = ACTIONS(820), + [anon_sym_c_double] = ACTIONS(820), + [anon_sym_c_longdouble] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(818), + [anon_sym_DASH_EQ] = ACTIONS(818), + [anon_sym_STAR_EQ] = ACTIONS(818), + [anon_sym_SLASH_EQ] = ACTIONS(818), + [anon_sym_AMP_EQ] = ACTIONS(818), + [anon_sym_PIPE_EQ] = ACTIONS(818), + [anon_sym_xor_EQ] = ACTIONS(818), + [anon_sym_LT_LT_EQ] = ACTIONS(818), + [anon_sym_GT_GT_EQ] = ACTIONS(818), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(818), + [anon_sym_return] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(820), + [anon_sym_break] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(820), + [anon_sym_defer] = ACTIONS(820), + [anon_sym_errdefer] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_else] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_expand] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_match] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(818), + [anon_sym_orelse] = ACTIONS(820), + [anon_sym_catch] = ACTIONS(820), + [anon_sym_or] = ACTIONS(820), + [anon_sym_and] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_xor] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_try] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_true] = ACTIONS(820), + [anon_sym_false] = ACTIONS(820), + [sym_none] = ACTIONS(820), + [sym_undefined] = ACTIONS(820), + [sym_sink] = ACTIONS(820), + [sym_integer] = ACTIONS(820), + [sym_float] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_multiline_string] = ACTIONS(818), + [sym_character] = ACTIONS(818), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), + [sym__newline] = ACTIONS(818), }, - [STATE(142)] = { + [STATE(202)] = { + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [anon_sym_import] = ACTIONS(824), + [anon_sym_test] = ACTIONS(824), + [anon_sym_hide] = ACTIONS(824), + [anon_sym_func] = ACTIONS(824), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_void] = ACTIONS(824), + [anon_sym_type] = ACTIONS(824), + [anon_sym_anyopaque] = ACTIONS(824), + [anon_sym_bool] = ACTIONS(824), + [anon_sym_int] = ACTIONS(824), + [anon_sym_uint] = ACTIONS(824), + [anon_sym_float] = ACTIONS(824), + [anon_sym_range] = ACTIONS(824), + [anon_sym_i8] = ACTIONS(824), + [anon_sym_i16] = ACTIONS(824), + [anon_sym_i32] = ACTIONS(824), + [anon_sym_i64] = ACTIONS(824), + [anon_sym_u8] = ACTIONS(824), + [anon_sym_u16] = ACTIONS(824), + [anon_sym_u32] = ACTIONS(824), + [anon_sym_u64] = ACTIONS(824), + [anon_sym_isize] = ACTIONS(824), + [anon_sym_usize] = ACTIONS(824), + [anon_sym_f32] = ACTIONS(824), + [anon_sym_f64] = ACTIONS(824), + [anon_sym_c_char] = ACTIONS(824), + [anon_sym_c_schar] = ACTIONS(824), + [anon_sym_c_uchar] = ACTIONS(824), + [anon_sym_c_short] = ACTIONS(824), + [anon_sym_c_ushort] = ACTIONS(824), + [anon_sym_c_int] = ACTIONS(824), + [anon_sym_c_uint] = ACTIONS(824), + [anon_sym_c_long] = ACTIONS(824), + [anon_sym_c_ulong] = ACTIONS(824), + [anon_sym_c_longlong] = ACTIONS(824), + [anon_sym_c_ulonglong] = ACTIONS(824), + [anon_sym_c_float] = ACTIONS(824), + [anon_sym_c_double] = ACTIONS(824), + [anon_sym_c_longdouble] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(822), + [anon_sym_DASH_EQ] = ACTIONS(822), + [anon_sym_STAR_EQ] = ACTIONS(822), + [anon_sym_SLASH_EQ] = ACTIONS(822), + [anon_sym_AMP_EQ] = ACTIONS(822), + [anon_sym_PIPE_EQ] = ACTIONS(822), + [anon_sym_xor_EQ] = ACTIONS(822), + [anon_sym_LT_LT_EQ] = ACTIONS(822), + [anon_sym_GT_GT_EQ] = ACTIONS(822), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(822), + [anon_sym_return] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(824), + [anon_sym_break] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(824), + [anon_sym_defer] = ACTIONS(824), + [anon_sym_errdefer] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_else] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_expand] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_orelse] = ACTIONS(824), + [anon_sym_catch] = ACTIONS(824), + [anon_sym_or] = ACTIONS(824), + [anon_sym_and] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_xor] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_LT_LT_PIPE] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(824), + [anon_sym_SLASH] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(824), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_true] = ACTIONS(824), + [anon_sym_false] = ACTIONS(824), + [sym_none] = ACTIONS(824), + [sym_undefined] = ACTIONS(824), + [sym_sink] = ACTIONS(824), + [sym_integer] = ACTIONS(824), + [sym_float] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_multiline_string] = ACTIONS(822), + [sym_character] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + }, + [STATE(203)] = { + [ts_builtin_sym_end] = ACTIONS(826), + [sym_identifier] = ACTIONS(828), + [anon_sym_import] = ACTIONS(828), + [anon_sym_test] = ACTIONS(828), + [anon_sym_hide] = ACTIONS(828), + [anon_sym_func] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_void] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_anyopaque] = ACTIONS(828), + [anon_sym_bool] = ACTIONS(828), + [anon_sym_int] = ACTIONS(828), + [anon_sym_uint] = ACTIONS(828), + [anon_sym_float] = ACTIONS(828), + [anon_sym_range] = ACTIONS(828), + [anon_sym_i8] = ACTIONS(828), + [anon_sym_i16] = ACTIONS(828), + [anon_sym_i32] = ACTIONS(828), + [anon_sym_i64] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(828), + [anon_sym_u16] = ACTIONS(828), + [anon_sym_u32] = ACTIONS(828), + [anon_sym_u64] = ACTIONS(828), + [anon_sym_isize] = ACTIONS(828), + [anon_sym_usize] = ACTIONS(828), + [anon_sym_f32] = ACTIONS(828), + [anon_sym_f64] = ACTIONS(828), + [anon_sym_c_char] = ACTIONS(828), + [anon_sym_c_schar] = ACTIONS(828), + [anon_sym_c_uchar] = ACTIONS(828), + [anon_sym_c_short] = ACTIONS(828), + [anon_sym_c_ushort] = ACTIONS(828), + [anon_sym_c_int] = ACTIONS(828), + [anon_sym_c_uint] = ACTIONS(828), + [anon_sym_c_long] = ACTIONS(828), + [anon_sym_c_ulong] = ACTIONS(828), + [anon_sym_c_longlong] = ACTIONS(828), + [anon_sym_c_ulonglong] = ACTIONS(828), + [anon_sym_c_float] = ACTIONS(828), + [anon_sym_c_double] = ACTIONS(828), + [anon_sym_c_longdouble] = ACTIONS(828), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_STAR_EQ] = ACTIONS(826), + [anon_sym_SLASH_EQ] = ACTIONS(826), + [anon_sym_AMP_EQ] = ACTIONS(826), + [anon_sym_PIPE_EQ] = ACTIONS(826), + [anon_sym_xor_EQ] = ACTIONS(826), + [anon_sym_LT_LT_EQ] = ACTIONS(826), + [anon_sym_GT_GT_EQ] = ACTIONS(826), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(826), + [anon_sym_return] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(828), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(828), + [anon_sym_defer] = ACTIONS(828), + [anon_sym_errdefer] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_expand] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_match] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [anon_sym_orelse] = ACTIONS(828), + [anon_sym_catch] = ACTIONS(828), + [anon_sym_or] = ACTIONS(828), + [anon_sym_and] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_xor] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_LT_LT_PIPE] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_TILDE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(828), + [anon_sym_DOT] = ACTIONS(828), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_true] = ACTIONS(828), + [anon_sym_false] = ACTIONS(828), + [sym_none] = ACTIONS(828), + [sym_undefined] = ACTIONS(828), + [sym_sink] = ACTIONS(828), + [sym_integer] = ACTIONS(828), + [sym_float] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_multiline_string] = ACTIONS(826), + [sym_character] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(826), + }, + [STATE(204)] = { + [ts_builtin_sym_end] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_import] = ACTIONS(832), + [anon_sym_test] = ACTIONS(832), + [anon_sym_hide] = ACTIONS(832), + [anon_sym_func] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_void] = ACTIONS(832), + [anon_sym_type] = ACTIONS(832), + [anon_sym_anyopaque] = ACTIONS(832), + [anon_sym_bool] = ACTIONS(832), + [anon_sym_int] = ACTIONS(832), + [anon_sym_uint] = ACTIONS(832), + [anon_sym_float] = ACTIONS(832), + [anon_sym_range] = ACTIONS(832), + [anon_sym_i8] = ACTIONS(832), + [anon_sym_i16] = ACTIONS(832), + [anon_sym_i32] = ACTIONS(832), + [anon_sym_i64] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(832), + [anon_sym_u16] = ACTIONS(832), + [anon_sym_u32] = ACTIONS(832), + [anon_sym_u64] = ACTIONS(832), + [anon_sym_isize] = ACTIONS(832), + [anon_sym_usize] = ACTIONS(832), + [anon_sym_f32] = ACTIONS(832), + [anon_sym_f64] = ACTIONS(832), + [anon_sym_c_char] = ACTIONS(832), + [anon_sym_c_schar] = ACTIONS(832), + [anon_sym_c_uchar] = ACTIONS(832), + [anon_sym_c_short] = ACTIONS(832), + [anon_sym_c_ushort] = ACTIONS(832), + [anon_sym_c_int] = ACTIONS(832), + [anon_sym_c_uint] = ACTIONS(832), + [anon_sym_c_long] = ACTIONS(832), + [anon_sym_c_ulong] = ACTIONS(832), + [anon_sym_c_longlong] = ACTIONS(832), + [anon_sym_c_ulonglong] = ACTIONS(832), + [anon_sym_c_float] = ACTIONS(832), + [anon_sym_c_double] = ACTIONS(832), + [anon_sym_c_longdouble] = ACTIONS(832), + [anon_sym_PLUS_EQ] = ACTIONS(830), + [anon_sym_DASH_EQ] = ACTIONS(830), + [anon_sym_STAR_EQ] = ACTIONS(830), + [anon_sym_SLASH_EQ] = ACTIONS(830), + [anon_sym_AMP_EQ] = ACTIONS(830), + [anon_sym_PIPE_EQ] = ACTIONS(830), + [anon_sym_xor_EQ] = ACTIONS(830), + [anon_sym_LT_LT_EQ] = ACTIONS(830), + [anon_sym_GT_GT_EQ] = ACTIONS(830), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_break] = ACTIONS(832), + [anon_sym_continue] = ACTIONS(832), + [anon_sym_defer] = ACTIONS(832), + [anon_sym_errdefer] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_else] = ACTIONS(832), + [anon_sym_while] = ACTIONS(832), + [anon_sym_expand] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_orelse] = ACTIONS(832), + [anon_sym_catch] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_BANG_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_xor] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_LT_LT_PIPE] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(832), + [anon_sym_TILDE] = ACTIONS(830), + [anon_sym_try] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_true] = ACTIONS(832), + [anon_sym_false] = ACTIONS(832), + [sym_none] = ACTIONS(832), + [sym_undefined] = ACTIONS(832), + [sym_sink] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [sym_multiline_string] = ACTIONS(830), + [sym_character] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(830), + }, + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(375), + [sym_identifier] = ACTIONS(373), + [anon_sym_import] = ACTIONS(373), + [anon_sym_test] = ACTIONS(373), + [anon_sym_hide] = ACTIONS(373), + [anon_sym_func] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_void] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_anyopaque] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_int] = ACTIONS(373), + [anon_sym_uint] = ACTIONS(373), + [anon_sym_float] = ACTIONS(373), + [anon_sym_range] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_c_char] = ACTIONS(373), + [anon_sym_c_schar] = ACTIONS(373), + [anon_sym_c_uchar] = ACTIONS(373), + [anon_sym_c_short] = ACTIONS(373), + [anon_sym_c_ushort] = ACTIONS(373), + [anon_sym_c_int] = ACTIONS(373), + [anon_sym_c_uint] = ACTIONS(373), + [anon_sym_c_long] = ACTIONS(373), + [anon_sym_c_ulong] = ACTIONS(373), + [anon_sym_c_longlong] = ACTIONS(373), + [anon_sym_c_ulonglong] = ACTIONS(373), + [anon_sym_c_float] = ACTIONS(373), + [anon_sym_c_double] = ACTIONS(373), + [anon_sym_c_longdouble] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_xor_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(375), + [anon_sym_return] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(373), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_errdefer] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(373), + [anon_sym_while] = ACTIONS(373), + [anon_sym_expand] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_orelse] = ACTIONS(373), + [anon_sym_catch] = ACTIONS(373), + [anon_sym_or] = ACTIONS(373), + [anon_sym_and] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_xor] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_LT_LT_PIPE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_TILDE] = ACTIONS(375), + [anon_sym_try] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_none] = ACTIONS(373), + [sym_undefined] = ACTIONS(373), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(373), + [sym_float] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_multiline_string] = ACTIONS(375), + [sym_character] = ACTIONS(375), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(375), + }, + [STATE(206)] = { [ts_builtin_sym_end] = ACTIONS(371), [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(369), @@ -28966,6 +37613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(371), [anon_sym_void] = ACTIONS(369), + [anon_sym_type] = ACTIONS(369), [anon_sym_anyopaque] = ACTIONS(369), [anon_sym_bool] = ACTIONS(369), [anon_sym_int] = ACTIONS(369), @@ -29056,21002 +37704,13958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(371), }, - [STATE(143)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(813), - }, - [STATE(144)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(145)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(285), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(815), - }, - [STATE(146)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(817), - }, - [STATE(147)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(148)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1742), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1742), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(149)] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_identifier] = ACTIONS(821), - [anon_sym_import] = ACTIONS(821), - [anon_sym_test] = ACTIONS(821), - [anon_sym_hide] = ACTIONS(821), - [anon_sym_func] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_void] = ACTIONS(821), - [anon_sym_anyopaque] = ACTIONS(821), - [anon_sym_bool] = ACTIONS(821), - [anon_sym_int] = ACTIONS(821), - [anon_sym_uint] = ACTIONS(821), - [anon_sym_float] = ACTIONS(821), - [anon_sym_range] = ACTIONS(821), - [anon_sym_i8] = ACTIONS(821), - [anon_sym_i16] = ACTIONS(821), - [anon_sym_i32] = ACTIONS(821), - [anon_sym_i64] = ACTIONS(821), - [anon_sym_u8] = ACTIONS(821), - [anon_sym_u16] = ACTIONS(821), - [anon_sym_u32] = ACTIONS(821), - [anon_sym_u64] = ACTIONS(821), - [anon_sym_isize] = ACTIONS(821), - [anon_sym_usize] = ACTIONS(821), - [anon_sym_f32] = ACTIONS(821), - [anon_sym_f64] = ACTIONS(821), - [anon_sym_c_char] = ACTIONS(821), - [anon_sym_c_schar] = ACTIONS(821), - [anon_sym_c_uchar] = ACTIONS(821), - [anon_sym_c_short] = ACTIONS(821), - [anon_sym_c_ushort] = ACTIONS(821), - [anon_sym_c_int] = ACTIONS(821), - [anon_sym_c_uint] = ACTIONS(821), - [anon_sym_c_long] = ACTIONS(821), - [anon_sym_c_ulong] = ACTIONS(821), - [anon_sym_c_longlong] = ACTIONS(821), - [anon_sym_c_ulonglong] = ACTIONS(821), - [anon_sym_c_float] = ACTIONS(821), - [anon_sym_c_double] = ACTIONS(821), - [anon_sym_c_longdouble] = ACTIONS(821), - [anon_sym_PLUS_EQ] = ACTIONS(819), - [anon_sym_DASH_EQ] = ACTIONS(819), - [anon_sym_STAR_EQ] = ACTIONS(819), - [anon_sym_SLASH_EQ] = ACTIONS(819), - [anon_sym_AMP_EQ] = ACTIONS(819), - [anon_sym_PIPE_EQ] = ACTIONS(819), - [anon_sym_xor_EQ] = ACTIONS(819), - [anon_sym_LT_LT_EQ] = ACTIONS(819), - [anon_sym_GT_GT_EQ] = ACTIONS(819), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(819), - [anon_sym_return] = ACTIONS(821), - [anon_sym_yield] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_defer] = ACTIONS(821), - [anon_sym_errdefer] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_else] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_expand] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(819), - [anon_sym_orelse] = ACTIONS(821), - [anon_sym_catch] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(821), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_LT_LT_PIPE] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_try] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_undefined] = ACTIONS(821), - [sym_sink] = ACTIONS(821), - [sym_integer] = ACTIONS(821), - [sym_float] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(819), - [sym_multiline_string] = ACTIONS(819), - [sym_character] = ACTIONS(819), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(819), - }, - [STATE(150)] = { - [ts_builtin_sym_end] = ACTIONS(823), - [sym_identifier] = ACTIONS(825), - [anon_sym_import] = ACTIONS(825), - [anon_sym_test] = ACTIONS(825), - [anon_sym_hide] = ACTIONS(825), - [anon_sym_func] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_struct] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_void] = ACTIONS(825), - [anon_sym_anyopaque] = ACTIONS(825), - [anon_sym_bool] = ACTIONS(825), - [anon_sym_int] = ACTIONS(825), - [anon_sym_uint] = ACTIONS(825), - [anon_sym_float] = ACTIONS(825), - [anon_sym_range] = ACTIONS(825), - [anon_sym_i8] = ACTIONS(825), - [anon_sym_i16] = ACTIONS(825), - [anon_sym_i32] = ACTIONS(825), - [anon_sym_i64] = ACTIONS(825), - [anon_sym_u8] = ACTIONS(825), - [anon_sym_u16] = ACTIONS(825), - [anon_sym_u32] = ACTIONS(825), - [anon_sym_u64] = ACTIONS(825), - [anon_sym_isize] = ACTIONS(825), - [anon_sym_usize] = ACTIONS(825), - [anon_sym_f32] = ACTIONS(825), - [anon_sym_f64] = ACTIONS(825), - [anon_sym_c_char] = ACTIONS(825), - [anon_sym_c_schar] = ACTIONS(825), - [anon_sym_c_uchar] = ACTIONS(825), - [anon_sym_c_short] = ACTIONS(825), - [anon_sym_c_ushort] = ACTIONS(825), - [anon_sym_c_int] = ACTIONS(825), - [anon_sym_c_uint] = ACTIONS(825), - [anon_sym_c_long] = ACTIONS(825), - [anon_sym_c_ulong] = ACTIONS(825), - [anon_sym_c_longlong] = ACTIONS(825), - [anon_sym_c_ulonglong] = ACTIONS(825), - [anon_sym_c_float] = ACTIONS(825), - [anon_sym_c_double] = ACTIONS(825), - [anon_sym_c_longdouble] = ACTIONS(825), - [anon_sym_PLUS_EQ] = ACTIONS(823), - [anon_sym_DASH_EQ] = ACTIONS(823), - [anon_sym_STAR_EQ] = ACTIONS(823), - [anon_sym_SLASH_EQ] = ACTIONS(823), - [anon_sym_AMP_EQ] = ACTIONS(823), - [anon_sym_PIPE_EQ] = ACTIONS(823), - [anon_sym_xor_EQ] = ACTIONS(823), - [anon_sym_LT_LT_EQ] = ACTIONS(823), - [anon_sym_GT_GT_EQ] = ACTIONS(823), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(823), - [anon_sym_return] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(825), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_defer] = ACTIONS(825), - [anon_sym_errdefer] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_else] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_expand] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_match] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(823), - [anon_sym_orelse] = ACTIONS(825), - [anon_sym_catch] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_LT_LT] = ACTIONS(825), - [anon_sym_GT_GT] = ACTIONS(825), - [anon_sym_LT_LT_PIPE] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_try] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [sym_none] = ACTIONS(825), - [sym_undefined] = ACTIONS(825), - [sym_sink] = ACTIONS(825), - [sym_integer] = ACTIONS(825), - [sym_float] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym_multiline_string] = ACTIONS(823), - [sym_character] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(823), - }, - [STATE(151)] = { - [ts_builtin_sym_end] = ACTIONS(827), - [sym_identifier] = ACTIONS(829), - [anon_sym_import] = ACTIONS(829), - [anon_sym_test] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_func] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_struct] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_RPAREN] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_COMMA] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_void] = ACTIONS(829), - [anon_sym_anyopaque] = ACTIONS(829), - [anon_sym_bool] = ACTIONS(829), - [anon_sym_int] = ACTIONS(829), - [anon_sym_uint] = ACTIONS(829), - [anon_sym_float] = ACTIONS(829), - [anon_sym_range] = ACTIONS(829), - [anon_sym_i8] = ACTIONS(829), - [anon_sym_i16] = ACTIONS(829), - [anon_sym_i32] = ACTIONS(829), - [anon_sym_i64] = ACTIONS(829), - [anon_sym_u8] = ACTIONS(829), - [anon_sym_u16] = ACTIONS(829), - [anon_sym_u32] = ACTIONS(829), - [anon_sym_u64] = ACTIONS(829), - [anon_sym_isize] = ACTIONS(829), - [anon_sym_usize] = ACTIONS(829), - [anon_sym_f32] = ACTIONS(829), - [anon_sym_f64] = ACTIONS(829), - [anon_sym_c_char] = ACTIONS(829), - [anon_sym_c_schar] = ACTIONS(829), - [anon_sym_c_uchar] = ACTIONS(829), - [anon_sym_c_short] = ACTIONS(829), - [anon_sym_c_ushort] = ACTIONS(829), - [anon_sym_c_int] = ACTIONS(829), - [anon_sym_c_uint] = ACTIONS(829), - [anon_sym_c_long] = ACTIONS(829), - [anon_sym_c_ulong] = ACTIONS(829), - [anon_sym_c_longlong] = ACTIONS(829), - [anon_sym_c_ulonglong] = ACTIONS(829), - [anon_sym_c_float] = ACTIONS(829), - [anon_sym_c_double] = ACTIONS(829), - [anon_sym_c_longdouble] = ACTIONS(829), - [anon_sym_PLUS_EQ] = ACTIONS(827), - [anon_sym_DASH_EQ] = ACTIONS(827), - [anon_sym_STAR_EQ] = ACTIONS(827), - [anon_sym_SLASH_EQ] = ACTIONS(827), - [anon_sym_AMP_EQ] = ACTIONS(827), - [anon_sym_PIPE_EQ] = ACTIONS(827), - [anon_sym_xor_EQ] = ACTIONS(827), - [anon_sym_LT_LT_EQ] = ACTIONS(827), - [anon_sym_GT_GT_EQ] = ACTIONS(827), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(827), - [anon_sym_return] = ACTIONS(829), - [anon_sym_yield] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_defer] = ACTIONS(829), - [anon_sym_errdefer] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_else] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_expand] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(827), - [anon_sym_orelse] = ACTIONS(829), - [anon_sym_catch] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(827), - [anon_sym_BANG_EQ] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(827), - [anon_sym_try] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [sym_none] = ACTIONS(829), - [sym_undefined] = ACTIONS(829), - [sym_sink] = ACTIONS(829), - [sym_integer] = ACTIONS(829), - [sym_float] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(827), - [sym_multiline_string] = ACTIONS(827), - [sym_character] = ACTIONS(827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(827), - }, - [STATE(152)] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_identifier] = ACTIONS(833), - [anon_sym_import] = ACTIONS(833), - [anon_sym_test] = ACTIONS(833), - [anon_sym_hide] = ACTIONS(833), - [anon_sym_func] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(833), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_RPAREN] = ACTIONS(831), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(831), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_QMARK] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(831), - [anon_sym_void] = ACTIONS(833), - [anon_sym_anyopaque] = ACTIONS(833), - [anon_sym_bool] = ACTIONS(833), - [anon_sym_int] = ACTIONS(833), - [anon_sym_uint] = ACTIONS(833), - [anon_sym_float] = ACTIONS(833), - [anon_sym_range] = ACTIONS(833), - [anon_sym_i8] = ACTIONS(833), - [anon_sym_i16] = ACTIONS(833), - [anon_sym_i32] = ACTIONS(833), - [anon_sym_i64] = ACTIONS(833), - [anon_sym_u8] = ACTIONS(833), - [anon_sym_u16] = ACTIONS(833), - [anon_sym_u32] = ACTIONS(833), - [anon_sym_u64] = ACTIONS(833), - [anon_sym_isize] = ACTIONS(833), - [anon_sym_usize] = ACTIONS(833), - [anon_sym_f32] = ACTIONS(833), - [anon_sym_f64] = ACTIONS(833), - [anon_sym_c_char] = ACTIONS(833), - [anon_sym_c_schar] = ACTIONS(833), - [anon_sym_c_uchar] = ACTIONS(833), - [anon_sym_c_short] = ACTIONS(833), - [anon_sym_c_ushort] = ACTIONS(833), - [anon_sym_c_int] = ACTIONS(833), - [anon_sym_c_uint] = ACTIONS(833), - [anon_sym_c_long] = ACTIONS(833), - [anon_sym_c_ulong] = ACTIONS(833), - [anon_sym_c_longlong] = ACTIONS(833), - [anon_sym_c_ulonglong] = ACTIONS(833), - [anon_sym_c_float] = ACTIONS(833), - [anon_sym_c_double] = ACTIONS(833), - [anon_sym_c_longdouble] = ACTIONS(833), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_xor_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(831), - [anon_sym_return] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_break] = ACTIONS(833), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_defer] = ACTIONS(833), - [anon_sym_errdefer] = ACTIONS(833), - [anon_sym_if] = ACTIONS(833), - [anon_sym_else] = ACTIONS(833), - [anon_sym_while] = ACTIONS(833), - [anon_sym_expand] = ACTIONS(833), - [anon_sym_for] = ACTIONS(833), - [anon_sym_match] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(831), - [anon_sym_orelse] = ACTIONS(833), - [anon_sym_catch] = ACTIONS(833), - [anon_sym_or] = ACTIONS(833), - [anon_sym_and] = ACTIONS(833), - [anon_sym_EQ_EQ] = ACTIONS(831), - [anon_sym_BANG_EQ] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(831), - [anon_sym_GT] = ACTIONS(833), - [anon_sym_GT_EQ] = ACTIONS(831), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_xor] = ACTIONS(833), - [anon_sym_LT_LT] = ACTIONS(833), - [anon_sym_GT_GT] = ACTIONS(833), - [anon_sym_LT_LT_PIPE] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_SLASH] = ACTIONS(833), - [anon_sym_TILDE] = ACTIONS(831), - [anon_sym_try] = ACTIONS(833), - [anon_sym_DOT] = ACTIONS(833), - [anon_sym_CARET] = ACTIONS(831), - [anon_sym_true] = ACTIONS(833), - [anon_sym_false] = ACTIONS(833), - [sym_none] = ACTIONS(833), - [sym_undefined] = ACTIONS(833), - [sym_sink] = ACTIONS(833), - [sym_integer] = ACTIONS(833), - [sym_float] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(831), - [sym_multiline_string] = ACTIONS(831), - [sym_character] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(831), - }, - [STATE(153)] = { - [ts_builtin_sym_end] = ACTIONS(835), - [sym_identifier] = ACTIONS(837), - [anon_sym_import] = ACTIONS(837), - [anon_sym_test] = ACTIONS(837), - [anon_sym_hide] = ACTIONS(837), - [anon_sym_func] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(837), - [anon_sym_struct] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_void] = ACTIONS(837), - [anon_sym_anyopaque] = ACTIONS(837), - [anon_sym_bool] = ACTIONS(837), - [anon_sym_int] = ACTIONS(837), - [anon_sym_uint] = ACTIONS(837), - [anon_sym_float] = ACTIONS(837), - [anon_sym_range] = ACTIONS(837), - [anon_sym_i8] = ACTIONS(837), - [anon_sym_i16] = ACTIONS(837), - [anon_sym_i32] = ACTIONS(837), - [anon_sym_i64] = ACTIONS(837), - [anon_sym_u8] = ACTIONS(837), - [anon_sym_u16] = ACTIONS(837), - [anon_sym_u32] = ACTIONS(837), - [anon_sym_u64] = ACTIONS(837), - [anon_sym_isize] = ACTIONS(837), - [anon_sym_usize] = ACTIONS(837), - [anon_sym_f32] = ACTIONS(837), - [anon_sym_f64] = ACTIONS(837), - [anon_sym_c_char] = ACTIONS(837), - [anon_sym_c_schar] = ACTIONS(837), - [anon_sym_c_uchar] = ACTIONS(837), - [anon_sym_c_short] = ACTIONS(837), - [anon_sym_c_ushort] = ACTIONS(837), - [anon_sym_c_int] = ACTIONS(837), - [anon_sym_c_uint] = ACTIONS(837), - [anon_sym_c_long] = ACTIONS(837), - [anon_sym_c_ulong] = ACTIONS(837), - [anon_sym_c_longlong] = ACTIONS(837), - [anon_sym_c_ulonglong] = ACTIONS(837), - [anon_sym_c_float] = ACTIONS(837), - [anon_sym_c_double] = ACTIONS(837), - [anon_sym_c_longdouble] = ACTIONS(837), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_xor_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(835), - [anon_sym_return] = ACTIONS(837), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_break] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_defer] = ACTIONS(837), - [anon_sym_errdefer] = ACTIONS(837), - [anon_sym_if] = ACTIONS(837), - [anon_sym_else] = ACTIONS(837), - [anon_sym_while] = ACTIONS(837), - [anon_sym_expand] = ACTIONS(837), - [anon_sym_for] = ACTIONS(837), - [anon_sym_match] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(835), - [anon_sym_orelse] = ACTIONS(837), - [anon_sym_catch] = ACTIONS(837), - [anon_sym_or] = ACTIONS(837), - [anon_sym_and] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_xor] = ACTIONS(837), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(837), - [anon_sym_LT_LT_PIPE] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_TILDE] = ACTIONS(835), - [anon_sym_try] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_true] = ACTIONS(837), - [anon_sym_false] = ACTIONS(837), - [sym_none] = ACTIONS(837), - [sym_undefined] = ACTIONS(837), - [sym_sink] = ACTIONS(837), - [sym_integer] = ACTIONS(837), - [sym_float] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_multiline_string] = ACTIONS(835), - [sym_character] = ACTIONS(835), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(835), - }, - [STATE(154)] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(286), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_void] = ACTIONS(286), - [anon_sym_anyopaque] = ACTIONS(286), - [anon_sym_bool] = ACTIONS(286), - [anon_sym_int] = ACTIONS(286), - [anon_sym_uint] = ACTIONS(286), - [anon_sym_float] = ACTIONS(286), - [anon_sym_range] = ACTIONS(286), - [anon_sym_i8] = ACTIONS(286), - [anon_sym_i16] = ACTIONS(286), - [anon_sym_i32] = ACTIONS(286), - [anon_sym_i64] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(286), - [anon_sym_u16] = ACTIONS(286), - [anon_sym_u32] = ACTIONS(286), - [anon_sym_u64] = ACTIONS(286), - [anon_sym_isize] = ACTIONS(286), - [anon_sym_usize] = ACTIONS(286), - [anon_sym_f32] = ACTIONS(286), - [anon_sym_f64] = ACTIONS(286), - [anon_sym_c_char] = ACTIONS(286), - [anon_sym_c_schar] = ACTIONS(286), - [anon_sym_c_uchar] = ACTIONS(286), - [anon_sym_c_short] = ACTIONS(286), - [anon_sym_c_ushort] = ACTIONS(286), - [anon_sym_c_int] = ACTIONS(286), - [anon_sym_c_uint] = ACTIONS(286), - [anon_sym_c_long] = ACTIONS(286), - [anon_sym_c_ulong] = ACTIONS(286), - [anon_sym_c_longlong] = ACTIONS(286), - [anon_sym_c_ulonglong] = ACTIONS(286), - [anon_sym_c_float] = ACTIONS(286), - [anon_sym_c_double] = ACTIONS(286), - [anon_sym_c_longdouble] = ACTIONS(286), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_return] = ACTIONS(286), - [anon_sym_yield] = ACTIONS(286), - [anon_sym_break] = ACTIONS(286), - [anon_sym_continue] = ACTIONS(286), - [anon_sym_defer] = ACTIONS(286), - [anon_sym_errdefer] = ACTIONS(286), - [anon_sym_if] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(286), - [anon_sym_expand] = ACTIONS(286), - [anon_sym_for] = ACTIONS(286), - [anon_sym_match] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_LT_LT_PIPE] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_try] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [sym_none] = ACTIONS(286), - [sym_undefined] = ACTIONS(286), - [sym_sink] = ACTIONS(286), - [sym_integer] = ACTIONS(286), - [sym_float] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [sym_multiline_string] = ACTIONS(281), - [sym_character] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(155)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1740), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1740), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(156)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(839), - }, - [STATE(157)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(158)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(841), - }, - [STATE(159)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2635), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2635), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(160)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(843), - }, - [STATE(161)] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_identifier] = ACTIONS(847), - [anon_sym_import] = ACTIONS(847), - [anon_sym_test] = ACTIONS(847), - [anon_sym_hide] = ACTIONS(847), - [anon_sym_func] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_void] = ACTIONS(847), - [anon_sym_anyopaque] = ACTIONS(847), - [anon_sym_bool] = ACTIONS(847), - [anon_sym_int] = ACTIONS(847), - [anon_sym_uint] = ACTIONS(847), - [anon_sym_float] = ACTIONS(847), - [anon_sym_range] = ACTIONS(847), - [anon_sym_i8] = ACTIONS(847), - [anon_sym_i16] = ACTIONS(847), - [anon_sym_i32] = ACTIONS(847), - [anon_sym_i64] = ACTIONS(847), - [anon_sym_u8] = ACTIONS(847), - [anon_sym_u16] = ACTIONS(847), - [anon_sym_u32] = ACTIONS(847), - [anon_sym_u64] = ACTIONS(847), - [anon_sym_isize] = ACTIONS(847), - [anon_sym_usize] = ACTIONS(847), - [anon_sym_f32] = ACTIONS(847), - [anon_sym_f64] = ACTIONS(847), - [anon_sym_c_char] = ACTIONS(847), - [anon_sym_c_schar] = ACTIONS(847), - [anon_sym_c_uchar] = ACTIONS(847), - [anon_sym_c_short] = ACTIONS(847), - [anon_sym_c_ushort] = ACTIONS(847), - [anon_sym_c_int] = ACTIONS(847), - [anon_sym_c_uint] = ACTIONS(847), - [anon_sym_c_long] = ACTIONS(847), - [anon_sym_c_ulong] = ACTIONS(847), - [anon_sym_c_longlong] = ACTIONS(847), - [anon_sym_c_ulonglong] = ACTIONS(847), - [anon_sym_c_float] = ACTIONS(847), - [anon_sym_c_double] = ACTIONS(847), - [anon_sym_c_longdouble] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_AMP_EQ] = ACTIONS(845), - [anon_sym_PIPE_EQ] = ACTIONS(845), - [anon_sym_xor_EQ] = ACTIONS(845), - [anon_sym_LT_LT_EQ] = ACTIONS(845), - [anon_sym_GT_GT_EQ] = ACTIONS(845), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(845), - [anon_sym_return] = ACTIONS(847), - [anon_sym_yield] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_defer] = ACTIONS(847), - [anon_sym_errdefer] = ACTIONS(847), - [anon_sym_if] = ACTIONS(847), - [anon_sym_else] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [anon_sym_expand] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(845), - [anon_sym_orelse] = ACTIONS(847), - [anon_sym_catch] = ACTIONS(847), - [anon_sym_or] = ACTIONS(847), - [anon_sym_and] = ACTIONS(847), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), - [anon_sym_xor] = ACTIONS(847), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_LT_LT_PIPE] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_SLASH] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_try] = ACTIONS(847), - [anon_sym_DOT] = ACTIONS(847), - [anon_sym_CARET] = ACTIONS(845), - [anon_sym_true] = ACTIONS(847), - [anon_sym_false] = ACTIONS(847), - [sym_none] = ACTIONS(847), - [sym_undefined] = ACTIONS(847), - [sym_sink] = ACTIONS(847), - [sym_integer] = ACTIONS(847), - [sym_float] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [sym_multiline_string] = ACTIONS(845), - [sym_character] = ACTIONS(845), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(845), - }, - [STATE(162)] = { - [ts_builtin_sym_end] = ACTIONS(849), - [sym_identifier] = ACTIONS(851), - [anon_sym_import] = ACTIONS(851), - [anon_sym_test] = ACTIONS(851), - [anon_sym_hide] = ACTIONS(851), - [anon_sym_func] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_void] = ACTIONS(851), - [anon_sym_anyopaque] = ACTIONS(851), - [anon_sym_bool] = ACTIONS(851), - [anon_sym_int] = ACTIONS(851), - [anon_sym_uint] = ACTIONS(851), - [anon_sym_float] = ACTIONS(851), - [anon_sym_range] = ACTIONS(851), - [anon_sym_i8] = ACTIONS(851), - [anon_sym_i16] = ACTIONS(851), - [anon_sym_i32] = ACTIONS(851), - [anon_sym_i64] = ACTIONS(851), - [anon_sym_u8] = ACTIONS(851), - [anon_sym_u16] = ACTIONS(851), - [anon_sym_u32] = ACTIONS(851), - [anon_sym_u64] = ACTIONS(851), - [anon_sym_isize] = ACTIONS(851), - [anon_sym_usize] = ACTIONS(851), - [anon_sym_f32] = ACTIONS(851), - [anon_sym_f64] = ACTIONS(851), - [anon_sym_c_char] = ACTIONS(851), - [anon_sym_c_schar] = ACTIONS(851), - [anon_sym_c_uchar] = ACTIONS(851), - [anon_sym_c_short] = ACTIONS(851), - [anon_sym_c_ushort] = ACTIONS(851), - [anon_sym_c_int] = ACTIONS(851), - [anon_sym_c_uint] = ACTIONS(851), - [anon_sym_c_long] = ACTIONS(851), - [anon_sym_c_ulong] = ACTIONS(851), - [anon_sym_c_longlong] = ACTIONS(851), - [anon_sym_c_ulonglong] = ACTIONS(851), - [anon_sym_c_float] = ACTIONS(851), - [anon_sym_c_double] = ACTIONS(851), - [anon_sym_c_longdouble] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_STAR_EQ] = ACTIONS(849), - [anon_sym_SLASH_EQ] = ACTIONS(849), - [anon_sym_AMP_EQ] = ACTIONS(849), - [anon_sym_PIPE_EQ] = ACTIONS(849), - [anon_sym_xor_EQ] = ACTIONS(849), - [anon_sym_LT_LT_EQ] = ACTIONS(849), - [anon_sym_GT_GT_EQ] = ACTIONS(849), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(849), - [anon_sym_return] = ACTIONS(851), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_break] = ACTIONS(851), - [anon_sym_continue] = ACTIONS(851), - [anon_sym_defer] = ACTIONS(851), - [anon_sym_errdefer] = ACTIONS(851), - [anon_sym_if] = ACTIONS(851), - [anon_sym_else] = ACTIONS(851), - [anon_sym_while] = ACTIONS(851), - [anon_sym_expand] = ACTIONS(851), - [anon_sym_for] = ACTIONS(851), - [anon_sym_match] = ACTIONS(851), - [anon_sym_DOT_DOT] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(849), - [anon_sym_orelse] = ACTIONS(851), - [anon_sym_catch] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_LT_LT_PIPE] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_try] = ACTIONS(851), - [anon_sym_DOT] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_true] = ACTIONS(851), - [anon_sym_false] = ACTIONS(851), - [sym_none] = ACTIONS(851), - [sym_undefined] = ACTIONS(851), - [sym_sink] = ACTIONS(851), - [sym_integer] = ACTIONS(851), - [sym_float] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym_multiline_string] = ACTIONS(849), - [sym_character] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(849), - }, - [STATE(163)] = { - [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(855), - [anon_sym_import] = ACTIONS(855), - [anon_sym_test] = ACTIONS(855), - [anon_sym_hide] = ACTIONS(855), - [anon_sym_func] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_void] = ACTIONS(855), - [anon_sym_anyopaque] = ACTIONS(855), - [anon_sym_bool] = ACTIONS(855), - [anon_sym_int] = ACTIONS(855), - [anon_sym_uint] = ACTIONS(855), - [anon_sym_float] = ACTIONS(855), - [anon_sym_range] = ACTIONS(855), - [anon_sym_i8] = ACTIONS(855), - [anon_sym_i16] = ACTIONS(855), - [anon_sym_i32] = ACTIONS(855), - [anon_sym_i64] = ACTIONS(855), - [anon_sym_u8] = ACTIONS(855), - [anon_sym_u16] = ACTIONS(855), - [anon_sym_u32] = ACTIONS(855), - [anon_sym_u64] = ACTIONS(855), - [anon_sym_isize] = ACTIONS(855), - [anon_sym_usize] = ACTIONS(855), - [anon_sym_f32] = ACTIONS(855), - [anon_sym_f64] = ACTIONS(855), - [anon_sym_c_char] = ACTIONS(855), - [anon_sym_c_schar] = ACTIONS(855), - [anon_sym_c_uchar] = ACTIONS(855), - [anon_sym_c_short] = ACTIONS(855), - [anon_sym_c_ushort] = ACTIONS(855), - [anon_sym_c_int] = ACTIONS(855), - [anon_sym_c_uint] = ACTIONS(855), - [anon_sym_c_long] = ACTIONS(855), - [anon_sym_c_ulong] = ACTIONS(855), - [anon_sym_c_longlong] = ACTIONS(855), - [anon_sym_c_ulonglong] = ACTIONS(855), - [anon_sym_c_float] = ACTIONS(855), - [anon_sym_c_double] = ACTIONS(855), - [anon_sym_c_longdouble] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_STAR_EQ] = ACTIONS(853), - [anon_sym_SLASH_EQ] = ACTIONS(853), - [anon_sym_AMP_EQ] = ACTIONS(853), - [anon_sym_PIPE_EQ] = ACTIONS(853), - [anon_sym_xor_EQ] = ACTIONS(853), - [anon_sym_LT_LT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_EQ] = ACTIONS(853), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(853), - [anon_sym_return] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(855), - [anon_sym_break] = ACTIONS(855), - [anon_sym_continue] = ACTIONS(855), - [anon_sym_defer] = ACTIONS(855), - [anon_sym_errdefer] = ACTIONS(855), - [anon_sym_if] = ACTIONS(855), - [anon_sym_else] = ACTIONS(855), - [anon_sym_while] = ACTIONS(855), - [anon_sym_expand] = ACTIONS(855), - [anon_sym_for] = ACTIONS(855), - [anon_sym_match] = ACTIONS(855), - [anon_sym_DOT_DOT] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [anon_sym_orelse] = ACTIONS(855), - [anon_sym_catch] = ACTIONS(855), - [anon_sym_or] = ACTIONS(855), - [anon_sym_and] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_xor] = ACTIONS(855), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(855), - [anon_sym_LT_LT_PIPE] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_try] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_true] = ACTIONS(855), - [anon_sym_false] = ACTIONS(855), - [sym_none] = ACTIONS(855), - [sym_undefined] = ACTIONS(855), - [sym_sink] = ACTIONS(855), - [sym_integer] = ACTIONS(855), - [sym_float] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym_multiline_string] = ACTIONS(853), - [sym_character] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(853), - }, - [STATE(164)] = { - [ts_builtin_sym_end] = ACTIONS(857), - [sym_identifier] = ACTIONS(859), - [anon_sym_import] = ACTIONS(859), - [anon_sym_test] = ACTIONS(859), - [anon_sym_hide] = ACTIONS(859), - [anon_sym_func] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(859), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_void] = ACTIONS(859), - [anon_sym_anyopaque] = ACTIONS(859), - [anon_sym_bool] = ACTIONS(859), - [anon_sym_int] = ACTIONS(859), - [anon_sym_uint] = ACTIONS(859), - [anon_sym_float] = ACTIONS(859), - [anon_sym_range] = ACTIONS(859), - [anon_sym_i8] = ACTIONS(859), - [anon_sym_i16] = ACTIONS(859), - [anon_sym_i32] = ACTIONS(859), - [anon_sym_i64] = ACTIONS(859), - [anon_sym_u8] = ACTIONS(859), - [anon_sym_u16] = ACTIONS(859), - [anon_sym_u32] = ACTIONS(859), - [anon_sym_u64] = ACTIONS(859), - [anon_sym_isize] = ACTIONS(859), - [anon_sym_usize] = ACTIONS(859), - [anon_sym_f32] = ACTIONS(859), - [anon_sym_f64] = ACTIONS(859), - [anon_sym_c_char] = ACTIONS(859), - [anon_sym_c_schar] = ACTIONS(859), - [anon_sym_c_uchar] = ACTIONS(859), - [anon_sym_c_short] = ACTIONS(859), - [anon_sym_c_ushort] = ACTIONS(859), - [anon_sym_c_int] = ACTIONS(859), - [anon_sym_c_uint] = ACTIONS(859), - [anon_sym_c_long] = ACTIONS(859), - [anon_sym_c_ulong] = ACTIONS(859), - [anon_sym_c_longlong] = ACTIONS(859), - [anon_sym_c_ulonglong] = ACTIONS(859), - [anon_sym_c_float] = ACTIONS(859), - [anon_sym_c_double] = ACTIONS(859), - [anon_sym_c_longdouble] = ACTIONS(859), - [anon_sym_PLUS_EQ] = ACTIONS(857), - [anon_sym_DASH_EQ] = ACTIONS(857), - [anon_sym_STAR_EQ] = ACTIONS(857), - [anon_sym_SLASH_EQ] = ACTIONS(857), - [anon_sym_AMP_EQ] = ACTIONS(857), - [anon_sym_PIPE_EQ] = ACTIONS(857), - [anon_sym_xor_EQ] = ACTIONS(857), - [anon_sym_LT_LT_EQ] = ACTIONS(857), - [anon_sym_GT_GT_EQ] = ACTIONS(857), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(857), - [anon_sym_return] = ACTIONS(859), - [anon_sym_yield] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [anon_sym_defer] = ACTIONS(859), - [anon_sym_errdefer] = ACTIONS(859), - [anon_sym_if] = ACTIONS(859), - [anon_sym_else] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_expand] = ACTIONS(859), - [anon_sym_for] = ACTIONS(859), - [anon_sym_match] = ACTIONS(859), - [anon_sym_DOT_DOT] = ACTIONS(859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(857), - [anon_sym_orelse] = ACTIONS(859), - [anon_sym_catch] = ACTIONS(859), - [anon_sym_or] = ACTIONS(859), - [anon_sym_and] = ACTIONS(859), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_xor] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(859), - [anon_sym_GT_GT] = ACTIONS(859), - [anon_sym_LT_LT_PIPE] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_try] = ACTIONS(859), - [anon_sym_DOT] = ACTIONS(859), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_true] = ACTIONS(859), - [anon_sym_false] = ACTIONS(859), - [sym_none] = ACTIONS(859), - [sym_undefined] = ACTIONS(859), - [sym_sink] = ACTIONS(859), - [sym_integer] = ACTIONS(859), - [sym_float] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_multiline_string] = ACTIONS(857), - [sym_character] = ACTIONS(857), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), - }, - [STATE(165)] = { - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(361), - [anon_sym_import] = ACTIONS(361), - [anon_sym_test] = ACTIONS(361), - [anon_sym_hide] = ACTIONS(361), - [anon_sym_func] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_EQ] = ACTIONS(361), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(361), - [anon_sym_anyopaque] = ACTIONS(361), - [anon_sym_bool] = ACTIONS(361), - [anon_sym_int] = ACTIONS(361), - [anon_sym_uint] = ACTIONS(361), - [anon_sym_float] = ACTIONS(361), - [anon_sym_range] = ACTIONS(361), - [anon_sym_i8] = ACTIONS(361), - [anon_sym_i16] = ACTIONS(361), - [anon_sym_i32] = ACTIONS(361), - [anon_sym_i64] = ACTIONS(361), - [anon_sym_u8] = ACTIONS(361), - [anon_sym_u16] = ACTIONS(361), - [anon_sym_u32] = ACTIONS(361), - [anon_sym_u64] = ACTIONS(361), - [anon_sym_isize] = ACTIONS(361), - [anon_sym_usize] = ACTIONS(361), - [anon_sym_f32] = ACTIONS(361), - [anon_sym_f64] = ACTIONS(361), - [anon_sym_c_char] = ACTIONS(361), - [anon_sym_c_schar] = ACTIONS(361), - [anon_sym_c_uchar] = ACTIONS(361), - [anon_sym_c_short] = ACTIONS(361), - [anon_sym_c_ushort] = ACTIONS(361), - [anon_sym_c_int] = ACTIONS(361), - [anon_sym_c_uint] = ACTIONS(361), - [anon_sym_c_long] = ACTIONS(361), - [anon_sym_c_ulong] = ACTIONS(361), - [anon_sym_c_longlong] = ACTIONS(361), - [anon_sym_c_ulonglong] = ACTIONS(361), - [anon_sym_c_float] = ACTIONS(361), - [anon_sym_c_double] = ACTIONS(361), - [anon_sym_c_longdouble] = ACTIONS(361), - [anon_sym_PLUS_EQ] = ACTIONS(363), - [anon_sym_DASH_EQ] = ACTIONS(363), - [anon_sym_STAR_EQ] = ACTIONS(363), - [anon_sym_SLASH_EQ] = ACTIONS(363), - [anon_sym_AMP_EQ] = ACTIONS(363), - [anon_sym_PIPE_EQ] = ACTIONS(363), - [anon_sym_xor_EQ] = ACTIONS(363), - [anon_sym_LT_LT_EQ] = ACTIONS(363), - [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(363), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_errdefer] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_else] = ACTIONS(361), - [anon_sym_while] = ACTIONS(361), - [anon_sym_expand] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_match] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_orelse] = ACTIONS(361), - [anon_sym_catch] = ACTIONS(361), - [anon_sym_or] = ACTIONS(361), - [anon_sym_and] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(361), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(361), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(361), - [anon_sym_xor] = ACTIONS(361), - [anon_sym_LT_LT] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [anon_sym_LT_LT_PIPE] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_try] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [sym_none] = ACTIONS(361), - [sym_undefined] = ACTIONS(361), - [sym_sink] = ACTIONS(361), - [sym_integer] = ACTIONS(361), - [sym_float] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_multiline_string] = ACTIONS(363), - [sym_character] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - }, - [STATE(166)] = { - [ts_builtin_sym_end] = ACTIONS(359), - [sym_identifier] = ACTIONS(357), - [anon_sym_import] = ACTIONS(357), - [anon_sym_test] = ACTIONS(357), - [anon_sym_hide] = ACTIONS(357), - [anon_sym_func] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_EQ] = ACTIONS(357), - [anon_sym_struct] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_void] = ACTIONS(357), - [anon_sym_anyopaque] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_uint] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_range] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_c_char] = ACTIONS(357), - [anon_sym_c_schar] = ACTIONS(357), - [anon_sym_c_uchar] = ACTIONS(357), - [anon_sym_c_short] = ACTIONS(357), - [anon_sym_c_ushort] = ACTIONS(357), - [anon_sym_c_int] = ACTIONS(357), - [anon_sym_c_uint] = ACTIONS(357), - [anon_sym_c_long] = ACTIONS(357), - [anon_sym_c_ulong] = ACTIONS(357), - [anon_sym_c_longlong] = ACTIONS(357), - [anon_sym_c_ulonglong] = ACTIONS(357), - [anon_sym_c_float] = ACTIONS(357), - [anon_sym_c_double] = ACTIONS(357), - [anon_sym_c_longdouble] = ACTIONS(357), - [anon_sym_PLUS_EQ] = ACTIONS(359), - [anon_sym_DASH_EQ] = ACTIONS(359), - [anon_sym_STAR_EQ] = ACTIONS(359), - [anon_sym_SLASH_EQ] = ACTIONS(359), - [anon_sym_AMP_EQ] = ACTIONS(359), - [anon_sym_PIPE_EQ] = ACTIONS(359), - [anon_sym_xor_EQ] = ACTIONS(359), - [anon_sym_LT_LT_EQ] = ACTIONS(359), - [anon_sym_GT_GT_EQ] = ACTIONS(359), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(359), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(357), - [anon_sym_errdefer] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), - [anon_sym_else] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [anon_sym_expand] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_match] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), - [anon_sym_orelse] = ACTIONS(357), - [anon_sym_catch] = ACTIONS(357), - [anon_sym_or] = ACTIONS(357), - [anon_sym_and] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_xor] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(357), - [anon_sym_LT_LT_PIPE] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(357), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_try] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [sym_none] = ACTIONS(357), - [sym_undefined] = ACTIONS(357), - [sym_sink] = ACTIONS(357), - [sym_integer] = ACTIONS(357), - [sym_float] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym_multiline_string] = ACTIONS(359), - [sym_character] = ACTIONS(359), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - }, - [STATE(167)] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_identifier] = ACTIONS(863), - [anon_sym_import] = ACTIONS(863), - [anon_sym_test] = ACTIONS(863), - [anon_sym_hide] = ACTIONS(863), - [anon_sym_func] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_void] = ACTIONS(863), - [anon_sym_anyopaque] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_int] = ACTIONS(863), - [anon_sym_uint] = ACTIONS(863), - [anon_sym_float] = ACTIONS(863), - [anon_sym_range] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_c_char] = ACTIONS(863), - [anon_sym_c_schar] = ACTIONS(863), - [anon_sym_c_uchar] = ACTIONS(863), - [anon_sym_c_short] = ACTIONS(863), - [anon_sym_c_ushort] = ACTIONS(863), - [anon_sym_c_int] = ACTIONS(863), - [anon_sym_c_uint] = ACTIONS(863), - [anon_sym_c_long] = ACTIONS(863), - [anon_sym_c_ulong] = ACTIONS(863), - [anon_sym_c_longlong] = ACTIONS(863), - [anon_sym_c_ulonglong] = ACTIONS(863), - [anon_sym_c_float] = ACTIONS(863), - [anon_sym_c_double] = ACTIONS(863), - [anon_sym_c_longdouble] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_AMP_EQ] = ACTIONS(861), - [anon_sym_PIPE_EQ] = ACTIONS(861), - [anon_sym_xor_EQ] = ACTIONS(861), - [anon_sym_LT_LT_EQ] = ACTIONS(861), - [anon_sym_GT_GT_EQ] = ACTIONS(861), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_defer] = ACTIONS(863), - [anon_sym_errdefer] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_else] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_expand] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [anon_sym_orelse] = ACTIONS(863), - [anon_sym_catch] = ACTIONS(863), - [anon_sym_or] = ACTIONS(863), - [anon_sym_and] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_xor] = ACTIONS(863), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(863), - [anon_sym_LT_LT_PIPE] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_try] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [sym_none] = ACTIONS(863), - [sym_undefined] = ACTIONS(863), - [sym_sink] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [sym_float] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym_multiline_string] = ACTIONS(861), - [sym_character] = ACTIONS(861), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(861), - }, - [STATE(168)] = { - [ts_builtin_sym_end] = ACTIONS(865), - [sym_identifier] = ACTIONS(867), - [anon_sym_import] = ACTIONS(867), - [anon_sym_test] = ACTIONS(867), - [anon_sym_hide] = ACTIONS(867), - [anon_sym_func] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_COMMA] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_void] = ACTIONS(867), - [anon_sym_anyopaque] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_int] = ACTIONS(867), - [anon_sym_uint] = ACTIONS(867), - [anon_sym_float] = ACTIONS(867), - [anon_sym_range] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_c_char] = ACTIONS(867), - [anon_sym_c_schar] = ACTIONS(867), - [anon_sym_c_uchar] = ACTIONS(867), - [anon_sym_c_short] = ACTIONS(867), - [anon_sym_c_ushort] = ACTIONS(867), - [anon_sym_c_int] = ACTIONS(867), - [anon_sym_c_uint] = ACTIONS(867), - [anon_sym_c_long] = ACTIONS(867), - [anon_sym_c_ulong] = ACTIONS(867), - [anon_sym_c_longlong] = ACTIONS(867), - [anon_sym_c_ulonglong] = ACTIONS(867), - [anon_sym_c_float] = ACTIONS(867), - [anon_sym_c_double] = ACTIONS(867), - [anon_sym_c_longdouble] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(865), - [anon_sym_DASH_EQ] = ACTIONS(865), - [anon_sym_STAR_EQ] = ACTIONS(865), - [anon_sym_SLASH_EQ] = ACTIONS(865), - [anon_sym_AMP_EQ] = ACTIONS(865), - [anon_sym_PIPE_EQ] = ACTIONS(865), - [anon_sym_xor_EQ] = ACTIONS(865), - [anon_sym_LT_LT_EQ] = ACTIONS(865), - [anon_sym_GT_GT_EQ] = ACTIONS(865), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_defer] = ACTIONS(867), - [anon_sym_errdefer] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_else] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [anon_sym_expand] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [anon_sym_orelse] = ACTIONS(867), - [anon_sym_catch] = ACTIONS(867), - [anon_sym_or] = ACTIONS(867), - [anon_sym_and] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_xor] = ACTIONS(867), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_LT_LT_PIPE] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(865), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [sym_none] = ACTIONS(867), - [sym_undefined] = ACTIONS(867), - [sym_sink] = ACTIONS(867), - [sym_integer] = ACTIONS(867), - [sym_float] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym_multiline_string] = ACTIONS(865), - [sym_character] = ACTIONS(865), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(865), - }, - [STATE(169)] = { - [ts_builtin_sym_end] = ACTIONS(869), - [sym_identifier] = ACTIONS(871), - [anon_sym_import] = ACTIONS(871), - [anon_sym_test] = ACTIONS(871), - [anon_sym_hide] = ACTIONS(871), - [anon_sym_func] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(871), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_void] = ACTIONS(871), - [anon_sym_anyopaque] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_int] = ACTIONS(871), - [anon_sym_uint] = ACTIONS(871), - [anon_sym_float] = ACTIONS(871), - [anon_sym_range] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_c_char] = ACTIONS(871), - [anon_sym_c_schar] = ACTIONS(871), - [anon_sym_c_uchar] = ACTIONS(871), - [anon_sym_c_short] = ACTIONS(871), - [anon_sym_c_ushort] = ACTIONS(871), - [anon_sym_c_int] = ACTIONS(871), - [anon_sym_c_uint] = ACTIONS(871), - [anon_sym_c_long] = ACTIONS(871), - [anon_sym_c_ulong] = ACTIONS(871), - [anon_sym_c_longlong] = ACTIONS(871), - [anon_sym_c_ulonglong] = ACTIONS(871), - [anon_sym_c_float] = ACTIONS(871), - [anon_sym_c_double] = ACTIONS(871), - [anon_sym_c_longdouble] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_xor_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(869), - [anon_sym_return] = ACTIONS(871), - [anon_sym_yield] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_defer] = ACTIONS(871), - [anon_sym_errdefer] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_else] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [anon_sym_expand] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_orelse] = ACTIONS(871), - [anon_sym_catch] = ACTIONS(871), - [anon_sym_or] = ACTIONS(871), - [anon_sym_and] = ACTIONS(871), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_xor] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(871), - [anon_sym_GT_GT] = ACTIONS(871), - [anon_sym_LT_LT_PIPE] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_SLASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_try] = ACTIONS(871), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(869), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [sym_none] = ACTIONS(871), - [sym_undefined] = ACTIONS(871), - [sym_sink] = ACTIONS(871), - [sym_integer] = ACTIONS(871), - [sym_float] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym_multiline_string] = ACTIONS(869), - [sym_character] = ACTIONS(869), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(869), - }, - [STATE(170)] = { - [ts_builtin_sym_end] = ACTIONS(873), - [sym_identifier] = ACTIONS(875), - [anon_sym_import] = ACTIONS(875), - [anon_sym_test] = ACTIONS(875), - [anon_sym_hide] = ACTIONS(875), - [anon_sym_func] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_void] = ACTIONS(875), - [anon_sym_anyopaque] = ACTIONS(875), - [anon_sym_bool] = ACTIONS(875), - [anon_sym_int] = ACTIONS(875), - [anon_sym_uint] = ACTIONS(875), - [anon_sym_float] = ACTIONS(875), - [anon_sym_range] = ACTIONS(875), - [anon_sym_i8] = ACTIONS(875), - [anon_sym_i16] = ACTIONS(875), - [anon_sym_i32] = ACTIONS(875), - [anon_sym_i64] = ACTIONS(875), - [anon_sym_u8] = ACTIONS(875), - [anon_sym_u16] = ACTIONS(875), - [anon_sym_u32] = ACTIONS(875), - [anon_sym_u64] = ACTIONS(875), - [anon_sym_isize] = ACTIONS(875), - [anon_sym_usize] = ACTIONS(875), - [anon_sym_f32] = ACTIONS(875), - [anon_sym_f64] = ACTIONS(875), - [anon_sym_c_char] = ACTIONS(875), - [anon_sym_c_schar] = ACTIONS(875), - [anon_sym_c_uchar] = ACTIONS(875), - [anon_sym_c_short] = ACTIONS(875), - [anon_sym_c_ushort] = ACTIONS(875), - [anon_sym_c_int] = ACTIONS(875), - [anon_sym_c_uint] = ACTIONS(875), - [anon_sym_c_long] = ACTIONS(875), - [anon_sym_c_ulong] = ACTIONS(875), - [anon_sym_c_longlong] = ACTIONS(875), - [anon_sym_c_ulonglong] = ACTIONS(875), - [anon_sym_c_float] = ACTIONS(875), - [anon_sym_c_double] = ACTIONS(875), - [anon_sym_c_longdouble] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(873), - [anon_sym_DASH_EQ] = ACTIONS(873), - [anon_sym_STAR_EQ] = ACTIONS(873), - [anon_sym_SLASH_EQ] = ACTIONS(873), - [anon_sym_AMP_EQ] = ACTIONS(873), - [anon_sym_PIPE_EQ] = ACTIONS(873), - [anon_sym_xor_EQ] = ACTIONS(873), - [anon_sym_LT_LT_EQ] = ACTIONS(873), - [anon_sym_GT_GT_EQ] = ACTIONS(873), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(873), - [anon_sym_return] = ACTIONS(875), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_break] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_defer] = ACTIONS(875), - [anon_sym_errdefer] = ACTIONS(875), - [anon_sym_if] = ACTIONS(875), - [anon_sym_else] = ACTIONS(875), - [anon_sym_while] = ACTIONS(875), - [anon_sym_expand] = ACTIONS(875), - [anon_sym_for] = ACTIONS(875), - [anon_sym_match] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [anon_sym_orelse] = ACTIONS(875), - [anon_sym_catch] = ACTIONS(875), - [anon_sym_or] = ACTIONS(875), - [anon_sym_and] = ACTIONS(875), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_xor] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(875), - [anon_sym_LT_LT_PIPE] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_try] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(873), - [anon_sym_true] = ACTIONS(875), - [anon_sym_false] = ACTIONS(875), - [sym_none] = ACTIONS(875), - [sym_undefined] = ACTIONS(875), - [sym_sink] = ACTIONS(875), - [sym_integer] = ACTIONS(875), - [sym_float] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym_multiline_string] = ACTIONS(873), - [sym_character] = ACTIONS(873), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(873), - }, - [STATE(171)] = { - [ts_builtin_sym_end] = ACTIONS(877), - [sym_identifier] = ACTIONS(879), - [anon_sym_import] = ACTIONS(879), - [anon_sym_test] = ACTIONS(879), - [anon_sym_hide] = ACTIONS(879), - [anon_sym_func] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_void] = ACTIONS(879), - [anon_sym_anyopaque] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_int] = ACTIONS(879), - [anon_sym_uint] = ACTIONS(879), - [anon_sym_float] = ACTIONS(879), - [anon_sym_range] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_c_char] = ACTIONS(879), - [anon_sym_c_schar] = ACTIONS(879), - [anon_sym_c_uchar] = ACTIONS(879), - [anon_sym_c_short] = ACTIONS(879), - [anon_sym_c_ushort] = ACTIONS(879), - [anon_sym_c_int] = ACTIONS(879), - [anon_sym_c_uint] = ACTIONS(879), - [anon_sym_c_long] = ACTIONS(879), - [anon_sym_c_ulong] = ACTIONS(879), - [anon_sym_c_longlong] = ACTIONS(879), - [anon_sym_c_ulonglong] = ACTIONS(879), - [anon_sym_c_float] = ACTIONS(879), - [anon_sym_c_double] = ACTIONS(879), - [anon_sym_c_longdouble] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_AMP_EQ] = ACTIONS(877), - [anon_sym_PIPE_EQ] = ACTIONS(877), - [anon_sym_xor_EQ] = ACTIONS(877), - [anon_sym_LT_LT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_EQ] = ACTIONS(877), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(877), - [anon_sym_return] = ACTIONS(879), - [anon_sym_yield] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_defer] = ACTIONS(879), - [anon_sym_errdefer] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_else] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_expand] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(877), - [anon_sym_orelse] = ACTIONS(879), - [anon_sym_catch] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(879), - [anon_sym_LT_LT_PIPE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_try] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [sym_none] = ACTIONS(879), - [sym_undefined] = ACTIONS(879), - [sym_sink] = ACTIONS(879), - [sym_integer] = ACTIONS(879), - [sym_float] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [sym_multiline_string] = ACTIONS(877), - [sym_character] = ACTIONS(877), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(877), - }, - [STATE(172)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(173)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(881), - }, - [STATE(174)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(883), - }, - [STATE(175)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(176)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(885), - }, - [STATE(177)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(178)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(887), - }, - [STATE(179)] = { - [ts_builtin_sym_end] = ACTIONS(889), - [sym_identifier] = ACTIONS(891), - [anon_sym_import] = ACTIONS(891), - [anon_sym_test] = ACTIONS(891), - [anon_sym_hide] = ACTIONS(891), - [anon_sym_func] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_void] = ACTIONS(891), - [anon_sym_anyopaque] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_int] = ACTIONS(891), - [anon_sym_uint] = ACTIONS(891), - [anon_sym_float] = ACTIONS(891), - [anon_sym_range] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_c_char] = ACTIONS(891), - [anon_sym_c_schar] = ACTIONS(891), - [anon_sym_c_uchar] = ACTIONS(891), - [anon_sym_c_short] = ACTIONS(891), - [anon_sym_c_ushort] = ACTIONS(891), - [anon_sym_c_int] = ACTIONS(891), - [anon_sym_c_uint] = ACTIONS(891), - [anon_sym_c_long] = ACTIONS(891), - [anon_sym_c_ulong] = ACTIONS(891), - [anon_sym_c_longlong] = ACTIONS(891), - [anon_sym_c_ulonglong] = ACTIONS(891), - [anon_sym_c_float] = ACTIONS(891), - [anon_sym_c_double] = ACTIONS(891), - [anon_sym_c_longdouble] = ACTIONS(891), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_xor_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(889), - [anon_sym_return] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_defer] = ACTIONS(891), - [anon_sym_errdefer] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_else] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_expand] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_orelse] = ACTIONS(891), - [anon_sym_catch] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_LT_LT_PIPE] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(889), - [anon_sym_try] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(891), - [anon_sym_CARET] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [sym_none] = ACTIONS(891), - [sym_undefined] = ACTIONS(891), - [sym_sink] = ACTIONS(891), - [sym_integer] = ACTIONS(891), - [sym_float] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_multiline_string] = ACTIONS(889), - [sym_character] = ACTIONS(889), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(889), - }, - [STATE(180)] = { - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_test] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_func] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(895), - [anon_sym_struct] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(893), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_void] = ACTIONS(895), - [anon_sym_anyopaque] = ACTIONS(895), - [anon_sym_bool] = ACTIONS(895), - [anon_sym_int] = ACTIONS(895), - [anon_sym_uint] = ACTIONS(895), - [anon_sym_float] = ACTIONS(895), - [anon_sym_range] = ACTIONS(895), - [anon_sym_i8] = ACTIONS(895), - [anon_sym_i16] = ACTIONS(895), - [anon_sym_i32] = ACTIONS(895), - [anon_sym_i64] = ACTIONS(895), - [anon_sym_u8] = ACTIONS(895), - [anon_sym_u16] = ACTIONS(895), - [anon_sym_u32] = ACTIONS(895), - [anon_sym_u64] = ACTIONS(895), - [anon_sym_isize] = ACTIONS(895), - [anon_sym_usize] = ACTIONS(895), - [anon_sym_f32] = ACTIONS(895), - [anon_sym_f64] = ACTIONS(895), - [anon_sym_c_char] = ACTIONS(895), - [anon_sym_c_schar] = ACTIONS(895), - [anon_sym_c_uchar] = ACTIONS(895), - [anon_sym_c_short] = ACTIONS(895), - [anon_sym_c_ushort] = ACTIONS(895), - [anon_sym_c_int] = ACTIONS(895), - [anon_sym_c_uint] = ACTIONS(895), - [anon_sym_c_long] = ACTIONS(895), - [anon_sym_c_ulong] = ACTIONS(895), - [anon_sym_c_longlong] = ACTIONS(895), - [anon_sym_c_ulonglong] = ACTIONS(895), - [anon_sym_c_float] = ACTIONS(895), - [anon_sym_c_double] = ACTIONS(895), - [anon_sym_c_longdouble] = ACTIONS(895), - [anon_sym_PLUS_EQ] = ACTIONS(893), - [anon_sym_DASH_EQ] = ACTIONS(893), - [anon_sym_STAR_EQ] = ACTIONS(893), - [anon_sym_SLASH_EQ] = ACTIONS(893), - [anon_sym_AMP_EQ] = ACTIONS(893), - [anon_sym_PIPE_EQ] = ACTIONS(893), - [anon_sym_xor_EQ] = ACTIONS(893), - [anon_sym_LT_LT_EQ] = ACTIONS(893), - [anon_sym_GT_GT_EQ] = ACTIONS(893), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(893), - [anon_sym_return] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_defer] = ACTIONS(895), - [anon_sym_errdefer] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_expand] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_orelse] = ACTIONS(895), - [anon_sym_catch] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_LT_LT] = ACTIONS(895), - [anon_sym_GT_GT] = ACTIONS(895), - [anon_sym_LT_LT_PIPE] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_try] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [sym_none] = ACTIONS(895), - [sym_undefined] = ACTIONS(895), - [sym_sink] = ACTIONS(895), - [sym_integer] = ACTIONS(895), - [sym_float] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [sym_multiline_string] = ACTIONS(893), - [sym_character] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(893), - }, - [STATE(181)] = { - [ts_builtin_sym_end] = ACTIONS(897), - [sym_identifier] = ACTIONS(899), - [anon_sym_import] = ACTIONS(899), - [anon_sym_test] = ACTIONS(899), - [anon_sym_hide] = ACTIONS(899), - [anon_sym_func] = ACTIONS(899), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_struct] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(897), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(899), - [anon_sym_QMARK] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_void] = ACTIONS(899), - [anon_sym_anyopaque] = ACTIONS(899), - [anon_sym_bool] = ACTIONS(899), - [anon_sym_int] = ACTIONS(899), - [anon_sym_uint] = ACTIONS(899), - [anon_sym_float] = ACTIONS(899), - [anon_sym_range] = ACTIONS(899), - [anon_sym_i8] = ACTIONS(899), - [anon_sym_i16] = ACTIONS(899), - [anon_sym_i32] = ACTIONS(899), - [anon_sym_i64] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(899), - [anon_sym_u16] = ACTIONS(899), - [anon_sym_u32] = ACTIONS(899), - [anon_sym_u64] = ACTIONS(899), - [anon_sym_isize] = ACTIONS(899), - [anon_sym_usize] = ACTIONS(899), - [anon_sym_f32] = ACTIONS(899), - [anon_sym_f64] = ACTIONS(899), - [anon_sym_c_char] = ACTIONS(899), - [anon_sym_c_schar] = ACTIONS(899), - [anon_sym_c_uchar] = ACTIONS(899), - [anon_sym_c_short] = ACTIONS(899), - [anon_sym_c_ushort] = ACTIONS(899), - [anon_sym_c_int] = ACTIONS(899), - [anon_sym_c_uint] = ACTIONS(899), - [anon_sym_c_long] = ACTIONS(899), - [anon_sym_c_ulong] = ACTIONS(899), - [anon_sym_c_longlong] = ACTIONS(899), - [anon_sym_c_ulonglong] = ACTIONS(899), - [anon_sym_c_float] = ACTIONS(899), - [anon_sym_c_double] = ACTIONS(899), - [anon_sym_c_longdouble] = ACTIONS(899), - [anon_sym_PLUS_EQ] = ACTIONS(897), - [anon_sym_DASH_EQ] = ACTIONS(897), - [anon_sym_STAR_EQ] = ACTIONS(897), - [anon_sym_SLASH_EQ] = ACTIONS(897), - [anon_sym_AMP_EQ] = ACTIONS(897), - [anon_sym_PIPE_EQ] = ACTIONS(897), - [anon_sym_xor_EQ] = ACTIONS(897), - [anon_sym_LT_LT_EQ] = ACTIONS(897), - [anon_sym_GT_GT_EQ] = ACTIONS(897), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(897), - [anon_sym_return] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(899), - [anon_sym_break] = ACTIONS(899), - [anon_sym_continue] = ACTIONS(899), - [anon_sym_defer] = ACTIONS(899), - [anon_sym_errdefer] = ACTIONS(899), - [anon_sym_if] = ACTIONS(899), - [anon_sym_else] = ACTIONS(899), - [anon_sym_while] = ACTIONS(899), - [anon_sym_expand] = ACTIONS(899), - [anon_sym_for] = ACTIONS(899), - [anon_sym_match] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(897), - [anon_sym_orelse] = ACTIONS(899), - [anon_sym_catch] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(897), - [anon_sym_BANG_EQ] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(897), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(899), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(899), - [anon_sym_GT_GT] = ACTIONS(899), - [anon_sym_LT_LT_PIPE] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_try] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(899), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [sym_none] = ACTIONS(899), - [sym_undefined] = ACTIONS(899), - [sym_sink] = ACTIONS(899), - [sym_integer] = ACTIONS(899), - [sym_float] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(897), - [sym_multiline_string] = ACTIONS(897), - [sym_character] = ACTIONS(897), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(897), - }, - [STATE(182)] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_test] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_func] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_anyopaque] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_int] = ACTIONS(903), - [anon_sym_uint] = ACTIONS(903), - [anon_sym_float] = ACTIONS(903), - [anon_sym_range] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_c_char] = ACTIONS(903), - [anon_sym_c_schar] = ACTIONS(903), - [anon_sym_c_uchar] = ACTIONS(903), - [anon_sym_c_short] = ACTIONS(903), - [anon_sym_c_ushort] = ACTIONS(903), - [anon_sym_c_int] = ACTIONS(903), - [anon_sym_c_uint] = ACTIONS(903), - [anon_sym_c_long] = ACTIONS(903), - [anon_sym_c_ulong] = ACTIONS(903), - [anon_sym_c_longlong] = ACTIONS(903), - [anon_sym_c_ulonglong] = ACTIONS(903), - [anon_sym_c_float] = ACTIONS(903), - [anon_sym_c_double] = ACTIONS(903), - [anon_sym_c_longdouble] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(901), - [anon_sym_DASH_EQ] = ACTIONS(901), - [anon_sym_STAR_EQ] = ACTIONS(901), - [anon_sym_SLASH_EQ] = ACTIONS(901), - [anon_sym_AMP_EQ] = ACTIONS(901), - [anon_sym_PIPE_EQ] = ACTIONS(901), - [anon_sym_xor_EQ] = ACTIONS(901), - [anon_sym_LT_LT_EQ] = ACTIONS(901), - [anon_sym_GT_GT_EQ] = ACTIONS(901), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(901), - [anon_sym_return] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_defer] = ACTIONS(903), - [anon_sym_errdefer] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_expand] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [anon_sym_orelse] = ACTIONS(903), - [anon_sym_catch] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_LT_LT_PIPE] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [sym_none] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [sym_sink] = ACTIONS(903), - [sym_integer] = ACTIONS(903), - [sym_float] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym_multiline_string] = ACTIONS(901), - [sym_character] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(901), - }, - [STATE(183)] = { - [ts_builtin_sym_end] = ACTIONS(905), - [sym_identifier] = ACTIONS(907), - [anon_sym_import] = ACTIONS(907), - [anon_sym_test] = ACTIONS(907), - [anon_sym_hide] = ACTIONS(907), - [anon_sym_func] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_void] = ACTIONS(907), - [anon_sym_anyopaque] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_int] = ACTIONS(907), - [anon_sym_uint] = ACTIONS(907), - [anon_sym_float] = ACTIONS(907), - [anon_sym_range] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_c_char] = ACTIONS(907), - [anon_sym_c_schar] = ACTIONS(907), - [anon_sym_c_uchar] = ACTIONS(907), - [anon_sym_c_short] = ACTIONS(907), - [anon_sym_c_ushort] = ACTIONS(907), - [anon_sym_c_int] = ACTIONS(907), - [anon_sym_c_uint] = ACTIONS(907), - [anon_sym_c_long] = ACTIONS(907), - [anon_sym_c_ulong] = ACTIONS(907), - [anon_sym_c_longlong] = ACTIONS(907), - [anon_sym_c_ulonglong] = ACTIONS(907), - [anon_sym_c_float] = ACTIONS(907), - [anon_sym_c_double] = ACTIONS(907), - [anon_sym_c_longdouble] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), - [anon_sym_STAR_EQ] = ACTIONS(905), - [anon_sym_SLASH_EQ] = ACTIONS(905), - [anon_sym_AMP_EQ] = ACTIONS(905), - [anon_sym_PIPE_EQ] = ACTIONS(905), - [anon_sym_xor_EQ] = ACTIONS(905), - [anon_sym_LT_LT_EQ] = ACTIONS(905), - [anon_sym_GT_GT_EQ] = ACTIONS(905), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(905), - [anon_sym_return] = ACTIONS(907), - [anon_sym_yield] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_defer] = ACTIONS(907), - [anon_sym_errdefer] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_else] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [anon_sym_expand] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_orelse] = ACTIONS(907), - [anon_sym_catch] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_LT_LT_PIPE] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(905), - [anon_sym_try] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [sym_none] = ACTIONS(907), - [sym_undefined] = ACTIONS(907), - [sym_sink] = ACTIONS(907), - [sym_integer] = ACTIONS(907), - [sym_float] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [sym_multiline_string] = ACTIONS(905), - [sym_character] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(905), - }, - [STATE(184)] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_test] = ACTIONS(911), - [anon_sym_hide] = ACTIONS(911), - [anon_sym_func] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_anyopaque] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_int] = ACTIONS(911), - [anon_sym_uint] = ACTIONS(911), - [anon_sym_float] = ACTIONS(911), - [anon_sym_range] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_c_char] = ACTIONS(911), - [anon_sym_c_schar] = ACTIONS(911), - [anon_sym_c_uchar] = ACTIONS(911), - [anon_sym_c_short] = ACTIONS(911), - [anon_sym_c_ushort] = ACTIONS(911), - [anon_sym_c_int] = ACTIONS(911), - [anon_sym_c_uint] = ACTIONS(911), - [anon_sym_c_long] = ACTIONS(911), - [anon_sym_c_ulong] = ACTIONS(911), - [anon_sym_c_longlong] = ACTIONS(911), - [anon_sym_c_ulonglong] = ACTIONS(911), - [anon_sym_c_float] = ACTIONS(911), - [anon_sym_c_double] = ACTIONS(911), - [anon_sym_c_longdouble] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_xor_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(909), - [anon_sym_return] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_defer] = ACTIONS(911), - [anon_sym_errdefer] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_else] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_expand] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_orelse] = ACTIONS(911), - [anon_sym_catch] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_LT_LT_PIPE] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [sym_none] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [sym_sink] = ACTIONS(911), - [sym_integer] = ACTIONS(911), - [sym_float] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_multiline_string] = ACTIONS(909), - [sym_character] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(909), - }, - [STATE(185)] = { - [ts_builtin_sym_end] = ACTIONS(913), - [sym_identifier] = ACTIONS(915), - [anon_sym_import] = ACTIONS(915), - [anon_sym_test] = ACTIONS(915), - [anon_sym_hide] = ACTIONS(915), - [anon_sym_func] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_void] = ACTIONS(915), - [anon_sym_anyopaque] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_int] = ACTIONS(915), - [anon_sym_uint] = ACTIONS(915), - [anon_sym_float] = ACTIONS(915), - [anon_sym_range] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_c_char] = ACTIONS(915), - [anon_sym_c_schar] = ACTIONS(915), - [anon_sym_c_uchar] = ACTIONS(915), - [anon_sym_c_short] = ACTIONS(915), - [anon_sym_c_ushort] = ACTIONS(915), - [anon_sym_c_int] = ACTIONS(915), - [anon_sym_c_uint] = ACTIONS(915), - [anon_sym_c_long] = ACTIONS(915), - [anon_sym_c_ulong] = ACTIONS(915), - [anon_sym_c_longlong] = ACTIONS(915), - [anon_sym_c_ulonglong] = ACTIONS(915), - [anon_sym_c_float] = ACTIONS(915), - [anon_sym_c_double] = ACTIONS(915), - [anon_sym_c_longdouble] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_xor_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(913), - [anon_sym_return] = ACTIONS(915), - [anon_sym_yield] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_defer] = ACTIONS(915), - [anon_sym_errdefer] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_else] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_expand] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_orelse] = ACTIONS(915), - [anon_sym_catch] = ACTIONS(915), - [anon_sym_or] = ACTIONS(915), - [anon_sym_and] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_xor] = ACTIONS(915), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_LT_LT_PIPE] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_try] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [sym_none] = ACTIONS(915), - [sym_undefined] = ACTIONS(915), - [sym_sink] = ACTIONS(915), - [sym_integer] = ACTIONS(915), - [sym_float] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_multiline_string] = ACTIONS(913), - [sym_character] = ACTIONS(913), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(913), - }, - [STATE(186)] = { - [ts_builtin_sym_end] = ACTIONS(367), - [sym_identifier] = ACTIONS(365), - [anon_sym_import] = ACTIONS(365), - [anon_sym_test] = ACTIONS(365), - [anon_sym_hide] = ACTIONS(365), - [anon_sym_func] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_struct] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(367), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_void] = ACTIONS(365), - [anon_sym_anyopaque] = ACTIONS(365), - [anon_sym_bool] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_uint] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_range] = ACTIONS(365), - [anon_sym_i8] = ACTIONS(365), - [anon_sym_i16] = ACTIONS(365), - [anon_sym_i32] = ACTIONS(365), - [anon_sym_i64] = ACTIONS(365), - [anon_sym_u8] = ACTIONS(365), - [anon_sym_u16] = ACTIONS(365), - [anon_sym_u32] = ACTIONS(365), - [anon_sym_u64] = ACTIONS(365), - [anon_sym_isize] = ACTIONS(365), - [anon_sym_usize] = ACTIONS(365), - [anon_sym_f32] = ACTIONS(365), - [anon_sym_f64] = ACTIONS(365), - [anon_sym_c_char] = ACTIONS(365), - [anon_sym_c_schar] = ACTIONS(365), - [anon_sym_c_uchar] = ACTIONS(365), - [anon_sym_c_short] = ACTIONS(365), - [anon_sym_c_ushort] = ACTIONS(365), - [anon_sym_c_int] = ACTIONS(365), - [anon_sym_c_uint] = ACTIONS(365), - [anon_sym_c_long] = ACTIONS(365), - [anon_sym_c_ulong] = ACTIONS(365), - [anon_sym_c_longlong] = ACTIONS(365), - [anon_sym_c_ulonglong] = ACTIONS(365), - [anon_sym_c_float] = ACTIONS(365), - [anon_sym_c_double] = ACTIONS(365), - [anon_sym_c_longdouble] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(367), - [anon_sym_DASH_EQ] = ACTIONS(367), - [anon_sym_STAR_EQ] = ACTIONS(367), - [anon_sym_SLASH_EQ] = ACTIONS(367), - [anon_sym_AMP_EQ] = ACTIONS(367), - [anon_sym_PIPE_EQ] = ACTIONS(367), - [anon_sym_xor_EQ] = ACTIONS(367), - [anon_sym_LT_LT_EQ] = ACTIONS(367), - [anon_sym_GT_GT_EQ] = ACTIONS(367), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(367), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_defer] = ACTIONS(365), - [anon_sym_errdefer] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_expand] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_match] = ACTIONS(365), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(367), - [anon_sym_orelse] = ACTIONS(365), - [anon_sym_catch] = ACTIONS(365), - [anon_sym_or] = ACTIONS(365), - [anon_sym_and] = ACTIONS(365), - [anon_sym_EQ_EQ] = ACTIONS(367), - [anon_sym_BANG_EQ] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_xor] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT_PIPE] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_try] = ACTIONS(365), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [sym_none] = ACTIONS(365), - [sym_undefined] = ACTIONS(365), - [sym_sink] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [sym_multiline_string] = ACTIONS(367), - [sym_character] = ACTIONS(367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - }, - [STATE(187)] = { - [ts_builtin_sym_end] = ACTIONS(917), - [sym_identifier] = ACTIONS(919), - [anon_sym_import] = ACTIONS(919), - [anon_sym_test] = ACTIONS(919), - [anon_sym_hide] = ACTIONS(919), - [anon_sym_func] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_void] = ACTIONS(919), - [anon_sym_anyopaque] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_int] = ACTIONS(919), - [anon_sym_uint] = ACTIONS(919), - [anon_sym_float] = ACTIONS(919), - [anon_sym_range] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_c_char] = ACTIONS(919), - [anon_sym_c_schar] = ACTIONS(919), - [anon_sym_c_uchar] = ACTIONS(919), - [anon_sym_c_short] = ACTIONS(919), - [anon_sym_c_ushort] = ACTIONS(919), - [anon_sym_c_int] = ACTIONS(919), - [anon_sym_c_uint] = ACTIONS(919), - [anon_sym_c_long] = ACTIONS(919), - [anon_sym_c_ulong] = ACTIONS(919), - [anon_sym_c_longlong] = ACTIONS(919), - [anon_sym_c_ulonglong] = ACTIONS(919), - [anon_sym_c_float] = ACTIONS(919), - [anon_sym_c_double] = ACTIONS(919), - [anon_sym_c_longdouble] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_xor_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_defer] = ACTIONS(919), - [anon_sym_errdefer] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_else] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_expand] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_orelse] = ACTIONS(919), - [anon_sym_catch] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_LT_LT_PIPE] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [sym_none] = ACTIONS(919), - [sym_undefined] = ACTIONS(919), - [sym_sink] = ACTIONS(919), - [sym_integer] = ACTIONS(919), - [sym_float] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_multiline_string] = ACTIONS(917), - [sym_character] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(917), - }, - [STATE(188)] = { - [ts_builtin_sym_end] = ACTIONS(921), - [sym_identifier] = ACTIONS(923), - [anon_sym_import] = ACTIONS(923), - [anon_sym_test] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_func] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_void] = ACTIONS(923), - [anon_sym_anyopaque] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_int] = ACTIONS(923), - [anon_sym_uint] = ACTIONS(923), - [anon_sym_float] = ACTIONS(923), - [anon_sym_range] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_c_char] = ACTIONS(923), - [anon_sym_c_schar] = ACTIONS(923), - [anon_sym_c_uchar] = ACTIONS(923), - [anon_sym_c_short] = ACTIONS(923), - [anon_sym_c_ushort] = ACTIONS(923), - [anon_sym_c_int] = ACTIONS(923), - [anon_sym_c_uint] = ACTIONS(923), - [anon_sym_c_long] = ACTIONS(923), - [anon_sym_c_ulong] = ACTIONS(923), - [anon_sym_c_longlong] = ACTIONS(923), - [anon_sym_c_ulonglong] = ACTIONS(923), - [anon_sym_c_float] = ACTIONS(923), - [anon_sym_c_double] = ACTIONS(923), - [anon_sym_c_longdouble] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_xor_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(921), - [anon_sym_return] = ACTIONS(923), - [anon_sym_yield] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_defer] = ACTIONS(923), - [anon_sym_errdefer] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_expand] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_orelse] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_LT_LT_PIPE] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(921), - [anon_sym_try] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [sym_none] = ACTIONS(923), - [sym_undefined] = ACTIONS(923), - [sym_sink] = ACTIONS(923), - [sym_integer] = ACTIONS(923), - [sym_float] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(921), - [sym_multiline_string] = ACTIONS(921), - [sym_character] = ACTIONS(921), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(921), - }, - [STATE(189)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1737), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1737), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(190)] = { - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = ACTIONS(927), - [anon_sym_test] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_func] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = ACTIONS(927), - [anon_sym_uint] = ACTIONS(927), - [anon_sym_float] = ACTIONS(927), - [anon_sym_range] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_c_char] = ACTIONS(927), - [anon_sym_c_schar] = ACTIONS(927), - [anon_sym_c_uchar] = ACTIONS(927), - [anon_sym_c_short] = ACTIONS(927), - [anon_sym_c_ushort] = ACTIONS(927), - [anon_sym_c_int] = ACTIONS(927), - [anon_sym_c_uint] = ACTIONS(927), - [anon_sym_c_long] = ACTIONS(927), - [anon_sym_c_ulong] = ACTIONS(927), - [anon_sym_c_longlong] = ACTIONS(927), - [anon_sym_c_ulonglong] = ACTIONS(927), - [anon_sym_c_float] = ACTIONS(927), - [anon_sym_c_double] = ACTIONS(927), - [anon_sym_c_longdouble] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_xor_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(925), - [anon_sym_return] = ACTIONS(927), - [anon_sym_yield] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_defer] = ACTIONS(927), - [anon_sym_errdefer] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_else] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_expand] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_orelse] = ACTIONS(927), - [anon_sym_catch] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_LT_LT_PIPE] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(925), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [sym_none] = ACTIONS(927), - [sym_undefined] = ACTIONS(927), - [sym_sink] = ACTIONS(927), - [sym_integer] = ACTIONS(927), - [sym_float] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym_multiline_string] = ACTIONS(925), - [sym_character] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), - }, - [STATE(191)] = { - [ts_builtin_sym_end] = ACTIONS(929), - [sym_identifier] = ACTIONS(931), - [anon_sym_import] = ACTIONS(931), - [anon_sym_test] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_func] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(931), - [anon_sym_anyopaque] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_int] = ACTIONS(931), - [anon_sym_uint] = ACTIONS(931), - [anon_sym_float] = ACTIONS(931), - [anon_sym_range] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_c_char] = ACTIONS(931), - [anon_sym_c_schar] = ACTIONS(931), - [anon_sym_c_uchar] = ACTIONS(931), - [anon_sym_c_short] = ACTIONS(931), - [anon_sym_c_ushort] = ACTIONS(931), - [anon_sym_c_int] = ACTIONS(931), - [anon_sym_c_uint] = ACTIONS(931), - [anon_sym_c_long] = ACTIONS(931), - [anon_sym_c_ulong] = ACTIONS(931), - [anon_sym_c_longlong] = ACTIONS(931), - [anon_sym_c_ulonglong] = ACTIONS(931), - [anon_sym_c_float] = ACTIONS(931), - [anon_sym_c_double] = ACTIONS(931), - [anon_sym_c_longdouble] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_xor_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(929), - [anon_sym_return] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_defer] = ACTIONS(931), - [anon_sym_errdefer] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_expand] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_orelse] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_or] = ACTIONS(931), - [anon_sym_and] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_xor] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_LT_LT_PIPE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_try] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [sym_none] = ACTIONS(931), - [sym_undefined] = ACTIONS(931), - [sym_sink] = ACTIONS(931), - [sym_integer] = ACTIONS(931), - [sym_float] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(929), - [sym_multiline_string] = ACTIONS(929), - [sym_character] = ACTIONS(929), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(929), - }, - [STATE(192)] = { - [ts_builtin_sym_end] = ACTIONS(933), - [sym_identifier] = ACTIONS(935), - [anon_sym_import] = ACTIONS(935), - [anon_sym_test] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_func] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_void] = ACTIONS(935), - [anon_sym_anyopaque] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_int] = ACTIONS(935), - [anon_sym_uint] = ACTIONS(935), - [anon_sym_float] = ACTIONS(935), - [anon_sym_range] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_c_char] = ACTIONS(935), - [anon_sym_c_schar] = ACTIONS(935), - [anon_sym_c_uchar] = ACTIONS(935), - [anon_sym_c_short] = ACTIONS(935), - [anon_sym_c_ushort] = ACTIONS(935), - [anon_sym_c_int] = ACTIONS(935), - [anon_sym_c_uint] = ACTIONS(935), - [anon_sym_c_long] = ACTIONS(935), - [anon_sym_c_ulong] = ACTIONS(935), - [anon_sym_c_longlong] = ACTIONS(935), - [anon_sym_c_ulonglong] = ACTIONS(935), - [anon_sym_c_float] = ACTIONS(935), - [anon_sym_c_double] = ACTIONS(935), - [anon_sym_c_longdouble] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(933), - [anon_sym_SLASH_EQ] = ACTIONS(933), - [anon_sym_AMP_EQ] = ACTIONS(933), - [anon_sym_PIPE_EQ] = ACTIONS(933), - [anon_sym_xor_EQ] = ACTIONS(933), - [anon_sym_LT_LT_EQ] = ACTIONS(933), - [anon_sym_GT_GT_EQ] = ACTIONS(933), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(933), - [anon_sym_return] = ACTIONS(935), - [anon_sym_yield] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_defer] = ACTIONS(935), - [anon_sym_errdefer] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_expand] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_orelse] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_or] = ACTIONS(935), - [anon_sym_and] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_xor] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_LT_LT_PIPE] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(933), - [anon_sym_try] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [sym_none] = ACTIONS(935), - [sym_undefined] = ACTIONS(935), - [sym_sink] = ACTIONS(935), - [sym_integer] = ACTIONS(935), - [sym_float] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_multiline_string] = ACTIONS(933), - [sym_character] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(933), - }, - [STATE(193)] = { - [ts_builtin_sym_end] = ACTIONS(937), - [sym_identifier] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_test] = ACTIONS(939), - [anon_sym_hide] = ACTIONS(939), - [anon_sym_func] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_void] = ACTIONS(939), - [anon_sym_anyopaque] = ACTIONS(939), - [anon_sym_bool] = ACTIONS(939), - [anon_sym_int] = ACTIONS(939), - [anon_sym_uint] = ACTIONS(939), - [anon_sym_float] = ACTIONS(939), - [anon_sym_range] = ACTIONS(939), - [anon_sym_i8] = ACTIONS(939), - [anon_sym_i16] = ACTIONS(939), - [anon_sym_i32] = ACTIONS(939), - [anon_sym_i64] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(939), - [anon_sym_u16] = ACTIONS(939), - [anon_sym_u32] = ACTIONS(939), - [anon_sym_u64] = ACTIONS(939), - [anon_sym_isize] = ACTIONS(939), - [anon_sym_usize] = ACTIONS(939), - [anon_sym_f32] = ACTIONS(939), - [anon_sym_f64] = ACTIONS(939), - [anon_sym_c_char] = ACTIONS(939), - [anon_sym_c_schar] = ACTIONS(939), - [anon_sym_c_uchar] = ACTIONS(939), - [anon_sym_c_short] = ACTIONS(939), - [anon_sym_c_ushort] = ACTIONS(939), - [anon_sym_c_int] = ACTIONS(939), - [anon_sym_c_uint] = ACTIONS(939), - [anon_sym_c_long] = ACTIONS(939), - [anon_sym_c_ulong] = ACTIONS(939), - [anon_sym_c_longlong] = ACTIONS(939), - [anon_sym_c_ulonglong] = ACTIONS(939), - [anon_sym_c_float] = ACTIONS(939), - [anon_sym_c_double] = ACTIONS(939), - [anon_sym_c_longdouble] = ACTIONS(939), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_xor_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(937), - [anon_sym_return] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_defer] = ACTIONS(939), - [anon_sym_errdefer] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_else] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_expand] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_match] = ACTIONS(939), - [anon_sym_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_orelse] = ACTIONS(939), - [anon_sym_catch] = ACTIONS(939), - [anon_sym_or] = ACTIONS(939), - [anon_sym_and] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_xor] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_LT_LT_PIPE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_true] = ACTIONS(939), - [anon_sym_false] = ACTIONS(939), - [sym_none] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [sym_sink] = ACTIONS(939), - [sym_integer] = ACTIONS(939), - [sym_float] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym_multiline_string] = ACTIONS(937), - [sym_character] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(937), - }, - [STATE(194)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(195)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(196)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), - }, - [STATE(197)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(198)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(943), - }, - [STATE(199)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(945), - }, - [STATE(200)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(201)] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_test] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_func] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_struct] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_anyopaque] = ACTIONS(949), - [anon_sym_bool] = ACTIONS(949), - [anon_sym_int] = ACTIONS(949), - [anon_sym_uint] = ACTIONS(949), - [anon_sym_float] = ACTIONS(949), - [anon_sym_range] = ACTIONS(949), - [anon_sym_i8] = ACTIONS(949), - [anon_sym_i16] = ACTIONS(949), - [anon_sym_i32] = ACTIONS(949), - [anon_sym_i64] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(949), - [anon_sym_u16] = ACTIONS(949), - [anon_sym_u32] = ACTIONS(949), - [anon_sym_u64] = ACTIONS(949), - [anon_sym_isize] = ACTIONS(949), - [anon_sym_usize] = ACTIONS(949), - [anon_sym_f32] = ACTIONS(949), - [anon_sym_f64] = ACTIONS(949), - [anon_sym_c_char] = ACTIONS(949), - [anon_sym_c_schar] = ACTIONS(949), - [anon_sym_c_uchar] = ACTIONS(949), - [anon_sym_c_short] = ACTIONS(949), - [anon_sym_c_ushort] = ACTIONS(949), - [anon_sym_c_int] = ACTIONS(949), - [anon_sym_c_uint] = ACTIONS(949), - [anon_sym_c_long] = ACTIONS(949), - [anon_sym_c_ulong] = ACTIONS(949), - [anon_sym_c_longlong] = ACTIONS(949), - [anon_sym_c_ulonglong] = ACTIONS(949), - [anon_sym_c_float] = ACTIONS(949), - [anon_sym_c_double] = ACTIONS(949), - [anon_sym_c_longdouble] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_xor_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_defer] = ACTIONS(949), - [anon_sym_errdefer] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_expand] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_orelse] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_or] = ACTIONS(949), - [anon_sym_and] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_xor] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_LT_LT_PIPE] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_true] = ACTIONS(949), - [anon_sym_false] = ACTIONS(949), - [sym_none] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [sym_sink] = ACTIONS(949), - [sym_integer] = ACTIONS(949), - [sym_float] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_multiline_string] = ACTIONS(947), - [sym_character] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(947), - }, - [STATE(202)] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_test] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_func] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_anyopaque] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_int] = ACTIONS(953), - [anon_sym_uint] = ACTIONS(953), - [anon_sym_float] = ACTIONS(953), - [anon_sym_range] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_c_char] = ACTIONS(953), - [anon_sym_c_schar] = ACTIONS(953), - [anon_sym_c_uchar] = ACTIONS(953), - [anon_sym_c_short] = ACTIONS(953), - [anon_sym_c_ushort] = ACTIONS(953), - [anon_sym_c_int] = ACTIONS(953), - [anon_sym_c_uint] = ACTIONS(953), - [anon_sym_c_long] = ACTIONS(953), - [anon_sym_c_ulong] = ACTIONS(953), - [anon_sym_c_longlong] = ACTIONS(953), - [anon_sym_c_ulonglong] = ACTIONS(953), - [anon_sym_c_float] = ACTIONS(953), - [anon_sym_c_double] = ACTIONS(953), - [anon_sym_c_longdouble] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_xor_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(951), - [anon_sym_return] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_defer] = ACTIONS(953), - [anon_sym_errdefer] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_expand] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_orelse] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_or] = ACTIONS(953), - [anon_sym_and] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_xor] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_LT_LT_PIPE] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [sym_none] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [sym_sink] = ACTIONS(953), - [sym_integer] = ACTIONS(953), - [sym_float] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_multiline_string] = ACTIONS(951), - [sym_character] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(951), - }, - [STATE(203)] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_test] = ACTIONS(957), - [anon_sym_hide] = ACTIONS(957), - [anon_sym_func] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_void] = ACTIONS(957), - [anon_sym_anyopaque] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_int] = ACTIONS(957), - [anon_sym_uint] = ACTIONS(957), - [anon_sym_float] = ACTIONS(957), - [anon_sym_range] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_c_char] = ACTIONS(957), - [anon_sym_c_schar] = ACTIONS(957), - [anon_sym_c_uchar] = ACTIONS(957), - [anon_sym_c_short] = ACTIONS(957), - [anon_sym_c_ushort] = ACTIONS(957), - [anon_sym_c_int] = ACTIONS(957), - [anon_sym_c_uint] = ACTIONS(957), - [anon_sym_c_long] = ACTIONS(957), - [anon_sym_c_ulong] = ACTIONS(957), - [anon_sym_c_longlong] = ACTIONS(957), - [anon_sym_c_ulonglong] = ACTIONS(957), - [anon_sym_c_float] = ACTIONS(957), - [anon_sym_c_double] = ACTIONS(957), - [anon_sym_c_longdouble] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_AMP_EQ] = ACTIONS(955), - [anon_sym_PIPE_EQ] = ACTIONS(955), - [anon_sym_xor_EQ] = ACTIONS(955), - [anon_sym_LT_LT_EQ] = ACTIONS(955), - [anon_sym_GT_GT_EQ] = ACTIONS(955), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(955), - [anon_sym_return] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_defer] = ACTIONS(957), - [anon_sym_errdefer] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_expand] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_orelse] = ACTIONS(957), - [anon_sym_catch] = ACTIONS(957), - [anon_sym_or] = ACTIONS(957), - [anon_sym_and] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_xor] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_LT_LT_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [sym_none] = ACTIONS(957), - [sym_undefined] = ACTIONS(957), - [sym_sink] = ACTIONS(957), - [sym_integer] = ACTIONS(957), - [sym_float] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym_multiline_string] = ACTIONS(955), - [sym_character] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(955), - }, - [STATE(204)] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_test] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_func] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_void] = ACTIONS(961), - [anon_sym_anyopaque] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_int] = ACTIONS(961), - [anon_sym_uint] = ACTIONS(961), - [anon_sym_float] = ACTIONS(961), - [anon_sym_range] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_c_char] = ACTIONS(961), - [anon_sym_c_schar] = ACTIONS(961), - [anon_sym_c_uchar] = ACTIONS(961), - [anon_sym_c_short] = ACTIONS(961), - [anon_sym_c_ushort] = ACTIONS(961), - [anon_sym_c_int] = ACTIONS(961), - [anon_sym_c_uint] = ACTIONS(961), - [anon_sym_c_long] = ACTIONS(961), - [anon_sym_c_ulong] = ACTIONS(961), - [anon_sym_c_longlong] = ACTIONS(961), - [anon_sym_c_ulonglong] = ACTIONS(961), - [anon_sym_c_float] = ACTIONS(961), - [anon_sym_c_double] = ACTIONS(961), - [anon_sym_c_longdouble] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(959), - [anon_sym_SLASH_EQ] = ACTIONS(959), - [anon_sym_AMP_EQ] = ACTIONS(959), - [anon_sym_PIPE_EQ] = ACTIONS(959), - [anon_sym_xor_EQ] = ACTIONS(959), - [anon_sym_LT_LT_EQ] = ACTIONS(959), - [anon_sym_GT_GT_EQ] = ACTIONS(959), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(959), - [anon_sym_return] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_defer] = ACTIONS(961), - [anon_sym_errdefer] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_expand] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_orelse] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_LT_LT_PIPE] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [sym_none] = ACTIONS(961), - [sym_undefined] = ACTIONS(961), - [sym_sink] = ACTIONS(961), - [sym_integer] = ACTIONS(961), - [sym_float] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym_multiline_string] = ACTIONS(959), - [sym_character] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(959), - }, - [STATE(205)] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_identifier] = ACTIONS(965), - [anon_sym_import] = ACTIONS(965), - [anon_sym_test] = ACTIONS(965), - [anon_sym_hide] = ACTIONS(965), - [anon_sym_func] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_void] = ACTIONS(965), - [anon_sym_anyopaque] = ACTIONS(965), - [anon_sym_bool] = ACTIONS(965), - [anon_sym_int] = ACTIONS(965), - [anon_sym_uint] = ACTIONS(965), - [anon_sym_float] = ACTIONS(965), - [anon_sym_range] = ACTIONS(965), - [anon_sym_i8] = ACTIONS(965), - [anon_sym_i16] = ACTIONS(965), - [anon_sym_i32] = ACTIONS(965), - [anon_sym_i64] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(965), - [anon_sym_u16] = ACTIONS(965), - [anon_sym_u32] = ACTIONS(965), - [anon_sym_u64] = ACTIONS(965), - [anon_sym_isize] = ACTIONS(965), - [anon_sym_usize] = ACTIONS(965), - [anon_sym_f32] = ACTIONS(965), - [anon_sym_f64] = ACTIONS(965), - [anon_sym_c_char] = ACTIONS(965), - [anon_sym_c_schar] = ACTIONS(965), - [anon_sym_c_uchar] = ACTIONS(965), - [anon_sym_c_short] = ACTIONS(965), - [anon_sym_c_ushort] = ACTIONS(965), - [anon_sym_c_int] = ACTIONS(965), - [anon_sym_c_uint] = ACTIONS(965), - [anon_sym_c_long] = ACTIONS(965), - [anon_sym_c_ulong] = ACTIONS(965), - [anon_sym_c_longlong] = ACTIONS(965), - [anon_sym_c_ulonglong] = ACTIONS(965), - [anon_sym_c_float] = ACTIONS(965), - [anon_sym_c_double] = ACTIONS(965), - [anon_sym_c_longdouble] = ACTIONS(965), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_xor_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(963), - [anon_sym_return] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_defer] = ACTIONS(965), - [anon_sym_errdefer] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_else] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_expand] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_match] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_orelse] = ACTIONS(965), - [anon_sym_catch] = ACTIONS(965), - [anon_sym_or] = ACTIONS(965), - [anon_sym_and] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_xor] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_LT_LT_PIPE] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_true] = ACTIONS(965), - [anon_sym_false] = ACTIONS(965), - [sym_none] = ACTIONS(965), - [sym_undefined] = ACTIONS(965), - [sym_sink] = ACTIONS(965), - [sym_integer] = ACTIONS(965), - [sym_float] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_multiline_string] = ACTIONS(963), - [sym_character] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(963), - }, - [STATE(206)] = { - [ts_builtin_sym_end] = ACTIONS(967), - [sym_identifier] = ACTIONS(969), - [anon_sym_import] = ACTIONS(969), - [anon_sym_test] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_func] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_void] = ACTIONS(969), - [anon_sym_anyopaque] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(969), - [anon_sym_int] = ACTIONS(969), - [anon_sym_uint] = ACTIONS(969), - [anon_sym_float] = ACTIONS(969), - [anon_sym_range] = ACTIONS(969), - [anon_sym_i8] = ACTIONS(969), - [anon_sym_i16] = ACTIONS(969), - [anon_sym_i32] = ACTIONS(969), - [anon_sym_i64] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(969), - [anon_sym_u16] = ACTIONS(969), - [anon_sym_u32] = ACTIONS(969), - [anon_sym_u64] = ACTIONS(969), - [anon_sym_isize] = ACTIONS(969), - [anon_sym_usize] = ACTIONS(969), - [anon_sym_f32] = ACTIONS(969), - [anon_sym_f64] = ACTIONS(969), - [anon_sym_c_char] = ACTIONS(969), - [anon_sym_c_schar] = ACTIONS(969), - [anon_sym_c_uchar] = ACTIONS(969), - [anon_sym_c_short] = ACTIONS(969), - [anon_sym_c_ushort] = ACTIONS(969), - [anon_sym_c_int] = ACTIONS(969), - [anon_sym_c_uint] = ACTIONS(969), - [anon_sym_c_long] = ACTIONS(969), - [anon_sym_c_ulong] = ACTIONS(969), - [anon_sym_c_longlong] = ACTIONS(969), - [anon_sym_c_ulonglong] = ACTIONS(969), - [anon_sym_c_float] = ACTIONS(969), - [anon_sym_c_double] = ACTIONS(969), - [anon_sym_c_longdouble] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [anon_sym_xor_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(967), - [anon_sym_return] = ACTIONS(969), - [anon_sym_yield] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_defer] = ACTIONS(969), - [anon_sym_errdefer] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_expand] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_orelse] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_or] = ACTIONS(969), - [anon_sym_and] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_xor] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_LT_LT_PIPE] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_try] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [sym_none] = ACTIONS(969), - [sym_undefined] = ACTIONS(969), - [sym_sink] = ACTIONS(969), - [sym_integer] = ACTIONS(969), - [sym_float] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym_multiline_string] = ACTIONS(967), - [sym_character] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(967), - }, [STATE(207)] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_test] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_func] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_void] = ACTIONS(973), - [anon_sym_anyopaque] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_int] = ACTIONS(973), - [anon_sym_uint] = ACTIONS(973), - [anon_sym_float] = ACTIONS(973), - [anon_sym_range] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_c_char] = ACTIONS(973), - [anon_sym_c_schar] = ACTIONS(973), - [anon_sym_c_uchar] = ACTIONS(973), - [anon_sym_c_short] = ACTIONS(973), - [anon_sym_c_ushort] = ACTIONS(973), - [anon_sym_c_int] = ACTIONS(973), - [anon_sym_c_uint] = ACTIONS(973), - [anon_sym_c_long] = ACTIONS(973), - [anon_sym_c_ulong] = ACTIONS(973), - [anon_sym_c_longlong] = ACTIONS(973), - [anon_sym_c_ulonglong] = ACTIONS(973), - [anon_sym_c_float] = ACTIONS(973), - [anon_sym_c_double] = ACTIONS(973), - [anon_sym_c_longdouble] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_AMP_EQ] = ACTIONS(971), - [anon_sym_PIPE_EQ] = ACTIONS(971), - [anon_sym_xor_EQ] = ACTIONS(971), - [anon_sym_LT_LT_EQ] = ACTIONS(971), - [anon_sym_GT_GT_EQ] = ACTIONS(971), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(971), - [anon_sym_return] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_defer] = ACTIONS(973), - [anon_sym_errdefer] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_expand] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_orelse] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_or] = ACTIONS(973), - [anon_sym_and] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_xor] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_LT_LT_PIPE] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [sym_none] = ACTIONS(973), - [sym_undefined] = ACTIONS(973), - [sym_sink] = ACTIONS(973), - [sym_integer] = ACTIONS(973), - [sym_float] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym_multiline_string] = ACTIONS(971), - [sym_character] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_test] = ACTIONS(836), + [anon_sym_hide] = ACTIONS(836), + [anon_sym_func] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_struct] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_void] = ACTIONS(836), + [anon_sym_type] = ACTIONS(836), + [anon_sym_anyopaque] = ACTIONS(836), + [anon_sym_bool] = ACTIONS(836), + [anon_sym_int] = ACTIONS(836), + [anon_sym_uint] = ACTIONS(836), + [anon_sym_float] = ACTIONS(836), + [anon_sym_range] = ACTIONS(836), + [anon_sym_i8] = ACTIONS(836), + [anon_sym_i16] = ACTIONS(836), + [anon_sym_i32] = ACTIONS(836), + [anon_sym_i64] = ACTIONS(836), + [anon_sym_u8] = ACTIONS(836), + [anon_sym_u16] = ACTIONS(836), + [anon_sym_u32] = ACTIONS(836), + [anon_sym_u64] = ACTIONS(836), + [anon_sym_isize] = ACTIONS(836), + [anon_sym_usize] = ACTIONS(836), + [anon_sym_f32] = ACTIONS(836), + [anon_sym_f64] = ACTIONS(836), + [anon_sym_c_char] = ACTIONS(836), + [anon_sym_c_schar] = ACTIONS(836), + [anon_sym_c_uchar] = ACTIONS(836), + [anon_sym_c_short] = ACTIONS(836), + [anon_sym_c_ushort] = ACTIONS(836), + [anon_sym_c_int] = ACTIONS(836), + [anon_sym_c_uint] = ACTIONS(836), + [anon_sym_c_long] = ACTIONS(836), + [anon_sym_c_ulong] = ACTIONS(836), + [anon_sym_c_longlong] = ACTIONS(836), + [anon_sym_c_ulonglong] = ACTIONS(836), + [anon_sym_c_float] = ACTIONS(836), + [anon_sym_c_double] = ACTIONS(836), + [anon_sym_c_longdouble] = ACTIONS(836), + [anon_sym_PLUS_EQ] = ACTIONS(834), + [anon_sym_DASH_EQ] = ACTIONS(834), + [anon_sym_STAR_EQ] = ACTIONS(834), + [anon_sym_SLASH_EQ] = ACTIONS(834), + [anon_sym_AMP_EQ] = ACTIONS(834), + [anon_sym_PIPE_EQ] = ACTIONS(834), + [anon_sym_xor_EQ] = ACTIONS(834), + [anon_sym_LT_LT_EQ] = ACTIONS(834), + [anon_sym_GT_GT_EQ] = ACTIONS(834), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(834), + [anon_sym_return] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_defer] = ACTIONS(836), + [anon_sym_errdefer] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_expand] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_match] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [anon_sym_orelse] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_or] = ACTIONS(836), + [anon_sym_and] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_xor] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_LT_LT_PIPE] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [sym_none] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [sym_sink] = ACTIONS(836), + [sym_integer] = ACTIONS(836), + [sym_float] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_multiline_string] = ACTIONS(834), + [sym_character] = ACTIONS(834), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(971), + [sym__newline] = ACTIONS(834), }, [STATE(208)] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_identifier] = ACTIONS(977), - [anon_sym_import] = ACTIONS(977), - [anon_sym_test] = ACTIONS(977), - [anon_sym_hide] = ACTIONS(977), - [anon_sym_func] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_void] = ACTIONS(977), - [anon_sym_anyopaque] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_int] = ACTIONS(977), - [anon_sym_uint] = ACTIONS(977), - [anon_sym_float] = ACTIONS(977), - [anon_sym_range] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_c_char] = ACTIONS(977), - [anon_sym_c_schar] = ACTIONS(977), - [anon_sym_c_uchar] = ACTIONS(977), - [anon_sym_c_short] = ACTIONS(977), - [anon_sym_c_ushort] = ACTIONS(977), - [anon_sym_c_int] = ACTIONS(977), - [anon_sym_c_uint] = ACTIONS(977), - [anon_sym_c_long] = ACTIONS(977), - [anon_sym_c_ulong] = ACTIONS(977), - [anon_sym_c_longlong] = ACTIONS(977), - [anon_sym_c_ulonglong] = ACTIONS(977), - [anon_sym_c_float] = ACTIONS(977), - [anon_sym_c_double] = ACTIONS(977), - [anon_sym_c_longdouble] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_xor_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(975), - [anon_sym_return] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_defer] = ACTIONS(977), - [anon_sym_errdefer] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_else] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [anon_sym_expand] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_orelse] = ACTIONS(977), - [anon_sym_catch] = ACTIONS(977), - [anon_sym_or] = ACTIONS(977), - [anon_sym_and] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_xor] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT_PIPE] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [sym_none] = ACTIONS(977), - [sym_undefined] = ACTIONS(977), - [sym_sink] = ACTIONS(977), - [sym_integer] = ACTIONS(977), - [sym_float] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym_multiline_string] = ACTIONS(975), - [sym_character] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(840), + [anon_sym_import] = ACTIONS(840), + [anon_sym_test] = ACTIONS(840), + [anon_sym_hide] = ACTIONS(840), + [anon_sym_func] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_struct] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_void] = ACTIONS(840), + [anon_sym_type] = ACTIONS(840), + [anon_sym_anyopaque] = ACTIONS(840), + [anon_sym_bool] = ACTIONS(840), + [anon_sym_int] = ACTIONS(840), + [anon_sym_uint] = ACTIONS(840), + [anon_sym_float] = ACTIONS(840), + [anon_sym_range] = ACTIONS(840), + [anon_sym_i8] = ACTIONS(840), + [anon_sym_i16] = ACTIONS(840), + [anon_sym_i32] = ACTIONS(840), + [anon_sym_i64] = ACTIONS(840), + [anon_sym_u8] = ACTIONS(840), + [anon_sym_u16] = ACTIONS(840), + [anon_sym_u32] = ACTIONS(840), + [anon_sym_u64] = ACTIONS(840), + [anon_sym_isize] = ACTIONS(840), + [anon_sym_usize] = ACTIONS(840), + [anon_sym_f32] = ACTIONS(840), + [anon_sym_f64] = ACTIONS(840), + [anon_sym_c_char] = ACTIONS(840), + [anon_sym_c_schar] = ACTIONS(840), + [anon_sym_c_uchar] = ACTIONS(840), + [anon_sym_c_short] = ACTIONS(840), + [anon_sym_c_ushort] = ACTIONS(840), + [anon_sym_c_int] = ACTIONS(840), + [anon_sym_c_uint] = ACTIONS(840), + [anon_sym_c_long] = ACTIONS(840), + [anon_sym_c_ulong] = ACTIONS(840), + [anon_sym_c_longlong] = ACTIONS(840), + [anon_sym_c_ulonglong] = ACTIONS(840), + [anon_sym_c_float] = ACTIONS(840), + [anon_sym_c_double] = ACTIONS(840), + [anon_sym_c_longdouble] = ACTIONS(840), + [anon_sym_PLUS_EQ] = ACTIONS(838), + [anon_sym_DASH_EQ] = ACTIONS(838), + [anon_sym_STAR_EQ] = ACTIONS(838), + [anon_sym_SLASH_EQ] = ACTIONS(838), + [anon_sym_AMP_EQ] = ACTIONS(838), + [anon_sym_PIPE_EQ] = ACTIONS(838), + [anon_sym_xor_EQ] = ACTIONS(838), + [anon_sym_LT_LT_EQ] = ACTIONS(838), + [anon_sym_GT_GT_EQ] = ACTIONS(838), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(838), + [anon_sym_return] = ACTIONS(840), + [anon_sym_yield] = ACTIONS(840), + [anon_sym_break] = ACTIONS(840), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_defer] = ACTIONS(840), + [anon_sym_errdefer] = ACTIONS(840), + [anon_sym_if] = ACTIONS(840), + [anon_sym_else] = ACTIONS(840), + [anon_sym_while] = ACTIONS(840), + [anon_sym_expand] = ACTIONS(840), + [anon_sym_for] = ACTIONS(840), + [anon_sym_match] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [anon_sym_orelse] = ACTIONS(840), + [anon_sym_catch] = ACTIONS(840), + [anon_sym_or] = ACTIONS(840), + [anon_sym_and] = ACTIONS(840), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_xor] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(840), + [anon_sym_GT_GT] = ACTIONS(840), + [anon_sym_LT_LT_PIPE] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_true] = ACTIONS(840), + [anon_sym_false] = ACTIONS(840), + [sym_none] = ACTIONS(840), + [sym_undefined] = ACTIONS(840), + [sym_sink] = ACTIONS(840), + [sym_integer] = ACTIONS(840), + [sym_float] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_multiline_string] = ACTIONS(838), + [sym_character] = ACTIONS(838), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(975), + [sym__newline] = ACTIONS(838), }, [STATE(209)] = { - [ts_builtin_sym_end] = ACTIONS(979), - [sym_identifier] = ACTIONS(981), - [anon_sym_import] = ACTIONS(981), - [anon_sym_test] = ACTIONS(981), - [anon_sym_hide] = ACTIONS(981), - [anon_sym_func] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_void] = ACTIONS(981), - [anon_sym_anyopaque] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_int] = ACTIONS(981), - [anon_sym_uint] = ACTIONS(981), - [anon_sym_float] = ACTIONS(981), - [anon_sym_range] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_c_char] = ACTIONS(981), - [anon_sym_c_schar] = ACTIONS(981), - [anon_sym_c_uchar] = ACTIONS(981), - [anon_sym_c_short] = ACTIONS(981), - [anon_sym_c_ushort] = ACTIONS(981), - [anon_sym_c_int] = ACTIONS(981), - [anon_sym_c_uint] = ACTIONS(981), - [anon_sym_c_long] = ACTIONS(981), - [anon_sym_c_ulong] = ACTIONS(981), - [anon_sym_c_longlong] = ACTIONS(981), - [anon_sym_c_ulonglong] = ACTIONS(981), - [anon_sym_c_float] = ACTIONS(981), - [anon_sym_c_double] = ACTIONS(981), - [anon_sym_c_longdouble] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_xor_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(979), - [anon_sym_return] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_defer] = ACTIONS(981), - [anon_sym_errdefer] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_else] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [anon_sym_expand] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_orelse] = ACTIONS(981), - [anon_sym_catch] = ACTIONS(981), - [anon_sym_or] = ACTIONS(981), - [anon_sym_and] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_xor] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_LT_LT_PIPE] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_try] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [sym_none] = ACTIONS(981), - [sym_undefined] = ACTIONS(981), - [sym_sink] = ACTIONS(981), - [sym_integer] = ACTIONS(981), - [sym_float] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym_multiline_string] = ACTIONS(979), - [sym_character] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_test] = ACTIONS(844), + [anon_sym_hide] = ACTIONS(844), + [anon_sym_func] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_struct] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_void] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_anyopaque] = ACTIONS(844), + [anon_sym_bool] = ACTIONS(844), + [anon_sym_int] = ACTIONS(844), + [anon_sym_uint] = ACTIONS(844), + [anon_sym_float] = ACTIONS(844), + [anon_sym_range] = ACTIONS(844), + [anon_sym_i8] = ACTIONS(844), + [anon_sym_i16] = ACTIONS(844), + [anon_sym_i32] = ACTIONS(844), + [anon_sym_i64] = ACTIONS(844), + [anon_sym_u8] = ACTIONS(844), + [anon_sym_u16] = ACTIONS(844), + [anon_sym_u32] = ACTIONS(844), + [anon_sym_u64] = ACTIONS(844), + [anon_sym_isize] = ACTIONS(844), + [anon_sym_usize] = ACTIONS(844), + [anon_sym_f32] = ACTIONS(844), + [anon_sym_f64] = ACTIONS(844), + [anon_sym_c_char] = ACTIONS(844), + [anon_sym_c_schar] = ACTIONS(844), + [anon_sym_c_uchar] = ACTIONS(844), + [anon_sym_c_short] = ACTIONS(844), + [anon_sym_c_ushort] = ACTIONS(844), + [anon_sym_c_int] = ACTIONS(844), + [anon_sym_c_uint] = ACTIONS(844), + [anon_sym_c_long] = ACTIONS(844), + [anon_sym_c_ulong] = ACTIONS(844), + [anon_sym_c_longlong] = ACTIONS(844), + [anon_sym_c_ulonglong] = ACTIONS(844), + [anon_sym_c_float] = ACTIONS(844), + [anon_sym_c_double] = ACTIONS(844), + [anon_sym_c_longdouble] = ACTIONS(844), + [anon_sym_PLUS_EQ] = ACTIONS(842), + [anon_sym_DASH_EQ] = ACTIONS(842), + [anon_sym_STAR_EQ] = ACTIONS(842), + [anon_sym_SLASH_EQ] = ACTIONS(842), + [anon_sym_AMP_EQ] = ACTIONS(842), + [anon_sym_PIPE_EQ] = ACTIONS(842), + [anon_sym_xor_EQ] = ACTIONS(842), + [anon_sym_LT_LT_EQ] = ACTIONS(842), + [anon_sym_GT_GT_EQ] = ACTIONS(842), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(842), + [anon_sym_return] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_defer] = ACTIONS(844), + [anon_sym_errdefer] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_expand] = ACTIONS(844), + [anon_sym_for] = ACTIONS(844), + [anon_sym_match] = ACTIONS(844), + [anon_sym_DOT_DOT] = ACTIONS(844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [anon_sym_orelse] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_or] = ACTIONS(844), + [anon_sym_and] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_xor] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_LT_LT_PIPE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [sym_none] = ACTIONS(844), + [sym_undefined] = ACTIONS(844), + [sym_sink] = ACTIONS(844), + [sym_integer] = ACTIONS(844), + [sym_float] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_multiline_string] = ACTIONS(842), + [sym_character] = ACTIONS(842), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(979), + [sym__newline] = ACTIONS(842), }, [STATE(210)] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_import] = ACTIONS(985), - [anon_sym_test] = ACTIONS(985), - [anon_sym_hide] = ACTIONS(985), - [anon_sym_func] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_void] = ACTIONS(985), - [anon_sym_anyopaque] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_int] = ACTIONS(985), - [anon_sym_uint] = ACTIONS(985), - [anon_sym_float] = ACTIONS(985), - [anon_sym_range] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_c_char] = ACTIONS(985), - [anon_sym_c_schar] = ACTIONS(985), - [anon_sym_c_uchar] = ACTIONS(985), - [anon_sym_c_short] = ACTIONS(985), - [anon_sym_c_ushort] = ACTIONS(985), - [anon_sym_c_int] = ACTIONS(985), - [anon_sym_c_uint] = ACTIONS(985), - [anon_sym_c_long] = ACTIONS(985), - [anon_sym_c_ulong] = ACTIONS(985), - [anon_sym_c_longlong] = ACTIONS(985), - [anon_sym_c_ulonglong] = ACTIONS(985), - [anon_sym_c_float] = ACTIONS(985), - [anon_sym_c_double] = ACTIONS(985), - [anon_sym_c_longdouble] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_xor_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(983), - [anon_sym_return] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_defer] = ACTIONS(985), - [anon_sym_errdefer] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_else] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_expand] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_orelse] = ACTIONS(985), - [anon_sym_catch] = ACTIONS(985), - [anon_sym_or] = ACTIONS(985), - [anon_sym_and] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_xor] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_LT_LT_PIPE] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_try] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [sym_none] = ACTIONS(985), - [sym_undefined] = ACTIONS(985), - [sym_sink] = ACTIONS(985), - [sym_integer] = ACTIONS(985), - [sym_float] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(983), - [sym_multiline_string] = ACTIONS(983), - [sym_character] = ACTIONS(983), + [ts_builtin_sym_end] = ACTIONS(846), + [sym_identifier] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_test] = ACTIONS(848), + [anon_sym_hide] = ACTIONS(848), + [anon_sym_func] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_void] = ACTIONS(848), + [anon_sym_type] = ACTIONS(848), + [anon_sym_anyopaque] = ACTIONS(848), + [anon_sym_bool] = ACTIONS(848), + [anon_sym_int] = ACTIONS(848), + [anon_sym_uint] = ACTIONS(848), + [anon_sym_float] = ACTIONS(848), + [anon_sym_range] = ACTIONS(848), + [anon_sym_i8] = ACTIONS(848), + [anon_sym_i16] = ACTIONS(848), + [anon_sym_i32] = ACTIONS(848), + [anon_sym_i64] = ACTIONS(848), + [anon_sym_u8] = ACTIONS(848), + [anon_sym_u16] = ACTIONS(848), + [anon_sym_u32] = ACTIONS(848), + [anon_sym_u64] = ACTIONS(848), + [anon_sym_isize] = ACTIONS(848), + [anon_sym_usize] = ACTIONS(848), + [anon_sym_f32] = ACTIONS(848), + [anon_sym_f64] = ACTIONS(848), + [anon_sym_c_char] = ACTIONS(848), + [anon_sym_c_schar] = ACTIONS(848), + [anon_sym_c_uchar] = ACTIONS(848), + [anon_sym_c_short] = ACTIONS(848), + [anon_sym_c_ushort] = ACTIONS(848), + [anon_sym_c_int] = ACTIONS(848), + [anon_sym_c_uint] = ACTIONS(848), + [anon_sym_c_long] = ACTIONS(848), + [anon_sym_c_ulong] = ACTIONS(848), + [anon_sym_c_longlong] = ACTIONS(848), + [anon_sym_c_ulonglong] = ACTIONS(848), + [anon_sym_c_float] = ACTIONS(848), + [anon_sym_c_double] = ACTIONS(848), + [anon_sym_c_longdouble] = ACTIONS(848), + [anon_sym_PLUS_EQ] = ACTIONS(846), + [anon_sym_DASH_EQ] = ACTIONS(846), + [anon_sym_STAR_EQ] = ACTIONS(846), + [anon_sym_SLASH_EQ] = ACTIONS(846), + [anon_sym_AMP_EQ] = ACTIONS(846), + [anon_sym_PIPE_EQ] = ACTIONS(846), + [anon_sym_xor_EQ] = ACTIONS(846), + [anon_sym_LT_LT_EQ] = ACTIONS(846), + [anon_sym_GT_GT_EQ] = ACTIONS(846), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(846), + [anon_sym_return] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_defer] = ACTIONS(848), + [anon_sym_errdefer] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_expand] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_match] = ACTIONS(848), + [anon_sym_DOT_DOT] = ACTIONS(848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [anon_sym_orelse] = ACTIONS(848), + [anon_sym_catch] = ACTIONS(848), + [anon_sym_or] = ACTIONS(848), + [anon_sym_and] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_xor] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_LT_LT_PIPE] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [sym_none] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [sym_sink] = ACTIONS(848), + [sym_integer] = ACTIONS(848), + [sym_float] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym_multiline_string] = ACTIONS(846), + [sym_character] = ACTIONS(846), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(983), + [sym__newline] = ACTIONS(846), }, [STATE(211)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_test] = ACTIONS(852), + [anon_sym_hide] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_void] = ACTIONS(852), + [anon_sym_type] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_uint] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_xor_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(850), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_expand] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_xor] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_LT_LT_PIPE] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_multiline_string] = ACTIONS(850), + [sym_character] = ACTIONS(850), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(850), }, [STATE(212)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(213)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(854), }, [STATE(214)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(987), + [sym__newline] = ACTIONS(856), }, [STATE(215)] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_test] = ACTIONS(991), - [anon_sym_hide] = ACTIONS(991), - [anon_sym_func] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_void] = ACTIONS(991), - [anon_sym_anyopaque] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_int] = ACTIONS(991), - [anon_sym_uint] = ACTIONS(991), - [anon_sym_float] = ACTIONS(991), - [anon_sym_range] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_c_char] = ACTIONS(991), - [anon_sym_c_schar] = ACTIONS(991), - [anon_sym_c_uchar] = ACTIONS(991), - [anon_sym_c_short] = ACTIONS(991), - [anon_sym_c_ushort] = ACTIONS(991), - [anon_sym_c_int] = ACTIONS(991), - [anon_sym_c_uint] = ACTIONS(991), - [anon_sym_c_long] = ACTIONS(991), - [anon_sym_c_ulong] = ACTIONS(991), - [anon_sym_c_longlong] = ACTIONS(991), - [anon_sym_c_ulonglong] = ACTIONS(991), - [anon_sym_c_float] = ACTIONS(991), - [anon_sym_c_double] = ACTIONS(991), - [anon_sym_c_longdouble] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(989), - [anon_sym_DASH_EQ] = ACTIONS(989), - [anon_sym_STAR_EQ] = ACTIONS(989), - [anon_sym_SLASH_EQ] = ACTIONS(989), - [anon_sym_AMP_EQ] = ACTIONS(989), - [anon_sym_PIPE_EQ] = ACTIONS(989), - [anon_sym_xor_EQ] = ACTIONS(989), - [anon_sym_LT_LT_EQ] = ACTIONS(989), - [anon_sym_GT_GT_EQ] = ACTIONS(989), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(989), - [anon_sym_return] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_defer] = ACTIONS(991), - [anon_sym_errdefer] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_expand] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(989), - [anon_sym_orelse] = ACTIONS(991), - [anon_sym_catch] = ACTIONS(991), - [anon_sym_or] = ACTIONS(991), - [anon_sym_and] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_xor] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_LT_LT_PIPE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_try] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [sym_none] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [sym_sink] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [sym_float] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym_multiline_string] = ACTIONS(989), - [sym_character] = ACTIONS(989), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(989), + [sym__newline] = ACTIONS(466), }, [STATE(216)] = { - [ts_builtin_sym_end] = ACTIONS(993), - [sym_identifier] = ACTIONS(995), - [anon_sym_import] = ACTIONS(995), - [anon_sym_test] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_func] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_void] = ACTIONS(995), - [anon_sym_anyopaque] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_int] = ACTIONS(995), - [anon_sym_uint] = ACTIONS(995), - [anon_sym_float] = ACTIONS(995), - [anon_sym_range] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_c_char] = ACTIONS(995), - [anon_sym_c_schar] = ACTIONS(995), - [anon_sym_c_uchar] = ACTIONS(995), - [anon_sym_c_short] = ACTIONS(995), - [anon_sym_c_ushort] = ACTIONS(995), - [anon_sym_c_int] = ACTIONS(995), - [anon_sym_c_uint] = ACTIONS(995), - [anon_sym_c_long] = ACTIONS(995), - [anon_sym_c_ulong] = ACTIONS(995), - [anon_sym_c_longlong] = ACTIONS(995), - [anon_sym_c_ulonglong] = ACTIONS(995), - [anon_sym_c_float] = ACTIONS(995), - [anon_sym_c_double] = ACTIONS(995), - [anon_sym_c_longdouble] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_xor_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(993), - [anon_sym_return] = ACTIONS(995), - [anon_sym_yield] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_defer] = ACTIONS(995), - [anon_sym_errdefer] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_expand] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_orelse] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_LT_LT_PIPE] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_try] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [sym_none] = ACTIONS(995), - [sym_undefined] = ACTIONS(995), - [sym_sink] = ACTIONS(995), - [sym_integer] = ACTIONS(995), - [sym_float] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym_multiline_string] = ACTIONS(993), - [sym_character] = ACTIONS(993), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(993), + [sym__newline] = ACTIONS(858), }, [STATE(217)] = { - [ts_builtin_sym_end] = ACTIONS(997), - [sym_identifier] = ACTIONS(999), - [anon_sym_import] = ACTIONS(999), - [anon_sym_test] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_func] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_struct] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_void] = ACTIONS(999), - [anon_sym_anyopaque] = ACTIONS(999), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_int] = ACTIONS(999), - [anon_sym_uint] = ACTIONS(999), - [anon_sym_float] = ACTIONS(999), - [anon_sym_range] = ACTIONS(999), - [anon_sym_i8] = ACTIONS(999), - [anon_sym_i16] = ACTIONS(999), - [anon_sym_i32] = ACTIONS(999), - [anon_sym_i64] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(999), - [anon_sym_u16] = ACTIONS(999), - [anon_sym_u32] = ACTIONS(999), - [anon_sym_u64] = ACTIONS(999), - [anon_sym_isize] = ACTIONS(999), - [anon_sym_usize] = ACTIONS(999), - [anon_sym_f32] = ACTIONS(999), - [anon_sym_f64] = ACTIONS(999), - [anon_sym_c_char] = ACTIONS(999), - [anon_sym_c_schar] = ACTIONS(999), - [anon_sym_c_uchar] = ACTIONS(999), - [anon_sym_c_short] = ACTIONS(999), - [anon_sym_c_ushort] = ACTIONS(999), - [anon_sym_c_int] = ACTIONS(999), - [anon_sym_c_uint] = ACTIONS(999), - [anon_sym_c_long] = ACTIONS(999), - [anon_sym_c_ulong] = ACTIONS(999), - [anon_sym_c_longlong] = ACTIONS(999), - [anon_sym_c_ulonglong] = ACTIONS(999), - [anon_sym_c_float] = ACTIONS(999), - [anon_sym_c_double] = ACTIONS(999), - [anon_sym_c_longdouble] = ACTIONS(999), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_xor_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(997), - [anon_sym_return] = ACTIONS(999), - [anon_sym_yield] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_defer] = ACTIONS(999), - [anon_sym_errdefer] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_expand] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_orelse] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_LT_LT_PIPE] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(997), - [anon_sym_try] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [sym_none] = ACTIONS(999), - [sym_undefined] = ACTIONS(999), - [sym_sink] = ACTIONS(999), - [sym_integer] = ACTIONS(999), - [sym_float] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym_multiline_string] = ACTIONS(997), - [sym_character] = ACTIONS(997), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(997), + [sym__newline] = ACTIONS(466), }, [STATE(218)] = { - [ts_builtin_sym_end] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(1003), - [anon_sym_test] = ACTIONS(1003), - [anon_sym_hide] = ACTIONS(1003), - [anon_sym_func] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1003), - [anon_sym_anyopaque] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_int] = ACTIONS(1003), - [anon_sym_uint] = ACTIONS(1003), - [anon_sym_float] = ACTIONS(1003), - [anon_sym_range] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_c_char] = ACTIONS(1003), - [anon_sym_c_schar] = ACTIONS(1003), - [anon_sym_c_uchar] = ACTIONS(1003), - [anon_sym_c_short] = ACTIONS(1003), - [anon_sym_c_ushort] = ACTIONS(1003), - [anon_sym_c_int] = ACTIONS(1003), - [anon_sym_c_uint] = ACTIONS(1003), - [anon_sym_c_long] = ACTIONS(1003), - [anon_sym_c_ulong] = ACTIONS(1003), - [anon_sym_c_longlong] = ACTIONS(1003), - [anon_sym_c_ulonglong] = ACTIONS(1003), - [anon_sym_c_float] = ACTIONS(1003), - [anon_sym_c_double] = ACTIONS(1003), - [anon_sym_c_longdouble] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_STAR_EQ] = ACTIONS(1001), - [anon_sym_SLASH_EQ] = ACTIONS(1001), - [anon_sym_AMP_EQ] = ACTIONS(1001), - [anon_sym_PIPE_EQ] = ACTIONS(1001), - [anon_sym_xor_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_GT_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_defer] = ACTIONS(1003), - [anon_sym_errdefer] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_else] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [anon_sym_expand] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_orelse] = ACTIONS(1003), - [anon_sym_catch] = ACTIONS(1003), - [anon_sym_or] = ACTIONS(1003), - [anon_sym_and] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_xor] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1003), - [anon_sym_LT_LT_PIPE] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [sym_none] = ACTIONS(1003), - [sym_undefined] = ACTIONS(1003), - [sym_sink] = ACTIONS(1003), - [sym_integer] = ACTIONS(1003), - [sym_float] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym_multiline_string] = ACTIONS(1001), - [sym_character] = ACTIONS(1001), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1001), + [sym__newline] = ACTIONS(860), }, [STATE(219)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(862), + [sym_identifier] = ACTIONS(864), + [anon_sym_import] = ACTIONS(864), + [anon_sym_test] = ACTIONS(864), + [anon_sym_hide] = ACTIONS(864), + [anon_sym_func] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_struct] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_DOLLAR] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_QMARK] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_void] = ACTIONS(864), + [anon_sym_type] = ACTIONS(864), + [anon_sym_anyopaque] = ACTIONS(864), + [anon_sym_bool] = ACTIONS(864), + [anon_sym_int] = ACTIONS(864), + [anon_sym_uint] = ACTIONS(864), + [anon_sym_float] = ACTIONS(864), + [anon_sym_range] = ACTIONS(864), + [anon_sym_i8] = ACTIONS(864), + [anon_sym_i16] = ACTIONS(864), + [anon_sym_i32] = ACTIONS(864), + [anon_sym_i64] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(864), + [anon_sym_u16] = ACTIONS(864), + [anon_sym_u32] = ACTIONS(864), + [anon_sym_u64] = ACTIONS(864), + [anon_sym_isize] = ACTIONS(864), + [anon_sym_usize] = ACTIONS(864), + [anon_sym_f32] = ACTIONS(864), + [anon_sym_f64] = ACTIONS(864), + [anon_sym_c_char] = ACTIONS(864), + [anon_sym_c_schar] = ACTIONS(864), + [anon_sym_c_uchar] = ACTIONS(864), + [anon_sym_c_short] = ACTIONS(864), + [anon_sym_c_ushort] = ACTIONS(864), + [anon_sym_c_int] = ACTIONS(864), + [anon_sym_c_uint] = ACTIONS(864), + [anon_sym_c_long] = ACTIONS(864), + [anon_sym_c_ulong] = ACTIONS(864), + [anon_sym_c_longlong] = ACTIONS(864), + [anon_sym_c_ulonglong] = ACTIONS(864), + [anon_sym_c_float] = ACTIONS(864), + [anon_sym_c_double] = ACTIONS(864), + [anon_sym_c_longdouble] = ACTIONS(864), + [anon_sym_PLUS_EQ] = ACTIONS(862), + [anon_sym_DASH_EQ] = ACTIONS(862), + [anon_sym_STAR_EQ] = ACTIONS(862), + [anon_sym_SLASH_EQ] = ACTIONS(862), + [anon_sym_AMP_EQ] = ACTIONS(862), + [anon_sym_PIPE_EQ] = ACTIONS(862), + [anon_sym_xor_EQ] = ACTIONS(862), + [anon_sym_LT_LT_EQ] = ACTIONS(862), + [anon_sym_GT_GT_EQ] = ACTIONS(862), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_break] = ACTIONS(864), + [anon_sym_continue] = ACTIONS(864), + [anon_sym_defer] = ACTIONS(864), + [anon_sym_errdefer] = ACTIONS(864), + [anon_sym_if] = ACTIONS(864), + [anon_sym_else] = ACTIONS(864), + [anon_sym_while] = ACTIONS(864), + [anon_sym_expand] = ACTIONS(864), + [anon_sym_for] = ACTIONS(864), + [anon_sym_match] = ACTIONS(864), + [anon_sym_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(862), + [anon_sym_orelse] = ACTIONS(864), + [anon_sym_catch] = ACTIONS(864), + [anon_sym_or] = ACTIONS(864), + [anon_sym_and] = ACTIONS(864), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(864), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_xor] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(864), + [anon_sym_GT_GT] = ACTIONS(864), + [anon_sym_LT_LT_PIPE] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(864), + [anon_sym_SLASH] = ACTIONS(864), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_try] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(864), + [anon_sym_CARET] = ACTIONS(862), + [anon_sym_true] = ACTIONS(864), + [anon_sym_false] = ACTIONS(864), + [sym_none] = ACTIONS(864), + [sym_undefined] = ACTIONS(864), + [sym_sink] = ACTIONS(864), + [sym_integer] = ACTIONS(864), + [sym_float] = ACTIONS(862), + [anon_sym_DQUOTE] = ACTIONS(862), + [sym_multiline_string] = ACTIONS(862), + [sym_character] = ACTIONS(862), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(862), }, [STATE(220)] = { - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1007), - [anon_sym_import] = ACTIONS(1007), - [anon_sym_test] = ACTIONS(1007), - [anon_sym_hide] = ACTIONS(1007), - [anon_sym_func] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_COMMA] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1007), - [anon_sym_anyopaque] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_int] = ACTIONS(1007), - [anon_sym_uint] = ACTIONS(1007), - [anon_sym_float] = ACTIONS(1007), - [anon_sym_range] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_c_char] = ACTIONS(1007), - [anon_sym_c_schar] = ACTIONS(1007), - [anon_sym_c_uchar] = ACTIONS(1007), - [anon_sym_c_short] = ACTIONS(1007), - [anon_sym_c_ushort] = ACTIONS(1007), - [anon_sym_c_int] = ACTIONS(1007), - [anon_sym_c_uint] = ACTIONS(1007), - [anon_sym_c_long] = ACTIONS(1007), - [anon_sym_c_ulong] = ACTIONS(1007), - [anon_sym_c_longlong] = ACTIONS(1007), - [anon_sym_c_ulonglong] = ACTIONS(1007), - [anon_sym_c_float] = ACTIONS(1007), - [anon_sym_c_double] = ACTIONS(1007), - [anon_sym_c_longdouble] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), - [anon_sym_STAR_EQ] = ACTIONS(1005), - [anon_sym_SLASH_EQ] = ACTIONS(1005), - [anon_sym_AMP_EQ] = ACTIONS(1005), - [anon_sym_PIPE_EQ] = ACTIONS(1005), - [anon_sym_xor_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_GT_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_defer] = ACTIONS(1007), - [anon_sym_errdefer] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_else] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [anon_sym_expand] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_orelse] = ACTIONS(1007), - [anon_sym_catch] = ACTIONS(1007), - [anon_sym_or] = ACTIONS(1007), - [anon_sym_and] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_xor] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_LT_LT_PIPE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [sym_none] = ACTIONS(1007), - [sym_undefined] = ACTIONS(1007), - [sym_sink] = ACTIONS(1007), - [sym_integer] = ACTIONS(1007), - [sym_float] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym_multiline_string] = ACTIONS(1005), - [sym_character] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(866), + [sym_identifier] = ACTIONS(868), + [anon_sym_import] = ACTIONS(868), + [anon_sym_test] = ACTIONS(868), + [anon_sym_hide] = ACTIONS(868), + [anon_sym_func] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_COMMA] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_QMARK] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_void] = ACTIONS(868), + [anon_sym_type] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_uint] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_STAR_EQ] = ACTIONS(866), + [anon_sym_SLASH_EQ] = ACTIONS(866), + [anon_sym_AMP_EQ] = ACTIONS(866), + [anon_sym_PIPE_EQ] = ACTIONS(866), + [anon_sym_xor_EQ] = ACTIONS(866), + [anon_sym_LT_LT_EQ] = ACTIONS(866), + [anon_sym_GT_GT_EQ] = ACTIONS(866), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(866), + [anon_sym_return] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(868), + [anon_sym_break] = ACTIONS(868), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_defer] = ACTIONS(868), + [anon_sym_errdefer] = ACTIONS(868), + [anon_sym_if] = ACTIONS(868), + [anon_sym_else] = ACTIONS(868), + [anon_sym_while] = ACTIONS(868), + [anon_sym_expand] = ACTIONS(868), + [anon_sym_for] = ACTIONS(868), + [anon_sym_match] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(866), + [anon_sym_orelse] = ACTIONS(868), + [anon_sym_catch] = ACTIONS(868), + [anon_sym_or] = ACTIONS(868), + [anon_sym_and] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(866), + [anon_sym_BANG_EQ] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(868), + [anon_sym_GT_EQ] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_xor] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(868), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_LT_LT_PIPE] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(868), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_TILDE] = ACTIONS(866), + [anon_sym_try] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym_true] = ACTIONS(868), + [anon_sym_false] = ACTIONS(868), + [sym_none] = ACTIONS(868), + [sym_undefined] = ACTIONS(868), + [sym_sink] = ACTIONS(868), + [sym_integer] = ACTIONS(868), + [sym_float] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(866), + [sym_multiline_string] = ACTIONS(866), + [sym_character] = ACTIONS(866), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1005), + [sym__newline] = ACTIONS(866), }, [STATE(221)] = { - [ts_builtin_sym_end] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1011), - [anon_sym_import] = ACTIONS(1011), - [anon_sym_test] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_func] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_anyopaque] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_uint] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_range] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_c_char] = ACTIONS(1011), - [anon_sym_c_schar] = ACTIONS(1011), - [anon_sym_c_uchar] = ACTIONS(1011), - [anon_sym_c_short] = ACTIONS(1011), - [anon_sym_c_ushort] = ACTIONS(1011), - [anon_sym_c_int] = ACTIONS(1011), - [anon_sym_c_uint] = ACTIONS(1011), - [anon_sym_c_long] = ACTIONS(1011), - [anon_sym_c_ulong] = ACTIONS(1011), - [anon_sym_c_longlong] = ACTIONS(1011), - [anon_sym_c_ulonglong] = ACTIONS(1011), - [anon_sym_c_float] = ACTIONS(1011), - [anon_sym_c_double] = ACTIONS(1011), - [anon_sym_c_longdouble] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_xor_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_defer] = ACTIONS(1011), - [anon_sym_errdefer] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_expand] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_orelse] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_or] = ACTIONS(1011), - [anon_sym_and] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_xor] = ACTIONS(1011), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1011), - [anon_sym_LT_LT_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [sym_none] = ACTIONS(1011), - [sym_undefined] = ACTIONS(1011), - [sym_sink] = ACTIONS(1011), - [sym_integer] = ACTIONS(1011), - [sym_float] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym_multiline_string] = ACTIONS(1009), - [sym_character] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(870), + [sym_identifier] = ACTIONS(872), + [anon_sym_import] = ACTIONS(872), + [anon_sym_test] = ACTIONS(872), + [anon_sym_hide] = ACTIONS(872), + [anon_sym_func] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_struct] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_COMMA] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(870), + [anon_sym_void] = ACTIONS(872), + [anon_sym_type] = ACTIONS(872), + [anon_sym_anyopaque] = ACTIONS(872), + [anon_sym_bool] = ACTIONS(872), + [anon_sym_int] = ACTIONS(872), + [anon_sym_uint] = ACTIONS(872), + [anon_sym_float] = ACTIONS(872), + [anon_sym_range] = ACTIONS(872), + [anon_sym_i8] = ACTIONS(872), + [anon_sym_i16] = ACTIONS(872), + [anon_sym_i32] = ACTIONS(872), + [anon_sym_i64] = ACTIONS(872), + [anon_sym_u8] = ACTIONS(872), + [anon_sym_u16] = ACTIONS(872), + [anon_sym_u32] = ACTIONS(872), + [anon_sym_u64] = ACTIONS(872), + [anon_sym_isize] = ACTIONS(872), + [anon_sym_usize] = ACTIONS(872), + [anon_sym_f32] = ACTIONS(872), + [anon_sym_f64] = ACTIONS(872), + [anon_sym_c_char] = ACTIONS(872), + [anon_sym_c_schar] = ACTIONS(872), + [anon_sym_c_uchar] = ACTIONS(872), + [anon_sym_c_short] = ACTIONS(872), + [anon_sym_c_ushort] = ACTIONS(872), + [anon_sym_c_int] = ACTIONS(872), + [anon_sym_c_uint] = ACTIONS(872), + [anon_sym_c_long] = ACTIONS(872), + [anon_sym_c_ulong] = ACTIONS(872), + [anon_sym_c_longlong] = ACTIONS(872), + [anon_sym_c_ulonglong] = ACTIONS(872), + [anon_sym_c_float] = ACTIONS(872), + [anon_sym_c_double] = ACTIONS(872), + [anon_sym_c_longdouble] = ACTIONS(872), + [anon_sym_PLUS_EQ] = ACTIONS(870), + [anon_sym_DASH_EQ] = ACTIONS(870), + [anon_sym_STAR_EQ] = ACTIONS(870), + [anon_sym_SLASH_EQ] = ACTIONS(870), + [anon_sym_AMP_EQ] = ACTIONS(870), + [anon_sym_PIPE_EQ] = ACTIONS(870), + [anon_sym_xor_EQ] = ACTIONS(870), + [anon_sym_LT_LT_EQ] = ACTIONS(870), + [anon_sym_GT_GT_EQ] = ACTIONS(870), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(870), + [anon_sym_return] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(872), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(872), + [anon_sym_defer] = ACTIONS(872), + [anon_sym_errdefer] = ACTIONS(872), + [anon_sym_if] = ACTIONS(872), + [anon_sym_else] = ACTIONS(872), + [anon_sym_while] = ACTIONS(872), + [anon_sym_expand] = ACTIONS(872), + [anon_sym_for] = ACTIONS(872), + [anon_sym_match] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(870), + [anon_sym_orelse] = ACTIONS(872), + [anon_sym_catch] = ACTIONS(872), + [anon_sym_or] = ACTIONS(872), + [anon_sym_and] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(870), + [anon_sym_BANG_EQ] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_GT_EQ] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_xor] = ACTIONS(872), + [anon_sym_LT_LT] = ACTIONS(872), + [anon_sym_GT_GT] = ACTIONS(872), + [anon_sym_LT_LT_PIPE] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(872), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(870), + [anon_sym_try] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_true] = ACTIONS(872), + [anon_sym_false] = ACTIONS(872), + [sym_none] = ACTIONS(872), + [sym_undefined] = ACTIONS(872), + [sym_sink] = ACTIONS(872), + [sym_integer] = ACTIONS(872), + [sym_float] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(870), + [sym_multiline_string] = ACTIONS(870), + [sym_character] = ACTIONS(870), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1009), + [sym__newline] = ACTIONS(870), }, [STATE(222)] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_test] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_func] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_struct] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_anyopaque] = ACTIONS(1015), - [anon_sym_bool] = ACTIONS(1015), - [anon_sym_int] = ACTIONS(1015), - [anon_sym_uint] = ACTIONS(1015), - [anon_sym_float] = ACTIONS(1015), - [anon_sym_range] = ACTIONS(1015), - [anon_sym_i8] = ACTIONS(1015), - [anon_sym_i16] = ACTIONS(1015), - [anon_sym_i32] = ACTIONS(1015), - [anon_sym_i64] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1015), - [anon_sym_u16] = ACTIONS(1015), - [anon_sym_u32] = ACTIONS(1015), - [anon_sym_u64] = ACTIONS(1015), - [anon_sym_isize] = ACTIONS(1015), - [anon_sym_usize] = ACTIONS(1015), - [anon_sym_f32] = ACTIONS(1015), - [anon_sym_f64] = ACTIONS(1015), - [anon_sym_c_char] = ACTIONS(1015), - [anon_sym_c_schar] = ACTIONS(1015), - [anon_sym_c_uchar] = ACTIONS(1015), - [anon_sym_c_short] = ACTIONS(1015), - [anon_sym_c_ushort] = ACTIONS(1015), - [anon_sym_c_int] = ACTIONS(1015), - [anon_sym_c_uint] = ACTIONS(1015), - [anon_sym_c_long] = ACTIONS(1015), - [anon_sym_c_ulong] = ACTIONS(1015), - [anon_sym_c_longlong] = ACTIONS(1015), - [anon_sym_c_ulonglong] = ACTIONS(1015), - [anon_sym_c_float] = ACTIONS(1015), - [anon_sym_c_double] = ACTIONS(1015), - [anon_sym_c_longdouble] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_xor_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_defer] = ACTIONS(1015), - [anon_sym_errdefer] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_expand] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_orelse] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [anon_sym_LT_LT_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [sym_none] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [sym_sink] = ACTIONS(1015), - [sym_integer] = ACTIONS(1015), - [sym_float] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_multiline_string] = ACTIONS(1013), - [sym_character] = ACTIONS(1013), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [anon_sym_import] = ACTIONS(876), + [anon_sym_test] = ACTIONS(876), + [anon_sym_hide] = ACTIONS(876), + [anon_sym_func] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [anon_sym_struct] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_void] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_anyopaque] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_int] = ACTIONS(876), + [anon_sym_uint] = ACTIONS(876), + [anon_sym_float] = ACTIONS(876), + [anon_sym_range] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_c_char] = ACTIONS(876), + [anon_sym_c_schar] = ACTIONS(876), + [anon_sym_c_uchar] = ACTIONS(876), + [anon_sym_c_short] = ACTIONS(876), + [anon_sym_c_ushort] = ACTIONS(876), + [anon_sym_c_int] = ACTIONS(876), + [anon_sym_c_uint] = ACTIONS(876), + [anon_sym_c_long] = ACTIONS(876), + [anon_sym_c_ulong] = ACTIONS(876), + [anon_sym_c_longlong] = ACTIONS(876), + [anon_sym_c_ulonglong] = ACTIONS(876), + [anon_sym_c_float] = ACTIONS(876), + [anon_sym_c_double] = ACTIONS(876), + [anon_sym_c_longdouble] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(874), + [anon_sym_DASH_EQ] = ACTIONS(874), + [anon_sym_STAR_EQ] = ACTIONS(874), + [anon_sym_SLASH_EQ] = ACTIONS(874), + [anon_sym_AMP_EQ] = ACTIONS(874), + [anon_sym_PIPE_EQ] = ACTIONS(874), + [anon_sym_xor_EQ] = ACTIONS(874), + [anon_sym_LT_LT_EQ] = ACTIONS(874), + [anon_sym_GT_GT_EQ] = ACTIONS(874), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(874), + [anon_sym_return] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_defer] = ACTIONS(876), + [anon_sym_errdefer] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_while] = ACTIONS(876), + [anon_sym_expand] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_match] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(874), + [anon_sym_orelse] = ACTIONS(876), + [anon_sym_catch] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_LT_LT_PIPE] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_try] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_true] = ACTIONS(876), + [anon_sym_false] = ACTIONS(876), + [sym_none] = ACTIONS(876), + [sym_undefined] = ACTIONS(876), + [sym_sink] = ACTIONS(876), + [sym_integer] = ACTIONS(876), + [sym_float] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym_multiline_string] = ACTIONS(874), + [sym_character] = ACTIONS(874), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1013), + [sym__newline] = ACTIONS(874), }, [STATE(223)] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1019), - [anon_sym_import] = ACTIONS(1019), - [anon_sym_test] = ACTIONS(1019), - [anon_sym_hide] = ACTIONS(1019), - [anon_sym_func] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1019), - [anon_sym_struct] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_QMARK] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_anyopaque] = ACTIONS(1019), - [anon_sym_bool] = ACTIONS(1019), - [anon_sym_int] = ACTIONS(1019), - [anon_sym_uint] = ACTIONS(1019), - [anon_sym_float] = ACTIONS(1019), - [anon_sym_range] = ACTIONS(1019), - [anon_sym_i8] = ACTIONS(1019), - [anon_sym_i16] = ACTIONS(1019), - [anon_sym_i32] = ACTIONS(1019), - [anon_sym_i64] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1019), - [anon_sym_u16] = ACTIONS(1019), - [anon_sym_u32] = ACTIONS(1019), - [anon_sym_u64] = ACTIONS(1019), - [anon_sym_isize] = ACTIONS(1019), - [anon_sym_usize] = ACTIONS(1019), - [anon_sym_f32] = ACTIONS(1019), - [anon_sym_f64] = ACTIONS(1019), - [anon_sym_c_char] = ACTIONS(1019), - [anon_sym_c_schar] = ACTIONS(1019), - [anon_sym_c_uchar] = ACTIONS(1019), - [anon_sym_c_short] = ACTIONS(1019), - [anon_sym_c_ushort] = ACTIONS(1019), - [anon_sym_c_int] = ACTIONS(1019), - [anon_sym_c_uint] = ACTIONS(1019), - [anon_sym_c_long] = ACTIONS(1019), - [anon_sym_c_ulong] = ACTIONS(1019), - [anon_sym_c_longlong] = ACTIONS(1019), - [anon_sym_c_ulonglong] = ACTIONS(1019), - [anon_sym_c_float] = ACTIONS(1019), - [anon_sym_c_double] = ACTIONS(1019), - [anon_sym_c_longdouble] = ACTIONS(1019), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_AMP_EQ] = ACTIONS(1017), - [anon_sym_PIPE_EQ] = ACTIONS(1017), - [anon_sym_xor_EQ] = ACTIONS(1017), - [anon_sym_LT_LT_EQ] = ACTIONS(1017), - [anon_sym_GT_GT_EQ] = ACTIONS(1017), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1019), - [anon_sym_break] = ACTIONS(1019), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_defer] = ACTIONS(1019), - [anon_sym_errdefer] = ACTIONS(1019), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_else] = ACTIONS(1019), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_expand] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1019), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_orelse] = ACTIONS(1019), - [anon_sym_catch] = ACTIONS(1019), - [anon_sym_or] = ACTIONS(1019), - [anon_sym_and] = ACTIONS(1019), - [anon_sym_EQ_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1017), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_EQ] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1019), - [anon_sym_xor] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_LT_LT_PIPE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [sym_none] = ACTIONS(1019), - [sym_undefined] = ACTIONS(1019), - [sym_sink] = ACTIONS(1019), - [sym_integer] = ACTIONS(1019), - [sym_float] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym_multiline_string] = ACTIONS(1017), - [sym_character] = ACTIONS(1017), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(880), + [anon_sym_test] = ACTIONS(880), + [anon_sym_hide] = ACTIONS(880), + [anon_sym_func] = ACTIONS(880), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_void] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_anyopaque] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_int] = ACTIONS(880), + [anon_sym_uint] = ACTIONS(880), + [anon_sym_float] = ACTIONS(880), + [anon_sym_range] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_c_char] = ACTIONS(880), + [anon_sym_c_schar] = ACTIONS(880), + [anon_sym_c_uchar] = ACTIONS(880), + [anon_sym_c_short] = ACTIONS(880), + [anon_sym_c_ushort] = ACTIONS(880), + [anon_sym_c_int] = ACTIONS(880), + [anon_sym_c_uint] = ACTIONS(880), + [anon_sym_c_long] = ACTIONS(880), + [anon_sym_c_ulong] = ACTIONS(880), + [anon_sym_c_longlong] = ACTIONS(880), + [anon_sym_c_ulonglong] = ACTIONS(880), + [anon_sym_c_float] = ACTIONS(880), + [anon_sym_c_double] = ACTIONS(880), + [anon_sym_c_longdouble] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_AMP_EQ] = ACTIONS(878), + [anon_sym_PIPE_EQ] = ACTIONS(878), + [anon_sym_xor_EQ] = ACTIONS(878), + [anon_sym_LT_LT_EQ] = ACTIONS(878), + [anon_sym_GT_GT_EQ] = ACTIONS(878), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(878), + [anon_sym_return] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_defer] = ACTIONS(880), + [anon_sym_errdefer] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_expand] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(878), + [anon_sym_orelse] = ACTIONS(880), + [anon_sym_catch] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_LT_LT_PIPE] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(878), + [anon_sym_try] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [sym_none] = ACTIONS(880), + [sym_undefined] = ACTIONS(880), + [sym_sink] = ACTIONS(880), + [sym_integer] = ACTIONS(880), + [sym_float] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [sym_multiline_string] = ACTIONS(878), + [sym_character] = ACTIONS(878), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1017), + [sym__newline] = ACTIONS(878), }, [STATE(224)] = { - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_import] = ACTIONS(1023), - [anon_sym_test] = ACTIONS(1023), - [anon_sym_hide] = ACTIONS(1023), - [anon_sym_func] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_RPAREN] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1021), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_anyopaque] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_int] = ACTIONS(1023), - [anon_sym_uint] = ACTIONS(1023), - [anon_sym_float] = ACTIONS(1023), - [anon_sym_range] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_c_char] = ACTIONS(1023), - [anon_sym_c_schar] = ACTIONS(1023), - [anon_sym_c_uchar] = ACTIONS(1023), - [anon_sym_c_short] = ACTIONS(1023), - [anon_sym_c_ushort] = ACTIONS(1023), - [anon_sym_c_int] = ACTIONS(1023), - [anon_sym_c_uint] = ACTIONS(1023), - [anon_sym_c_long] = ACTIONS(1023), - [anon_sym_c_ulong] = ACTIONS(1023), - [anon_sym_c_longlong] = ACTIONS(1023), - [anon_sym_c_ulonglong] = ACTIONS(1023), - [anon_sym_c_float] = ACTIONS(1023), - [anon_sym_c_double] = ACTIONS(1023), - [anon_sym_c_longdouble] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1021), - [anon_sym_DASH_EQ] = ACTIONS(1021), - [anon_sym_STAR_EQ] = ACTIONS(1021), - [anon_sym_SLASH_EQ] = ACTIONS(1021), - [anon_sym_AMP_EQ] = ACTIONS(1021), - [anon_sym_PIPE_EQ] = ACTIONS(1021), - [anon_sym_xor_EQ] = ACTIONS(1021), - [anon_sym_LT_LT_EQ] = ACTIONS(1021), - [anon_sym_GT_GT_EQ] = ACTIONS(1021), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_yield] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_defer] = ACTIONS(1023), - [anon_sym_errdefer] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_else] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_expand] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_orelse] = ACTIONS(1023), - [anon_sym_catch] = ACTIONS(1023), - [anon_sym_or] = ACTIONS(1023), - [anon_sym_and] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1021), - [anon_sym_BANG_EQ] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1021), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_xor] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_LT_LT_PIPE] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [sym_none] = ACTIONS(1023), - [sym_undefined] = ACTIONS(1023), - [sym_sink] = ACTIONS(1023), - [sym_integer] = ACTIONS(1023), - [sym_float] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym_multiline_string] = ACTIONS(1021), - [sym_character] = ACTIONS(1021), + [ts_builtin_sym_end] = ACTIONS(882), + [sym_identifier] = ACTIONS(884), + [anon_sym_import] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_hide] = ACTIONS(884), + [anon_sym_func] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_struct] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_void] = ACTIONS(884), + [anon_sym_type] = ACTIONS(884), + [anon_sym_anyopaque] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_int] = ACTIONS(884), + [anon_sym_uint] = ACTIONS(884), + [anon_sym_float] = ACTIONS(884), + [anon_sym_range] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_c_char] = ACTIONS(884), + [anon_sym_c_schar] = ACTIONS(884), + [anon_sym_c_uchar] = ACTIONS(884), + [anon_sym_c_short] = ACTIONS(884), + [anon_sym_c_ushort] = ACTIONS(884), + [anon_sym_c_int] = ACTIONS(884), + [anon_sym_c_uint] = ACTIONS(884), + [anon_sym_c_long] = ACTIONS(884), + [anon_sym_c_ulong] = ACTIONS(884), + [anon_sym_c_longlong] = ACTIONS(884), + [anon_sym_c_ulonglong] = ACTIONS(884), + [anon_sym_c_float] = ACTIONS(884), + [anon_sym_c_double] = ACTIONS(884), + [anon_sym_c_longdouble] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), + [anon_sym_STAR_EQ] = ACTIONS(882), + [anon_sym_SLASH_EQ] = ACTIONS(882), + [anon_sym_AMP_EQ] = ACTIONS(882), + [anon_sym_PIPE_EQ] = ACTIONS(882), + [anon_sym_xor_EQ] = ACTIONS(882), + [anon_sym_LT_LT_EQ] = ACTIONS(882), + [anon_sym_GT_GT_EQ] = ACTIONS(882), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(882), + [anon_sym_return] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(884), + [anon_sym_break] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(884), + [anon_sym_defer] = ACTIONS(884), + [anon_sym_errdefer] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_else] = ACTIONS(884), + [anon_sym_while] = ACTIONS(884), + [anon_sym_expand] = ACTIONS(884), + [anon_sym_for] = ACTIONS(884), + [anon_sym_match] = ACTIONS(884), + [anon_sym_DOT_DOT] = ACTIONS(884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(882), + [anon_sym_orelse] = ACTIONS(884), + [anon_sym_catch] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_LT_LT_PIPE] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_SLASH] = ACTIONS(884), + [anon_sym_TILDE] = ACTIONS(882), + [anon_sym_try] = ACTIONS(884), + [anon_sym_DOT] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_true] = ACTIONS(884), + [anon_sym_false] = ACTIONS(884), + [sym_none] = ACTIONS(884), + [sym_undefined] = ACTIONS(884), + [sym_sink] = ACTIONS(884), + [sym_integer] = ACTIONS(884), + [sym_float] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym_multiline_string] = ACTIONS(882), + [sym_character] = ACTIONS(882), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1021), + [sym__newline] = ACTIONS(882), }, [STATE(225)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1737), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1737), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(886), + [sym_identifier] = ACTIONS(888), + [anon_sym_import] = ACTIONS(888), + [anon_sym_test] = ACTIONS(888), + [anon_sym_hide] = ACTIONS(888), + [anon_sym_func] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_COMMA] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_void] = ACTIONS(888), + [anon_sym_type] = ACTIONS(888), + [anon_sym_anyopaque] = ACTIONS(888), + [anon_sym_bool] = ACTIONS(888), + [anon_sym_int] = ACTIONS(888), + [anon_sym_uint] = ACTIONS(888), + [anon_sym_float] = ACTIONS(888), + [anon_sym_range] = ACTIONS(888), + [anon_sym_i8] = ACTIONS(888), + [anon_sym_i16] = ACTIONS(888), + [anon_sym_i32] = ACTIONS(888), + [anon_sym_i64] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(888), + [anon_sym_u16] = ACTIONS(888), + [anon_sym_u32] = ACTIONS(888), + [anon_sym_u64] = ACTIONS(888), + [anon_sym_isize] = ACTIONS(888), + [anon_sym_usize] = ACTIONS(888), + [anon_sym_f32] = ACTIONS(888), + [anon_sym_f64] = ACTIONS(888), + [anon_sym_c_char] = ACTIONS(888), + [anon_sym_c_schar] = ACTIONS(888), + [anon_sym_c_uchar] = ACTIONS(888), + [anon_sym_c_short] = ACTIONS(888), + [anon_sym_c_ushort] = ACTIONS(888), + [anon_sym_c_int] = ACTIONS(888), + [anon_sym_c_uint] = ACTIONS(888), + [anon_sym_c_long] = ACTIONS(888), + [anon_sym_c_ulong] = ACTIONS(888), + [anon_sym_c_longlong] = ACTIONS(888), + [anon_sym_c_ulonglong] = ACTIONS(888), + [anon_sym_c_float] = ACTIONS(888), + [anon_sym_c_double] = ACTIONS(888), + [anon_sym_c_longdouble] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(886), + [anon_sym_DASH_EQ] = ACTIONS(886), + [anon_sym_STAR_EQ] = ACTIONS(886), + [anon_sym_SLASH_EQ] = ACTIONS(886), + [anon_sym_AMP_EQ] = ACTIONS(886), + [anon_sym_PIPE_EQ] = ACTIONS(886), + [anon_sym_xor_EQ] = ACTIONS(886), + [anon_sym_LT_LT_EQ] = ACTIONS(886), + [anon_sym_GT_GT_EQ] = ACTIONS(886), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(886), + [anon_sym_return] = ACTIONS(888), + [anon_sym_yield] = ACTIONS(888), + [anon_sym_break] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_defer] = ACTIONS(888), + [anon_sym_errdefer] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_else] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_expand] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_match] = ACTIONS(888), + [anon_sym_DOT_DOT] = ACTIONS(888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(886), + [anon_sym_orelse] = ACTIONS(888), + [anon_sym_catch] = ACTIONS(888), + [anon_sym_or] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_xor] = ACTIONS(888), + [anon_sym_LT_LT] = ACTIONS(888), + [anon_sym_GT_GT] = ACTIONS(888), + [anon_sym_LT_LT_PIPE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(886), + [anon_sym_try] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_CARET] = ACTIONS(886), + [anon_sym_true] = ACTIONS(888), + [anon_sym_false] = ACTIONS(888), + [sym_none] = ACTIONS(888), + [sym_undefined] = ACTIONS(888), + [sym_sink] = ACTIONS(888), + [sym_integer] = ACTIONS(888), + [sym_float] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [sym_multiline_string] = ACTIONS(886), + [sym_character] = ACTIONS(886), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1027), + [sym__newline] = ACTIONS(886), }, [STATE(226)] = { - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_identifier] = ACTIONS(1031), - [anon_sym_import] = ACTIONS(1031), - [anon_sym_test] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_func] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_struct] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_void] = ACTIONS(1031), - [anon_sym_anyopaque] = ACTIONS(1031), - [anon_sym_bool] = ACTIONS(1031), - [anon_sym_int] = ACTIONS(1031), - [anon_sym_uint] = ACTIONS(1031), - [anon_sym_float] = ACTIONS(1031), - [anon_sym_range] = ACTIONS(1031), - [anon_sym_i8] = ACTIONS(1031), - [anon_sym_i16] = ACTIONS(1031), - [anon_sym_i32] = ACTIONS(1031), - [anon_sym_i64] = ACTIONS(1031), - [anon_sym_u8] = ACTIONS(1031), - [anon_sym_u16] = ACTIONS(1031), - [anon_sym_u32] = ACTIONS(1031), - [anon_sym_u64] = ACTIONS(1031), - [anon_sym_isize] = ACTIONS(1031), - [anon_sym_usize] = ACTIONS(1031), - [anon_sym_f32] = ACTIONS(1031), - [anon_sym_f64] = ACTIONS(1031), - [anon_sym_c_char] = ACTIONS(1031), - [anon_sym_c_schar] = ACTIONS(1031), - [anon_sym_c_uchar] = ACTIONS(1031), - [anon_sym_c_short] = ACTIONS(1031), - [anon_sym_c_ushort] = ACTIONS(1031), - [anon_sym_c_int] = ACTIONS(1031), - [anon_sym_c_uint] = ACTIONS(1031), - [anon_sym_c_long] = ACTIONS(1031), - [anon_sym_c_ulong] = ACTIONS(1031), - [anon_sym_c_longlong] = ACTIONS(1031), - [anon_sym_c_ulonglong] = ACTIONS(1031), - [anon_sym_c_float] = ACTIONS(1031), - [anon_sym_c_double] = ACTIONS(1031), - [anon_sym_c_longdouble] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_xor_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_defer] = ACTIONS(1031), - [anon_sym_errdefer] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_expand] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_orelse] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_or] = ACTIONS(1031), - [anon_sym_and] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_xor] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_LT_LT_PIPE] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_SLASH] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [sym_none] = ACTIONS(1031), - [sym_undefined] = ACTIONS(1031), - [sym_sink] = ACTIONS(1031), - [sym_integer] = ACTIONS(1031), - [sym_float] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym_multiline_string] = ACTIONS(1029), - [sym_character] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(379), + [sym_identifier] = ACTIONS(377), + [anon_sym_import] = ACTIONS(377), + [anon_sym_test] = ACTIONS(377), + [anon_sym_hide] = ACTIONS(377), + [anon_sym_func] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_void] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_anyopaque] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_int] = ACTIONS(377), + [anon_sym_uint] = ACTIONS(377), + [anon_sym_float] = ACTIONS(377), + [anon_sym_range] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_c_char] = ACTIONS(377), + [anon_sym_c_schar] = ACTIONS(377), + [anon_sym_c_uchar] = ACTIONS(377), + [anon_sym_c_short] = ACTIONS(377), + [anon_sym_c_ushort] = ACTIONS(377), + [anon_sym_c_int] = ACTIONS(377), + [anon_sym_c_uint] = ACTIONS(377), + [anon_sym_c_long] = ACTIONS(377), + [anon_sym_c_ulong] = ACTIONS(377), + [anon_sym_c_longlong] = ACTIONS(377), + [anon_sym_c_ulonglong] = ACTIONS(377), + [anon_sym_c_float] = ACTIONS(377), + [anon_sym_c_double] = ACTIONS(377), + [anon_sym_c_longdouble] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_xor_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(379), + [anon_sym_return] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(377), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_defer] = ACTIONS(377), + [anon_sym_errdefer] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(377), + [anon_sym_while] = ACTIONS(377), + [anon_sym_expand] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_orelse] = ACTIONS(377), + [anon_sym_catch] = ACTIONS(377), + [anon_sym_or] = ACTIONS(377), + [anon_sym_and] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_xor] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_LT_LT_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_try] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_none] = ACTIONS(377), + [sym_undefined] = ACTIONS(377), + [sym_sink] = ACTIONS(377), + [sym_integer] = ACTIONS(377), + [sym_float] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [sym_multiline_string] = ACTIONS(379), + [sym_character] = ACTIONS(379), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1029), + [sym__newline] = ACTIONS(379), }, [STATE(227)] = { - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1035), - [anon_sym_import] = ACTIONS(1035), - [anon_sym_test] = ACTIONS(1035), - [anon_sym_hide] = ACTIONS(1035), - [anon_sym_func] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_anyopaque] = ACTIONS(1035), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_uint] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_range] = ACTIONS(1035), - [anon_sym_i8] = ACTIONS(1035), - [anon_sym_i16] = ACTIONS(1035), - [anon_sym_i32] = ACTIONS(1035), - [anon_sym_i64] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1035), - [anon_sym_u16] = ACTIONS(1035), - [anon_sym_u32] = ACTIONS(1035), - [anon_sym_u64] = ACTIONS(1035), - [anon_sym_isize] = ACTIONS(1035), - [anon_sym_usize] = ACTIONS(1035), - [anon_sym_f32] = ACTIONS(1035), - [anon_sym_f64] = ACTIONS(1035), - [anon_sym_c_char] = ACTIONS(1035), - [anon_sym_c_schar] = ACTIONS(1035), - [anon_sym_c_uchar] = ACTIONS(1035), - [anon_sym_c_short] = ACTIONS(1035), - [anon_sym_c_ushort] = ACTIONS(1035), - [anon_sym_c_int] = ACTIONS(1035), - [anon_sym_c_uint] = ACTIONS(1035), - [anon_sym_c_long] = ACTIONS(1035), - [anon_sym_c_ulong] = ACTIONS(1035), - [anon_sym_c_longlong] = ACTIONS(1035), - [anon_sym_c_ulonglong] = ACTIONS(1035), - [anon_sym_c_float] = ACTIONS(1035), - [anon_sym_c_double] = ACTIONS(1035), - [anon_sym_c_longdouble] = ACTIONS(1035), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_AMP_EQ] = ACTIONS(1033), - [anon_sym_PIPE_EQ] = ACTIONS(1033), - [anon_sym_xor_EQ] = ACTIONS(1033), - [anon_sym_LT_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_GT_EQ] = ACTIONS(1033), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_yield] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_defer] = ACTIONS(1035), - [anon_sym_errdefer] = ACTIONS(1035), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_else] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [anon_sym_expand] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_match] = ACTIONS(1035), - [anon_sym_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_orelse] = ACTIONS(1035), - [anon_sym_catch] = ACTIONS(1035), - [anon_sym_or] = ACTIONS(1035), - [anon_sym_and] = ACTIONS(1035), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1035), - [anon_sym_xor] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1035), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_LT_LT_PIPE] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1035), - [anon_sym_false] = ACTIONS(1035), - [sym_none] = ACTIONS(1035), - [sym_undefined] = ACTIONS(1035), - [sym_sink] = ACTIONS(1035), - [sym_integer] = ACTIONS(1035), - [sym_float] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym_multiline_string] = ACTIONS(1033), - [sym_character] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(890), + [sym_identifier] = ACTIONS(892), + [anon_sym_import] = ACTIONS(892), + [anon_sym_test] = ACTIONS(892), + [anon_sym_hide] = ACTIONS(892), + [anon_sym_func] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_QMARK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_void] = ACTIONS(892), + [anon_sym_type] = ACTIONS(892), + [anon_sym_anyopaque] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_int] = ACTIONS(892), + [anon_sym_uint] = ACTIONS(892), + [anon_sym_float] = ACTIONS(892), + [anon_sym_range] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_c_char] = ACTIONS(892), + [anon_sym_c_schar] = ACTIONS(892), + [anon_sym_c_uchar] = ACTIONS(892), + [anon_sym_c_short] = ACTIONS(892), + [anon_sym_c_ushort] = ACTIONS(892), + [anon_sym_c_int] = ACTIONS(892), + [anon_sym_c_uint] = ACTIONS(892), + [anon_sym_c_long] = ACTIONS(892), + [anon_sym_c_ulong] = ACTIONS(892), + [anon_sym_c_longlong] = ACTIONS(892), + [anon_sym_c_ulonglong] = ACTIONS(892), + [anon_sym_c_float] = ACTIONS(892), + [anon_sym_c_double] = ACTIONS(892), + [anon_sym_c_longdouble] = ACTIONS(892), + [anon_sym_PLUS_EQ] = ACTIONS(890), + [anon_sym_DASH_EQ] = ACTIONS(890), + [anon_sym_STAR_EQ] = ACTIONS(890), + [anon_sym_SLASH_EQ] = ACTIONS(890), + [anon_sym_AMP_EQ] = ACTIONS(890), + [anon_sym_PIPE_EQ] = ACTIONS(890), + [anon_sym_xor_EQ] = ACTIONS(890), + [anon_sym_LT_LT_EQ] = ACTIONS(890), + [anon_sym_GT_GT_EQ] = ACTIONS(890), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(890), + [anon_sym_return] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_defer] = ACTIONS(892), + [anon_sym_errdefer] = ACTIONS(892), + [anon_sym_if] = ACTIONS(892), + [anon_sym_else] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [anon_sym_expand] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(890), + [anon_sym_orelse] = ACTIONS(892), + [anon_sym_catch] = ACTIONS(892), + [anon_sym_or] = ACTIONS(892), + [anon_sym_and] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(890), + [anon_sym_BANG_EQ] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_xor] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(892), + [anon_sym_LT_LT_PIPE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_SLASH] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_try] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(892), + [anon_sym_CARET] = ACTIONS(890), + [anon_sym_true] = ACTIONS(892), + [anon_sym_false] = ACTIONS(892), + [sym_none] = ACTIONS(892), + [sym_undefined] = ACTIONS(892), + [sym_sink] = ACTIONS(892), + [sym_integer] = ACTIONS(892), + [sym_float] = ACTIONS(890), + [anon_sym_DQUOTE] = ACTIONS(890), + [sym_multiline_string] = ACTIONS(890), + [sym_character] = ACTIONS(890), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1033), + [sym__newline] = ACTIONS(890), }, [STATE(228)] = { - [ts_builtin_sym_end] = ACTIONS(1037), - [sym_identifier] = ACTIONS(1039), - [anon_sym_import] = ACTIONS(1039), - [anon_sym_test] = ACTIONS(1039), - [anon_sym_hide] = ACTIONS(1039), - [anon_sym_func] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1039), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1037), - [anon_sym_void] = ACTIONS(1039), - [anon_sym_anyopaque] = ACTIONS(1039), - [anon_sym_bool] = ACTIONS(1039), - [anon_sym_int] = ACTIONS(1039), - [anon_sym_uint] = ACTIONS(1039), - [anon_sym_float] = ACTIONS(1039), - [anon_sym_range] = ACTIONS(1039), - [anon_sym_i8] = ACTIONS(1039), - [anon_sym_i16] = ACTIONS(1039), - [anon_sym_i32] = ACTIONS(1039), - [anon_sym_i64] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1039), - [anon_sym_u16] = ACTIONS(1039), - [anon_sym_u32] = ACTIONS(1039), - [anon_sym_u64] = ACTIONS(1039), - [anon_sym_isize] = ACTIONS(1039), - [anon_sym_usize] = ACTIONS(1039), - [anon_sym_f32] = ACTIONS(1039), - [anon_sym_f64] = ACTIONS(1039), - [anon_sym_c_char] = ACTIONS(1039), - [anon_sym_c_schar] = ACTIONS(1039), - [anon_sym_c_uchar] = ACTIONS(1039), - [anon_sym_c_short] = ACTIONS(1039), - [anon_sym_c_ushort] = ACTIONS(1039), - [anon_sym_c_int] = ACTIONS(1039), - [anon_sym_c_uint] = ACTIONS(1039), - [anon_sym_c_long] = ACTIONS(1039), - [anon_sym_c_ulong] = ACTIONS(1039), - [anon_sym_c_longlong] = ACTIONS(1039), - [anon_sym_c_ulonglong] = ACTIONS(1039), - [anon_sym_c_float] = ACTIONS(1039), - [anon_sym_c_double] = ACTIONS(1039), - [anon_sym_c_longdouble] = ACTIONS(1039), - [anon_sym_PLUS_EQ] = ACTIONS(1037), - [anon_sym_DASH_EQ] = ACTIONS(1037), - [anon_sym_STAR_EQ] = ACTIONS(1037), - [anon_sym_SLASH_EQ] = ACTIONS(1037), - [anon_sym_AMP_EQ] = ACTIONS(1037), - [anon_sym_PIPE_EQ] = ACTIONS(1037), - [anon_sym_xor_EQ] = ACTIONS(1037), - [anon_sym_LT_LT_EQ] = ACTIONS(1037), - [anon_sym_GT_GT_EQ] = ACTIONS(1037), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_yield] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_defer] = ACTIONS(1039), - [anon_sym_errdefer] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [anon_sym_expand] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_match] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), - [anon_sym_orelse] = ACTIONS(1039), - [anon_sym_catch] = ACTIONS(1039), - [anon_sym_or] = ACTIONS(1039), - [anon_sym_and] = ACTIONS(1039), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_BANG_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_EQ] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_xor] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [anon_sym_LT_LT_PIPE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_SLASH] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1039), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_true] = ACTIONS(1039), - [anon_sym_false] = ACTIONS(1039), - [sym_none] = ACTIONS(1039), - [sym_undefined] = ACTIONS(1039), - [sym_sink] = ACTIONS(1039), - [sym_integer] = ACTIONS(1039), - [sym_float] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [sym_multiline_string] = ACTIONS(1037), - [sym_character] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [anon_sym_import] = ACTIONS(896), + [anon_sym_test] = ACTIONS(896), + [anon_sym_hide] = ACTIONS(896), + [anon_sym_func] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_QMARK] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_void] = ACTIONS(896), + [anon_sym_type] = ACTIONS(896), + [anon_sym_anyopaque] = ACTIONS(896), + [anon_sym_bool] = ACTIONS(896), + [anon_sym_int] = ACTIONS(896), + [anon_sym_uint] = ACTIONS(896), + [anon_sym_float] = ACTIONS(896), + [anon_sym_range] = ACTIONS(896), + [anon_sym_i8] = ACTIONS(896), + [anon_sym_i16] = ACTIONS(896), + [anon_sym_i32] = ACTIONS(896), + [anon_sym_i64] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(896), + [anon_sym_u16] = ACTIONS(896), + [anon_sym_u32] = ACTIONS(896), + [anon_sym_u64] = ACTIONS(896), + [anon_sym_isize] = ACTIONS(896), + [anon_sym_usize] = ACTIONS(896), + [anon_sym_f32] = ACTIONS(896), + [anon_sym_f64] = ACTIONS(896), + [anon_sym_c_char] = ACTIONS(896), + [anon_sym_c_schar] = ACTIONS(896), + [anon_sym_c_uchar] = ACTIONS(896), + [anon_sym_c_short] = ACTIONS(896), + [anon_sym_c_ushort] = ACTIONS(896), + [anon_sym_c_int] = ACTIONS(896), + [anon_sym_c_uint] = ACTIONS(896), + [anon_sym_c_long] = ACTIONS(896), + [anon_sym_c_ulong] = ACTIONS(896), + [anon_sym_c_longlong] = ACTIONS(896), + [anon_sym_c_ulonglong] = ACTIONS(896), + [anon_sym_c_float] = ACTIONS(896), + [anon_sym_c_double] = ACTIONS(896), + [anon_sym_c_longdouble] = ACTIONS(896), + [anon_sym_PLUS_EQ] = ACTIONS(894), + [anon_sym_DASH_EQ] = ACTIONS(894), + [anon_sym_STAR_EQ] = ACTIONS(894), + [anon_sym_SLASH_EQ] = ACTIONS(894), + [anon_sym_AMP_EQ] = ACTIONS(894), + [anon_sym_PIPE_EQ] = ACTIONS(894), + [anon_sym_xor_EQ] = ACTIONS(894), + [anon_sym_LT_LT_EQ] = ACTIONS(894), + [anon_sym_GT_GT_EQ] = ACTIONS(894), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_defer] = ACTIONS(896), + [anon_sym_errdefer] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_expand] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_match] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(894), + [anon_sym_orelse] = ACTIONS(896), + [anon_sym_catch] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(896), + [anon_sym_LT_LT_PIPE] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_try] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), + [sym_none] = ACTIONS(896), + [sym_undefined] = ACTIONS(896), + [sym_sink] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym_multiline_string] = ACTIONS(894), + [sym_character] = ACTIONS(894), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1037), + [sym__newline] = ACTIONS(894), }, [STATE(229)] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(1043), - [anon_sym_import] = ACTIONS(1043), - [anon_sym_test] = ACTIONS(1043), - [anon_sym_hide] = ACTIONS(1043), - [anon_sym_func] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_void] = ACTIONS(1043), - [anon_sym_anyopaque] = ACTIONS(1043), - [anon_sym_bool] = ACTIONS(1043), - [anon_sym_int] = ACTIONS(1043), - [anon_sym_uint] = ACTIONS(1043), - [anon_sym_float] = ACTIONS(1043), - [anon_sym_range] = ACTIONS(1043), - [anon_sym_i8] = ACTIONS(1043), - [anon_sym_i16] = ACTIONS(1043), - [anon_sym_i32] = ACTIONS(1043), - [anon_sym_i64] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1043), - [anon_sym_u16] = ACTIONS(1043), - [anon_sym_u32] = ACTIONS(1043), - [anon_sym_u64] = ACTIONS(1043), - [anon_sym_isize] = ACTIONS(1043), - [anon_sym_usize] = ACTIONS(1043), - [anon_sym_f32] = ACTIONS(1043), - [anon_sym_f64] = ACTIONS(1043), - [anon_sym_c_char] = ACTIONS(1043), - [anon_sym_c_schar] = ACTIONS(1043), - [anon_sym_c_uchar] = ACTIONS(1043), - [anon_sym_c_short] = ACTIONS(1043), - [anon_sym_c_ushort] = ACTIONS(1043), - [anon_sym_c_int] = ACTIONS(1043), - [anon_sym_c_uint] = ACTIONS(1043), - [anon_sym_c_long] = ACTIONS(1043), - [anon_sym_c_ulong] = ACTIONS(1043), - [anon_sym_c_longlong] = ACTIONS(1043), - [anon_sym_c_ulonglong] = ACTIONS(1043), - [anon_sym_c_float] = ACTIONS(1043), - [anon_sym_c_double] = ACTIONS(1043), - [anon_sym_c_longdouble] = ACTIONS(1043), - [anon_sym_PLUS_EQ] = ACTIONS(1041), - [anon_sym_DASH_EQ] = ACTIONS(1041), - [anon_sym_STAR_EQ] = ACTIONS(1041), - [anon_sym_SLASH_EQ] = ACTIONS(1041), - [anon_sym_AMP_EQ] = ACTIONS(1041), - [anon_sym_PIPE_EQ] = ACTIONS(1041), - [anon_sym_xor_EQ] = ACTIONS(1041), - [anon_sym_LT_LT_EQ] = ACTIONS(1041), - [anon_sym_GT_GT_EQ] = ACTIONS(1041), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_defer] = ACTIONS(1043), - [anon_sym_errdefer] = ACTIONS(1043), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_expand] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_match] = ACTIONS(1043), - [anon_sym_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), - [anon_sym_orelse] = ACTIONS(1043), - [anon_sym_catch] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_and] = ACTIONS(1043), - [anon_sym_EQ_EQ] = ACTIONS(1041), - [anon_sym_BANG_EQ] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1043), - [anon_sym_GT_EQ] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_xor] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1043), - [anon_sym_GT_GT] = ACTIONS(1043), - [anon_sym_LT_LT_PIPE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(1043), - [anon_sym_false] = ACTIONS(1043), - [sym_none] = ACTIONS(1043), - [sym_undefined] = ACTIONS(1043), - [sym_sink] = ACTIONS(1043), - [sym_integer] = ACTIONS(1043), - [sym_float] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [sym_multiline_string] = ACTIONS(1041), - [sym_character] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(900), + [anon_sym_import] = ACTIONS(900), + [anon_sym_test] = ACTIONS(900), + [anon_sym_hide] = ACTIONS(900), + [anon_sym_func] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_EQ] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_void] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_anyopaque] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_int] = ACTIONS(900), + [anon_sym_uint] = ACTIONS(900), + [anon_sym_float] = ACTIONS(900), + [anon_sym_range] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_c_char] = ACTIONS(900), + [anon_sym_c_schar] = ACTIONS(900), + [anon_sym_c_uchar] = ACTIONS(900), + [anon_sym_c_short] = ACTIONS(900), + [anon_sym_c_ushort] = ACTIONS(900), + [anon_sym_c_int] = ACTIONS(900), + [anon_sym_c_uint] = ACTIONS(900), + [anon_sym_c_long] = ACTIONS(900), + [anon_sym_c_ulong] = ACTIONS(900), + [anon_sym_c_longlong] = ACTIONS(900), + [anon_sym_c_ulonglong] = ACTIONS(900), + [anon_sym_c_float] = ACTIONS(900), + [anon_sym_c_double] = ACTIONS(900), + [anon_sym_c_longdouble] = ACTIONS(900), + [anon_sym_PLUS_EQ] = ACTIONS(898), + [anon_sym_DASH_EQ] = ACTIONS(898), + [anon_sym_STAR_EQ] = ACTIONS(898), + [anon_sym_SLASH_EQ] = ACTIONS(898), + [anon_sym_AMP_EQ] = ACTIONS(898), + [anon_sym_PIPE_EQ] = ACTIONS(898), + [anon_sym_xor_EQ] = ACTIONS(898), + [anon_sym_LT_LT_EQ] = ACTIONS(898), + [anon_sym_GT_GT_EQ] = ACTIONS(898), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(898), + [anon_sym_return] = ACTIONS(900), + [anon_sym_yield] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_defer] = ACTIONS(900), + [anon_sym_errdefer] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_expand] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_DOT_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(898), + [anon_sym_orelse] = ACTIONS(900), + [anon_sym_catch] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_LT_LT] = ACTIONS(900), + [anon_sym_GT_GT] = ACTIONS(900), + [anon_sym_LT_LT_PIPE] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_try] = ACTIONS(900), + [anon_sym_DOT] = ACTIONS(900), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [sym_none] = ACTIONS(900), + [sym_undefined] = ACTIONS(900), + [sym_sink] = ACTIONS(900), + [sym_integer] = ACTIONS(900), + [sym_float] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_multiline_string] = ACTIONS(898), + [sym_character] = ACTIONS(898), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1041), + [sym__newline] = ACTIONS(898), }, [STATE(230)] = { - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_identifier] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(1047), - [anon_sym_test] = ACTIONS(1047), - [anon_sym_hide] = ACTIONS(1047), - [anon_sym_func] = ACTIONS(1047), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_struct] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1045), - [anon_sym_RPAREN] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1047), - [anon_sym_DOLLAR] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_void] = ACTIONS(1047), - [anon_sym_anyopaque] = ACTIONS(1047), - [anon_sym_bool] = ACTIONS(1047), - [anon_sym_int] = ACTIONS(1047), - [anon_sym_uint] = ACTIONS(1047), - [anon_sym_float] = ACTIONS(1047), - [anon_sym_range] = ACTIONS(1047), - [anon_sym_i8] = ACTIONS(1047), - [anon_sym_i16] = ACTIONS(1047), - [anon_sym_i32] = ACTIONS(1047), - [anon_sym_i64] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1047), - [anon_sym_u16] = ACTIONS(1047), - [anon_sym_u32] = ACTIONS(1047), - [anon_sym_u64] = ACTIONS(1047), - [anon_sym_isize] = ACTIONS(1047), - [anon_sym_usize] = ACTIONS(1047), - [anon_sym_f32] = ACTIONS(1047), - [anon_sym_f64] = ACTIONS(1047), - [anon_sym_c_char] = ACTIONS(1047), - [anon_sym_c_schar] = ACTIONS(1047), - [anon_sym_c_uchar] = ACTIONS(1047), - [anon_sym_c_short] = ACTIONS(1047), - [anon_sym_c_ushort] = ACTIONS(1047), - [anon_sym_c_int] = ACTIONS(1047), - [anon_sym_c_uint] = ACTIONS(1047), - [anon_sym_c_long] = ACTIONS(1047), - [anon_sym_c_ulong] = ACTIONS(1047), - [anon_sym_c_longlong] = ACTIONS(1047), - [anon_sym_c_ulonglong] = ACTIONS(1047), - [anon_sym_c_float] = ACTIONS(1047), - [anon_sym_c_double] = ACTIONS(1047), - [anon_sym_c_longdouble] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1045), - [anon_sym_DASH_EQ] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1045), - [anon_sym_SLASH_EQ] = ACTIONS(1045), - [anon_sym_AMP_EQ] = ACTIONS(1045), - [anon_sym_PIPE_EQ] = ACTIONS(1045), - [anon_sym_xor_EQ] = ACTIONS(1045), - [anon_sym_LT_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_GT_EQ] = ACTIONS(1045), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1047), - [anon_sym_yield] = ACTIONS(1047), - [anon_sym_break] = ACTIONS(1047), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_defer] = ACTIONS(1047), - [anon_sym_errdefer] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1047), - [anon_sym_else] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1047), - [anon_sym_expand] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_match] = ACTIONS(1047), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1045), - [anon_sym_orelse] = ACTIONS(1047), - [anon_sym_catch] = ACTIONS(1047), - [anon_sym_or] = ACTIONS(1047), - [anon_sym_and] = ACTIONS(1047), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1047), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1047), - [anon_sym_xor] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1047), - [anon_sym_GT_GT] = ACTIONS(1047), - [anon_sym_LT_LT_PIPE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1047), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [sym_none] = ACTIONS(1047), - [sym_undefined] = ACTIONS(1047), - [sym_sink] = ACTIONS(1047), - [sym_integer] = ACTIONS(1047), - [sym_float] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [sym_multiline_string] = ACTIONS(1045), - [sym_character] = ACTIONS(1045), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [anon_sym_import] = ACTIONS(904), + [anon_sym_test] = ACTIONS(904), + [anon_sym_hide] = ACTIONS(904), + [anon_sym_func] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_void] = ACTIONS(904), + [anon_sym_type] = ACTIONS(904), + [anon_sym_anyopaque] = ACTIONS(904), + [anon_sym_bool] = ACTIONS(904), + [anon_sym_int] = ACTIONS(904), + [anon_sym_uint] = ACTIONS(904), + [anon_sym_float] = ACTIONS(904), + [anon_sym_range] = ACTIONS(904), + [anon_sym_i8] = ACTIONS(904), + [anon_sym_i16] = ACTIONS(904), + [anon_sym_i32] = ACTIONS(904), + [anon_sym_i64] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(904), + [anon_sym_u16] = ACTIONS(904), + [anon_sym_u32] = ACTIONS(904), + [anon_sym_u64] = ACTIONS(904), + [anon_sym_isize] = ACTIONS(904), + [anon_sym_usize] = ACTIONS(904), + [anon_sym_f32] = ACTIONS(904), + [anon_sym_f64] = ACTIONS(904), + [anon_sym_c_char] = ACTIONS(904), + [anon_sym_c_schar] = ACTIONS(904), + [anon_sym_c_uchar] = ACTIONS(904), + [anon_sym_c_short] = ACTIONS(904), + [anon_sym_c_ushort] = ACTIONS(904), + [anon_sym_c_int] = ACTIONS(904), + [anon_sym_c_uint] = ACTIONS(904), + [anon_sym_c_long] = ACTIONS(904), + [anon_sym_c_ulong] = ACTIONS(904), + [anon_sym_c_longlong] = ACTIONS(904), + [anon_sym_c_ulonglong] = ACTIONS(904), + [anon_sym_c_float] = ACTIONS(904), + [anon_sym_c_double] = ACTIONS(904), + [anon_sym_c_longdouble] = ACTIONS(904), + [anon_sym_PLUS_EQ] = ACTIONS(902), + [anon_sym_DASH_EQ] = ACTIONS(902), + [anon_sym_STAR_EQ] = ACTIONS(902), + [anon_sym_SLASH_EQ] = ACTIONS(902), + [anon_sym_AMP_EQ] = ACTIONS(902), + [anon_sym_PIPE_EQ] = ACTIONS(902), + [anon_sym_xor_EQ] = ACTIONS(902), + [anon_sym_LT_LT_EQ] = ACTIONS(902), + [anon_sym_GT_GT_EQ] = ACTIONS(902), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(902), + [anon_sym_return] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_defer] = ACTIONS(904), + [anon_sym_errdefer] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_expand] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_match] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(902), + [anon_sym_orelse] = ACTIONS(904), + [anon_sym_catch] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(904), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_LT_LT_PIPE] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_try] = ACTIONS(904), + [anon_sym_DOT] = ACTIONS(904), + [anon_sym_CARET] = ACTIONS(902), + [anon_sym_true] = ACTIONS(904), + [anon_sym_false] = ACTIONS(904), + [sym_none] = ACTIONS(904), + [sym_undefined] = ACTIONS(904), + [sym_sink] = ACTIONS(904), + [sym_integer] = ACTIONS(904), + [sym_float] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_multiline_string] = ACTIONS(902), + [sym_character] = ACTIONS(902), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1045), + [sym__newline] = ACTIONS(902), }, [STATE(231)] = { - [ts_builtin_sym_end] = ACTIONS(1049), - [sym_identifier] = ACTIONS(1051), - [anon_sym_import] = ACTIONS(1051), - [anon_sym_test] = ACTIONS(1051), - [anon_sym_hide] = ACTIONS(1051), - [anon_sym_func] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_RPAREN] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_void] = ACTIONS(1051), - [anon_sym_anyopaque] = ACTIONS(1051), - [anon_sym_bool] = ACTIONS(1051), - [anon_sym_int] = ACTIONS(1051), - [anon_sym_uint] = ACTIONS(1051), - [anon_sym_float] = ACTIONS(1051), - [anon_sym_range] = ACTIONS(1051), - [anon_sym_i8] = ACTIONS(1051), - [anon_sym_i16] = ACTIONS(1051), - [anon_sym_i32] = ACTIONS(1051), - [anon_sym_i64] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1051), - [anon_sym_u16] = ACTIONS(1051), - [anon_sym_u32] = ACTIONS(1051), - [anon_sym_u64] = ACTIONS(1051), - [anon_sym_isize] = ACTIONS(1051), - [anon_sym_usize] = ACTIONS(1051), - [anon_sym_f32] = ACTIONS(1051), - [anon_sym_f64] = ACTIONS(1051), - [anon_sym_c_char] = ACTIONS(1051), - [anon_sym_c_schar] = ACTIONS(1051), - [anon_sym_c_uchar] = ACTIONS(1051), - [anon_sym_c_short] = ACTIONS(1051), - [anon_sym_c_ushort] = ACTIONS(1051), - [anon_sym_c_int] = ACTIONS(1051), - [anon_sym_c_uint] = ACTIONS(1051), - [anon_sym_c_long] = ACTIONS(1051), - [anon_sym_c_ulong] = ACTIONS(1051), - [anon_sym_c_longlong] = ACTIONS(1051), - [anon_sym_c_ulonglong] = ACTIONS(1051), - [anon_sym_c_float] = ACTIONS(1051), - [anon_sym_c_double] = ACTIONS(1051), - [anon_sym_c_longdouble] = ACTIONS(1051), - [anon_sym_PLUS_EQ] = ACTIONS(1049), - [anon_sym_DASH_EQ] = ACTIONS(1049), - [anon_sym_STAR_EQ] = ACTIONS(1049), - [anon_sym_SLASH_EQ] = ACTIONS(1049), - [anon_sym_AMP_EQ] = ACTIONS(1049), - [anon_sym_PIPE_EQ] = ACTIONS(1049), - [anon_sym_xor_EQ] = ACTIONS(1049), - [anon_sym_LT_LT_EQ] = ACTIONS(1049), - [anon_sym_GT_GT_EQ] = ACTIONS(1049), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_defer] = ACTIONS(1051), - [anon_sym_errdefer] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_else] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_expand] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_match] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), - [anon_sym_orelse] = ACTIONS(1051), - [anon_sym_catch] = ACTIONS(1051), - [anon_sym_or] = ACTIONS(1051), - [anon_sym_and] = ACTIONS(1051), - [anon_sym_EQ_EQ] = ACTIONS(1049), - [anon_sym_BANG_EQ] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1049), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_GT_EQ] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_xor] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_GT_GT] = ACTIONS(1051), - [anon_sym_LT_LT_PIPE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_true] = ACTIONS(1051), - [anon_sym_false] = ACTIONS(1051), - [sym_none] = ACTIONS(1051), - [sym_undefined] = ACTIONS(1051), - [sym_sink] = ACTIONS(1051), - [sym_integer] = ACTIONS(1051), - [sym_float] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_multiline_string] = ACTIONS(1049), - [sym_character] = ACTIONS(1049), + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [anon_sym_import] = ACTIONS(908), + [anon_sym_test] = ACTIONS(908), + [anon_sym_hide] = ACTIONS(908), + [anon_sym_func] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_QMARK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_void] = ACTIONS(908), + [anon_sym_type] = ACTIONS(908), + [anon_sym_anyopaque] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_int] = ACTIONS(908), + [anon_sym_uint] = ACTIONS(908), + [anon_sym_float] = ACTIONS(908), + [anon_sym_range] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_c_char] = ACTIONS(908), + [anon_sym_c_schar] = ACTIONS(908), + [anon_sym_c_uchar] = ACTIONS(908), + [anon_sym_c_short] = ACTIONS(908), + [anon_sym_c_ushort] = ACTIONS(908), + [anon_sym_c_int] = ACTIONS(908), + [anon_sym_c_uint] = ACTIONS(908), + [anon_sym_c_long] = ACTIONS(908), + [anon_sym_c_ulong] = ACTIONS(908), + [anon_sym_c_longlong] = ACTIONS(908), + [anon_sym_c_ulonglong] = ACTIONS(908), + [anon_sym_c_float] = ACTIONS(908), + [anon_sym_c_double] = ACTIONS(908), + [anon_sym_c_longdouble] = ACTIONS(908), + [anon_sym_PLUS_EQ] = ACTIONS(906), + [anon_sym_DASH_EQ] = ACTIONS(906), + [anon_sym_STAR_EQ] = ACTIONS(906), + [anon_sym_SLASH_EQ] = ACTIONS(906), + [anon_sym_AMP_EQ] = ACTIONS(906), + [anon_sym_PIPE_EQ] = ACTIONS(906), + [anon_sym_xor_EQ] = ACTIONS(906), + [anon_sym_LT_LT_EQ] = ACTIONS(906), + [anon_sym_GT_GT_EQ] = ACTIONS(906), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(906), + [anon_sym_return] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_defer] = ACTIONS(908), + [anon_sym_errdefer] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_expand] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_match] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(906), + [anon_sym_orelse] = ACTIONS(908), + [anon_sym_catch] = ACTIONS(908), + [anon_sym_or] = ACTIONS(908), + [anon_sym_and] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_xor] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(908), + [anon_sym_GT_GT] = ACTIONS(908), + [anon_sym_LT_LT_PIPE] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_try] = ACTIONS(908), + [anon_sym_DOT] = ACTIONS(908), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_true] = ACTIONS(908), + [anon_sym_false] = ACTIONS(908), + [sym_none] = ACTIONS(908), + [sym_undefined] = ACTIONS(908), + [sym_sink] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [sym_float] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_multiline_string] = ACTIONS(906), + [sym_character] = ACTIONS(906), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1049), + [sym__newline] = ACTIONS(906), }, [STATE(232)] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1055), - [anon_sym_import] = ACTIONS(1055), - [anon_sym_test] = ACTIONS(1055), - [anon_sym_hide] = ACTIONS(1055), - [anon_sym_func] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_struct] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_RPAREN] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_COMMA] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_void] = ACTIONS(1055), - [anon_sym_anyopaque] = ACTIONS(1055), - [anon_sym_bool] = ACTIONS(1055), - [anon_sym_int] = ACTIONS(1055), - [anon_sym_uint] = ACTIONS(1055), - [anon_sym_float] = ACTIONS(1055), - [anon_sym_range] = ACTIONS(1055), - [anon_sym_i8] = ACTIONS(1055), - [anon_sym_i16] = ACTIONS(1055), - [anon_sym_i32] = ACTIONS(1055), - [anon_sym_i64] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1055), - [anon_sym_u16] = ACTIONS(1055), - [anon_sym_u32] = ACTIONS(1055), - [anon_sym_u64] = ACTIONS(1055), - [anon_sym_isize] = ACTIONS(1055), - [anon_sym_usize] = ACTIONS(1055), - [anon_sym_f32] = ACTIONS(1055), - [anon_sym_f64] = ACTIONS(1055), - [anon_sym_c_char] = ACTIONS(1055), - [anon_sym_c_schar] = ACTIONS(1055), - [anon_sym_c_uchar] = ACTIONS(1055), - [anon_sym_c_short] = ACTIONS(1055), - [anon_sym_c_ushort] = ACTIONS(1055), - [anon_sym_c_int] = ACTIONS(1055), - [anon_sym_c_uint] = ACTIONS(1055), - [anon_sym_c_long] = ACTIONS(1055), - [anon_sym_c_ulong] = ACTIONS(1055), - [anon_sym_c_longlong] = ACTIONS(1055), - [anon_sym_c_ulonglong] = ACTIONS(1055), - [anon_sym_c_float] = ACTIONS(1055), - [anon_sym_c_double] = ACTIONS(1055), - [anon_sym_c_longdouble] = ACTIONS(1055), - [anon_sym_PLUS_EQ] = ACTIONS(1053), - [anon_sym_DASH_EQ] = ACTIONS(1053), - [anon_sym_STAR_EQ] = ACTIONS(1053), - [anon_sym_SLASH_EQ] = ACTIONS(1053), - [anon_sym_AMP_EQ] = ACTIONS(1053), - [anon_sym_PIPE_EQ] = ACTIONS(1053), - [anon_sym_xor_EQ] = ACTIONS(1053), - [anon_sym_LT_LT_EQ] = ACTIONS(1053), - [anon_sym_GT_GT_EQ] = ACTIONS(1053), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_yield] = ACTIONS(1055), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1055), - [anon_sym_defer] = ACTIONS(1055), - [anon_sym_errdefer] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1055), - [anon_sym_else] = ACTIONS(1055), - [anon_sym_while] = ACTIONS(1055), - [anon_sym_expand] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1055), - [anon_sym_match] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), - [anon_sym_orelse] = ACTIONS(1055), - [anon_sym_catch] = ACTIONS(1055), - [anon_sym_or] = ACTIONS(1055), - [anon_sym_and] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(1053), - [anon_sym_BANG_EQ] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1053), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_EQ] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_xor] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1055), - [anon_sym_LT_LT_PIPE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1055), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_true] = ACTIONS(1055), - [anon_sym_false] = ACTIONS(1055), - [sym_none] = ACTIONS(1055), - [sym_undefined] = ACTIONS(1055), - [sym_sink] = ACTIONS(1055), - [sym_integer] = ACTIONS(1055), - [sym_float] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [sym_multiline_string] = ACTIONS(1053), - [sym_character] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(910), + [sym_identifier] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_test] = ACTIONS(912), + [anon_sym_hide] = ACTIONS(912), + [anon_sym_func] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_DOLLAR] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_QMARK] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_void] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_anyopaque] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_uint] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_range] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_c_char] = ACTIONS(912), + [anon_sym_c_schar] = ACTIONS(912), + [anon_sym_c_uchar] = ACTIONS(912), + [anon_sym_c_short] = ACTIONS(912), + [anon_sym_c_ushort] = ACTIONS(912), + [anon_sym_c_int] = ACTIONS(912), + [anon_sym_c_uint] = ACTIONS(912), + [anon_sym_c_long] = ACTIONS(912), + [anon_sym_c_ulong] = ACTIONS(912), + [anon_sym_c_longlong] = ACTIONS(912), + [anon_sym_c_ulonglong] = ACTIONS(912), + [anon_sym_c_float] = ACTIONS(912), + [anon_sym_c_double] = ACTIONS(912), + [anon_sym_c_longdouble] = ACTIONS(912), + [anon_sym_PLUS_EQ] = ACTIONS(910), + [anon_sym_DASH_EQ] = ACTIONS(910), + [anon_sym_STAR_EQ] = ACTIONS(910), + [anon_sym_SLASH_EQ] = ACTIONS(910), + [anon_sym_AMP_EQ] = ACTIONS(910), + [anon_sym_PIPE_EQ] = ACTIONS(910), + [anon_sym_xor_EQ] = ACTIONS(910), + [anon_sym_LT_LT_EQ] = ACTIONS(910), + [anon_sym_GT_GT_EQ] = ACTIONS(910), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_defer] = ACTIONS(912), + [anon_sym_errdefer] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_expand] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_match] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(910), + [anon_sym_orelse] = ACTIONS(912), + [anon_sym_catch] = ACTIONS(912), + [anon_sym_or] = ACTIONS(912), + [anon_sym_and] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_xor] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(912), + [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_LT_LT_PIPE] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_try] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_true] = ACTIONS(912), + [anon_sym_false] = ACTIONS(912), + [sym_none] = ACTIONS(912), + [sym_undefined] = ACTIONS(912), + [sym_sink] = ACTIONS(912), + [sym_integer] = ACTIONS(912), + [sym_float] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_multiline_string] = ACTIONS(910), + [sym_character] = ACTIONS(910), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1053), + [sym__newline] = ACTIONS(910), }, [STATE(233)] = { - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_test] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_func] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_struct] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_anyopaque] = ACTIONS(1059), - [anon_sym_bool] = ACTIONS(1059), - [anon_sym_int] = ACTIONS(1059), - [anon_sym_uint] = ACTIONS(1059), - [anon_sym_float] = ACTIONS(1059), - [anon_sym_range] = ACTIONS(1059), - [anon_sym_i8] = ACTIONS(1059), - [anon_sym_i16] = ACTIONS(1059), - [anon_sym_i32] = ACTIONS(1059), - [anon_sym_i64] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1059), - [anon_sym_u16] = ACTIONS(1059), - [anon_sym_u32] = ACTIONS(1059), - [anon_sym_u64] = ACTIONS(1059), - [anon_sym_isize] = ACTIONS(1059), - [anon_sym_usize] = ACTIONS(1059), - [anon_sym_f32] = ACTIONS(1059), - [anon_sym_f64] = ACTIONS(1059), - [anon_sym_c_char] = ACTIONS(1059), - [anon_sym_c_schar] = ACTIONS(1059), - [anon_sym_c_uchar] = ACTIONS(1059), - [anon_sym_c_short] = ACTIONS(1059), - [anon_sym_c_ushort] = ACTIONS(1059), - [anon_sym_c_int] = ACTIONS(1059), - [anon_sym_c_uint] = ACTIONS(1059), - [anon_sym_c_long] = ACTIONS(1059), - [anon_sym_c_ulong] = ACTIONS(1059), - [anon_sym_c_longlong] = ACTIONS(1059), - [anon_sym_c_ulonglong] = ACTIONS(1059), - [anon_sym_c_float] = ACTIONS(1059), - [anon_sym_c_double] = ACTIONS(1059), - [anon_sym_c_longdouble] = ACTIONS(1059), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_AMP_EQ] = ACTIONS(1057), - [anon_sym_PIPE_EQ] = ACTIONS(1057), - [anon_sym_xor_EQ] = ACTIONS(1057), - [anon_sym_LT_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_GT_EQ] = ACTIONS(1057), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_defer] = ACTIONS(1059), - [anon_sym_errdefer] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_expand] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), - [anon_sym_orelse] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1057), - [anon_sym_BANG_EQ] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT_PIPE] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [sym_none] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [sym_sink] = ACTIONS(1059), - [sym_integer] = ACTIONS(1059), - [sym_float] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [sym_multiline_string] = ACTIONS(1057), - [sym_character] = ACTIONS(1057), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1057), + [sym__newline] = ACTIONS(466), }, [STATE(234)] = { - [ts_builtin_sym_end] = ACTIONS(1061), - [sym_identifier] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(1063), - [anon_sym_test] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_func] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_anyopaque] = ACTIONS(1063), - [anon_sym_bool] = ACTIONS(1063), - [anon_sym_int] = ACTIONS(1063), - [anon_sym_uint] = ACTIONS(1063), - [anon_sym_float] = ACTIONS(1063), - [anon_sym_range] = ACTIONS(1063), - [anon_sym_i8] = ACTIONS(1063), - [anon_sym_i16] = ACTIONS(1063), - [anon_sym_i32] = ACTIONS(1063), - [anon_sym_i64] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(1063), - [anon_sym_u16] = ACTIONS(1063), - [anon_sym_u32] = ACTIONS(1063), - [anon_sym_u64] = ACTIONS(1063), - [anon_sym_isize] = ACTIONS(1063), - [anon_sym_usize] = ACTIONS(1063), - [anon_sym_f32] = ACTIONS(1063), - [anon_sym_f64] = ACTIONS(1063), - [anon_sym_c_char] = ACTIONS(1063), - [anon_sym_c_schar] = ACTIONS(1063), - [anon_sym_c_uchar] = ACTIONS(1063), - [anon_sym_c_short] = ACTIONS(1063), - [anon_sym_c_ushort] = ACTIONS(1063), - [anon_sym_c_int] = ACTIONS(1063), - [anon_sym_c_uint] = ACTIONS(1063), - [anon_sym_c_long] = ACTIONS(1063), - [anon_sym_c_ulong] = ACTIONS(1063), - [anon_sym_c_longlong] = ACTIONS(1063), - [anon_sym_c_ulonglong] = ACTIONS(1063), - [anon_sym_c_float] = ACTIONS(1063), - [anon_sym_c_double] = ACTIONS(1063), - [anon_sym_c_longdouble] = ACTIONS(1063), - [anon_sym_PLUS_EQ] = ACTIONS(1061), - [anon_sym_DASH_EQ] = ACTIONS(1061), - [anon_sym_STAR_EQ] = ACTIONS(1061), - [anon_sym_SLASH_EQ] = ACTIONS(1061), - [anon_sym_AMP_EQ] = ACTIONS(1061), - [anon_sym_PIPE_EQ] = ACTIONS(1061), - [anon_sym_xor_EQ] = ACTIONS(1061), - [anon_sym_LT_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_GT_EQ] = ACTIONS(1061), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1061), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_defer] = ACTIONS(1063), - [anon_sym_errdefer] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_expand] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), - [anon_sym_orelse] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_LT_LT_PIPE] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [sym_none] = ACTIONS(1063), - [sym_undefined] = ACTIONS(1063), - [sym_sink] = ACTIONS(1063), - [sym_integer] = ACTIONS(1063), - [sym_float] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym_multiline_string] = ACTIONS(1061), - [sym_character] = ACTIONS(1061), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1061), + [sym__newline] = ACTIONS(466), }, [STATE(235)] = { - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_identifier] = ACTIONS(1067), - [anon_sym_import] = ACTIONS(1067), - [anon_sym_test] = ACTIONS(1067), - [anon_sym_hide] = ACTIONS(1067), - [anon_sym_func] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_struct] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_QMARK] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_void] = ACTIONS(1067), - [anon_sym_anyopaque] = ACTIONS(1067), - [anon_sym_bool] = ACTIONS(1067), - [anon_sym_int] = ACTIONS(1067), - [anon_sym_uint] = ACTIONS(1067), - [anon_sym_float] = ACTIONS(1067), - [anon_sym_range] = ACTIONS(1067), - [anon_sym_i8] = ACTIONS(1067), - [anon_sym_i16] = ACTIONS(1067), - [anon_sym_i32] = ACTIONS(1067), - [anon_sym_i64] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(1067), - [anon_sym_u16] = ACTIONS(1067), - [anon_sym_u32] = ACTIONS(1067), - [anon_sym_u64] = ACTIONS(1067), - [anon_sym_isize] = ACTIONS(1067), - [anon_sym_usize] = ACTIONS(1067), - [anon_sym_f32] = ACTIONS(1067), - [anon_sym_f64] = ACTIONS(1067), - [anon_sym_c_char] = ACTIONS(1067), - [anon_sym_c_schar] = ACTIONS(1067), - [anon_sym_c_uchar] = ACTIONS(1067), - [anon_sym_c_short] = ACTIONS(1067), - [anon_sym_c_ushort] = ACTIONS(1067), - [anon_sym_c_int] = ACTIONS(1067), - [anon_sym_c_uint] = ACTIONS(1067), - [anon_sym_c_long] = ACTIONS(1067), - [anon_sym_c_ulong] = ACTIONS(1067), - [anon_sym_c_longlong] = ACTIONS(1067), - [anon_sym_c_ulonglong] = ACTIONS(1067), - [anon_sym_c_float] = ACTIONS(1067), - [anon_sym_c_double] = ACTIONS(1067), - [anon_sym_c_longdouble] = ACTIONS(1067), - [anon_sym_PLUS_EQ] = ACTIONS(1065), - [anon_sym_DASH_EQ] = ACTIONS(1065), - [anon_sym_STAR_EQ] = ACTIONS(1065), - [anon_sym_SLASH_EQ] = ACTIONS(1065), - [anon_sym_AMP_EQ] = ACTIONS(1065), - [anon_sym_PIPE_EQ] = ACTIONS(1065), - [anon_sym_xor_EQ] = ACTIONS(1065), - [anon_sym_LT_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_GT_EQ] = ACTIONS(1065), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1067), - [anon_sym_break] = ACTIONS(1067), - [anon_sym_continue] = ACTIONS(1067), - [anon_sym_defer] = ACTIONS(1067), - [anon_sym_errdefer] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1067), - [anon_sym_else] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_expand] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_orelse] = ACTIONS(1067), - [anon_sym_catch] = ACTIONS(1067), - [anon_sym_or] = ACTIONS(1067), - [anon_sym_and] = ACTIONS(1067), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_xor] = ACTIONS(1067), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [anon_sym_LT_LT_PIPE] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1067), - [anon_sym_false] = ACTIONS(1067), - [sym_none] = ACTIONS(1067), - [sym_undefined] = ACTIONS(1067), - [sym_sink] = ACTIONS(1067), - [sym_integer] = ACTIONS(1067), - [sym_float] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_multiline_string] = ACTIONS(1065), - [sym_character] = ACTIONS(1065), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1065), + [sym__newline] = ACTIONS(914), }, [STATE(236)] = { - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_identifier] = ACTIONS(1071), - [anon_sym_import] = ACTIONS(1071), - [anon_sym_test] = ACTIONS(1071), - [anon_sym_hide] = ACTIONS(1071), - [anon_sym_func] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_EQ] = ACTIONS(1071), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1071), - [anon_sym_anyopaque] = ACTIONS(1071), - [anon_sym_bool] = ACTIONS(1071), - [anon_sym_int] = ACTIONS(1071), - [anon_sym_uint] = ACTIONS(1071), - [anon_sym_float] = ACTIONS(1071), - [anon_sym_range] = ACTIONS(1071), - [anon_sym_i8] = ACTIONS(1071), - [anon_sym_i16] = ACTIONS(1071), - [anon_sym_i32] = ACTIONS(1071), - [anon_sym_i64] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(1071), - [anon_sym_u16] = ACTIONS(1071), - [anon_sym_u32] = ACTIONS(1071), - [anon_sym_u64] = ACTIONS(1071), - [anon_sym_isize] = ACTIONS(1071), - [anon_sym_usize] = ACTIONS(1071), - [anon_sym_f32] = ACTIONS(1071), - [anon_sym_f64] = ACTIONS(1071), - [anon_sym_c_char] = ACTIONS(1071), - [anon_sym_c_schar] = ACTIONS(1071), - [anon_sym_c_uchar] = ACTIONS(1071), - [anon_sym_c_short] = ACTIONS(1071), - [anon_sym_c_ushort] = ACTIONS(1071), - [anon_sym_c_int] = ACTIONS(1071), - [anon_sym_c_uint] = ACTIONS(1071), - [anon_sym_c_long] = ACTIONS(1071), - [anon_sym_c_ulong] = ACTIONS(1071), - [anon_sym_c_longlong] = ACTIONS(1071), - [anon_sym_c_ulonglong] = ACTIONS(1071), - [anon_sym_c_float] = ACTIONS(1071), - [anon_sym_c_double] = ACTIONS(1071), - [anon_sym_c_longdouble] = ACTIONS(1071), - [anon_sym_PLUS_EQ] = ACTIONS(1069), - [anon_sym_DASH_EQ] = ACTIONS(1069), - [anon_sym_STAR_EQ] = ACTIONS(1069), - [anon_sym_SLASH_EQ] = ACTIONS(1069), - [anon_sym_AMP_EQ] = ACTIONS(1069), - [anon_sym_PIPE_EQ] = ACTIONS(1069), - [anon_sym_xor_EQ] = ACTIONS(1069), - [anon_sym_LT_LT_EQ] = ACTIONS(1069), - [anon_sym_GT_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1069), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_defer] = ACTIONS(1071), - [anon_sym_errdefer] = ACTIONS(1071), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_else] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_expand] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_match] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1069), - [anon_sym_orelse] = ACTIONS(1071), - [anon_sym_catch] = ACTIONS(1071), - [anon_sym_or] = ACTIONS(1071), - [anon_sym_and] = ACTIONS(1071), - [anon_sym_EQ_EQ] = ACTIONS(1069), - [anon_sym_BANG_EQ] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1071), - [anon_sym_xor] = ACTIONS(1071), - [anon_sym_LT_LT] = ACTIONS(1071), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_LT_LT_PIPE] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_SLASH] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_try] = ACTIONS(1071), - [anon_sym_DOT] = ACTIONS(1071), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(1071), - [anon_sym_false] = ACTIONS(1071), - [sym_none] = ACTIONS(1071), - [sym_undefined] = ACTIONS(1071), - [sym_sink] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [sym_multiline_string] = ACTIONS(1069), - [sym_character] = ACTIONS(1069), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1069), + [sym__newline] = ACTIONS(466), }, [STATE(237)] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_test] = ACTIONS(508), - [anon_sym_hide] = ACTIONS(508), - [anon_sym_func] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_DOLLAR] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_void] = ACTIONS(508), - [anon_sym_anyopaque] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_int] = ACTIONS(508), - [anon_sym_uint] = ACTIONS(508), - [anon_sym_float] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_c_char] = ACTIONS(508), - [anon_sym_c_schar] = ACTIONS(508), - [anon_sym_c_uchar] = ACTIONS(508), - [anon_sym_c_short] = ACTIONS(508), - [anon_sym_c_ushort] = ACTIONS(508), - [anon_sym_c_int] = ACTIONS(508), - [anon_sym_c_uint] = ACTIONS(508), - [anon_sym_c_long] = ACTIONS(508), - [anon_sym_c_ulong] = ACTIONS(508), - [anon_sym_c_longlong] = ACTIONS(508), - [anon_sym_c_ulonglong] = ACTIONS(508), - [anon_sym_c_float] = ACTIONS(508), - [anon_sym_c_double] = ACTIONS(508), - [anon_sym_c_longdouble] = ACTIONS(508), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [anon_sym_DASH_EQ] = ACTIONS(506), - [anon_sym_STAR_EQ] = ACTIONS(506), - [anon_sym_SLASH_EQ] = ACTIONS(506), - [anon_sym_AMP_EQ] = ACTIONS(506), - [anon_sym_PIPE_EQ] = ACTIONS(506), - [anon_sym_xor_EQ] = ACTIONS(506), - [anon_sym_LT_LT_EQ] = ACTIONS(506), - [anon_sym_GT_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(506), - [anon_sym_return] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_defer] = ACTIONS(508), - [anon_sym_errdefer] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_expand] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_orelse] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_or] = ACTIONS(508), - [anon_sym_and] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_xor] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_LT_LT_PIPE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_try] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [sym_none] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [sym_sink] = ACTIONS(508), - [sym_integer] = ACTIONS(508), - [sym_float] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(506), - [sym_multiline_string] = ACTIONS(506), - [sym_character] = ACTIONS(506), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(506), + [sym__newline] = ACTIONS(916), }, [STATE(238)] = { - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_import] = ACTIONS(1075), - [anon_sym_test] = ACTIONS(1075), - [anon_sym_hide] = ACTIONS(1075), - [anon_sym_func] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_QMARK] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_void] = ACTIONS(1075), - [anon_sym_anyopaque] = ACTIONS(1075), - [anon_sym_bool] = ACTIONS(1075), - [anon_sym_int] = ACTIONS(1075), - [anon_sym_uint] = ACTIONS(1075), - [anon_sym_float] = ACTIONS(1075), - [anon_sym_range] = ACTIONS(1075), - [anon_sym_i8] = ACTIONS(1075), - [anon_sym_i16] = ACTIONS(1075), - [anon_sym_i32] = ACTIONS(1075), - [anon_sym_i64] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1075), - [anon_sym_u16] = ACTIONS(1075), - [anon_sym_u32] = ACTIONS(1075), - [anon_sym_u64] = ACTIONS(1075), - [anon_sym_isize] = ACTIONS(1075), - [anon_sym_usize] = ACTIONS(1075), - [anon_sym_f32] = ACTIONS(1075), - [anon_sym_f64] = ACTIONS(1075), - [anon_sym_c_char] = ACTIONS(1075), - [anon_sym_c_schar] = ACTIONS(1075), - [anon_sym_c_uchar] = ACTIONS(1075), - [anon_sym_c_short] = ACTIONS(1075), - [anon_sym_c_ushort] = ACTIONS(1075), - [anon_sym_c_int] = ACTIONS(1075), - [anon_sym_c_uint] = ACTIONS(1075), - [anon_sym_c_long] = ACTIONS(1075), - [anon_sym_c_ulong] = ACTIONS(1075), - [anon_sym_c_longlong] = ACTIONS(1075), - [anon_sym_c_ulonglong] = ACTIONS(1075), - [anon_sym_c_float] = ACTIONS(1075), - [anon_sym_c_double] = ACTIONS(1075), - [anon_sym_c_longdouble] = ACTIONS(1075), - [anon_sym_PLUS_EQ] = ACTIONS(1073), - [anon_sym_DASH_EQ] = ACTIONS(1073), - [anon_sym_STAR_EQ] = ACTIONS(1073), - [anon_sym_SLASH_EQ] = ACTIONS(1073), - [anon_sym_AMP_EQ] = ACTIONS(1073), - [anon_sym_PIPE_EQ] = ACTIONS(1073), - [anon_sym_xor_EQ] = ACTIONS(1073), - [anon_sym_LT_LT_EQ] = ACTIONS(1073), - [anon_sym_GT_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_defer] = ACTIONS(1075), - [anon_sym_errdefer] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_expand] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_match] = ACTIONS(1075), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), - [anon_sym_orelse] = ACTIONS(1075), - [anon_sym_catch] = ACTIONS(1075), - [anon_sym_or] = ACTIONS(1075), - [anon_sym_and] = ACTIONS(1075), - [anon_sym_EQ_EQ] = ACTIONS(1073), - [anon_sym_BANG_EQ] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_xor] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1075), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_LT_LT_PIPE] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_try] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1073), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [sym_none] = ACTIONS(1075), - [sym_undefined] = ACTIONS(1075), - [sym_sink] = ACTIONS(1075), - [sym_integer] = ACTIONS(1075), - [sym_float] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [sym_multiline_string] = ACTIONS(1073), - [sym_character] = ACTIONS(1073), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1073), + [sym__newline] = ACTIONS(918), }, [STATE(239)] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_identifier] = ACTIONS(1079), - [anon_sym_import] = ACTIONS(1079), - [anon_sym_test] = ACTIONS(1079), - [anon_sym_hide] = ACTIONS(1079), - [anon_sym_func] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_struct] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1079), - [anon_sym_QMARK] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_void] = ACTIONS(1079), - [anon_sym_anyopaque] = ACTIONS(1079), - [anon_sym_bool] = ACTIONS(1079), - [anon_sym_int] = ACTIONS(1079), - [anon_sym_uint] = ACTIONS(1079), - [anon_sym_float] = ACTIONS(1079), - [anon_sym_range] = ACTIONS(1079), - [anon_sym_i8] = ACTIONS(1079), - [anon_sym_i16] = ACTIONS(1079), - [anon_sym_i32] = ACTIONS(1079), - [anon_sym_i64] = ACTIONS(1079), - [anon_sym_u8] = ACTIONS(1079), - [anon_sym_u16] = ACTIONS(1079), - [anon_sym_u32] = ACTIONS(1079), - [anon_sym_u64] = ACTIONS(1079), - [anon_sym_isize] = ACTIONS(1079), - [anon_sym_usize] = ACTIONS(1079), - [anon_sym_f32] = ACTIONS(1079), - [anon_sym_f64] = ACTIONS(1079), - [anon_sym_c_char] = ACTIONS(1079), - [anon_sym_c_schar] = ACTIONS(1079), - [anon_sym_c_uchar] = ACTIONS(1079), - [anon_sym_c_short] = ACTIONS(1079), - [anon_sym_c_ushort] = ACTIONS(1079), - [anon_sym_c_int] = ACTIONS(1079), - [anon_sym_c_uint] = ACTIONS(1079), - [anon_sym_c_long] = ACTIONS(1079), - [anon_sym_c_ulong] = ACTIONS(1079), - [anon_sym_c_longlong] = ACTIONS(1079), - [anon_sym_c_ulonglong] = ACTIONS(1079), - [anon_sym_c_float] = ACTIONS(1079), - [anon_sym_c_double] = ACTIONS(1079), - [anon_sym_c_longdouble] = ACTIONS(1079), - [anon_sym_PLUS_EQ] = ACTIONS(1077), - [anon_sym_DASH_EQ] = ACTIONS(1077), - [anon_sym_STAR_EQ] = ACTIONS(1077), - [anon_sym_SLASH_EQ] = ACTIONS(1077), - [anon_sym_AMP_EQ] = ACTIONS(1077), - [anon_sym_PIPE_EQ] = ACTIONS(1077), - [anon_sym_xor_EQ] = ACTIONS(1077), - [anon_sym_LT_LT_EQ] = ACTIONS(1077), - [anon_sym_GT_GT_EQ] = ACTIONS(1077), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_break] = ACTIONS(1079), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_defer] = ACTIONS(1079), - [anon_sym_errdefer] = ACTIONS(1079), - [anon_sym_if] = ACTIONS(1079), - [anon_sym_else] = ACTIONS(1079), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_expand] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1079), - [anon_sym_match] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1077), - [anon_sym_orelse] = ACTIONS(1079), - [anon_sym_catch] = ACTIONS(1079), - [anon_sym_or] = ACTIONS(1079), - [anon_sym_and] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1077), - [anon_sym_BANG_EQ] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1079), - [anon_sym_xor] = ACTIONS(1079), - [anon_sym_LT_LT] = ACTIONS(1079), - [anon_sym_GT_GT] = ACTIONS(1079), - [anon_sym_LT_LT_PIPE] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1079), - [anon_sym_DOT] = ACTIONS(1079), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_true] = ACTIONS(1079), - [anon_sym_false] = ACTIONS(1079), - [sym_none] = ACTIONS(1079), - [sym_undefined] = ACTIONS(1079), - [sym_sink] = ACTIONS(1079), - [sym_integer] = ACTIONS(1079), - [sym_float] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [sym_multiline_string] = ACTIONS(1077), - [sym_character] = ACTIONS(1077), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1077), + [sym__newline] = ACTIONS(466), }, [STATE(240)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_test] = ACTIONS(1083), - [anon_sym_hide] = ACTIONS(1083), - [anon_sym_func] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_EQ] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_DOLLAR] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_void] = ACTIONS(1083), - [anon_sym_anyopaque] = ACTIONS(1083), - [anon_sym_bool] = ACTIONS(1083), - [anon_sym_int] = ACTIONS(1083), - [anon_sym_uint] = ACTIONS(1083), - [anon_sym_float] = ACTIONS(1083), - [anon_sym_range] = ACTIONS(1083), - [anon_sym_i8] = ACTIONS(1083), - [anon_sym_i16] = ACTIONS(1083), - [anon_sym_i32] = ACTIONS(1083), - [anon_sym_i64] = ACTIONS(1083), - [anon_sym_u8] = ACTIONS(1083), - [anon_sym_u16] = ACTIONS(1083), - [anon_sym_u32] = ACTIONS(1083), - [anon_sym_u64] = ACTIONS(1083), - [anon_sym_isize] = ACTIONS(1083), - [anon_sym_usize] = ACTIONS(1083), - [anon_sym_f32] = ACTIONS(1083), - [anon_sym_f64] = ACTIONS(1083), - [anon_sym_c_char] = ACTIONS(1083), - [anon_sym_c_schar] = ACTIONS(1083), - [anon_sym_c_uchar] = ACTIONS(1083), - [anon_sym_c_short] = ACTIONS(1083), - [anon_sym_c_ushort] = ACTIONS(1083), - [anon_sym_c_int] = ACTIONS(1083), - [anon_sym_c_uint] = ACTIONS(1083), - [anon_sym_c_long] = ACTIONS(1083), - [anon_sym_c_ulong] = ACTIONS(1083), - [anon_sym_c_longlong] = ACTIONS(1083), - [anon_sym_c_ulonglong] = ACTIONS(1083), - [anon_sym_c_float] = ACTIONS(1083), - [anon_sym_c_double] = ACTIONS(1083), - [anon_sym_c_longdouble] = ACTIONS(1083), - [anon_sym_PLUS_EQ] = ACTIONS(1081), - [anon_sym_DASH_EQ] = ACTIONS(1081), - [anon_sym_STAR_EQ] = ACTIONS(1081), - [anon_sym_SLASH_EQ] = ACTIONS(1081), - [anon_sym_AMP_EQ] = ACTIONS(1081), - [anon_sym_PIPE_EQ] = ACTIONS(1081), - [anon_sym_xor_EQ] = ACTIONS(1081), - [anon_sym_LT_LT_EQ] = ACTIONS(1081), - [anon_sym_GT_GT_EQ] = ACTIONS(1081), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_defer] = ACTIONS(1083), - [anon_sym_errdefer] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_expand] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_match] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), - [anon_sym_orelse] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_or] = ACTIONS(1083), - [anon_sym_and] = ACTIONS(1083), - [anon_sym_EQ_EQ] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_xor] = ACTIONS(1083), - [anon_sym_LT_LT] = ACTIONS(1083), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_LT_LT_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [sym_none] = ACTIONS(1083), - [sym_undefined] = ACTIONS(1083), - [sym_sink] = ACTIONS(1083), - [sym_integer] = ACTIONS(1083), - [sym_float] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [sym_multiline_string] = ACTIONS(1081), - [sym_character] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_test] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_func] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_void] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_anyopaque] = ACTIONS(922), + [anon_sym_bool] = ACTIONS(922), + [anon_sym_int] = ACTIONS(922), + [anon_sym_uint] = ACTIONS(922), + [anon_sym_float] = ACTIONS(922), + [anon_sym_range] = ACTIONS(922), + [anon_sym_i8] = ACTIONS(922), + [anon_sym_i16] = ACTIONS(922), + [anon_sym_i32] = ACTIONS(922), + [anon_sym_i64] = ACTIONS(922), + [anon_sym_u8] = ACTIONS(922), + [anon_sym_u16] = ACTIONS(922), + [anon_sym_u32] = ACTIONS(922), + [anon_sym_u64] = ACTIONS(922), + [anon_sym_isize] = ACTIONS(922), + [anon_sym_usize] = ACTIONS(922), + [anon_sym_f32] = ACTIONS(922), + [anon_sym_f64] = ACTIONS(922), + [anon_sym_c_char] = ACTIONS(922), + [anon_sym_c_schar] = ACTIONS(922), + [anon_sym_c_uchar] = ACTIONS(922), + [anon_sym_c_short] = ACTIONS(922), + [anon_sym_c_ushort] = ACTIONS(922), + [anon_sym_c_int] = ACTIONS(922), + [anon_sym_c_uint] = ACTIONS(922), + [anon_sym_c_long] = ACTIONS(922), + [anon_sym_c_ulong] = ACTIONS(922), + [anon_sym_c_longlong] = ACTIONS(922), + [anon_sym_c_ulonglong] = ACTIONS(922), + [anon_sym_c_float] = ACTIONS(922), + [anon_sym_c_double] = ACTIONS(922), + [anon_sym_c_longdouble] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(920), + [anon_sym_DASH_EQ] = ACTIONS(920), + [anon_sym_STAR_EQ] = ACTIONS(920), + [anon_sym_SLASH_EQ] = ACTIONS(920), + [anon_sym_AMP_EQ] = ACTIONS(920), + [anon_sym_PIPE_EQ] = ACTIONS(920), + [anon_sym_xor_EQ] = ACTIONS(920), + [anon_sym_LT_LT_EQ] = ACTIONS(920), + [anon_sym_GT_GT_EQ] = ACTIONS(920), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(920), + [anon_sym_return] = ACTIONS(922), + [anon_sym_yield] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_defer] = ACTIONS(922), + [anon_sym_errdefer] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_expand] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_orelse] = ACTIONS(922), + [anon_sym_catch] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_LT_LT_PIPE] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [sym_none] = ACTIONS(922), + [sym_undefined] = ACTIONS(922), + [sym_sink] = ACTIONS(922), + [sym_integer] = ACTIONS(922), + [sym_float] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_multiline_string] = ACTIONS(920), + [sym_character] = ACTIONS(920), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1081), + [sym__newline] = ACTIONS(920), }, [STATE(241)] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(1087), - [anon_sym_test] = ACTIONS(1087), - [anon_sym_hide] = ACTIONS(1087), - [anon_sym_func] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_EQ] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_anyopaque] = ACTIONS(1087), - [anon_sym_bool] = ACTIONS(1087), - [anon_sym_int] = ACTIONS(1087), - [anon_sym_uint] = ACTIONS(1087), - [anon_sym_float] = ACTIONS(1087), - [anon_sym_range] = ACTIONS(1087), - [anon_sym_i8] = ACTIONS(1087), - [anon_sym_i16] = ACTIONS(1087), - [anon_sym_i32] = ACTIONS(1087), - [anon_sym_i64] = ACTIONS(1087), - [anon_sym_u8] = ACTIONS(1087), - [anon_sym_u16] = ACTIONS(1087), - [anon_sym_u32] = ACTIONS(1087), - [anon_sym_u64] = ACTIONS(1087), - [anon_sym_isize] = ACTIONS(1087), - [anon_sym_usize] = ACTIONS(1087), - [anon_sym_f32] = ACTIONS(1087), - [anon_sym_f64] = ACTIONS(1087), - [anon_sym_c_char] = ACTIONS(1087), - [anon_sym_c_schar] = ACTIONS(1087), - [anon_sym_c_uchar] = ACTIONS(1087), - [anon_sym_c_short] = ACTIONS(1087), - [anon_sym_c_ushort] = ACTIONS(1087), - [anon_sym_c_int] = ACTIONS(1087), - [anon_sym_c_uint] = ACTIONS(1087), - [anon_sym_c_long] = ACTIONS(1087), - [anon_sym_c_ulong] = ACTIONS(1087), - [anon_sym_c_longlong] = ACTIONS(1087), - [anon_sym_c_ulonglong] = ACTIONS(1087), - [anon_sym_c_float] = ACTIONS(1087), - [anon_sym_c_double] = ACTIONS(1087), - [anon_sym_c_longdouble] = ACTIONS(1087), - [anon_sym_PLUS_EQ] = ACTIONS(1085), - [anon_sym_DASH_EQ] = ACTIONS(1085), - [anon_sym_STAR_EQ] = ACTIONS(1085), - [anon_sym_SLASH_EQ] = ACTIONS(1085), - [anon_sym_AMP_EQ] = ACTIONS(1085), - [anon_sym_PIPE_EQ] = ACTIONS(1085), - [anon_sym_xor_EQ] = ACTIONS(1085), - [anon_sym_LT_LT_EQ] = ACTIONS(1085), - [anon_sym_GT_GT_EQ] = ACTIONS(1085), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_defer] = ACTIONS(1087), - [anon_sym_errdefer] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_expand] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_match] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), - [anon_sym_orelse] = ACTIONS(1087), - [anon_sym_catch] = ACTIONS(1087), - [anon_sym_or] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1087), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_xor] = ACTIONS(1087), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_LT_LT_PIPE] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1087), - [anon_sym_false] = ACTIONS(1087), - [sym_none] = ACTIONS(1087), - [sym_undefined] = ACTIONS(1087), - [sym_sink] = ACTIONS(1087), - [sym_integer] = ACTIONS(1087), - [sym_float] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [sym_multiline_string] = ACTIONS(1085), - [sym_character] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_test] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_func] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_void] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_anyopaque] = ACTIONS(926), + [anon_sym_bool] = ACTIONS(926), + [anon_sym_int] = ACTIONS(926), + [anon_sym_uint] = ACTIONS(926), + [anon_sym_float] = ACTIONS(926), + [anon_sym_range] = ACTIONS(926), + [anon_sym_i8] = ACTIONS(926), + [anon_sym_i16] = ACTIONS(926), + [anon_sym_i32] = ACTIONS(926), + [anon_sym_i64] = ACTIONS(926), + [anon_sym_u8] = ACTIONS(926), + [anon_sym_u16] = ACTIONS(926), + [anon_sym_u32] = ACTIONS(926), + [anon_sym_u64] = ACTIONS(926), + [anon_sym_isize] = ACTIONS(926), + [anon_sym_usize] = ACTIONS(926), + [anon_sym_f32] = ACTIONS(926), + [anon_sym_f64] = ACTIONS(926), + [anon_sym_c_char] = ACTIONS(926), + [anon_sym_c_schar] = ACTIONS(926), + [anon_sym_c_uchar] = ACTIONS(926), + [anon_sym_c_short] = ACTIONS(926), + [anon_sym_c_ushort] = ACTIONS(926), + [anon_sym_c_int] = ACTIONS(926), + [anon_sym_c_uint] = ACTIONS(926), + [anon_sym_c_long] = ACTIONS(926), + [anon_sym_c_ulong] = ACTIONS(926), + [anon_sym_c_longlong] = ACTIONS(926), + [anon_sym_c_ulonglong] = ACTIONS(926), + [anon_sym_c_float] = ACTIONS(926), + [anon_sym_c_double] = ACTIONS(926), + [anon_sym_c_longdouble] = ACTIONS(926), + [anon_sym_PLUS_EQ] = ACTIONS(924), + [anon_sym_DASH_EQ] = ACTIONS(924), + [anon_sym_STAR_EQ] = ACTIONS(924), + [anon_sym_SLASH_EQ] = ACTIONS(924), + [anon_sym_AMP_EQ] = ACTIONS(924), + [anon_sym_PIPE_EQ] = ACTIONS(924), + [anon_sym_xor_EQ] = ACTIONS(924), + [anon_sym_LT_LT_EQ] = ACTIONS(924), + [anon_sym_GT_GT_EQ] = ACTIONS(924), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(924), + [anon_sym_return] = ACTIONS(926), + [anon_sym_yield] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_defer] = ACTIONS(926), + [anon_sym_errdefer] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_expand] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(924), + [anon_sym_orelse] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(926), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_LT_LT_PIPE] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [sym_none] = ACTIONS(926), + [sym_undefined] = ACTIONS(926), + [sym_sink] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_multiline_string] = ACTIONS(924), + [sym_character] = ACTIONS(924), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1085), + [sym__newline] = ACTIONS(924), }, [STATE(242)] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_import] = ACTIONS(1091), - [anon_sym_test] = ACTIONS(1091), - [anon_sym_hide] = ACTIONS(1091), - [anon_sym_func] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_EQ] = ACTIONS(1091), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_DOLLAR] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1091), - [anon_sym_anyopaque] = ACTIONS(1091), - [anon_sym_bool] = ACTIONS(1091), - [anon_sym_int] = ACTIONS(1091), - [anon_sym_uint] = ACTIONS(1091), - [anon_sym_float] = ACTIONS(1091), - [anon_sym_range] = ACTIONS(1091), - [anon_sym_i8] = ACTIONS(1091), - [anon_sym_i16] = ACTIONS(1091), - [anon_sym_i32] = ACTIONS(1091), - [anon_sym_i64] = ACTIONS(1091), - [anon_sym_u8] = ACTIONS(1091), - [anon_sym_u16] = ACTIONS(1091), - [anon_sym_u32] = ACTIONS(1091), - [anon_sym_u64] = ACTIONS(1091), - [anon_sym_isize] = ACTIONS(1091), - [anon_sym_usize] = ACTIONS(1091), - [anon_sym_f32] = ACTIONS(1091), - [anon_sym_f64] = ACTIONS(1091), - [anon_sym_c_char] = ACTIONS(1091), - [anon_sym_c_schar] = ACTIONS(1091), - [anon_sym_c_uchar] = ACTIONS(1091), - [anon_sym_c_short] = ACTIONS(1091), - [anon_sym_c_ushort] = ACTIONS(1091), - [anon_sym_c_int] = ACTIONS(1091), - [anon_sym_c_uint] = ACTIONS(1091), - [anon_sym_c_long] = ACTIONS(1091), - [anon_sym_c_ulong] = ACTIONS(1091), - [anon_sym_c_longlong] = ACTIONS(1091), - [anon_sym_c_ulonglong] = ACTIONS(1091), - [anon_sym_c_float] = ACTIONS(1091), - [anon_sym_c_double] = ACTIONS(1091), - [anon_sym_c_longdouble] = ACTIONS(1091), - [anon_sym_PLUS_EQ] = ACTIONS(1089), - [anon_sym_DASH_EQ] = ACTIONS(1089), - [anon_sym_STAR_EQ] = ACTIONS(1089), - [anon_sym_SLASH_EQ] = ACTIONS(1089), - [anon_sym_AMP_EQ] = ACTIONS(1089), - [anon_sym_PIPE_EQ] = ACTIONS(1089), - [anon_sym_xor_EQ] = ACTIONS(1089), - [anon_sym_LT_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_GT_EQ] = ACTIONS(1089), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_defer] = ACTIONS(1091), - [anon_sym_errdefer] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_else] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_expand] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_match] = ACTIONS(1091), - [anon_sym_DOT_DOT] = ACTIONS(1091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), - [anon_sym_orelse] = ACTIONS(1091), - [anon_sym_catch] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(1091), - [anon_sym_and] = ACTIONS(1091), - [anon_sym_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_LT_LT_PIPE] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1091), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1091), - [anon_sym_false] = ACTIONS(1091), - [sym_none] = ACTIONS(1091), - [sym_undefined] = ACTIONS(1091), - [sym_sink] = ACTIONS(1091), - [sym_integer] = ACTIONS(1091), - [sym_float] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [sym_multiline_string] = ACTIONS(1089), - [sym_character] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [anon_sym_import] = ACTIONS(930), + [anon_sym_test] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_func] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_void] = ACTIONS(930), + [anon_sym_type] = ACTIONS(930), + [anon_sym_anyopaque] = ACTIONS(930), + [anon_sym_bool] = ACTIONS(930), + [anon_sym_int] = ACTIONS(930), + [anon_sym_uint] = ACTIONS(930), + [anon_sym_float] = ACTIONS(930), + [anon_sym_range] = ACTIONS(930), + [anon_sym_i8] = ACTIONS(930), + [anon_sym_i16] = ACTIONS(930), + [anon_sym_i32] = ACTIONS(930), + [anon_sym_i64] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(930), + [anon_sym_u16] = ACTIONS(930), + [anon_sym_u32] = ACTIONS(930), + [anon_sym_u64] = ACTIONS(930), + [anon_sym_isize] = ACTIONS(930), + [anon_sym_usize] = ACTIONS(930), + [anon_sym_f32] = ACTIONS(930), + [anon_sym_f64] = ACTIONS(930), + [anon_sym_c_char] = ACTIONS(930), + [anon_sym_c_schar] = ACTIONS(930), + [anon_sym_c_uchar] = ACTIONS(930), + [anon_sym_c_short] = ACTIONS(930), + [anon_sym_c_ushort] = ACTIONS(930), + [anon_sym_c_int] = ACTIONS(930), + [anon_sym_c_uint] = ACTIONS(930), + [anon_sym_c_long] = ACTIONS(930), + [anon_sym_c_ulong] = ACTIONS(930), + [anon_sym_c_longlong] = ACTIONS(930), + [anon_sym_c_ulonglong] = ACTIONS(930), + [anon_sym_c_float] = ACTIONS(930), + [anon_sym_c_double] = ACTIONS(930), + [anon_sym_c_longdouble] = ACTIONS(930), + [anon_sym_PLUS_EQ] = ACTIONS(928), + [anon_sym_DASH_EQ] = ACTIONS(928), + [anon_sym_STAR_EQ] = ACTIONS(928), + [anon_sym_SLASH_EQ] = ACTIONS(928), + [anon_sym_AMP_EQ] = ACTIONS(928), + [anon_sym_PIPE_EQ] = ACTIONS(928), + [anon_sym_xor_EQ] = ACTIONS(928), + [anon_sym_LT_LT_EQ] = ACTIONS(928), + [anon_sym_GT_GT_EQ] = ACTIONS(928), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_yield] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_defer] = ACTIONS(930), + [anon_sym_errdefer] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_expand] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(928), + [anon_sym_orelse] = ACTIONS(930), + [anon_sym_catch] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_LT_LT] = ACTIONS(930), + [anon_sym_GT_GT] = ACTIONS(930), + [anon_sym_LT_LT_PIPE] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [sym_none] = ACTIONS(930), + [sym_undefined] = ACTIONS(930), + [sym_sink] = ACTIONS(930), + [sym_integer] = ACTIONS(930), + [sym_float] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_multiline_string] = ACTIONS(928), + [sym_character] = ACTIONS(928), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1089), + [sym__newline] = ACTIONS(928), }, [STATE(243)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(932), + [sym_identifier] = ACTIONS(934), + [anon_sym_import] = ACTIONS(934), + [anon_sym_test] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_func] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_QMARK] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_void] = ACTIONS(934), + [anon_sym_type] = ACTIONS(934), + [anon_sym_anyopaque] = ACTIONS(934), + [anon_sym_bool] = ACTIONS(934), + [anon_sym_int] = ACTIONS(934), + [anon_sym_uint] = ACTIONS(934), + [anon_sym_float] = ACTIONS(934), + [anon_sym_range] = ACTIONS(934), + [anon_sym_i8] = ACTIONS(934), + [anon_sym_i16] = ACTIONS(934), + [anon_sym_i32] = ACTIONS(934), + [anon_sym_i64] = ACTIONS(934), + [anon_sym_u8] = ACTIONS(934), + [anon_sym_u16] = ACTIONS(934), + [anon_sym_u32] = ACTIONS(934), + [anon_sym_u64] = ACTIONS(934), + [anon_sym_isize] = ACTIONS(934), + [anon_sym_usize] = ACTIONS(934), + [anon_sym_f32] = ACTIONS(934), + [anon_sym_f64] = ACTIONS(934), + [anon_sym_c_char] = ACTIONS(934), + [anon_sym_c_schar] = ACTIONS(934), + [anon_sym_c_uchar] = ACTIONS(934), + [anon_sym_c_short] = ACTIONS(934), + [anon_sym_c_ushort] = ACTIONS(934), + [anon_sym_c_int] = ACTIONS(934), + [anon_sym_c_uint] = ACTIONS(934), + [anon_sym_c_long] = ACTIONS(934), + [anon_sym_c_ulong] = ACTIONS(934), + [anon_sym_c_longlong] = ACTIONS(934), + [anon_sym_c_ulonglong] = ACTIONS(934), + [anon_sym_c_float] = ACTIONS(934), + [anon_sym_c_double] = ACTIONS(934), + [anon_sym_c_longdouble] = ACTIONS(934), + [anon_sym_PLUS_EQ] = ACTIONS(932), + [anon_sym_DASH_EQ] = ACTIONS(932), + [anon_sym_STAR_EQ] = ACTIONS(932), + [anon_sym_SLASH_EQ] = ACTIONS(932), + [anon_sym_AMP_EQ] = ACTIONS(932), + [anon_sym_PIPE_EQ] = ACTIONS(932), + [anon_sym_xor_EQ] = ACTIONS(932), + [anon_sym_LT_LT_EQ] = ACTIONS(932), + [anon_sym_GT_GT_EQ] = ACTIONS(932), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(932), + [anon_sym_return] = ACTIONS(934), + [anon_sym_yield] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_defer] = ACTIONS(934), + [anon_sym_errdefer] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_expand] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(932), + [anon_sym_orelse] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_LT_LT_PIPE] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(932), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [sym_none] = ACTIONS(934), + [sym_undefined] = ACTIONS(934), + [sym_sink] = ACTIONS(934), + [sym_integer] = ACTIONS(934), + [sym_float] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_multiline_string] = ACTIONS(932), + [sym_character] = ACTIONS(932), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(932), }, [STATE(244)] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_test] = ACTIONS(1095), - [anon_sym_hide] = ACTIONS(1095), - [anon_sym_func] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1095), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_DOLLAR] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_anyopaque] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_int] = ACTIONS(1095), - [anon_sym_uint] = ACTIONS(1095), - [anon_sym_float] = ACTIONS(1095), - [anon_sym_range] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_c_char] = ACTIONS(1095), - [anon_sym_c_schar] = ACTIONS(1095), - [anon_sym_c_uchar] = ACTIONS(1095), - [anon_sym_c_short] = ACTIONS(1095), - [anon_sym_c_ushort] = ACTIONS(1095), - [anon_sym_c_int] = ACTIONS(1095), - [anon_sym_c_uint] = ACTIONS(1095), - [anon_sym_c_long] = ACTIONS(1095), - [anon_sym_c_ulong] = ACTIONS(1095), - [anon_sym_c_longlong] = ACTIONS(1095), - [anon_sym_c_ulonglong] = ACTIONS(1095), - [anon_sym_c_float] = ACTIONS(1095), - [anon_sym_c_double] = ACTIONS(1095), - [anon_sym_c_longdouble] = ACTIONS(1095), - [anon_sym_PLUS_EQ] = ACTIONS(1093), - [anon_sym_DASH_EQ] = ACTIONS(1093), - [anon_sym_STAR_EQ] = ACTIONS(1093), - [anon_sym_SLASH_EQ] = ACTIONS(1093), - [anon_sym_AMP_EQ] = ACTIONS(1093), - [anon_sym_PIPE_EQ] = ACTIONS(1093), - [anon_sym_xor_EQ] = ACTIONS(1093), - [anon_sym_LT_LT_EQ] = ACTIONS(1093), - [anon_sym_GT_GT_EQ] = ACTIONS(1093), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_defer] = ACTIONS(1095), - [anon_sym_errdefer] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_expand] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), - [anon_sym_orelse] = ACTIONS(1095), - [anon_sym_catch] = ACTIONS(1095), - [anon_sym_or] = ACTIONS(1095), - [anon_sym_and] = ACTIONS(1095), - [anon_sym_EQ_EQ] = ACTIONS(1093), - [anon_sym_BANG_EQ] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_LT_EQ] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_EQ] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_xor] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_LT_LT_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [sym_none] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [sym_sink] = ACTIONS(1095), - [sym_integer] = ACTIONS(1095), - [sym_float] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [sym_multiline_string] = ACTIONS(1093), - [sym_character] = ACTIONS(1093), + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(938), + [anon_sym_import] = ACTIONS(938), + [anon_sym_test] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_func] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_void] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_anyopaque] = ACTIONS(938), + [anon_sym_bool] = ACTIONS(938), + [anon_sym_int] = ACTIONS(938), + [anon_sym_uint] = ACTIONS(938), + [anon_sym_float] = ACTIONS(938), + [anon_sym_range] = ACTIONS(938), + [anon_sym_i8] = ACTIONS(938), + [anon_sym_i16] = ACTIONS(938), + [anon_sym_i32] = ACTIONS(938), + [anon_sym_i64] = ACTIONS(938), + [anon_sym_u8] = ACTIONS(938), + [anon_sym_u16] = ACTIONS(938), + [anon_sym_u32] = ACTIONS(938), + [anon_sym_u64] = ACTIONS(938), + [anon_sym_isize] = ACTIONS(938), + [anon_sym_usize] = ACTIONS(938), + [anon_sym_f32] = ACTIONS(938), + [anon_sym_f64] = ACTIONS(938), + [anon_sym_c_char] = ACTIONS(938), + [anon_sym_c_schar] = ACTIONS(938), + [anon_sym_c_uchar] = ACTIONS(938), + [anon_sym_c_short] = ACTIONS(938), + [anon_sym_c_ushort] = ACTIONS(938), + [anon_sym_c_int] = ACTIONS(938), + [anon_sym_c_uint] = ACTIONS(938), + [anon_sym_c_long] = ACTIONS(938), + [anon_sym_c_ulong] = ACTIONS(938), + [anon_sym_c_longlong] = ACTIONS(938), + [anon_sym_c_ulonglong] = ACTIONS(938), + [anon_sym_c_float] = ACTIONS(938), + [anon_sym_c_double] = ACTIONS(938), + [anon_sym_c_longdouble] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(936), + [anon_sym_DASH_EQ] = ACTIONS(936), + [anon_sym_STAR_EQ] = ACTIONS(936), + [anon_sym_SLASH_EQ] = ACTIONS(936), + [anon_sym_AMP_EQ] = ACTIONS(936), + [anon_sym_PIPE_EQ] = ACTIONS(936), + [anon_sym_xor_EQ] = ACTIONS(936), + [anon_sym_LT_LT_EQ] = ACTIONS(936), + [anon_sym_GT_GT_EQ] = ACTIONS(936), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(936), + [anon_sym_return] = ACTIONS(938), + [anon_sym_yield] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_defer] = ACTIONS(938), + [anon_sym_errdefer] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_expand] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(936), + [anon_sym_orelse] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_LT_LT_PIPE] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_try] = ACTIONS(938), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(936), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [sym_none] = ACTIONS(938), + [sym_undefined] = ACTIONS(938), + [sym_sink] = ACTIONS(938), + [sym_integer] = ACTIONS(938), + [sym_float] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_multiline_string] = ACTIONS(936), + [sym_character] = ACTIONS(936), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1093), + [sym__newline] = ACTIONS(936), }, [STATE(245)] = { - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [anon_sym_import] = ACTIONS(1099), - [anon_sym_test] = ACTIONS(1099), - [anon_sym_hide] = ACTIONS(1099), - [anon_sym_func] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_void] = ACTIONS(1099), - [anon_sym_anyopaque] = ACTIONS(1099), - [anon_sym_bool] = ACTIONS(1099), - [anon_sym_int] = ACTIONS(1099), - [anon_sym_uint] = ACTIONS(1099), - [anon_sym_float] = ACTIONS(1099), - [anon_sym_range] = ACTIONS(1099), - [anon_sym_i8] = ACTIONS(1099), - [anon_sym_i16] = ACTIONS(1099), - [anon_sym_i32] = ACTIONS(1099), - [anon_sym_i64] = ACTIONS(1099), - [anon_sym_u8] = ACTIONS(1099), - [anon_sym_u16] = ACTIONS(1099), - [anon_sym_u32] = ACTIONS(1099), - [anon_sym_u64] = ACTIONS(1099), - [anon_sym_isize] = ACTIONS(1099), - [anon_sym_usize] = ACTIONS(1099), - [anon_sym_f32] = ACTIONS(1099), - [anon_sym_f64] = ACTIONS(1099), - [anon_sym_c_char] = ACTIONS(1099), - [anon_sym_c_schar] = ACTIONS(1099), - [anon_sym_c_uchar] = ACTIONS(1099), - [anon_sym_c_short] = ACTIONS(1099), - [anon_sym_c_ushort] = ACTIONS(1099), - [anon_sym_c_int] = ACTIONS(1099), - [anon_sym_c_uint] = ACTIONS(1099), - [anon_sym_c_long] = ACTIONS(1099), - [anon_sym_c_ulong] = ACTIONS(1099), - [anon_sym_c_longlong] = ACTIONS(1099), - [anon_sym_c_ulonglong] = ACTIONS(1099), - [anon_sym_c_float] = ACTIONS(1099), - [anon_sym_c_double] = ACTIONS(1099), - [anon_sym_c_longdouble] = ACTIONS(1099), - [anon_sym_PLUS_EQ] = ACTIONS(1097), - [anon_sym_DASH_EQ] = ACTIONS(1097), - [anon_sym_STAR_EQ] = ACTIONS(1097), - [anon_sym_SLASH_EQ] = ACTIONS(1097), - [anon_sym_AMP_EQ] = ACTIONS(1097), - [anon_sym_PIPE_EQ] = ACTIONS(1097), - [anon_sym_xor_EQ] = ACTIONS(1097), - [anon_sym_LT_LT_EQ] = ACTIONS(1097), - [anon_sym_GT_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_yield] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_defer] = ACTIONS(1099), - [anon_sym_errdefer] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_else] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_expand] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_DOT_DOT] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), - [anon_sym_orelse] = ACTIONS(1099), - [anon_sym_catch] = ACTIONS(1099), - [anon_sym_or] = ACTIONS(1099), - [anon_sym_and] = ACTIONS(1099), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_xor] = ACTIONS(1099), - [anon_sym_LT_LT] = ACTIONS(1099), - [anon_sym_GT_GT] = ACTIONS(1099), - [anon_sym_LT_LT_PIPE] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_SLASH] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1099), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [sym_none] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1099), - [sym_sink] = ACTIONS(1099), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1097), - [sym_multiline_string] = ACTIONS(1097), - [sym_character] = ACTIONS(1097), + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_test] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_func] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_QMARK] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_void] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_anyopaque] = ACTIONS(942), + [anon_sym_bool] = ACTIONS(942), + [anon_sym_int] = ACTIONS(942), + [anon_sym_uint] = ACTIONS(942), + [anon_sym_float] = ACTIONS(942), + [anon_sym_range] = ACTIONS(942), + [anon_sym_i8] = ACTIONS(942), + [anon_sym_i16] = ACTIONS(942), + [anon_sym_i32] = ACTIONS(942), + [anon_sym_i64] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(942), + [anon_sym_u16] = ACTIONS(942), + [anon_sym_u32] = ACTIONS(942), + [anon_sym_u64] = ACTIONS(942), + [anon_sym_isize] = ACTIONS(942), + [anon_sym_usize] = ACTIONS(942), + [anon_sym_f32] = ACTIONS(942), + [anon_sym_f64] = ACTIONS(942), + [anon_sym_c_char] = ACTIONS(942), + [anon_sym_c_schar] = ACTIONS(942), + [anon_sym_c_uchar] = ACTIONS(942), + [anon_sym_c_short] = ACTIONS(942), + [anon_sym_c_ushort] = ACTIONS(942), + [anon_sym_c_int] = ACTIONS(942), + [anon_sym_c_uint] = ACTIONS(942), + [anon_sym_c_long] = ACTIONS(942), + [anon_sym_c_ulong] = ACTIONS(942), + [anon_sym_c_longlong] = ACTIONS(942), + [anon_sym_c_ulonglong] = ACTIONS(942), + [anon_sym_c_float] = ACTIONS(942), + [anon_sym_c_double] = ACTIONS(942), + [anon_sym_c_longdouble] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_AMP_EQ] = ACTIONS(940), + [anon_sym_PIPE_EQ] = ACTIONS(940), + [anon_sym_xor_EQ] = ACTIONS(940), + [anon_sym_LT_LT_EQ] = ACTIONS(940), + [anon_sym_GT_GT_EQ] = ACTIONS(940), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_yield] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_defer] = ACTIONS(942), + [anon_sym_errdefer] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_expand] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_orelse] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_LT_LT_PIPE] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(940), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [sym_none] = ACTIONS(942), + [sym_undefined] = ACTIONS(942), + [sym_sink] = ACTIONS(942), + [sym_integer] = ACTIONS(942), + [sym_float] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_multiline_string] = ACTIONS(940), + [sym_character] = ACTIONS(940), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1097), + [sym__newline] = ACTIONS(940), }, [STATE(246)] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_test] = ACTIONS(1105), - [anon_sym_hide] = ACTIONS(1105), - [anon_sym_func] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_anyopaque] = ACTIONS(1105), - [anon_sym_bool] = ACTIONS(1105), - [anon_sym_int] = ACTIONS(1105), - [anon_sym_uint] = ACTIONS(1105), - [anon_sym_float] = ACTIONS(1105), - [anon_sym_range] = ACTIONS(1105), - [anon_sym_i8] = ACTIONS(1105), - [anon_sym_i16] = ACTIONS(1105), - [anon_sym_i32] = ACTIONS(1105), - [anon_sym_i64] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1105), - [anon_sym_u16] = ACTIONS(1105), - [anon_sym_u32] = ACTIONS(1105), - [anon_sym_u64] = ACTIONS(1105), - [anon_sym_isize] = ACTIONS(1105), - [anon_sym_usize] = ACTIONS(1105), - [anon_sym_f32] = ACTIONS(1105), - [anon_sym_f64] = ACTIONS(1105), - [anon_sym_c_char] = ACTIONS(1105), - [anon_sym_c_schar] = ACTIONS(1105), - [anon_sym_c_uchar] = ACTIONS(1105), - [anon_sym_c_short] = ACTIONS(1105), - [anon_sym_c_ushort] = ACTIONS(1105), - [anon_sym_c_int] = ACTIONS(1105), - [anon_sym_c_uint] = ACTIONS(1105), - [anon_sym_c_long] = ACTIONS(1105), - [anon_sym_c_ulong] = ACTIONS(1105), - [anon_sym_c_longlong] = ACTIONS(1105), - [anon_sym_c_ulonglong] = ACTIONS(1105), - [anon_sym_c_float] = ACTIONS(1105), - [anon_sym_c_double] = ACTIONS(1105), - [anon_sym_c_longdouble] = ACTIONS(1105), - [anon_sym_PLUS_EQ] = ACTIONS(1103), - [anon_sym_DASH_EQ] = ACTIONS(1103), - [anon_sym_STAR_EQ] = ACTIONS(1103), - [anon_sym_SLASH_EQ] = ACTIONS(1103), - [anon_sym_AMP_EQ] = ACTIONS(1103), - [anon_sym_PIPE_EQ] = ACTIONS(1103), - [anon_sym_xor_EQ] = ACTIONS(1103), - [anon_sym_LT_LT_EQ] = ACTIONS(1103), - [anon_sym_GT_GT_EQ] = ACTIONS(1103), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_defer] = ACTIONS(1105), - [anon_sym_errdefer] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_expand] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_match] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), - [anon_sym_orelse] = ACTIONS(1105), - [anon_sym_catch] = ACTIONS(1105), - [anon_sym_or] = ACTIONS(1105), - [anon_sym_and] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1103), - [anon_sym_BANG_EQ] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_GT_EQ] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_xor] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_LT_LT_PIPE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_true] = ACTIONS(1105), - [anon_sym_false] = ACTIONS(1105), - [sym_none] = ACTIONS(1105), - [sym_undefined] = ACTIONS(1105), - [sym_sink] = ACTIONS(1105), - [sym_integer] = ACTIONS(1105), - [sym_float] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_multiline_string] = ACTIONS(1103), - [sym_character] = ACTIONS(1103), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_test] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_func] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_void] = ACTIONS(946), + [anon_sym_type] = ACTIONS(946), + [anon_sym_anyopaque] = ACTIONS(946), + [anon_sym_bool] = ACTIONS(946), + [anon_sym_int] = ACTIONS(946), + [anon_sym_uint] = ACTIONS(946), + [anon_sym_float] = ACTIONS(946), + [anon_sym_range] = ACTIONS(946), + [anon_sym_i8] = ACTIONS(946), + [anon_sym_i16] = ACTIONS(946), + [anon_sym_i32] = ACTIONS(946), + [anon_sym_i64] = ACTIONS(946), + [anon_sym_u8] = ACTIONS(946), + [anon_sym_u16] = ACTIONS(946), + [anon_sym_u32] = ACTIONS(946), + [anon_sym_u64] = ACTIONS(946), + [anon_sym_isize] = ACTIONS(946), + [anon_sym_usize] = ACTIONS(946), + [anon_sym_f32] = ACTIONS(946), + [anon_sym_f64] = ACTIONS(946), + [anon_sym_c_char] = ACTIONS(946), + [anon_sym_c_schar] = ACTIONS(946), + [anon_sym_c_uchar] = ACTIONS(946), + [anon_sym_c_short] = ACTIONS(946), + [anon_sym_c_ushort] = ACTIONS(946), + [anon_sym_c_int] = ACTIONS(946), + [anon_sym_c_uint] = ACTIONS(946), + [anon_sym_c_long] = ACTIONS(946), + [anon_sym_c_ulong] = ACTIONS(946), + [anon_sym_c_longlong] = ACTIONS(946), + [anon_sym_c_ulonglong] = ACTIONS(946), + [anon_sym_c_float] = ACTIONS(946), + [anon_sym_c_double] = ACTIONS(946), + [anon_sym_c_longdouble] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_STAR_EQ] = ACTIONS(944), + [anon_sym_SLASH_EQ] = ACTIONS(944), + [anon_sym_AMP_EQ] = ACTIONS(944), + [anon_sym_PIPE_EQ] = ACTIONS(944), + [anon_sym_xor_EQ] = ACTIONS(944), + [anon_sym_LT_LT_EQ] = ACTIONS(944), + [anon_sym_GT_GT_EQ] = ACTIONS(944), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(944), + [anon_sym_return] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_defer] = ACTIONS(946), + [anon_sym_errdefer] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_expand] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_orelse] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_LT_LT_PIPE] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(946), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(944), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = ACTIONS(946), + [sym_none] = ACTIONS(946), + [sym_undefined] = ACTIONS(946), + [sym_sink] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_multiline_string] = ACTIONS(944), + [sym_character] = ACTIONS(944), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1103), + [sym__newline] = ACTIONS(944), }, [STATE(247)] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_test] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_func] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1109), - [anon_sym_anyopaque] = ACTIONS(1109), - [anon_sym_bool] = ACTIONS(1109), - [anon_sym_int] = ACTIONS(1109), - [anon_sym_uint] = ACTIONS(1109), - [anon_sym_float] = ACTIONS(1109), - [anon_sym_range] = ACTIONS(1109), - [anon_sym_i8] = ACTIONS(1109), - [anon_sym_i16] = ACTIONS(1109), - [anon_sym_i32] = ACTIONS(1109), - [anon_sym_i64] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1109), - [anon_sym_u16] = ACTIONS(1109), - [anon_sym_u32] = ACTIONS(1109), - [anon_sym_u64] = ACTIONS(1109), - [anon_sym_isize] = ACTIONS(1109), - [anon_sym_usize] = ACTIONS(1109), - [anon_sym_f32] = ACTIONS(1109), - [anon_sym_f64] = ACTIONS(1109), - [anon_sym_c_char] = ACTIONS(1109), - [anon_sym_c_schar] = ACTIONS(1109), - [anon_sym_c_uchar] = ACTIONS(1109), - [anon_sym_c_short] = ACTIONS(1109), - [anon_sym_c_ushort] = ACTIONS(1109), - [anon_sym_c_int] = ACTIONS(1109), - [anon_sym_c_uint] = ACTIONS(1109), - [anon_sym_c_long] = ACTIONS(1109), - [anon_sym_c_ulong] = ACTIONS(1109), - [anon_sym_c_longlong] = ACTIONS(1109), - [anon_sym_c_ulonglong] = ACTIONS(1109), - [anon_sym_c_float] = ACTIONS(1109), - [anon_sym_c_double] = ACTIONS(1109), - [anon_sym_c_longdouble] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1107), - [anon_sym_DASH_EQ] = ACTIONS(1107), - [anon_sym_STAR_EQ] = ACTIONS(1107), - [anon_sym_SLASH_EQ] = ACTIONS(1107), - [anon_sym_AMP_EQ] = ACTIONS(1107), - [anon_sym_PIPE_EQ] = ACTIONS(1107), - [anon_sym_xor_EQ] = ACTIONS(1107), - [anon_sym_LT_LT_EQ] = ACTIONS(1107), - [anon_sym_GT_GT_EQ] = ACTIONS(1107), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_defer] = ACTIONS(1109), - [anon_sym_errdefer] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_expand] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1107), - [anon_sym_orelse] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1107), - [anon_sym_BANG_EQ] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_LT_LT_PIPE] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [sym_none] = ACTIONS(1109), - [sym_undefined] = ACTIONS(1109), - [sym_sink] = ACTIONS(1109), - [sym_integer] = ACTIONS(1109), - [sym_float] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [sym_multiline_string] = ACTIONS(1107), - [sym_character] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_test] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_func] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_void] = ACTIONS(950), + [anon_sym_type] = ACTIONS(950), + [anon_sym_anyopaque] = ACTIONS(950), + [anon_sym_bool] = ACTIONS(950), + [anon_sym_int] = ACTIONS(950), + [anon_sym_uint] = ACTIONS(950), + [anon_sym_float] = ACTIONS(950), + [anon_sym_range] = ACTIONS(950), + [anon_sym_i8] = ACTIONS(950), + [anon_sym_i16] = ACTIONS(950), + [anon_sym_i32] = ACTIONS(950), + [anon_sym_i64] = ACTIONS(950), + [anon_sym_u8] = ACTIONS(950), + [anon_sym_u16] = ACTIONS(950), + [anon_sym_u32] = ACTIONS(950), + [anon_sym_u64] = ACTIONS(950), + [anon_sym_isize] = ACTIONS(950), + [anon_sym_usize] = ACTIONS(950), + [anon_sym_f32] = ACTIONS(950), + [anon_sym_f64] = ACTIONS(950), + [anon_sym_c_char] = ACTIONS(950), + [anon_sym_c_schar] = ACTIONS(950), + [anon_sym_c_uchar] = ACTIONS(950), + [anon_sym_c_short] = ACTIONS(950), + [anon_sym_c_ushort] = ACTIONS(950), + [anon_sym_c_int] = ACTIONS(950), + [anon_sym_c_uint] = ACTIONS(950), + [anon_sym_c_long] = ACTIONS(950), + [anon_sym_c_ulong] = ACTIONS(950), + [anon_sym_c_longlong] = ACTIONS(950), + [anon_sym_c_ulonglong] = ACTIONS(950), + [anon_sym_c_float] = ACTIONS(950), + [anon_sym_c_double] = ACTIONS(950), + [anon_sym_c_longdouble] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_AMP_EQ] = ACTIONS(948), + [anon_sym_PIPE_EQ] = ACTIONS(948), + [anon_sym_xor_EQ] = ACTIONS(948), + [anon_sym_LT_LT_EQ] = ACTIONS(948), + [anon_sym_GT_GT_EQ] = ACTIONS(948), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_defer] = ACTIONS(950), + [anon_sym_errdefer] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_expand] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_orelse] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_or] = ACTIONS(950), + [anon_sym_and] = ACTIONS(950), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_BANG_EQ] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(950), + [anon_sym_LT_EQ] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_GT_EQ] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_xor] = ACTIONS(950), + [anon_sym_LT_LT] = ACTIONS(950), + [anon_sym_GT_GT] = ACTIONS(950), + [anon_sym_LT_LT_PIPE] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [sym_none] = ACTIONS(950), + [sym_undefined] = ACTIONS(950), + [sym_sink] = ACTIONS(950), + [sym_integer] = ACTIONS(950), + [sym_float] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_multiline_string] = ACTIONS(948), + [sym_character] = ACTIONS(948), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1107), + [sym__newline] = ACTIONS(948), }, [STATE(248)] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_test] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_func] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_struct] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_anyopaque] = ACTIONS(1113), - [anon_sym_bool] = ACTIONS(1113), - [anon_sym_int] = ACTIONS(1113), - [anon_sym_uint] = ACTIONS(1113), - [anon_sym_float] = ACTIONS(1113), - [anon_sym_range] = ACTIONS(1113), - [anon_sym_i8] = ACTIONS(1113), - [anon_sym_i16] = ACTIONS(1113), - [anon_sym_i32] = ACTIONS(1113), - [anon_sym_i64] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1113), - [anon_sym_u16] = ACTIONS(1113), - [anon_sym_u32] = ACTIONS(1113), - [anon_sym_u64] = ACTIONS(1113), - [anon_sym_isize] = ACTIONS(1113), - [anon_sym_usize] = ACTIONS(1113), - [anon_sym_f32] = ACTIONS(1113), - [anon_sym_f64] = ACTIONS(1113), - [anon_sym_c_char] = ACTIONS(1113), - [anon_sym_c_schar] = ACTIONS(1113), - [anon_sym_c_uchar] = ACTIONS(1113), - [anon_sym_c_short] = ACTIONS(1113), - [anon_sym_c_ushort] = ACTIONS(1113), - [anon_sym_c_int] = ACTIONS(1113), - [anon_sym_c_uint] = ACTIONS(1113), - [anon_sym_c_long] = ACTIONS(1113), - [anon_sym_c_ulong] = ACTIONS(1113), - [anon_sym_c_longlong] = ACTIONS(1113), - [anon_sym_c_ulonglong] = ACTIONS(1113), - [anon_sym_c_float] = ACTIONS(1113), - [anon_sym_c_double] = ACTIONS(1113), - [anon_sym_c_longdouble] = ACTIONS(1113), - [anon_sym_PLUS_EQ] = ACTIONS(1111), - [anon_sym_DASH_EQ] = ACTIONS(1111), - [anon_sym_STAR_EQ] = ACTIONS(1111), - [anon_sym_SLASH_EQ] = ACTIONS(1111), - [anon_sym_AMP_EQ] = ACTIONS(1111), - [anon_sym_PIPE_EQ] = ACTIONS(1111), - [anon_sym_xor_EQ] = ACTIONS(1111), - [anon_sym_LT_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_GT_EQ] = ACTIONS(1111), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1111), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_defer] = ACTIONS(1113), - [anon_sym_errdefer] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_expand] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), - [anon_sym_orelse] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_LT_LT_PIPE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [sym_none] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [sym_sink] = ACTIONS(1113), - [sym_integer] = ACTIONS(1113), - [sym_float] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_multiline_string] = ACTIONS(1111), - [sym_character] = ACTIONS(1111), + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_test] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_func] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_void] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_anyopaque] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_int] = ACTIONS(954), + [anon_sym_uint] = ACTIONS(954), + [anon_sym_float] = ACTIONS(954), + [anon_sym_range] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_c_char] = ACTIONS(954), + [anon_sym_c_schar] = ACTIONS(954), + [anon_sym_c_uchar] = ACTIONS(954), + [anon_sym_c_short] = ACTIONS(954), + [anon_sym_c_ushort] = ACTIONS(954), + [anon_sym_c_int] = ACTIONS(954), + [anon_sym_c_uint] = ACTIONS(954), + [anon_sym_c_long] = ACTIONS(954), + [anon_sym_c_ulong] = ACTIONS(954), + [anon_sym_c_longlong] = ACTIONS(954), + [anon_sym_c_ulonglong] = ACTIONS(954), + [anon_sym_c_float] = ACTIONS(954), + [anon_sym_c_double] = ACTIONS(954), + [anon_sym_c_longdouble] = ACTIONS(954), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_AMP_EQ] = ACTIONS(952), + [anon_sym_PIPE_EQ] = ACTIONS(952), + [anon_sym_xor_EQ] = ACTIONS(952), + [anon_sym_LT_LT_EQ] = ACTIONS(952), + [anon_sym_GT_GT_EQ] = ACTIONS(952), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_defer] = ACTIONS(954), + [anon_sym_errdefer] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_expand] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_orelse] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_or] = ACTIONS(954), + [anon_sym_and] = ACTIONS(954), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_xor] = ACTIONS(954), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(954), + [anon_sym_LT_LT_PIPE] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(952), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [sym_none] = ACTIONS(954), + [sym_undefined] = ACTIONS(954), + [sym_sink] = ACTIONS(954), + [sym_integer] = ACTIONS(954), + [sym_float] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym_multiline_string] = ACTIONS(952), + [sym_character] = ACTIONS(952), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1111), + [sym__newline] = ACTIONS(952), }, [STATE(249)] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(1117), - [anon_sym_test] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_func] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_struct] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_void] = ACTIONS(1117), - [anon_sym_anyopaque] = ACTIONS(1117), - [anon_sym_bool] = ACTIONS(1117), - [anon_sym_int] = ACTIONS(1117), - [anon_sym_uint] = ACTIONS(1117), - [anon_sym_float] = ACTIONS(1117), - [anon_sym_range] = ACTIONS(1117), - [anon_sym_i8] = ACTIONS(1117), - [anon_sym_i16] = ACTIONS(1117), - [anon_sym_i32] = ACTIONS(1117), - [anon_sym_i64] = ACTIONS(1117), - [anon_sym_u8] = ACTIONS(1117), - [anon_sym_u16] = ACTIONS(1117), - [anon_sym_u32] = ACTIONS(1117), - [anon_sym_u64] = ACTIONS(1117), - [anon_sym_isize] = ACTIONS(1117), - [anon_sym_usize] = ACTIONS(1117), - [anon_sym_f32] = ACTIONS(1117), - [anon_sym_f64] = ACTIONS(1117), - [anon_sym_c_char] = ACTIONS(1117), - [anon_sym_c_schar] = ACTIONS(1117), - [anon_sym_c_uchar] = ACTIONS(1117), - [anon_sym_c_short] = ACTIONS(1117), - [anon_sym_c_ushort] = ACTIONS(1117), - [anon_sym_c_int] = ACTIONS(1117), - [anon_sym_c_uint] = ACTIONS(1117), - [anon_sym_c_long] = ACTIONS(1117), - [anon_sym_c_ulong] = ACTIONS(1117), - [anon_sym_c_longlong] = ACTIONS(1117), - [anon_sym_c_ulonglong] = ACTIONS(1117), - [anon_sym_c_float] = ACTIONS(1117), - [anon_sym_c_double] = ACTIONS(1117), - [anon_sym_c_longdouble] = ACTIONS(1117), - [anon_sym_PLUS_EQ] = ACTIONS(1115), - [anon_sym_DASH_EQ] = ACTIONS(1115), - [anon_sym_STAR_EQ] = ACTIONS(1115), - [anon_sym_SLASH_EQ] = ACTIONS(1115), - [anon_sym_AMP_EQ] = ACTIONS(1115), - [anon_sym_PIPE_EQ] = ACTIONS(1115), - [anon_sym_xor_EQ] = ACTIONS(1115), - [anon_sym_LT_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_GT_EQ] = ACTIONS(1115), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_defer] = ACTIONS(1117), - [anon_sym_errdefer] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_expand] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), - [anon_sym_orelse] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1117), - [anon_sym_LT_LT_PIPE] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [sym_none] = ACTIONS(1117), - [sym_undefined] = ACTIONS(1117), - [sym_sink] = ACTIONS(1117), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym_multiline_string] = ACTIONS(1115), - [sym_character] = ACTIONS(1115), + [ts_builtin_sym_end] = ACTIONS(956), + [sym_identifier] = ACTIONS(958), + [anon_sym_import] = ACTIONS(958), + [anon_sym_test] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_func] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_struct] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_void] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_anyopaque] = ACTIONS(958), + [anon_sym_bool] = ACTIONS(958), + [anon_sym_int] = ACTIONS(958), + [anon_sym_uint] = ACTIONS(958), + [anon_sym_float] = ACTIONS(958), + [anon_sym_range] = ACTIONS(958), + [anon_sym_i8] = ACTIONS(958), + [anon_sym_i16] = ACTIONS(958), + [anon_sym_i32] = ACTIONS(958), + [anon_sym_i64] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(958), + [anon_sym_u16] = ACTIONS(958), + [anon_sym_u32] = ACTIONS(958), + [anon_sym_u64] = ACTIONS(958), + [anon_sym_isize] = ACTIONS(958), + [anon_sym_usize] = ACTIONS(958), + [anon_sym_f32] = ACTIONS(958), + [anon_sym_f64] = ACTIONS(958), + [anon_sym_c_char] = ACTIONS(958), + [anon_sym_c_schar] = ACTIONS(958), + [anon_sym_c_uchar] = ACTIONS(958), + [anon_sym_c_short] = ACTIONS(958), + [anon_sym_c_ushort] = ACTIONS(958), + [anon_sym_c_int] = ACTIONS(958), + [anon_sym_c_uint] = ACTIONS(958), + [anon_sym_c_long] = ACTIONS(958), + [anon_sym_c_ulong] = ACTIONS(958), + [anon_sym_c_longlong] = ACTIONS(958), + [anon_sym_c_ulonglong] = ACTIONS(958), + [anon_sym_c_float] = ACTIONS(958), + [anon_sym_c_double] = ACTIONS(958), + [anon_sym_c_longdouble] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(956), + [anon_sym_DASH_EQ] = ACTIONS(956), + [anon_sym_STAR_EQ] = ACTIONS(956), + [anon_sym_SLASH_EQ] = ACTIONS(956), + [anon_sym_AMP_EQ] = ACTIONS(956), + [anon_sym_PIPE_EQ] = ACTIONS(956), + [anon_sym_xor_EQ] = ACTIONS(956), + [anon_sym_LT_LT_EQ] = ACTIONS(956), + [anon_sym_GT_GT_EQ] = ACTIONS(956), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(956), + [anon_sym_return] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_defer] = ACTIONS(958), + [anon_sym_errdefer] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_expand] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_orelse] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_or] = ACTIONS(958), + [anon_sym_and] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_xor] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_LT_LT_PIPE] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(958), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [sym_none] = ACTIONS(958), + [sym_undefined] = ACTIONS(958), + [sym_sink] = ACTIONS(958), + [sym_integer] = ACTIONS(958), + [sym_float] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym_multiline_string] = ACTIONS(956), + [sym_character] = ACTIONS(956), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1115), + [sym__newline] = ACTIONS(956), }, [STATE(250)] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_test] = ACTIONS(1121), - [anon_sym_hide] = ACTIONS(1121), - [anon_sym_func] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_struct] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_void] = ACTIONS(1121), - [anon_sym_anyopaque] = ACTIONS(1121), - [anon_sym_bool] = ACTIONS(1121), - [anon_sym_int] = ACTIONS(1121), - [anon_sym_uint] = ACTIONS(1121), - [anon_sym_float] = ACTIONS(1121), - [anon_sym_range] = ACTIONS(1121), - [anon_sym_i8] = ACTIONS(1121), - [anon_sym_i16] = ACTIONS(1121), - [anon_sym_i32] = ACTIONS(1121), - [anon_sym_i64] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1121), - [anon_sym_u16] = ACTIONS(1121), - [anon_sym_u32] = ACTIONS(1121), - [anon_sym_u64] = ACTIONS(1121), - [anon_sym_isize] = ACTIONS(1121), - [anon_sym_usize] = ACTIONS(1121), - [anon_sym_f32] = ACTIONS(1121), - [anon_sym_f64] = ACTIONS(1121), - [anon_sym_c_char] = ACTIONS(1121), - [anon_sym_c_schar] = ACTIONS(1121), - [anon_sym_c_uchar] = ACTIONS(1121), - [anon_sym_c_short] = ACTIONS(1121), - [anon_sym_c_ushort] = ACTIONS(1121), - [anon_sym_c_int] = ACTIONS(1121), - [anon_sym_c_uint] = ACTIONS(1121), - [anon_sym_c_long] = ACTIONS(1121), - [anon_sym_c_ulong] = ACTIONS(1121), - [anon_sym_c_longlong] = ACTIONS(1121), - [anon_sym_c_ulonglong] = ACTIONS(1121), - [anon_sym_c_float] = ACTIONS(1121), - [anon_sym_c_double] = ACTIONS(1121), - [anon_sym_c_longdouble] = ACTIONS(1121), - [anon_sym_PLUS_EQ] = ACTIONS(1119), - [anon_sym_DASH_EQ] = ACTIONS(1119), - [anon_sym_STAR_EQ] = ACTIONS(1119), - [anon_sym_SLASH_EQ] = ACTIONS(1119), - [anon_sym_AMP_EQ] = ACTIONS(1119), - [anon_sym_PIPE_EQ] = ACTIONS(1119), - [anon_sym_xor_EQ] = ACTIONS(1119), - [anon_sym_LT_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_GT_EQ] = ACTIONS(1119), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_defer] = ACTIONS(1121), - [anon_sym_errdefer] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_expand] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), - [anon_sym_orelse] = ACTIONS(1121), - [anon_sym_catch] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_xor] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1121), - [anon_sym_GT_GT] = ACTIONS(1121), - [anon_sym_LT_LT_PIPE] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1121), - [anon_sym_false] = ACTIONS(1121), - [sym_none] = ACTIONS(1121), - [sym_undefined] = ACTIONS(1121), - [sym_sink] = ACTIONS(1121), - [sym_integer] = ACTIONS(1121), - [sym_float] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_multiline_string] = ACTIONS(1119), - [sym_character] = ACTIONS(1119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1119), + [sym__newline] = ACTIONS(466), }, [STATE(251)] = { - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_identifier] = ACTIONS(1125), - [anon_sym_import] = ACTIONS(1125), - [anon_sym_test] = ACTIONS(1125), - [anon_sym_hide] = ACTIONS(1125), - [anon_sym_func] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(1125), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_void] = ACTIONS(1125), - [anon_sym_anyopaque] = ACTIONS(1125), - [anon_sym_bool] = ACTIONS(1125), - [anon_sym_int] = ACTIONS(1125), - [anon_sym_uint] = ACTIONS(1125), - [anon_sym_float] = ACTIONS(1125), - [anon_sym_range] = ACTIONS(1125), - [anon_sym_i8] = ACTIONS(1125), - [anon_sym_i16] = ACTIONS(1125), - [anon_sym_i32] = ACTIONS(1125), - [anon_sym_i64] = ACTIONS(1125), - [anon_sym_u8] = ACTIONS(1125), - [anon_sym_u16] = ACTIONS(1125), - [anon_sym_u32] = ACTIONS(1125), - [anon_sym_u64] = ACTIONS(1125), - [anon_sym_isize] = ACTIONS(1125), - [anon_sym_usize] = ACTIONS(1125), - [anon_sym_f32] = ACTIONS(1125), - [anon_sym_f64] = ACTIONS(1125), - [anon_sym_c_char] = ACTIONS(1125), - [anon_sym_c_schar] = ACTIONS(1125), - [anon_sym_c_uchar] = ACTIONS(1125), - [anon_sym_c_short] = ACTIONS(1125), - [anon_sym_c_ushort] = ACTIONS(1125), - [anon_sym_c_int] = ACTIONS(1125), - [anon_sym_c_uint] = ACTIONS(1125), - [anon_sym_c_long] = ACTIONS(1125), - [anon_sym_c_ulong] = ACTIONS(1125), - [anon_sym_c_longlong] = ACTIONS(1125), - [anon_sym_c_ulonglong] = ACTIONS(1125), - [anon_sym_c_float] = ACTIONS(1125), - [anon_sym_c_double] = ACTIONS(1125), - [anon_sym_c_longdouble] = ACTIONS(1125), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_AMP_EQ] = ACTIONS(1123), - [anon_sym_PIPE_EQ] = ACTIONS(1123), - [anon_sym_xor_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_GT_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_yield] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_defer] = ACTIONS(1125), - [anon_sym_errdefer] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_expand] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1123), - [anon_sym_orelse] = ACTIONS(1125), - [anon_sym_catch] = ACTIONS(1125), - [anon_sym_or] = ACTIONS(1125), - [anon_sym_and] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1123), - [anon_sym_BANG_EQ] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_xor] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_LT_LT_PIPE] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_try] = ACTIONS(1125), - [anon_sym_DOT] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(1125), - [anon_sym_false] = ACTIONS(1125), - [sym_none] = ACTIONS(1125), - [sym_undefined] = ACTIONS(1125), - [sym_sink] = ACTIONS(1125), - [sym_integer] = ACTIONS(1125), - [sym_float] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_multiline_string] = ACTIONS(1123), - [sym_character] = ACTIONS(1123), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1123), + [sym__newline] = ACTIONS(466), }, [STATE(252)] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_test] = ACTIONS(1131), - [anon_sym_hide] = ACTIONS(1131), - [anon_sym_func] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_anyopaque] = ACTIONS(1131), - [anon_sym_bool] = ACTIONS(1131), - [anon_sym_int] = ACTIONS(1131), - [anon_sym_uint] = ACTIONS(1131), - [anon_sym_float] = ACTIONS(1131), - [anon_sym_range] = ACTIONS(1131), - [anon_sym_i8] = ACTIONS(1131), - [anon_sym_i16] = ACTIONS(1131), - [anon_sym_i32] = ACTIONS(1131), - [anon_sym_i64] = ACTIONS(1131), - [anon_sym_u8] = ACTIONS(1131), - [anon_sym_u16] = ACTIONS(1131), - [anon_sym_u32] = ACTIONS(1131), - [anon_sym_u64] = ACTIONS(1131), - [anon_sym_isize] = ACTIONS(1131), - [anon_sym_usize] = ACTIONS(1131), - [anon_sym_f32] = ACTIONS(1131), - [anon_sym_f64] = ACTIONS(1131), - [anon_sym_c_char] = ACTIONS(1131), - [anon_sym_c_schar] = ACTIONS(1131), - [anon_sym_c_uchar] = ACTIONS(1131), - [anon_sym_c_short] = ACTIONS(1131), - [anon_sym_c_ushort] = ACTIONS(1131), - [anon_sym_c_int] = ACTIONS(1131), - [anon_sym_c_uint] = ACTIONS(1131), - [anon_sym_c_long] = ACTIONS(1131), - [anon_sym_c_ulong] = ACTIONS(1131), - [anon_sym_c_longlong] = ACTIONS(1131), - [anon_sym_c_ulonglong] = ACTIONS(1131), - [anon_sym_c_float] = ACTIONS(1131), - [anon_sym_c_double] = ACTIONS(1131), - [anon_sym_c_longdouble] = ACTIONS(1131), - [anon_sym_PLUS_EQ] = ACTIONS(1129), - [anon_sym_DASH_EQ] = ACTIONS(1129), - [anon_sym_STAR_EQ] = ACTIONS(1129), - [anon_sym_SLASH_EQ] = ACTIONS(1129), - [anon_sym_AMP_EQ] = ACTIONS(1129), - [anon_sym_PIPE_EQ] = ACTIONS(1129), - [anon_sym_xor_EQ] = ACTIONS(1129), - [anon_sym_LT_LT_EQ] = ACTIONS(1129), - [anon_sym_GT_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1129), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_defer] = ACTIONS(1131), - [anon_sym_errdefer] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_expand] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), - [anon_sym_orelse] = ACTIONS(1131), - [anon_sym_catch] = ACTIONS(1131), - [anon_sym_or] = ACTIONS(1131), - [anon_sym_and] = ACTIONS(1131), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_xor] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1131), - [anon_sym_GT_GT] = ACTIONS(1131), - [anon_sym_LT_LT_PIPE] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_CARET] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [sym_none] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [sym_sink] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_multiline_string] = ACTIONS(1129), - [sym_character] = ACTIONS(1129), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1129), + [sym__newline] = ACTIONS(466), }, [STATE(253)] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(1135), - [anon_sym_test] = ACTIONS(1135), - [anon_sym_hide] = ACTIONS(1135), - [anon_sym_func] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_anyopaque] = ACTIONS(1135), - [anon_sym_bool] = ACTIONS(1135), - [anon_sym_int] = ACTIONS(1135), - [anon_sym_uint] = ACTIONS(1135), - [anon_sym_float] = ACTIONS(1135), - [anon_sym_range] = ACTIONS(1135), - [anon_sym_i8] = ACTIONS(1135), - [anon_sym_i16] = ACTIONS(1135), - [anon_sym_i32] = ACTIONS(1135), - [anon_sym_i64] = ACTIONS(1135), - [anon_sym_u8] = ACTIONS(1135), - [anon_sym_u16] = ACTIONS(1135), - [anon_sym_u32] = ACTIONS(1135), - [anon_sym_u64] = ACTIONS(1135), - [anon_sym_isize] = ACTIONS(1135), - [anon_sym_usize] = ACTIONS(1135), - [anon_sym_f32] = ACTIONS(1135), - [anon_sym_f64] = ACTIONS(1135), - [anon_sym_c_char] = ACTIONS(1135), - [anon_sym_c_schar] = ACTIONS(1135), - [anon_sym_c_uchar] = ACTIONS(1135), - [anon_sym_c_short] = ACTIONS(1135), - [anon_sym_c_ushort] = ACTIONS(1135), - [anon_sym_c_int] = ACTIONS(1135), - [anon_sym_c_uint] = ACTIONS(1135), - [anon_sym_c_long] = ACTIONS(1135), - [anon_sym_c_ulong] = ACTIONS(1135), - [anon_sym_c_longlong] = ACTIONS(1135), - [anon_sym_c_ulonglong] = ACTIONS(1135), - [anon_sym_c_float] = ACTIONS(1135), - [anon_sym_c_double] = ACTIONS(1135), - [anon_sym_c_longdouble] = ACTIONS(1135), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_AMP_EQ] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1133), - [anon_sym_xor_EQ] = ACTIONS(1133), - [anon_sym_LT_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1133), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_defer] = ACTIONS(1135), - [anon_sym_errdefer] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_expand] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1133), - [anon_sym_orelse] = ACTIONS(1135), - [anon_sym_catch] = ACTIONS(1135), - [anon_sym_or] = ACTIONS(1135), - [anon_sym_and] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - [anon_sym_xor] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_LT_LT_PIPE] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [sym_none] = ACTIONS(1135), - [sym_undefined] = ACTIONS(1135), - [sym_sink] = ACTIONS(1135), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_multiline_string] = ACTIONS(1133), - [sym_character] = ACTIONS(1133), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1133), + [sym__newline] = ACTIONS(960), }, [STATE(254)] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1139), - [anon_sym_import] = ACTIONS(1139), - [anon_sym_test] = ACTIONS(1139), - [anon_sym_hide] = ACTIONS(1139), - [anon_sym_func] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_DOLLAR] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_QMARK] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1139), - [anon_sym_anyopaque] = ACTIONS(1139), - [anon_sym_bool] = ACTIONS(1139), - [anon_sym_int] = ACTIONS(1139), - [anon_sym_uint] = ACTIONS(1139), - [anon_sym_float] = ACTIONS(1139), - [anon_sym_range] = ACTIONS(1139), - [anon_sym_i8] = ACTIONS(1139), - [anon_sym_i16] = ACTIONS(1139), - [anon_sym_i32] = ACTIONS(1139), - [anon_sym_i64] = ACTIONS(1139), - [anon_sym_u8] = ACTIONS(1139), - [anon_sym_u16] = ACTIONS(1139), - [anon_sym_u32] = ACTIONS(1139), - [anon_sym_u64] = ACTIONS(1139), - [anon_sym_isize] = ACTIONS(1139), - [anon_sym_usize] = ACTIONS(1139), - [anon_sym_f32] = ACTIONS(1139), - [anon_sym_f64] = ACTIONS(1139), - [anon_sym_c_char] = ACTIONS(1139), - [anon_sym_c_schar] = ACTIONS(1139), - [anon_sym_c_uchar] = ACTIONS(1139), - [anon_sym_c_short] = ACTIONS(1139), - [anon_sym_c_ushort] = ACTIONS(1139), - [anon_sym_c_int] = ACTIONS(1139), - [anon_sym_c_uint] = ACTIONS(1139), - [anon_sym_c_long] = ACTIONS(1139), - [anon_sym_c_ulong] = ACTIONS(1139), - [anon_sym_c_longlong] = ACTIONS(1139), - [anon_sym_c_ulonglong] = ACTIONS(1139), - [anon_sym_c_float] = ACTIONS(1139), - [anon_sym_c_double] = ACTIONS(1139), - [anon_sym_c_longdouble] = ACTIONS(1139), - [anon_sym_PLUS_EQ] = ACTIONS(1137), - [anon_sym_DASH_EQ] = ACTIONS(1137), - [anon_sym_STAR_EQ] = ACTIONS(1137), - [anon_sym_SLASH_EQ] = ACTIONS(1137), - [anon_sym_AMP_EQ] = ACTIONS(1137), - [anon_sym_PIPE_EQ] = ACTIONS(1137), - [anon_sym_xor_EQ] = ACTIONS(1137), - [anon_sym_LT_LT_EQ] = ACTIONS(1137), - [anon_sym_GT_GT_EQ] = ACTIONS(1137), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1137), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_defer] = ACTIONS(1139), - [anon_sym_errdefer] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_expand] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), - [anon_sym_orelse] = ACTIONS(1139), - [anon_sym_catch] = ACTIONS(1139), - [anon_sym_or] = ACTIONS(1139), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1137), - [anon_sym_BANG_EQ] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1137), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - [anon_sym_xor] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_LT_LT_PIPE] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), - [sym_none] = ACTIONS(1139), - [sym_undefined] = ACTIONS(1139), - [sym_sink] = ACTIONS(1139), - [sym_integer] = ACTIONS(1139), - [sym_float] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_multiline_string] = ACTIONS(1137), - [sym_character] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), + [anon_sym_import] = ACTIONS(964), + [anon_sym_test] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_func] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_void] = ACTIONS(964), + [anon_sym_type] = ACTIONS(964), + [anon_sym_anyopaque] = ACTIONS(964), + [anon_sym_bool] = ACTIONS(964), + [anon_sym_int] = ACTIONS(964), + [anon_sym_uint] = ACTIONS(964), + [anon_sym_float] = ACTIONS(964), + [anon_sym_range] = ACTIONS(964), + [anon_sym_i8] = ACTIONS(964), + [anon_sym_i16] = ACTIONS(964), + [anon_sym_i32] = ACTIONS(964), + [anon_sym_i64] = ACTIONS(964), + [anon_sym_u8] = ACTIONS(964), + [anon_sym_u16] = ACTIONS(964), + [anon_sym_u32] = ACTIONS(964), + [anon_sym_u64] = ACTIONS(964), + [anon_sym_isize] = ACTIONS(964), + [anon_sym_usize] = ACTIONS(964), + [anon_sym_f32] = ACTIONS(964), + [anon_sym_f64] = ACTIONS(964), + [anon_sym_c_char] = ACTIONS(964), + [anon_sym_c_schar] = ACTIONS(964), + [anon_sym_c_uchar] = ACTIONS(964), + [anon_sym_c_short] = ACTIONS(964), + [anon_sym_c_ushort] = ACTIONS(964), + [anon_sym_c_int] = ACTIONS(964), + [anon_sym_c_uint] = ACTIONS(964), + [anon_sym_c_long] = ACTIONS(964), + [anon_sym_c_ulong] = ACTIONS(964), + [anon_sym_c_longlong] = ACTIONS(964), + [anon_sym_c_ulonglong] = ACTIONS(964), + [anon_sym_c_float] = ACTIONS(964), + [anon_sym_c_double] = ACTIONS(964), + [anon_sym_c_longdouble] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_xor_EQ] = ACTIONS(962), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(962), + [anon_sym_return] = ACTIONS(964), + [anon_sym_yield] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_defer] = ACTIONS(964), + [anon_sym_errdefer] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_expand] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_orelse] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_LT_LT_PIPE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [sym_none] = ACTIONS(964), + [sym_undefined] = ACTIONS(964), + [sym_sink] = ACTIONS(964), + [sym_integer] = ACTIONS(964), + [sym_float] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_multiline_string] = ACTIONS(962), + [sym_character] = ACTIONS(962), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1137), + [sym__newline] = ACTIONS(962), }, [STATE(255)] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), - [anon_sym_import] = ACTIONS(1143), - [anon_sym_test] = ACTIONS(1143), - [anon_sym_hide] = ACTIONS(1143), - [anon_sym_func] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_void] = ACTIONS(1143), - [anon_sym_anyopaque] = ACTIONS(1143), - [anon_sym_bool] = ACTIONS(1143), - [anon_sym_int] = ACTIONS(1143), - [anon_sym_uint] = ACTIONS(1143), - [anon_sym_float] = ACTIONS(1143), - [anon_sym_range] = ACTIONS(1143), - [anon_sym_i8] = ACTIONS(1143), - [anon_sym_i16] = ACTIONS(1143), - [anon_sym_i32] = ACTIONS(1143), - [anon_sym_i64] = ACTIONS(1143), - [anon_sym_u8] = ACTIONS(1143), - [anon_sym_u16] = ACTIONS(1143), - [anon_sym_u32] = ACTIONS(1143), - [anon_sym_u64] = ACTIONS(1143), - [anon_sym_isize] = ACTIONS(1143), - [anon_sym_usize] = ACTIONS(1143), - [anon_sym_f32] = ACTIONS(1143), - [anon_sym_f64] = ACTIONS(1143), - [anon_sym_c_char] = ACTIONS(1143), - [anon_sym_c_schar] = ACTIONS(1143), - [anon_sym_c_uchar] = ACTIONS(1143), - [anon_sym_c_short] = ACTIONS(1143), - [anon_sym_c_ushort] = ACTIONS(1143), - [anon_sym_c_int] = ACTIONS(1143), - [anon_sym_c_uint] = ACTIONS(1143), - [anon_sym_c_long] = ACTIONS(1143), - [anon_sym_c_ulong] = ACTIONS(1143), - [anon_sym_c_longlong] = ACTIONS(1143), - [anon_sym_c_ulonglong] = ACTIONS(1143), - [anon_sym_c_float] = ACTIONS(1143), - [anon_sym_c_double] = ACTIONS(1143), - [anon_sym_c_longdouble] = ACTIONS(1143), - [anon_sym_PLUS_EQ] = ACTIONS(1141), - [anon_sym_DASH_EQ] = ACTIONS(1141), - [anon_sym_STAR_EQ] = ACTIONS(1141), - [anon_sym_SLASH_EQ] = ACTIONS(1141), - [anon_sym_AMP_EQ] = ACTIONS(1141), - [anon_sym_PIPE_EQ] = ACTIONS(1141), - [anon_sym_xor_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_EQ] = ACTIONS(1141), - [anon_sym_GT_GT_EQ] = ACTIONS(1141), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_defer] = ACTIONS(1143), - [anon_sym_errdefer] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_expand] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(1143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), - [anon_sym_orelse] = ACTIONS(1143), - [anon_sym_catch] = ACTIONS(1143), - [anon_sym_or] = ACTIONS(1143), - [anon_sym_and] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_xor] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1143), - [anon_sym_LT_LT_PIPE] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), - [sym_none] = ACTIONS(1143), - [sym_undefined] = ACTIONS(1143), - [sym_sink] = ACTIONS(1143), - [sym_integer] = ACTIONS(1143), - [sym_float] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_multiline_string] = ACTIONS(1141), - [sym_character] = ACTIONS(1141), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(968), + [anon_sym_import] = ACTIONS(968), + [anon_sym_test] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_func] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_void] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_anyopaque] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_int] = ACTIONS(968), + [anon_sym_uint] = ACTIONS(968), + [anon_sym_float] = ACTIONS(968), + [anon_sym_range] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_c_char] = ACTIONS(968), + [anon_sym_c_schar] = ACTIONS(968), + [anon_sym_c_uchar] = ACTIONS(968), + [anon_sym_c_short] = ACTIONS(968), + [anon_sym_c_ushort] = ACTIONS(968), + [anon_sym_c_int] = ACTIONS(968), + [anon_sym_c_uint] = ACTIONS(968), + [anon_sym_c_long] = ACTIONS(968), + [anon_sym_c_ulong] = ACTIONS(968), + [anon_sym_c_longlong] = ACTIONS(968), + [anon_sym_c_ulonglong] = ACTIONS(968), + [anon_sym_c_float] = ACTIONS(968), + [anon_sym_c_double] = ACTIONS(968), + [anon_sym_c_longdouble] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_xor_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(966), + [anon_sym_return] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_defer] = ACTIONS(968), + [anon_sym_errdefer] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_expand] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_orelse] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_LT_LT_PIPE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [sym_none] = ACTIONS(968), + [sym_undefined] = ACTIONS(968), + [sym_sink] = ACTIONS(968), + [sym_integer] = ACTIONS(968), + [sym_float] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_multiline_string] = ACTIONS(966), + [sym_character] = ACTIONS(966), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1141), + [sym__newline] = ACTIONS(966), }, [STATE(256)] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1147), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_test] = ACTIONS(1147), - [anon_sym_hide] = ACTIONS(1147), - [anon_sym_func] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_DOLLAR] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1147), - [anon_sym_QMARK] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_anyopaque] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_int] = ACTIONS(1147), - [anon_sym_uint] = ACTIONS(1147), - [anon_sym_float] = ACTIONS(1147), - [anon_sym_range] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_c_char] = ACTIONS(1147), - [anon_sym_c_schar] = ACTIONS(1147), - [anon_sym_c_uchar] = ACTIONS(1147), - [anon_sym_c_short] = ACTIONS(1147), - [anon_sym_c_ushort] = ACTIONS(1147), - [anon_sym_c_int] = ACTIONS(1147), - [anon_sym_c_uint] = ACTIONS(1147), - [anon_sym_c_long] = ACTIONS(1147), - [anon_sym_c_ulong] = ACTIONS(1147), - [anon_sym_c_longlong] = ACTIONS(1147), - [anon_sym_c_ulonglong] = ACTIONS(1147), - [anon_sym_c_float] = ACTIONS(1147), - [anon_sym_c_double] = ACTIONS(1147), - [anon_sym_c_longdouble] = ACTIONS(1147), - [anon_sym_PLUS_EQ] = ACTIONS(1145), - [anon_sym_DASH_EQ] = ACTIONS(1145), - [anon_sym_STAR_EQ] = ACTIONS(1145), - [anon_sym_SLASH_EQ] = ACTIONS(1145), - [anon_sym_AMP_EQ] = ACTIONS(1145), - [anon_sym_PIPE_EQ] = ACTIONS(1145), - [anon_sym_xor_EQ] = ACTIONS(1145), - [anon_sym_LT_LT_EQ] = ACTIONS(1145), - [anon_sym_GT_GT_EQ] = ACTIONS(1145), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_defer] = ACTIONS(1147), - [anon_sym_errdefer] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_expand] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), - [anon_sym_orelse] = ACTIONS(1147), - [anon_sym_catch] = ACTIONS(1147), - [anon_sym_or] = ACTIONS(1147), - [anon_sym_and] = ACTIONS(1147), - [anon_sym_EQ_EQ] = ACTIONS(1145), - [anon_sym_BANG_EQ] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_LT_EQ] = ACTIONS(1145), - [anon_sym_GT] = ACTIONS(1147), - [anon_sym_GT_EQ] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_xor] = ACTIONS(1147), - [anon_sym_LT_LT] = ACTIONS(1147), - [anon_sym_GT_GT] = ACTIONS(1147), - [anon_sym_LT_LT_PIPE] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1147), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_CARET] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), - [sym_none] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1147), - [sym_sink] = ACTIONS(1147), - [sym_integer] = ACTIONS(1147), - [sym_float] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_multiline_string] = ACTIONS(1145), - [sym_character] = ACTIONS(1145), + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(972), + [anon_sym_import] = ACTIONS(972), + [anon_sym_test] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_func] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_void] = ACTIONS(972), + [anon_sym_type] = ACTIONS(972), + [anon_sym_anyopaque] = ACTIONS(972), + [anon_sym_bool] = ACTIONS(972), + [anon_sym_int] = ACTIONS(972), + [anon_sym_uint] = ACTIONS(972), + [anon_sym_float] = ACTIONS(972), + [anon_sym_range] = ACTIONS(972), + [anon_sym_i8] = ACTIONS(972), + [anon_sym_i16] = ACTIONS(972), + [anon_sym_i32] = ACTIONS(972), + [anon_sym_i64] = ACTIONS(972), + [anon_sym_u8] = ACTIONS(972), + [anon_sym_u16] = ACTIONS(972), + [anon_sym_u32] = ACTIONS(972), + [anon_sym_u64] = ACTIONS(972), + [anon_sym_isize] = ACTIONS(972), + [anon_sym_usize] = ACTIONS(972), + [anon_sym_f32] = ACTIONS(972), + [anon_sym_f64] = ACTIONS(972), + [anon_sym_c_char] = ACTIONS(972), + [anon_sym_c_schar] = ACTIONS(972), + [anon_sym_c_uchar] = ACTIONS(972), + [anon_sym_c_short] = ACTIONS(972), + [anon_sym_c_ushort] = ACTIONS(972), + [anon_sym_c_int] = ACTIONS(972), + [anon_sym_c_uint] = ACTIONS(972), + [anon_sym_c_long] = ACTIONS(972), + [anon_sym_c_ulong] = ACTIONS(972), + [anon_sym_c_longlong] = ACTIONS(972), + [anon_sym_c_ulonglong] = ACTIONS(972), + [anon_sym_c_float] = ACTIONS(972), + [anon_sym_c_double] = ACTIONS(972), + [anon_sym_c_longdouble] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_xor_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(970), + [anon_sym_return] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_defer] = ACTIONS(972), + [anon_sym_errdefer] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_expand] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_orelse] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_LT_LT_PIPE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [sym_none] = ACTIONS(972), + [sym_undefined] = ACTIONS(972), + [sym_sink] = ACTIONS(972), + [sym_integer] = ACTIONS(972), + [sym_float] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_multiline_string] = ACTIONS(970), + [sym_character] = ACTIONS(970), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1145), + [sym__newline] = ACTIONS(970), }, [STATE(257)] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_import] = ACTIONS(1151), - [anon_sym_test] = ACTIONS(1151), - [anon_sym_hide] = ACTIONS(1151), - [anon_sym_func] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_EQ] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_COMMA] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1151), - [anon_sym_QMARK] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_void] = ACTIONS(1151), - [anon_sym_anyopaque] = ACTIONS(1151), - [anon_sym_bool] = ACTIONS(1151), - [anon_sym_int] = ACTIONS(1151), - [anon_sym_uint] = ACTIONS(1151), - [anon_sym_float] = ACTIONS(1151), - [anon_sym_range] = ACTIONS(1151), - [anon_sym_i8] = ACTIONS(1151), - [anon_sym_i16] = ACTIONS(1151), - [anon_sym_i32] = ACTIONS(1151), - [anon_sym_i64] = ACTIONS(1151), - [anon_sym_u8] = ACTIONS(1151), - [anon_sym_u16] = ACTIONS(1151), - [anon_sym_u32] = ACTIONS(1151), - [anon_sym_u64] = ACTIONS(1151), - [anon_sym_isize] = ACTIONS(1151), - [anon_sym_usize] = ACTIONS(1151), - [anon_sym_f32] = ACTIONS(1151), - [anon_sym_f64] = ACTIONS(1151), - [anon_sym_c_char] = ACTIONS(1151), - [anon_sym_c_schar] = ACTIONS(1151), - [anon_sym_c_uchar] = ACTIONS(1151), - [anon_sym_c_short] = ACTIONS(1151), - [anon_sym_c_ushort] = ACTIONS(1151), - [anon_sym_c_int] = ACTIONS(1151), - [anon_sym_c_uint] = ACTIONS(1151), - [anon_sym_c_long] = ACTIONS(1151), - [anon_sym_c_ulong] = ACTIONS(1151), - [anon_sym_c_longlong] = ACTIONS(1151), - [anon_sym_c_ulonglong] = ACTIONS(1151), - [anon_sym_c_float] = ACTIONS(1151), - [anon_sym_c_double] = ACTIONS(1151), - [anon_sym_c_longdouble] = ACTIONS(1151), - [anon_sym_PLUS_EQ] = ACTIONS(1149), - [anon_sym_DASH_EQ] = ACTIONS(1149), - [anon_sym_STAR_EQ] = ACTIONS(1149), - [anon_sym_SLASH_EQ] = ACTIONS(1149), - [anon_sym_AMP_EQ] = ACTIONS(1149), - [anon_sym_PIPE_EQ] = ACTIONS(1149), - [anon_sym_xor_EQ] = ACTIONS(1149), - [anon_sym_LT_LT_EQ] = ACTIONS(1149), - [anon_sym_GT_GT_EQ] = ACTIONS(1149), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_yield] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_defer] = ACTIONS(1151), - [anon_sym_errdefer] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_expand] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_match] = ACTIONS(1151), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1149), - [anon_sym_orelse] = ACTIONS(1151), - [anon_sym_catch] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1151), - [anon_sym_and] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1149), - [anon_sym_BANG_EQ] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_xor] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_LT_LT_PIPE] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_SLASH] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_DOT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1149), - [anon_sym_true] = ACTIONS(1151), - [anon_sym_false] = ACTIONS(1151), - [sym_none] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1151), - [sym_sink] = ACTIONS(1151), - [sym_integer] = ACTIONS(1151), - [sym_float] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_multiline_string] = ACTIONS(1149), - [sym_character] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [anon_sym_import] = ACTIONS(976), + [anon_sym_test] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_func] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_void] = ACTIONS(976), + [anon_sym_type] = ACTIONS(976), + [anon_sym_anyopaque] = ACTIONS(976), + [anon_sym_bool] = ACTIONS(976), + [anon_sym_int] = ACTIONS(976), + [anon_sym_uint] = ACTIONS(976), + [anon_sym_float] = ACTIONS(976), + [anon_sym_range] = ACTIONS(976), + [anon_sym_i8] = ACTIONS(976), + [anon_sym_i16] = ACTIONS(976), + [anon_sym_i32] = ACTIONS(976), + [anon_sym_i64] = ACTIONS(976), + [anon_sym_u8] = ACTIONS(976), + [anon_sym_u16] = ACTIONS(976), + [anon_sym_u32] = ACTIONS(976), + [anon_sym_u64] = ACTIONS(976), + [anon_sym_isize] = ACTIONS(976), + [anon_sym_usize] = ACTIONS(976), + [anon_sym_f32] = ACTIONS(976), + [anon_sym_f64] = ACTIONS(976), + [anon_sym_c_char] = ACTIONS(976), + [anon_sym_c_schar] = ACTIONS(976), + [anon_sym_c_uchar] = ACTIONS(976), + [anon_sym_c_short] = ACTIONS(976), + [anon_sym_c_ushort] = ACTIONS(976), + [anon_sym_c_int] = ACTIONS(976), + [anon_sym_c_uint] = ACTIONS(976), + [anon_sym_c_long] = ACTIONS(976), + [anon_sym_c_ulong] = ACTIONS(976), + [anon_sym_c_longlong] = ACTIONS(976), + [anon_sym_c_ulonglong] = ACTIONS(976), + [anon_sym_c_float] = ACTIONS(976), + [anon_sym_c_double] = ACTIONS(976), + [anon_sym_c_longdouble] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_xor_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(974), + [anon_sym_return] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_defer] = ACTIONS(976), + [anon_sym_errdefer] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_expand] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_orelse] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_or] = ACTIONS(976), + [anon_sym_and] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_xor] = ACTIONS(976), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [anon_sym_LT_LT_PIPE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(974), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [sym_none] = ACTIONS(976), + [sym_undefined] = ACTIONS(976), + [sym_sink] = ACTIONS(976), + [sym_integer] = ACTIONS(976), + [sym_float] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_multiline_string] = ACTIONS(974), + [sym_character] = ACTIONS(974), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1149), + [sym__newline] = ACTIONS(974), }, [STATE(258)] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(1155), - [anon_sym_test] = ACTIONS(1155), - [anon_sym_hide] = ACTIONS(1155), - [anon_sym_func] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_anyopaque] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_int] = ACTIONS(1155), - [anon_sym_uint] = ACTIONS(1155), - [anon_sym_float] = ACTIONS(1155), - [anon_sym_range] = ACTIONS(1155), - [anon_sym_i8] = ACTIONS(1155), - [anon_sym_i16] = ACTIONS(1155), - [anon_sym_i32] = ACTIONS(1155), - [anon_sym_i64] = ACTIONS(1155), - [anon_sym_u8] = ACTIONS(1155), - [anon_sym_u16] = ACTIONS(1155), - [anon_sym_u32] = ACTIONS(1155), - [anon_sym_u64] = ACTIONS(1155), - [anon_sym_isize] = ACTIONS(1155), - [anon_sym_usize] = ACTIONS(1155), - [anon_sym_f32] = ACTIONS(1155), - [anon_sym_f64] = ACTIONS(1155), - [anon_sym_c_char] = ACTIONS(1155), - [anon_sym_c_schar] = ACTIONS(1155), - [anon_sym_c_uchar] = ACTIONS(1155), - [anon_sym_c_short] = ACTIONS(1155), - [anon_sym_c_ushort] = ACTIONS(1155), - [anon_sym_c_int] = ACTIONS(1155), - [anon_sym_c_uint] = ACTIONS(1155), - [anon_sym_c_long] = ACTIONS(1155), - [anon_sym_c_ulong] = ACTIONS(1155), - [anon_sym_c_longlong] = ACTIONS(1155), - [anon_sym_c_ulonglong] = ACTIONS(1155), - [anon_sym_c_float] = ACTIONS(1155), - [anon_sym_c_double] = ACTIONS(1155), - [anon_sym_c_longdouble] = ACTIONS(1155), - [anon_sym_PLUS_EQ] = ACTIONS(1153), - [anon_sym_DASH_EQ] = ACTIONS(1153), - [anon_sym_STAR_EQ] = ACTIONS(1153), - [anon_sym_SLASH_EQ] = ACTIONS(1153), - [anon_sym_AMP_EQ] = ACTIONS(1153), - [anon_sym_PIPE_EQ] = ACTIONS(1153), - [anon_sym_xor_EQ] = ACTIONS(1153), - [anon_sym_LT_LT_EQ] = ACTIONS(1153), - [anon_sym_GT_GT_EQ] = ACTIONS(1153), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_defer] = ACTIONS(1155), - [anon_sym_errdefer] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_expand] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_DOT_DOT] = ACTIONS(1155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1153), - [anon_sym_orelse] = ACTIONS(1155), - [anon_sym_catch] = ACTIONS(1155), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_and] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_EQ] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_GT_EQ] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_xor] = ACTIONS(1155), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_LT_LT_PIPE] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1155), - [anon_sym_CARET] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), - [sym_none] = ACTIONS(1155), - [sym_undefined] = ACTIONS(1155), - [sym_sink] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [sym_float] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_multiline_string] = ACTIONS(1153), - [sym_character] = ACTIONS(1153), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(466), }, [STATE(259)] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_test] = ACTIONS(1159), - [anon_sym_hide] = ACTIONS(1159), - [anon_sym_func] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_void] = ACTIONS(1159), - [anon_sym_anyopaque] = ACTIONS(1159), - [anon_sym_bool] = ACTIONS(1159), - [anon_sym_int] = ACTIONS(1159), - [anon_sym_uint] = ACTIONS(1159), - [anon_sym_float] = ACTIONS(1159), - [anon_sym_range] = ACTIONS(1159), - [anon_sym_i8] = ACTIONS(1159), - [anon_sym_i16] = ACTIONS(1159), - [anon_sym_i32] = ACTIONS(1159), - [anon_sym_i64] = ACTIONS(1159), - [anon_sym_u8] = ACTIONS(1159), - [anon_sym_u16] = ACTIONS(1159), - [anon_sym_u32] = ACTIONS(1159), - [anon_sym_u64] = ACTIONS(1159), - [anon_sym_isize] = ACTIONS(1159), - [anon_sym_usize] = ACTIONS(1159), - [anon_sym_f32] = ACTIONS(1159), - [anon_sym_f64] = ACTIONS(1159), - [anon_sym_c_char] = ACTIONS(1159), - [anon_sym_c_schar] = ACTIONS(1159), - [anon_sym_c_uchar] = ACTIONS(1159), - [anon_sym_c_short] = ACTIONS(1159), - [anon_sym_c_ushort] = ACTIONS(1159), - [anon_sym_c_int] = ACTIONS(1159), - [anon_sym_c_uint] = ACTIONS(1159), - [anon_sym_c_long] = ACTIONS(1159), - [anon_sym_c_ulong] = ACTIONS(1159), - [anon_sym_c_longlong] = ACTIONS(1159), - [anon_sym_c_ulonglong] = ACTIONS(1159), - [anon_sym_c_float] = ACTIONS(1159), - [anon_sym_c_double] = ACTIONS(1159), - [anon_sym_c_longdouble] = ACTIONS(1159), - [anon_sym_PLUS_EQ] = ACTIONS(1157), - [anon_sym_DASH_EQ] = ACTIONS(1157), - [anon_sym_STAR_EQ] = ACTIONS(1157), - [anon_sym_SLASH_EQ] = ACTIONS(1157), - [anon_sym_AMP_EQ] = ACTIONS(1157), - [anon_sym_PIPE_EQ] = ACTIONS(1157), - [anon_sym_xor_EQ] = ACTIONS(1157), - [anon_sym_LT_LT_EQ] = ACTIONS(1157), - [anon_sym_GT_GT_EQ] = ACTIONS(1157), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_yield] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_defer] = ACTIONS(1159), - [anon_sym_errdefer] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_expand] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_DOT_DOT] = ACTIONS(1159), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), - [anon_sym_orelse] = ACTIONS(1159), - [anon_sym_catch] = ACTIONS(1159), - [anon_sym_or] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1157), - [anon_sym_BANG_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1157), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_xor] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_LT_LT_PIPE] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_SLASH] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_try] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [sym_none] = ACTIONS(1159), - [sym_undefined] = ACTIONS(1159), - [sym_sink] = ACTIONS(1159), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_multiline_string] = ACTIONS(1157), - [sym_character] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(980), + [anon_sym_import] = ACTIONS(980), + [anon_sym_test] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_func] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_void] = ACTIONS(980), + [anon_sym_type] = ACTIONS(980), + [anon_sym_anyopaque] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_int] = ACTIONS(980), + [anon_sym_uint] = ACTIONS(980), + [anon_sym_float] = ACTIONS(980), + [anon_sym_range] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_c_char] = ACTIONS(980), + [anon_sym_c_schar] = ACTIONS(980), + [anon_sym_c_uchar] = ACTIONS(980), + [anon_sym_c_short] = ACTIONS(980), + [anon_sym_c_ushort] = ACTIONS(980), + [anon_sym_c_int] = ACTIONS(980), + [anon_sym_c_uint] = ACTIONS(980), + [anon_sym_c_long] = ACTIONS(980), + [anon_sym_c_ulong] = ACTIONS(980), + [anon_sym_c_longlong] = ACTIONS(980), + [anon_sym_c_ulonglong] = ACTIONS(980), + [anon_sym_c_float] = ACTIONS(980), + [anon_sym_c_double] = ACTIONS(980), + [anon_sym_c_longdouble] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_AMP_EQ] = ACTIONS(978), + [anon_sym_PIPE_EQ] = ACTIONS(978), + [anon_sym_xor_EQ] = ACTIONS(978), + [anon_sym_LT_LT_EQ] = ACTIONS(978), + [anon_sym_GT_GT_EQ] = ACTIONS(978), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(978), + [anon_sym_return] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_defer] = ACTIONS(980), + [anon_sym_errdefer] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_expand] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_orelse] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(978), + [anon_sym_BANG_EQ] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_LT_LT_PIPE] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(978), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [sym_none] = ACTIONS(980), + [sym_undefined] = ACTIONS(980), + [sym_sink] = ACTIONS(980), + [sym_integer] = ACTIONS(980), + [sym_float] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_multiline_string] = ACTIONS(978), + [sym_character] = ACTIONS(978), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1157), + [sym__newline] = ACTIONS(978), }, [STATE(260)] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_test] = ACTIONS(1163), - [anon_sym_hide] = ACTIONS(1163), - [anon_sym_func] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_EQ] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_anyopaque] = ACTIONS(1163), - [anon_sym_bool] = ACTIONS(1163), - [anon_sym_int] = ACTIONS(1163), - [anon_sym_uint] = ACTIONS(1163), - [anon_sym_float] = ACTIONS(1163), - [anon_sym_range] = ACTIONS(1163), - [anon_sym_i8] = ACTIONS(1163), - [anon_sym_i16] = ACTIONS(1163), - [anon_sym_i32] = ACTIONS(1163), - [anon_sym_i64] = ACTIONS(1163), - [anon_sym_u8] = ACTIONS(1163), - [anon_sym_u16] = ACTIONS(1163), - [anon_sym_u32] = ACTIONS(1163), - [anon_sym_u64] = ACTIONS(1163), - [anon_sym_isize] = ACTIONS(1163), - [anon_sym_usize] = ACTIONS(1163), - [anon_sym_f32] = ACTIONS(1163), - [anon_sym_f64] = ACTIONS(1163), - [anon_sym_c_char] = ACTIONS(1163), - [anon_sym_c_schar] = ACTIONS(1163), - [anon_sym_c_uchar] = ACTIONS(1163), - [anon_sym_c_short] = ACTIONS(1163), - [anon_sym_c_ushort] = ACTIONS(1163), - [anon_sym_c_int] = ACTIONS(1163), - [anon_sym_c_uint] = ACTIONS(1163), - [anon_sym_c_long] = ACTIONS(1163), - [anon_sym_c_ulong] = ACTIONS(1163), - [anon_sym_c_longlong] = ACTIONS(1163), - [anon_sym_c_ulonglong] = ACTIONS(1163), - [anon_sym_c_float] = ACTIONS(1163), - [anon_sym_c_double] = ACTIONS(1163), - [anon_sym_c_longdouble] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_xor_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_defer] = ACTIONS(1163), - [anon_sym_errdefer] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_expand] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_match] = ACTIONS(1163), - [anon_sym_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1161), - [anon_sym_orelse] = ACTIONS(1163), - [anon_sym_catch] = ACTIONS(1163), - [anon_sym_or] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1161), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_xor] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_LT_LT_PIPE] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(1163), - [anon_sym_false] = ACTIONS(1163), - [sym_none] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [sym_sink] = ACTIONS(1163), - [sym_integer] = ACTIONS(1163), - [sym_float] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_multiline_string] = ACTIONS(1161), - [sym_character] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [anon_sym_import] = ACTIONS(984), + [anon_sym_test] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_func] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_void] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_anyopaque] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_int] = ACTIONS(984), + [anon_sym_uint] = ACTIONS(984), + [anon_sym_float] = ACTIONS(984), + [anon_sym_range] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_c_char] = ACTIONS(984), + [anon_sym_c_schar] = ACTIONS(984), + [anon_sym_c_uchar] = ACTIONS(984), + [anon_sym_c_short] = ACTIONS(984), + [anon_sym_c_ushort] = ACTIONS(984), + [anon_sym_c_int] = ACTIONS(984), + [anon_sym_c_uint] = ACTIONS(984), + [anon_sym_c_long] = ACTIONS(984), + [anon_sym_c_ulong] = ACTIONS(984), + [anon_sym_c_longlong] = ACTIONS(984), + [anon_sym_c_ulonglong] = ACTIONS(984), + [anon_sym_c_float] = ACTIONS(984), + [anon_sym_c_double] = ACTIONS(984), + [anon_sym_c_longdouble] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_xor_EQ] = ACTIONS(982), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(982), + [anon_sym_return] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_defer] = ACTIONS(984), + [anon_sym_errdefer] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_expand] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_orelse] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_LT_LT_PIPE] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [sym_none] = ACTIONS(984), + [sym_undefined] = ACTIONS(984), + [sym_sink] = ACTIONS(984), + [sym_integer] = ACTIONS(984), + [sym_float] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_multiline_string] = ACTIONS(982), + [sym_character] = ACTIONS(982), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1161), + [sym__newline] = ACTIONS(982), }, [STATE(261)] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_test] = ACTIONS(1167), - [anon_sym_hide] = ACTIONS(1167), - [anon_sym_func] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_anyopaque] = ACTIONS(1167), - [anon_sym_bool] = ACTIONS(1167), - [anon_sym_int] = ACTIONS(1167), - [anon_sym_uint] = ACTIONS(1167), - [anon_sym_float] = ACTIONS(1167), - [anon_sym_range] = ACTIONS(1167), - [anon_sym_i8] = ACTIONS(1167), - [anon_sym_i16] = ACTIONS(1167), - [anon_sym_i32] = ACTIONS(1167), - [anon_sym_i64] = ACTIONS(1167), - [anon_sym_u8] = ACTIONS(1167), - [anon_sym_u16] = ACTIONS(1167), - [anon_sym_u32] = ACTIONS(1167), - [anon_sym_u64] = ACTIONS(1167), - [anon_sym_isize] = ACTIONS(1167), - [anon_sym_usize] = ACTIONS(1167), - [anon_sym_f32] = ACTIONS(1167), - [anon_sym_f64] = ACTIONS(1167), - [anon_sym_c_char] = ACTIONS(1167), - [anon_sym_c_schar] = ACTIONS(1167), - [anon_sym_c_uchar] = ACTIONS(1167), - [anon_sym_c_short] = ACTIONS(1167), - [anon_sym_c_ushort] = ACTIONS(1167), - [anon_sym_c_int] = ACTIONS(1167), - [anon_sym_c_uint] = ACTIONS(1167), - [anon_sym_c_long] = ACTIONS(1167), - [anon_sym_c_ulong] = ACTIONS(1167), - [anon_sym_c_longlong] = ACTIONS(1167), - [anon_sym_c_ulonglong] = ACTIONS(1167), - [anon_sym_c_float] = ACTIONS(1167), - [anon_sym_c_double] = ACTIONS(1167), - [anon_sym_c_longdouble] = ACTIONS(1167), - [anon_sym_PLUS_EQ] = ACTIONS(1165), - [anon_sym_DASH_EQ] = ACTIONS(1165), - [anon_sym_STAR_EQ] = ACTIONS(1165), - [anon_sym_SLASH_EQ] = ACTIONS(1165), - [anon_sym_AMP_EQ] = ACTIONS(1165), - [anon_sym_PIPE_EQ] = ACTIONS(1165), - [anon_sym_xor_EQ] = ACTIONS(1165), - [anon_sym_LT_LT_EQ] = ACTIONS(1165), - [anon_sym_GT_GT_EQ] = ACTIONS(1165), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_defer] = ACTIONS(1167), - [anon_sym_errdefer] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_expand] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1167), - [anon_sym_DOT_DOT] = ACTIONS(1167), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), - [anon_sym_orelse] = ACTIONS(1167), - [anon_sym_catch] = ACTIONS(1167), - [anon_sym_or] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_EQ_EQ] = ACTIONS(1165), - [anon_sym_BANG_EQ] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LT_EQ] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1167), - [anon_sym_GT_EQ] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_xor] = ACTIONS(1167), - [anon_sym_LT_LT] = ACTIONS(1167), - [anon_sym_GT_GT] = ACTIONS(1167), - [anon_sym_LT_LT_PIPE] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1167), - [anon_sym_CARET] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_false] = ACTIONS(1167), - [sym_none] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [sym_sink] = ACTIONS(1167), - [sym_integer] = ACTIONS(1167), - [sym_float] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_multiline_string] = ACTIONS(1165), - [sym_character] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [anon_sym_import] = ACTIONS(988), + [anon_sym_test] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_func] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_void] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_anyopaque] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_int] = ACTIONS(988), + [anon_sym_uint] = ACTIONS(988), + [anon_sym_float] = ACTIONS(988), + [anon_sym_range] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_c_char] = ACTIONS(988), + [anon_sym_c_schar] = ACTIONS(988), + [anon_sym_c_uchar] = ACTIONS(988), + [anon_sym_c_short] = ACTIONS(988), + [anon_sym_c_ushort] = ACTIONS(988), + [anon_sym_c_int] = ACTIONS(988), + [anon_sym_c_uint] = ACTIONS(988), + [anon_sym_c_long] = ACTIONS(988), + [anon_sym_c_ulong] = ACTIONS(988), + [anon_sym_c_longlong] = ACTIONS(988), + [anon_sym_c_ulonglong] = ACTIONS(988), + [anon_sym_c_float] = ACTIONS(988), + [anon_sym_c_double] = ACTIONS(988), + [anon_sym_c_longdouble] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_xor_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(986), + [anon_sym_return] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_defer] = ACTIONS(988), + [anon_sym_errdefer] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_expand] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_orelse] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_LT_LT_PIPE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [sym_none] = ACTIONS(988), + [sym_undefined] = ACTIONS(988), + [sym_sink] = ACTIONS(988), + [sym_integer] = ACTIONS(988), + [sym_float] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_multiline_string] = ACTIONS(986), + [sym_character] = ACTIONS(986), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1165), + [sym__newline] = ACTIONS(986), }, [STATE(262)] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_identifier] = ACTIONS(1171), - [anon_sym_import] = ACTIONS(1171), - [anon_sym_test] = ACTIONS(1171), - [anon_sym_hide] = ACTIONS(1171), - [anon_sym_func] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_EQ] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_QMARK] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_void] = ACTIONS(1171), - [anon_sym_anyopaque] = ACTIONS(1171), - [anon_sym_bool] = ACTIONS(1171), - [anon_sym_int] = ACTIONS(1171), - [anon_sym_uint] = ACTIONS(1171), - [anon_sym_float] = ACTIONS(1171), - [anon_sym_range] = ACTIONS(1171), - [anon_sym_i8] = ACTIONS(1171), - [anon_sym_i16] = ACTIONS(1171), - [anon_sym_i32] = ACTIONS(1171), - [anon_sym_i64] = ACTIONS(1171), - [anon_sym_u8] = ACTIONS(1171), - [anon_sym_u16] = ACTIONS(1171), - [anon_sym_u32] = ACTIONS(1171), - [anon_sym_u64] = ACTIONS(1171), - [anon_sym_isize] = ACTIONS(1171), - [anon_sym_usize] = ACTIONS(1171), - [anon_sym_f32] = ACTIONS(1171), - [anon_sym_f64] = ACTIONS(1171), - [anon_sym_c_char] = ACTIONS(1171), - [anon_sym_c_schar] = ACTIONS(1171), - [anon_sym_c_uchar] = ACTIONS(1171), - [anon_sym_c_short] = ACTIONS(1171), - [anon_sym_c_ushort] = ACTIONS(1171), - [anon_sym_c_int] = ACTIONS(1171), - [anon_sym_c_uint] = ACTIONS(1171), - [anon_sym_c_long] = ACTIONS(1171), - [anon_sym_c_ulong] = ACTIONS(1171), - [anon_sym_c_longlong] = ACTIONS(1171), - [anon_sym_c_ulonglong] = ACTIONS(1171), - [anon_sym_c_float] = ACTIONS(1171), - [anon_sym_c_double] = ACTIONS(1171), - [anon_sym_c_longdouble] = ACTIONS(1171), - [anon_sym_PLUS_EQ] = ACTIONS(1169), - [anon_sym_DASH_EQ] = ACTIONS(1169), - [anon_sym_STAR_EQ] = ACTIONS(1169), - [anon_sym_SLASH_EQ] = ACTIONS(1169), - [anon_sym_AMP_EQ] = ACTIONS(1169), - [anon_sym_PIPE_EQ] = ACTIONS(1169), - [anon_sym_xor_EQ] = ACTIONS(1169), - [anon_sym_LT_LT_EQ] = ACTIONS(1169), - [anon_sym_GT_GT_EQ] = ACTIONS(1169), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_yield] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_defer] = ACTIONS(1171), - [anon_sym_errdefer] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_expand] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_DOT_DOT] = ACTIONS(1171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), - [anon_sym_orelse] = ACTIONS(1171), - [anon_sym_catch] = ACTIONS(1171), - [anon_sym_or] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_EQ_EQ] = ACTIONS(1169), - [anon_sym_BANG_EQ] = ACTIONS(1169), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1169), - [anon_sym_GT] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_xor] = ACTIONS(1171), - [anon_sym_LT_LT] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(1171), - [anon_sym_LT_LT_PIPE] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_SLASH] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_CARET] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(1171), - [anon_sym_false] = ACTIONS(1171), - [sym_none] = ACTIONS(1171), - [sym_undefined] = ACTIONS(1171), - [sym_sink] = ACTIONS(1171), - [sym_integer] = ACTIONS(1171), - [sym_float] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym_multiline_string] = ACTIONS(1169), - [sym_character] = ACTIONS(1169), + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [anon_sym_import] = ACTIONS(992), + [anon_sym_test] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_func] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_void] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_anyopaque] = ACTIONS(992), + [anon_sym_bool] = ACTIONS(992), + [anon_sym_int] = ACTIONS(992), + [anon_sym_uint] = ACTIONS(992), + [anon_sym_float] = ACTIONS(992), + [anon_sym_range] = ACTIONS(992), + [anon_sym_i8] = ACTIONS(992), + [anon_sym_i16] = ACTIONS(992), + [anon_sym_i32] = ACTIONS(992), + [anon_sym_i64] = ACTIONS(992), + [anon_sym_u8] = ACTIONS(992), + [anon_sym_u16] = ACTIONS(992), + [anon_sym_u32] = ACTIONS(992), + [anon_sym_u64] = ACTIONS(992), + [anon_sym_isize] = ACTIONS(992), + [anon_sym_usize] = ACTIONS(992), + [anon_sym_f32] = ACTIONS(992), + [anon_sym_f64] = ACTIONS(992), + [anon_sym_c_char] = ACTIONS(992), + [anon_sym_c_schar] = ACTIONS(992), + [anon_sym_c_uchar] = ACTIONS(992), + [anon_sym_c_short] = ACTIONS(992), + [anon_sym_c_ushort] = ACTIONS(992), + [anon_sym_c_int] = ACTIONS(992), + [anon_sym_c_uint] = ACTIONS(992), + [anon_sym_c_long] = ACTIONS(992), + [anon_sym_c_ulong] = ACTIONS(992), + [anon_sym_c_longlong] = ACTIONS(992), + [anon_sym_c_ulonglong] = ACTIONS(992), + [anon_sym_c_float] = ACTIONS(992), + [anon_sym_c_double] = ACTIONS(992), + [anon_sym_c_longdouble] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_AMP_EQ] = ACTIONS(990), + [anon_sym_PIPE_EQ] = ACTIONS(990), + [anon_sym_xor_EQ] = ACTIONS(990), + [anon_sym_LT_LT_EQ] = ACTIONS(990), + [anon_sym_GT_GT_EQ] = ACTIONS(990), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_defer] = ACTIONS(992), + [anon_sym_errdefer] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_expand] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_orelse] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(990), + [anon_sym_BANG_EQ] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_LT_LT_PIPE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [sym_none] = ACTIONS(992), + [sym_undefined] = ACTIONS(992), + [sym_sink] = ACTIONS(992), + [sym_integer] = ACTIONS(992), + [sym_float] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_multiline_string] = ACTIONS(990), + [sym_character] = ACTIONS(990), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1169), + [sym__newline] = ACTIONS(990), }, [STATE(263)] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(1175), - [anon_sym_test] = ACTIONS(1175), - [anon_sym_hide] = ACTIONS(1175), - [anon_sym_func] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_DOLLAR] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_void] = ACTIONS(1175), - [anon_sym_anyopaque] = ACTIONS(1175), - [anon_sym_bool] = ACTIONS(1175), - [anon_sym_int] = ACTIONS(1175), - [anon_sym_uint] = ACTIONS(1175), - [anon_sym_float] = ACTIONS(1175), - [anon_sym_range] = ACTIONS(1175), - [anon_sym_i8] = ACTIONS(1175), - [anon_sym_i16] = ACTIONS(1175), - [anon_sym_i32] = ACTIONS(1175), - [anon_sym_i64] = ACTIONS(1175), - [anon_sym_u8] = ACTIONS(1175), - [anon_sym_u16] = ACTIONS(1175), - [anon_sym_u32] = ACTIONS(1175), - [anon_sym_u64] = ACTIONS(1175), - [anon_sym_isize] = ACTIONS(1175), - [anon_sym_usize] = ACTIONS(1175), - [anon_sym_f32] = ACTIONS(1175), - [anon_sym_f64] = ACTIONS(1175), - [anon_sym_c_char] = ACTIONS(1175), - [anon_sym_c_schar] = ACTIONS(1175), - [anon_sym_c_uchar] = ACTIONS(1175), - [anon_sym_c_short] = ACTIONS(1175), - [anon_sym_c_ushort] = ACTIONS(1175), - [anon_sym_c_int] = ACTIONS(1175), - [anon_sym_c_uint] = ACTIONS(1175), - [anon_sym_c_long] = ACTIONS(1175), - [anon_sym_c_ulong] = ACTIONS(1175), - [anon_sym_c_longlong] = ACTIONS(1175), - [anon_sym_c_ulonglong] = ACTIONS(1175), - [anon_sym_c_float] = ACTIONS(1175), - [anon_sym_c_double] = ACTIONS(1175), - [anon_sym_c_longdouble] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1173), - [anon_sym_DASH_EQ] = ACTIONS(1173), - [anon_sym_STAR_EQ] = ACTIONS(1173), - [anon_sym_SLASH_EQ] = ACTIONS(1173), - [anon_sym_AMP_EQ] = ACTIONS(1173), - [anon_sym_PIPE_EQ] = ACTIONS(1173), - [anon_sym_xor_EQ] = ACTIONS(1173), - [anon_sym_LT_LT_EQ] = ACTIONS(1173), - [anon_sym_GT_GT_EQ] = ACTIONS(1173), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_defer] = ACTIONS(1175), - [anon_sym_errdefer] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_expand] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_match] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), - [anon_sym_orelse] = ACTIONS(1175), - [anon_sym_catch] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_BANG_EQ] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_LT_EQ] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_xor] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1175), - [anon_sym_GT_GT] = ACTIONS(1175), - [anon_sym_LT_LT_PIPE] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1175), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(1175), - [anon_sym_false] = ACTIONS(1175), - [sym_none] = ACTIONS(1175), - [sym_undefined] = ACTIONS(1175), - [sym_sink] = ACTIONS(1175), - [sym_integer] = ACTIONS(1175), - [sym_float] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_multiline_string] = ACTIONS(1173), - [sym_character] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_test] = ACTIONS(996), + [anon_sym_hide] = ACTIONS(996), + [anon_sym_func] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_void] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_anyopaque] = ACTIONS(996), + [anon_sym_bool] = ACTIONS(996), + [anon_sym_int] = ACTIONS(996), + [anon_sym_uint] = ACTIONS(996), + [anon_sym_float] = ACTIONS(996), + [anon_sym_range] = ACTIONS(996), + [anon_sym_i8] = ACTIONS(996), + [anon_sym_i16] = ACTIONS(996), + [anon_sym_i32] = ACTIONS(996), + [anon_sym_i64] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(996), + [anon_sym_u16] = ACTIONS(996), + [anon_sym_u32] = ACTIONS(996), + [anon_sym_u64] = ACTIONS(996), + [anon_sym_isize] = ACTIONS(996), + [anon_sym_usize] = ACTIONS(996), + [anon_sym_f32] = ACTIONS(996), + [anon_sym_f64] = ACTIONS(996), + [anon_sym_c_char] = ACTIONS(996), + [anon_sym_c_schar] = ACTIONS(996), + [anon_sym_c_uchar] = ACTIONS(996), + [anon_sym_c_short] = ACTIONS(996), + [anon_sym_c_ushort] = ACTIONS(996), + [anon_sym_c_int] = ACTIONS(996), + [anon_sym_c_uint] = ACTIONS(996), + [anon_sym_c_long] = ACTIONS(996), + [anon_sym_c_ulong] = ACTIONS(996), + [anon_sym_c_longlong] = ACTIONS(996), + [anon_sym_c_ulonglong] = ACTIONS(996), + [anon_sym_c_float] = ACTIONS(996), + [anon_sym_c_double] = ACTIONS(996), + [anon_sym_c_longdouble] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(994), + [anon_sym_DASH_EQ] = ACTIONS(994), + [anon_sym_STAR_EQ] = ACTIONS(994), + [anon_sym_SLASH_EQ] = ACTIONS(994), + [anon_sym_AMP_EQ] = ACTIONS(994), + [anon_sym_PIPE_EQ] = ACTIONS(994), + [anon_sym_xor_EQ] = ACTIONS(994), + [anon_sym_LT_LT_EQ] = ACTIONS(994), + [anon_sym_GT_GT_EQ] = ACTIONS(994), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(994), + [anon_sym_return] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_defer] = ACTIONS(996), + [anon_sym_errdefer] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_expand] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_orelse] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_LT_LT_PIPE] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [sym_none] = ACTIONS(996), + [sym_undefined] = ACTIONS(996), + [sym_sink] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [sym_float] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_multiline_string] = ACTIONS(994), + [sym_character] = ACTIONS(994), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1173), + [sym__newline] = ACTIONS(994), }, [STATE(264)] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [anon_sym_import] = ACTIONS(1179), - [anon_sym_test] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_func] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_void] = ACTIONS(1179), - [anon_sym_anyopaque] = ACTIONS(1179), - [anon_sym_bool] = ACTIONS(1179), - [anon_sym_int] = ACTIONS(1179), - [anon_sym_uint] = ACTIONS(1179), - [anon_sym_float] = ACTIONS(1179), - [anon_sym_range] = ACTIONS(1179), - [anon_sym_i8] = ACTIONS(1179), - [anon_sym_i16] = ACTIONS(1179), - [anon_sym_i32] = ACTIONS(1179), - [anon_sym_i64] = ACTIONS(1179), - [anon_sym_u8] = ACTIONS(1179), - [anon_sym_u16] = ACTIONS(1179), - [anon_sym_u32] = ACTIONS(1179), - [anon_sym_u64] = ACTIONS(1179), - [anon_sym_isize] = ACTIONS(1179), - [anon_sym_usize] = ACTIONS(1179), - [anon_sym_f32] = ACTIONS(1179), - [anon_sym_f64] = ACTIONS(1179), - [anon_sym_c_char] = ACTIONS(1179), - [anon_sym_c_schar] = ACTIONS(1179), - [anon_sym_c_uchar] = ACTIONS(1179), - [anon_sym_c_short] = ACTIONS(1179), - [anon_sym_c_ushort] = ACTIONS(1179), - [anon_sym_c_int] = ACTIONS(1179), - [anon_sym_c_uint] = ACTIONS(1179), - [anon_sym_c_long] = ACTIONS(1179), - [anon_sym_c_ulong] = ACTIONS(1179), - [anon_sym_c_longlong] = ACTIONS(1179), - [anon_sym_c_ulonglong] = ACTIONS(1179), - [anon_sym_c_float] = ACTIONS(1179), - [anon_sym_c_double] = ACTIONS(1179), - [anon_sym_c_longdouble] = ACTIONS(1179), - [anon_sym_PLUS_EQ] = ACTIONS(1177), - [anon_sym_DASH_EQ] = ACTIONS(1177), - [anon_sym_STAR_EQ] = ACTIONS(1177), - [anon_sym_SLASH_EQ] = ACTIONS(1177), - [anon_sym_AMP_EQ] = ACTIONS(1177), - [anon_sym_PIPE_EQ] = ACTIONS(1177), - [anon_sym_xor_EQ] = ACTIONS(1177), - [anon_sym_LT_LT_EQ] = ACTIONS(1177), - [anon_sym_GT_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_yield] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_defer] = ACTIONS(1179), - [anon_sym_errdefer] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_expand] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), - [anon_sym_orelse] = ACTIONS(1179), - [anon_sym_catch] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_LT_LT] = ACTIONS(1179), - [anon_sym_GT_GT] = ACTIONS(1179), - [anon_sym_LT_LT_PIPE] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [sym_none] = ACTIONS(1179), - [sym_undefined] = ACTIONS(1179), - [sym_sink] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_multiline_string] = ACTIONS(1177), - [sym_character] = ACTIONS(1177), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(1000), + [anon_sym_test] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_func] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1000), + [anon_sym_type] = ACTIONS(1000), + [anon_sym_anyopaque] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(1000), + [anon_sym_uint] = ACTIONS(1000), + [anon_sym_float] = ACTIONS(1000), + [anon_sym_range] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_c_char] = ACTIONS(1000), + [anon_sym_c_schar] = ACTIONS(1000), + [anon_sym_c_uchar] = ACTIONS(1000), + [anon_sym_c_short] = ACTIONS(1000), + [anon_sym_c_ushort] = ACTIONS(1000), + [anon_sym_c_int] = ACTIONS(1000), + [anon_sym_c_uint] = ACTIONS(1000), + [anon_sym_c_long] = ACTIONS(1000), + [anon_sym_c_ulong] = ACTIONS(1000), + [anon_sym_c_longlong] = ACTIONS(1000), + [anon_sym_c_ulonglong] = ACTIONS(1000), + [anon_sym_c_float] = ACTIONS(1000), + [anon_sym_c_double] = ACTIONS(1000), + [anon_sym_c_longdouble] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_xor_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_defer] = ACTIONS(1000), + [anon_sym_errdefer] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_expand] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_orelse] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_or] = ACTIONS(1000), + [anon_sym_and] = ACTIONS(1000), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_xor] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_LT_LT_PIPE] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [sym_none] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1000), + [sym_sink] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_multiline_string] = ACTIONS(998), + [sym_character] = ACTIONS(998), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1177), + [sym__newline] = ACTIONS(998), }, [STATE(265)] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_test] = ACTIONS(1183), - [anon_sym_hide] = ACTIONS(1183), - [anon_sym_func] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_anyopaque] = ACTIONS(1183), - [anon_sym_bool] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_uint] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_range] = ACTIONS(1183), - [anon_sym_i8] = ACTIONS(1183), - [anon_sym_i16] = ACTIONS(1183), - [anon_sym_i32] = ACTIONS(1183), - [anon_sym_i64] = ACTIONS(1183), - [anon_sym_u8] = ACTIONS(1183), - [anon_sym_u16] = ACTIONS(1183), - [anon_sym_u32] = ACTIONS(1183), - [anon_sym_u64] = ACTIONS(1183), - [anon_sym_isize] = ACTIONS(1183), - [anon_sym_usize] = ACTIONS(1183), - [anon_sym_f32] = ACTIONS(1183), - [anon_sym_f64] = ACTIONS(1183), - [anon_sym_c_char] = ACTIONS(1183), - [anon_sym_c_schar] = ACTIONS(1183), - [anon_sym_c_uchar] = ACTIONS(1183), - [anon_sym_c_short] = ACTIONS(1183), - [anon_sym_c_ushort] = ACTIONS(1183), - [anon_sym_c_int] = ACTIONS(1183), - [anon_sym_c_uint] = ACTIONS(1183), - [anon_sym_c_long] = ACTIONS(1183), - [anon_sym_c_ulong] = ACTIONS(1183), - [anon_sym_c_longlong] = ACTIONS(1183), - [anon_sym_c_ulonglong] = ACTIONS(1183), - [anon_sym_c_float] = ACTIONS(1183), - [anon_sym_c_double] = ACTIONS(1183), - [anon_sym_c_longdouble] = ACTIONS(1183), - [anon_sym_PLUS_EQ] = ACTIONS(1181), - [anon_sym_DASH_EQ] = ACTIONS(1181), - [anon_sym_STAR_EQ] = ACTIONS(1181), - [anon_sym_SLASH_EQ] = ACTIONS(1181), - [anon_sym_AMP_EQ] = ACTIONS(1181), - [anon_sym_PIPE_EQ] = ACTIONS(1181), - [anon_sym_xor_EQ] = ACTIONS(1181), - [anon_sym_LT_LT_EQ] = ACTIONS(1181), - [anon_sym_GT_GT_EQ] = ACTIONS(1181), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_defer] = ACTIONS(1183), - [anon_sym_errdefer] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_expand] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_match] = ACTIONS(1183), - [anon_sym_DOT_DOT] = ACTIONS(1183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_orelse] = ACTIONS(1183), - [anon_sym_catch] = ACTIONS(1183), - [anon_sym_or] = ACTIONS(1183), - [anon_sym_and] = ACTIONS(1183), - [anon_sym_EQ_EQ] = ACTIONS(1181), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1183), - [anon_sym_LT_EQ] = ACTIONS(1181), - [anon_sym_GT] = ACTIONS(1183), - [anon_sym_GT_EQ] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_xor] = ACTIONS(1183), - [anon_sym_LT_LT] = ACTIONS(1183), - [anon_sym_GT_GT] = ACTIONS(1183), - [anon_sym_LT_LT_PIPE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1183), - [anon_sym_false] = ACTIONS(1183), - [sym_none] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [sym_sink] = ACTIONS(1183), - [sym_integer] = ACTIONS(1183), - [sym_float] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_multiline_string] = ACTIONS(1181), - [sym_character] = ACTIONS(1181), + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(1004), + [anon_sym_test] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_func] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_void] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(1004), + [anon_sym_anyopaque] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_int] = ACTIONS(1004), + [anon_sym_uint] = ACTIONS(1004), + [anon_sym_float] = ACTIONS(1004), + [anon_sym_range] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_c_char] = ACTIONS(1004), + [anon_sym_c_schar] = ACTIONS(1004), + [anon_sym_c_uchar] = ACTIONS(1004), + [anon_sym_c_short] = ACTIONS(1004), + [anon_sym_c_ushort] = ACTIONS(1004), + [anon_sym_c_int] = ACTIONS(1004), + [anon_sym_c_uint] = ACTIONS(1004), + [anon_sym_c_long] = ACTIONS(1004), + [anon_sym_c_ulong] = ACTIONS(1004), + [anon_sym_c_longlong] = ACTIONS(1004), + [anon_sym_c_ulonglong] = ACTIONS(1004), + [anon_sym_c_float] = ACTIONS(1004), + [anon_sym_c_double] = ACTIONS(1004), + [anon_sym_c_longdouble] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_AMP_EQ] = ACTIONS(1002), + [anon_sym_PIPE_EQ] = ACTIONS(1002), + [anon_sym_xor_EQ] = ACTIONS(1002), + [anon_sym_LT_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_GT_EQ] = ACTIONS(1002), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_defer] = ACTIONS(1004), + [anon_sym_errdefer] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_expand] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_orelse] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_LT_LT_PIPE] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [sym_none] = ACTIONS(1004), + [sym_undefined] = ACTIONS(1004), + [sym_sink] = ACTIONS(1004), + [sym_integer] = ACTIONS(1004), + [sym_float] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_multiline_string] = ACTIONS(1002), + [sym_character] = ACTIONS(1002), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1181), + [sym__newline] = ACTIONS(1002), }, [STATE(266)] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1187), - [anon_sym_import] = ACTIONS(1187), - [anon_sym_test] = ACTIONS(1187), - [anon_sym_hide] = ACTIONS(1187), - [anon_sym_func] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_DOLLAR] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1187), - [anon_sym_anyopaque] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_int] = ACTIONS(1187), - [anon_sym_uint] = ACTIONS(1187), - [anon_sym_float] = ACTIONS(1187), - [anon_sym_range] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_c_char] = ACTIONS(1187), - [anon_sym_c_schar] = ACTIONS(1187), - [anon_sym_c_uchar] = ACTIONS(1187), - [anon_sym_c_short] = ACTIONS(1187), - [anon_sym_c_ushort] = ACTIONS(1187), - [anon_sym_c_int] = ACTIONS(1187), - [anon_sym_c_uint] = ACTIONS(1187), - [anon_sym_c_long] = ACTIONS(1187), - [anon_sym_c_ulong] = ACTIONS(1187), - [anon_sym_c_longlong] = ACTIONS(1187), - [anon_sym_c_ulonglong] = ACTIONS(1187), - [anon_sym_c_float] = ACTIONS(1187), - [anon_sym_c_double] = ACTIONS(1187), - [anon_sym_c_longdouble] = ACTIONS(1187), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_xor_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_defer] = ACTIONS(1187), - [anon_sym_errdefer] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_expand] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_match] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), - [anon_sym_orelse] = ACTIONS(1187), - [anon_sym_catch] = ACTIONS(1187), - [anon_sym_or] = ACTIONS(1187), - [anon_sym_and] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_xor] = ACTIONS(1187), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_LT_LT_PIPE] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_try] = ACTIONS(1187), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_true] = ACTIONS(1187), - [anon_sym_false] = ACTIONS(1187), - [sym_none] = ACTIONS(1187), - [sym_undefined] = ACTIONS(1187), - [sym_sink] = ACTIONS(1187), - [sym_integer] = ACTIONS(1187), - [sym_float] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_multiline_string] = ACTIONS(1185), - [sym_character] = ACTIONS(1185), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_test] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_func] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_anyopaque] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_uint] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_range] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_c_char] = ACTIONS(1008), + [anon_sym_c_schar] = ACTIONS(1008), + [anon_sym_c_uchar] = ACTIONS(1008), + [anon_sym_c_short] = ACTIONS(1008), + [anon_sym_c_ushort] = ACTIONS(1008), + [anon_sym_c_int] = ACTIONS(1008), + [anon_sym_c_uint] = ACTIONS(1008), + [anon_sym_c_long] = ACTIONS(1008), + [anon_sym_c_ulong] = ACTIONS(1008), + [anon_sym_c_longlong] = ACTIONS(1008), + [anon_sym_c_ulonglong] = ACTIONS(1008), + [anon_sym_c_float] = ACTIONS(1008), + [anon_sym_c_double] = ACTIONS(1008), + [anon_sym_c_longdouble] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_xor_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_defer] = ACTIONS(1008), + [anon_sym_errdefer] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_expand] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_orelse] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_LT_LT_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [sym_none] = ACTIONS(1008), + [sym_undefined] = ACTIONS(1008), + [sym_sink] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [sym_float] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_multiline_string] = ACTIONS(1006), + [sym_character] = ACTIONS(1006), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1185), + [sym__newline] = ACTIONS(1006), }, [STATE(267)] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1191), - [anon_sym_import] = ACTIONS(1191), - [anon_sym_test] = ACTIONS(1191), - [anon_sym_hide] = ACTIONS(1191), - [anon_sym_func] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_void] = ACTIONS(1191), - [anon_sym_anyopaque] = ACTIONS(1191), - [anon_sym_bool] = ACTIONS(1191), - [anon_sym_int] = ACTIONS(1191), - [anon_sym_uint] = ACTIONS(1191), - [anon_sym_float] = ACTIONS(1191), - [anon_sym_range] = ACTIONS(1191), - [anon_sym_i8] = ACTIONS(1191), - [anon_sym_i16] = ACTIONS(1191), - [anon_sym_i32] = ACTIONS(1191), - [anon_sym_i64] = ACTIONS(1191), - [anon_sym_u8] = ACTIONS(1191), - [anon_sym_u16] = ACTIONS(1191), - [anon_sym_u32] = ACTIONS(1191), - [anon_sym_u64] = ACTIONS(1191), - [anon_sym_isize] = ACTIONS(1191), - [anon_sym_usize] = ACTIONS(1191), - [anon_sym_f32] = ACTIONS(1191), - [anon_sym_f64] = ACTIONS(1191), - [anon_sym_c_char] = ACTIONS(1191), - [anon_sym_c_schar] = ACTIONS(1191), - [anon_sym_c_uchar] = ACTIONS(1191), - [anon_sym_c_short] = ACTIONS(1191), - [anon_sym_c_ushort] = ACTIONS(1191), - [anon_sym_c_int] = ACTIONS(1191), - [anon_sym_c_uint] = ACTIONS(1191), - [anon_sym_c_long] = ACTIONS(1191), - [anon_sym_c_ulong] = ACTIONS(1191), - [anon_sym_c_longlong] = ACTIONS(1191), - [anon_sym_c_ulonglong] = ACTIONS(1191), - [anon_sym_c_float] = ACTIONS(1191), - [anon_sym_c_double] = ACTIONS(1191), - [anon_sym_c_longdouble] = ACTIONS(1191), - [anon_sym_PLUS_EQ] = ACTIONS(1189), - [anon_sym_DASH_EQ] = ACTIONS(1189), - [anon_sym_STAR_EQ] = ACTIONS(1189), - [anon_sym_SLASH_EQ] = ACTIONS(1189), - [anon_sym_AMP_EQ] = ACTIONS(1189), - [anon_sym_PIPE_EQ] = ACTIONS(1189), - [anon_sym_xor_EQ] = ACTIONS(1189), - [anon_sym_LT_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_yield] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_defer] = ACTIONS(1191), - [anon_sym_errdefer] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_expand] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1189), - [anon_sym_orelse] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1191), - [anon_sym_or] = ACTIONS(1191), - [anon_sym_and] = ACTIONS(1191), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_xor] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1191), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_LT_LT_PIPE] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1191), - [anon_sym_false] = ACTIONS(1191), - [sym_none] = ACTIONS(1191), - [sym_undefined] = ACTIONS(1191), - [sym_sink] = ACTIONS(1191), - [sym_integer] = ACTIONS(1191), - [sym_float] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_multiline_string] = ACTIONS(1189), - [sym_character] = ACTIONS(1189), + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_test] = ACTIONS(668), + [anon_sym_hide] = ACTIONS(668), + [anon_sym_func] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_struct] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_DOLLAR] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_void] = ACTIONS(668), + [anon_sym_type] = ACTIONS(668), + [anon_sym_anyopaque] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_uint] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_range] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_c_char] = ACTIONS(668), + [anon_sym_c_schar] = ACTIONS(668), + [anon_sym_c_uchar] = ACTIONS(668), + [anon_sym_c_short] = ACTIONS(668), + [anon_sym_c_ushort] = ACTIONS(668), + [anon_sym_c_int] = ACTIONS(668), + [anon_sym_c_uint] = ACTIONS(668), + [anon_sym_c_long] = ACTIONS(668), + [anon_sym_c_ulong] = ACTIONS(668), + [anon_sym_c_longlong] = ACTIONS(668), + [anon_sym_c_ulonglong] = ACTIONS(668), + [anon_sym_c_float] = ACTIONS(668), + [anon_sym_c_double] = ACTIONS(668), + [anon_sym_c_longdouble] = ACTIONS(668), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [anon_sym_xor_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_defer] = ACTIONS(668), + [anon_sym_errdefer] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_expand] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_match] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(666), + [anon_sym_orelse] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_xor] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_LT_LT_PIPE] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_true] = ACTIONS(668), + [anon_sym_false] = ACTIONS(668), + [sym_none] = ACTIONS(668), + [sym_undefined] = ACTIONS(668), + [sym_sink] = ACTIONS(668), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_multiline_string] = ACTIONS(666), + [sym_character] = ACTIONS(666), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1189), + [sym__newline] = ACTIONS(666), }, [STATE(268)] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_identifier] = ACTIONS(1195), - [anon_sym_import] = ACTIONS(1195), - [anon_sym_test] = ACTIONS(1195), - [anon_sym_hide] = ACTIONS(1195), - [anon_sym_func] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_EQ] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_void] = ACTIONS(1195), - [anon_sym_anyopaque] = ACTIONS(1195), - [anon_sym_bool] = ACTIONS(1195), - [anon_sym_int] = ACTIONS(1195), - [anon_sym_uint] = ACTIONS(1195), - [anon_sym_float] = ACTIONS(1195), - [anon_sym_range] = ACTIONS(1195), - [anon_sym_i8] = ACTIONS(1195), - [anon_sym_i16] = ACTIONS(1195), - [anon_sym_i32] = ACTIONS(1195), - [anon_sym_i64] = ACTIONS(1195), - [anon_sym_u8] = ACTIONS(1195), - [anon_sym_u16] = ACTIONS(1195), - [anon_sym_u32] = ACTIONS(1195), - [anon_sym_u64] = ACTIONS(1195), - [anon_sym_isize] = ACTIONS(1195), - [anon_sym_usize] = ACTIONS(1195), - [anon_sym_f32] = ACTIONS(1195), - [anon_sym_f64] = ACTIONS(1195), - [anon_sym_c_char] = ACTIONS(1195), - [anon_sym_c_schar] = ACTIONS(1195), - [anon_sym_c_uchar] = ACTIONS(1195), - [anon_sym_c_short] = ACTIONS(1195), - [anon_sym_c_ushort] = ACTIONS(1195), - [anon_sym_c_int] = ACTIONS(1195), - [anon_sym_c_uint] = ACTIONS(1195), - [anon_sym_c_long] = ACTIONS(1195), - [anon_sym_c_ulong] = ACTIONS(1195), - [anon_sym_c_longlong] = ACTIONS(1195), - [anon_sym_c_ulonglong] = ACTIONS(1195), - [anon_sym_c_float] = ACTIONS(1195), - [anon_sym_c_double] = ACTIONS(1195), - [anon_sym_c_longdouble] = ACTIONS(1195), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_AMP_EQ] = ACTIONS(1193), - [anon_sym_PIPE_EQ] = ACTIONS(1193), - [anon_sym_xor_EQ] = ACTIONS(1193), - [anon_sym_LT_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_GT_EQ] = ACTIONS(1193), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_defer] = ACTIONS(1195), - [anon_sym_errdefer] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_expand] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1193), - [anon_sym_orelse] = ACTIONS(1195), - [anon_sym_catch] = ACTIONS(1195), - [anon_sym_or] = ACTIONS(1195), - [anon_sym_and] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_xor] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT_PIPE] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [sym_none] = ACTIONS(1195), - [sym_undefined] = ACTIONS(1195), - [sym_sink] = ACTIONS(1195), - [sym_integer] = ACTIONS(1195), - [sym_float] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_multiline_string] = ACTIONS(1193), - [sym_character] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(1012), + [anon_sym_test] = ACTIONS(1012), + [anon_sym_hide] = ACTIONS(1012), + [anon_sym_func] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_anyopaque] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_int] = ACTIONS(1012), + [anon_sym_uint] = ACTIONS(1012), + [anon_sym_float] = ACTIONS(1012), + [anon_sym_range] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_c_char] = ACTIONS(1012), + [anon_sym_c_schar] = ACTIONS(1012), + [anon_sym_c_uchar] = ACTIONS(1012), + [anon_sym_c_short] = ACTIONS(1012), + [anon_sym_c_ushort] = ACTIONS(1012), + [anon_sym_c_int] = ACTIONS(1012), + [anon_sym_c_uint] = ACTIONS(1012), + [anon_sym_c_long] = ACTIONS(1012), + [anon_sym_c_ulong] = ACTIONS(1012), + [anon_sym_c_longlong] = ACTIONS(1012), + [anon_sym_c_ulonglong] = ACTIONS(1012), + [anon_sym_c_float] = ACTIONS(1012), + [anon_sym_c_double] = ACTIONS(1012), + [anon_sym_c_longdouble] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_xor_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_defer] = ACTIONS(1012), + [anon_sym_errdefer] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_expand] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_orelse] = ACTIONS(1012), + [anon_sym_catch] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_LT_LT_PIPE] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [sym_none] = ACTIONS(1012), + [sym_undefined] = ACTIONS(1012), + [sym_sink] = ACTIONS(1012), + [sym_integer] = ACTIONS(1012), + [sym_float] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_multiline_string] = ACTIONS(1010), + [sym_character] = ACTIONS(1010), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1193), + [sym__newline] = ACTIONS(1010), }, [STATE(269)] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_identifier] = ACTIONS(1199), - [anon_sym_import] = ACTIONS(1199), - [anon_sym_test] = ACTIONS(1199), - [anon_sym_hide] = ACTIONS(1199), - [anon_sym_func] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_EQ] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_COMMA] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_QMARK] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_void] = ACTIONS(1199), - [anon_sym_anyopaque] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_int] = ACTIONS(1199), - [anon_sym_uint] = ACTIONS(1199), - [anon_sym_float] = ACTIONS(1199), - [anon_sym_range] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_c_char] = ACTIONS(1199), - [anon_sym_c_schar] = ACTIONS(1199), - [anon_sym_c_uchar] = ACTIONS(1199), - [anon_sym_c_short] = ACTIONS(1199), - [anon_sym_c_ushort] = ACTIONS(1199), - [anon_sym_c_int] = ACTIONS(1199), - [anon_sym_c_uint] = ACTIONS(1199), - [anon_sym_c_long] = ACTIONS(1199), - [anon_sym_c_ulong] = ACTIONS(1199), - [anon_sym_c_longlong] = ACTIONS(1199), - [anon_sym_c_ulonglong] = ACTIONS(1199), - [anon_sym_c_float] = ACTIONS(1199), - [anon_sym_c_double] = ACTIONS(1199), - [anon_sym_c_longdouble] = ACTIONS(1199), - [anon_sym_PLUS_EQ] = ACTIONS(1197), - [anon_sym_DASH_EQ] = ACTIONS(1197), - [anon_sym_STAR_EQ] = ACTIONS(1197), - [anon_sym_SLASH_EQ] = ACTIONS(1197), - [anon_sym_AMP_EQ] = ACTIONS(1197), - [anon_sym_PIPE_EQ] = ACTIONS(1197), - [anon_sym_xor_EQ] = ACTIONS(1197), - [anon_sym_LT_LT_EQ] = ACTIONS(1197), - [anon_sym_GT_GT_EQ] = ACTIONS(1197), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_defer] = ACTIONS(1199), - [anon_sym_errdefer] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_expand] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), - [anon_sym_orelse] = ACTIONS(1199), - [anon_sym_catch] = ACTIONS(1199), - [anon_sym_or] = ACTIONS(1199), - [anon_sym_and] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1199), - [anon_sym_GT_EQ] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_xor] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT_PIPE] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_try] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), - [sym_none] = ACTIONS(1199), - [sym_undefined] = ACTIONS(1199), - [sym_sink] = ACTIONS(1199), - [sym_integer] = ACTIONS(1199), - [sym_float] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_multiline_string] = ACTIONS(1197), - [sym_character] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [anon_sym_import] = ACTIONS(1016), + [anon_sym_test] = ACTIONS(1016), + [anon_sym_hide] = ACTIONS(1016), + [anon_sym_func] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_QMARK] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_void] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(1016), + [anon_sym_anyopaque] = ACTIONS(1016), + [anon_sym_bool] = ACTIONS(1016), + [anon_sym_int] = ACTIONS(1016), + [anon_sym_uint] = ACTIONS(1016), + [anon_sym_float] = ACTIONS(1016), + [anon_sym_range] = ACTIONS(1016), + [anon_sym_i8] = ACTIONS(1016), + [anon_sym_i16] = ACTIONS(1016), + [anon_sym_i32] = ACTIONS(1016), + [anon_sym_i64] = ACTIONS(1016), + [anon_sym_u8] = ACTIONS(1016), + [anon_sym_u16] = ACTIONS(1016), + [anon_sym_u32] = ACTIONS(1016), + [anon_sym_u64] = ACTIONS(1016), + [anon_sym_isize] = ACTIONS(1016), + [anon_sym_usize] = ACTIONS(1016), + [anon_sym_f32] = ACTIONS(1016), + [anon_sym_f64] = ACTIONS(1016), + [anon_sym_c_char] = ACTIONS(1016), + [anon_sym_c_schar] = ACTIONS(1016), + [anon_sym_c_uchar] = ACTIONS(1016), + [anon_sym_c_short] = ACTIONS(1016), + [anon_sym_c_ushort] = ACTIONS(1016), + [anon_sym_c_int] = ACTIONS(1016), + [anon_sym_c_uint] = ACTIONS(1016), + [anon_sym_c_long] = ACTIONS(1016), + [anon_sym_c_ulong] = ACTIONS(1016), + [anon_sym_c_longlong] = ACTIONS(1016), + [anon_sym_c_ulonglong] = ACTIONS(1016), + [anon_sym_c_float] = ACTIONS(1016), + [anon_sym_c_double] = ACTIONS(1016), + [anon_sym_c_longdouble] = ACTIONS(1016), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_xor_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_defer] = ACTIONS(1016), + [anon_sym_errdefer] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_expand] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_orelse] = ACTIONS(1016), + [anon_sym_catch] = ACTIONS(1016), + [anon_sym_or] = ACTIONS(1016), + [anon_sym_and] = ACTIONS(1016), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_xor] = ACTIONS(1016), + [anon_sym_LT_LT] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1016), + [anon_sym_LT_LT_PIPE] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1016), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [sym_none] = ACTIONS(1016), + [sym_undefined] = ACTIONS(1016), + [sym_sink] = ACTIONS(1016), + [sym_integer] = ACTIONS(1016), + [sym_float] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_multiline_string] = ACTIONS(1014), + [sym_character] = ACTIONS(1014), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1197), + [sym__newline] = ACTIONS(1014), }, [STATE(270)] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), - [anon_sym_import] = ACTIONS(1203), - [anon_sym_test] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_func] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1203), - [anon_sym_anyopaque] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1203), - [anon_sym_int] = ACTIONS(1203), - [anon_sym_uint] = ACTIONS(1203), - [anon_sym_float] = ACTIONS(1203), - [anon_sym_range] = ACTIONS(1203), - [anon_sym_i8] = ACTIONS(1203), - [anon_sym_i16] = ACTIONS(1203), - [anon_sym_i32] = ACTIONS(1203), - [anon_sym_i64] = ACTIONS(1203), - [anon_sym_u8] = ACTIONS(1203), - [anon_sym_u16] = ACTIONS(1203), - [anon_sym_u32] = ACTIONS(1203), - [anon_sym_u64] = ACTIONS(1203), - [anon_sym_isize] = ACTIONS(1203), - [anon_sym_usize] = ACTIONS(1203), - [anon_sym_f32] = ACTIONS(1203), - [anon_sym_f64] = ACTIONS(1203), - [anon_sym_c_char] = ACTIONS(1203), - [anon_sym_c_schar] = ACTIONS(1203), - [anon_sym_c_uchar] = ACTIONS(1203), - [anon_sym_c_short] = ACTIONS(1203), - [anon_sym_c_ushort] = ACTIONS(1203), - [anon_sym_c_int] = ACTIONS(1203), - [anon_sym_c_uint] = ACTIONS(1203), - [anon_sym_c_long] = ACTIONS(1203), - [anon_sym_c_ulong] = ACTIONS(1203), - [anon_sym_c_longlong] = ACTIONS(1203), - [anon_sym_c_ulonglong] = ACTIONS(1203), - [anon_sym_c_float] = ACTIONS(1203), - [anon_sym_c_double] = ACTIONS(1203), - [anon_sym_c_longdouble] = ACTIONS(1203), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_xor_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_defer] = ACTIONS(1203), - [anon_sym_errdefer] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_expand] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), - [anon_sym_orelse] = ACTIONS(1203), - [anon_sym_catch] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1203), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_LT_LT_PIPE] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [sym_none] = ACTIONS(1203), - [sym_undefined] = ACTIONS(1203), - [sym_sink] = ACTIONS(1203), - [sym_integer] = ACTIONS(1203), - [sym_float] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_multiline_string] = ACTIONS(1201), - [sym_character] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_test] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_func] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_anyopaque] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_int] = ACTIONS(1020), + [anon_sym_uint] = ACTIONS(1020), + [anon_sym_float] = ACTIONS(1020), + [anon_sym_range] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_c_char] = ACTIONS(1020), + [anon_sym_c_schar] = ACTIONS(1020), + [anon_sym_c_uchar] = ACTIONS(1020), + [anon_sym_c_short] = ACTIONS(1020), + [anon_sym_c_ushort] = ACTIONS(1020), + [anon_sym_c_int] = ACTIONS(1020), + [anon_sym_c_uint] = ACTIONS(1020), + [anon_sym_c_long] = ACTIONS(1020), + [anon_sym_c_ulong] = ACTIONS(1020), + [anon_sym_c_longlong] = ACTIONS(1020), + [anon_sym_c_ulonglong] = ACTIONS(1020), + [anon_sym_c_float] = ACTIONS(1020), + [anon_sym_c_double] = ACTIONS(1020), + [anon_sym_c_longdouble] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1018), + [anon_sym_DASH_EQ] = ACTIONS(1018), + [anon_sym_STAR_EQ] = ACTIONS(1018), + [anon_sym_SLASH_EQ] = ACTIONS(1018), + [anon_sym_AMP_EQ] = ACTIONS(1018), + [anon_sym_PIPE_EQ] = ACTIONS(1018), + [anon_sym_xor_EQ] = ACTIONS(1018), + [anon_sym_LT_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_GT_EQ] = ACTIONS(1018), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_yield] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_defer] = ACTIONS(1020), + [anon_sym_errdefer] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_expand] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [anon_sym_orelse] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_LT_LT_PIPE] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [sym_none] = ACTIONS(1020), + [sym_undefined] = ACTIONS(1020), + [sym_sink] = ACTIONS(1020), + [sym_integer] = ACTIONS(1020), + [sym_float] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_multiline_string] = ACTIONS(1018), + [sym_character] = ACTIONS(1018), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1201), + [sym__newline] = ACTIONS(1018), }, [STATE(271)] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_test] = ACTIONS(1207), - [anon_sym_hide] = ACTIONS(1207), - [anon_sym_func] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_anyopaque] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_int] = ACTIONS(1207), - [anon_sym_uint] = ACTIONS(1207), - [anon_sym_float] = ACTIONS(1207), - [anon_sym_range] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_c_char] = ACTIONS(1207), - [anon_sym_c_schar] = ACTIONS(1207), - [anon_sym_c_uchar] = ACTIONS(1207), - [anon_sym_c_short] = ACTIONS(1207), - [anon_sym_c_ushort] = ACTIONS(1207), - [anon_sym_c_int] = ACTIONS(1207), - [anon_sym_c_uint] = ACTIONS(1207), - [anon_sym_c_long] = ACTIONS(1207), - [anon_sym_c_ulong] = ACTIONS(1207), - [anon_sym_c_longlong] = ACTIONS(1207), - [anon_sym_c_ulonglong] = ACTIONS(1207), - [anon_sym_c_float] = ACTIONS(1207), - [anon_sym_c_double] = ACTIONS(1207), - [anon_sym_c_longdouble] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_xor_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_defer] = ACTIONS(1207), - [anon_sym_errdefer] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_expand] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_match] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), - [anon_sym_orelse] = ACTIONS(1207), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_or] = ACTIONS(1207), - [anon_sym_and] = ACTIONS(1207), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_xor] = ACTIONS(1207), - [anon_sym_LT_LT] = ACTIONS(1207), - [anon_sym_GT_GT] = ACTIONS(1207), - [anon_sym_LT_LT_PIPE] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1207), - [anon_sym_false] = ACTIONS(1207), - [sym_none] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [sym_sink] = ACTIONS(1207), - [sym_integer] = ACTIONS(1207), - [sym_float] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_multiline_string] = ACTIONS(1205), - [sym_character] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1024), + [anon_sym_import] = ACTIONS(1024), + [anon_sym_test] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_func] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_anyopaque] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_int] = ACTIONS(1024), + [anon_sym_uint] = ACTIONS(1024), + [anon_sym_float] = ACTIONS(1024), + [anon_sym_range] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_c_char] = ACTIONS(1024), + [anon_sym_c_schar] = ACTIONS(1024), + [anon_sym_c_uchar] = ACTIONS(1024), + [anon_sym_c_short] = ACTIONS(1024), + [anon_sym_c_ushort] = ACTIONS(1024), + [anon_sym_c_int] = ACTIONS(1024), + [anon_sym_c_uint] = ACTIONS(1024), + [anon_sym_c_long] = ACTIONS(1024), + [anon_sym_c_ulong] = ACTIONS(1024), + [anon_sym_c_longlong] = ACTIONS(1024), + [anon_sym_c_ulonglong] = ACTIONS(1024), + [anon_sym_c_float] = ACTIONS(1024), + [anon_sym_c_double] = ACTIONS(1024), + [anon_sym_c_longdouble] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_AMP_EQ] = ACTIONS(1022), + [anon_sym_PIPE_EQ] = ACTIONS(1022), + [anon_sym_xor_EQ] = ACTIONS(1022), + [anon_sym_LT_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_GT_EQ] = ACTIONS(1022), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_defer] = ACTIONS(1024), + [anon_sym_errdefer] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_expand] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1024), + [anon_sym_LT_LT_PIPE] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [sym_none] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1024), + [sym_sink] = ACTIONS(1024), + [sym_integer] = ACTIONS(1024), + [sym_float] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_multiline_string] = ACTIONS(1022), + [sym_character] = ACTIONS(1022), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1205), + [sym__newline] = ACTIONS(1022), }, [STATE(272)] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1211), - [anon_sym_import] = ACTIONS(1211), - [anon_sym_test] = ACTIONS(1211), - [anon_sym_hide] = ACTIONS(1211), - [anon_sym_func] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_QMARK] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1211), - [anon_sym_anyopaque] = ACTIONS(1211), - [anon_sym_bool] = ACTIONS(1211), - [anon_sym_int] = ACTIONS(1211), - [anon_sym_uint] = ACTIONS(1211), - [anon_sym_float] = ACTIONS(1211), - [anon_sym_range] = ACTIONS(1211), - [anon_sym_i8] = ACTIONS(1211), - [anon_sym_i16] = ACTIONS(1211), - [anon_sym_i32] = ACTIONS(1211), - [anon_sym_i64] = ACTIONS(1211), - [anon_sym_u8] = ACTIONS(1211), - [anon_sym_u16] = ACTIONS(1211), - [anon_sym_u32] = ACTIONS(1211), - [anon_sym_u64] = ACTIONS(1211), - [anon_sym_isize] = ACTIONS(1211), - [anon_sym_usize] = ACTIONS(1211), - [anon_sym_f32] = ACTIONS(1211), - [anon_sym_f64] = ACTIONS(1211), - [anon_sym_c_char] = ACTIONS(1211), - [anon_sym_c_schar] = ACTIONS(1211), - [anon_sym_c_uchar] = ACTIONS(1211), - [anon_sym_c_short] = ACTIONS(1211), - [anon_sym_c_ushort] = ACTIONS(1211), - [anon_sym_c_int] = ACTIONS(1211), - [anon_sym_c_uint] = ACTIONS(1211), - [anon_sym_c_long] = ACTIONS(1211), - [anon_sym_c_ulong] = ACTIONS(1211), - [anon_sym_c_longlong] = ACTIONS(1211), - [anon_sym_c_ulonglong] = ACTIONS(1211), - [anon_sym_c_float] = ACTIONS(1211), - [anon_sym_c_double] = ACTIONS(1211), - [anon_sym_c_longdouble] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1209), - [anon_sym_DASH_EQ] = ACTIONS(1209), - [anon_sym_STAR_EQ] = ACTIONS(1209), - [anon_sym_SLASH_EQ] = ACTIONS(1209), - [anon_sym_AMP_EQ] = ACTIONS(1209), - [anon_sym_PIPE_EQ] = ACTIONS(1209), - [anon_sym_xor_EQ] = ACTIONS(1209), - [anon_sym_LT_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_defer] = ACTIONS(1211), - [anon_sym_errdefer] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_expand] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), - [anon_sym_orelse] = ACTIONS(1211), - [anon_sym_catch] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_xor] = ACTIONS(1211), - [anon_sym_LT_LT] = ACTIONS(1211), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_LT_LT_PIPE] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_try] = ACTIONS(1211), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_true] = ACTIONS(1211), - [anon_sym_false] = ACTIONS(1211), - [sym_none] = ACTIONS(1211), - [sym_undefined] = ACTIONS(1211), - [sym_sink] = ACTIONS(1211), - [sym_integer] = ACTIONS(1211), - [sym_float] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_multiline_string] = ACTIONS(1209), - [sym_character] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1028), + [anon_sym_import] = ACTIONS(1028), + [anon_sym_test] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_func] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1028), + [anon_sym_anyopaque] = ACTIONS(1028), + [anon_sym_bool] = ACTIONS(1028), + [anon_sym_int] = ACTIONS(1028), + [anon_sym_uint] = ACTIONS(1028), + [anon_sym_float] = ACTIONS(1028), + [anon_sym_range] = ACTIONS(1028), + [anon_sym_i8] = ACTIONS(1028), + [anon_sym_i16] = ACTIONS(1028), + [anon_sym_i32] = ACTIONS(1028), + [anon_sym_i64] = ACTIONS(1028), + [anon_sym_u8] = ACTIONS(1028), + [anon_sym_u16] = ACTIONS(1028), + [anon_sym_u32] = ACTIONS(1028), + [anon_sym_u64] = ACTIONS(1028), + [anon_sym_isize] = ACTIONS(1028), + [anon_sym_usize] = ACTIONS(1028), + [anon_sym_f32] = ACTIONS(1028), + [anon_sym_f64] = ACTIONS(1028), + [anon_sym_c_char] = ACTIONS(1028), + [anon_sym_c_schar] = ACTIONS(1028), + [anon_sym_c_uchar] = ACTIONS(1028), + [anon_sym_c_short] = ACTIONS(1028), + [anon_sym_c_ushort] = ACTIONS(1028), + [anon_sym_c_int] = ACTIONS(1028), + [anon_sym_c_uint] = ACTIONS(1028), + [anon_sym_c_long] = ACTIONS(1028), + [anon_sym_c_ulong] = ACTIONS(1028), + [anon_sym_c_longlong] = ACTIONS(1028), + [anon_sym_c_ulonglong] = ACTIONS(1028), + [anon_sym_c_float] = ACTIONS(1028), + [anon_sym_c_double] = ACTIONS(1028), + [anon_sym_c_longdouble] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_AMP_EQ] = ACTIONS(1026), + [anon_sym_PIPE_EQ] = ACTIONS(1026), + [anon_sym_xor_EQ] = ACTIONS(1026), + [anon_sym_LT_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_GT_EQ] = ACTIONS(1026), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_yield] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_defer] = ACTIONS(1028), + [anon_sym_errdefer] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_expand] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_orelse] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_or] = ACTIONS(1028), + [anon_sym_and] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_xor] = ACTIONS(1028), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1028), + [anon_sym_LT_LT_PIPE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [sym_none] = ACTIONS(1028), + [sym_undefined] = ACTIONS(1028), + [sym_sink] = ACTIONS(1028), + [sym_integer] = ACTIONS(1028), + [sym_float] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_multiline_string] = ACTIONS(1026), + [sym_character] = ACTIONS(1026), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1209), + [sym__newline] = ACTIONS(1026), }, [STATE(273)] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_test] = ACTIONS(1215), - [anon_sym_hide] = ACTIONS(1215), - [anon_sym_func] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_struct] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_anyopaque] = ACTIONS(1215), - [anon_sym_bool] = ACTIONS(1215), - [anon_sym_int] = ACTIONS(1215), - [anon_sym_uint] = ACTIONS(1215), - [anon_sym_float] = ACTIONS(1215), - [anon_sym_range] = ACTIONS(1215), - [anon_sym_i8] = ACTIONS(1215), - [anon_sym_i16] = ACTIONS(1215), - [anon_sym_i32] = ACTIONS(1215), - [anon_sym_i64] = ACTIONS(1215), - [anon_sym_u8] = ACTIONS(1215), - [anon_sym_u16] = ACTIONS(1215), - [anon_sym_u32] = ACTIONS(1215), - [anon_sym_u64] = ACTIONS(1215), - [anon_sym_isize] = ACTIONS(1215), - [anon_sym_usize] = ACTIONS(1215), - [anon_sym_f32] = ACTIONS(1215), - [anon_sym_f64] = ACTIONS(1215), - [anon_sym_c_char] = ACTIONS(1215), - [anon_sym_c_schar] = ACTIONS(1215), - [anon_sym_c_uchar] = ACTIONS(1215), - [anon_sym_c_short] = ACTIONS(1215), - [anon_sym_c_ushort] = ACTIONS(1215), - [anon_sym_c_int] = ACTIONS(1215), - [anon_sym_c_uint] = ACTIONS(1215), - [anon_sym_c_long] = ACTIONS(1215), - [anon_sym_c_ulong] = ACTIONS(1215), - [anon_sym_c_longlong] = ACTIONS(1215), - [anon_sym_c_ulonglong] = ACTIONS(1215), - [anon_sym_c_float] = ACTIONS(1215), - [anon_sym_c_double] = ACTIONS(1215), - [anon_sym_c_longdouble] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1213), - [anon_sym_DASH_EQ] = ACTIONS(1213), - [anon_sym_STAR_EQ] = ACTIONS(1213), - [anon_sym_SLASH_EQ] = ACTIONS(1213), - [anon_sym_AMP_EQ] = ACTIONS(1213), - [anon_sym_PIPE_EQ] = ACTIONS(1213), - [anon_sym_xor_EQ] = ACTIONS(1213), - [anon_sym_LT_LT_EQ] = ACTIONS(1213), - [anon_sym_GT_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_defer] = ACTIONS(1215), - [anon_sym_errdefer] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_expand] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), - [anon_sym_orelse] = ACTIONS(1215), - [anon_sym_catch] = ACTIONS(1215), - [anon_sym_or] = ACTIONS(1215), - [anon_sym_and] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1213), - [anon_sym_BANG_EQ] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_xor] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_LT_LT_PIPE] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), - [sym_none] = ACTIONS(1215), - [sym_undefined] = ACTIONS(1215), - [sym_sink] = ACTIONS(1215), - [sym_integer] = ACTIONS(1215), - [sym_float] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_multiline_string] = ACTIONS(1213), - [sym_character] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_import] = ACTIONS(1032), + [anon_sym_test] = ACTIONS(1032), + [anon_sym_hide] = ACTIONS(1032), + [anon_sym_func] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1032), + [anon_sym_anyopaque] = ACTIONS(1032), + [anon_sym_bool] = ACTIONS(1032), + [anon_sym_int] = ACTIONS(1032), + [anon_sym_uint] = ACTIONS(1032), + [anon_sym_float] = ACTIONS(1032), + [anon_sym_range] = ACTIONS(1032), + [anon_sym_i8] = ACTIONS(1032), + [anon_sym_i16] = ACTIONS(1032), + [anon_sym_i32] = ACTIONS(1032), + [anon_sym_i64] = ACTIONS(1032), + [anon_sym_u8] = ACTIONS(1032), + [anon_sym_u16] = ACTIONS(1032), + [anon_sym_u32] = ACTIONS(1032), + [anon_sym_u64] = ACTIONS(1032), + [anon_sym_isize] = ACTIONS(1032), + [anon_sym_usize] = ACTIONS(1032), + [anon_sym_f32] = ACTIONS(1032), + [anon_sym_f64] = ACTIONS(1032), + [anon_sym_c_char] = ACTIONS(1032), + [anon_sym_c_schar] = ACTIONS(1032), + [anon_sym_c_uchar] = ACTIONS(1032), + [anon_sym_c_short] = ACTIONS(1032), + [anon_sym_c_ushort] = ACTIONS(1032), + [anon_sym_c_int] = ACTIONS(1032), + [anon_sym_c_uint] = ACTIONS(1032), + [anon_sym_c_long] = ACTIONS(1032), + [anon_sym_c_ulong] = ACTIONS(1032), + [anon_sym_c_longlong] = ACTIONS(1032), + [anon_sym_c_ulonglong] = ACTIONS(1032), + [anon_sym_c_float] = ACTIONS(1032), + [anon_sym_c_double] = ACTIONS(1032), + [anon_sym_c_longdouble] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_AMP_EQ] = ACTIONS(1030), + [anon_sym_PIPE_EQ] = ACTIONS(1030), + [anon_sym_xor_EQ] = ACTIONS(1030), + [anon_sym_LT_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_defer] = ACTIONS(1032), + [anon_sym_errdefer] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_expand] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_orelse] = ACTIONS(1032), + [anon_sym_catch] = ACTIONS(1032), + [anon_sym_or] = ACTIONS(1032), + [anon_sym_and] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1030), + [anon_sym_BANG_EQ] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_xor] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_LT_LT_PIPE] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [sym_none] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [sym_sink] = ACTIONS(1032), + [sym_integer] = ACTIONS(1032), + [sym_float] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_multiline_string] = ACTIONS(1030), + [sym_character] = ACTIONS(1030), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1213), + [sym__newline] = ACTIONS(1030), }, [STATE(274)] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_import] = ACTIONS(1219), - [anon_sym_test] = ACTIONS(1219), - [anon_sym_hide] = ACTIONS(1219), - [anon_sym_func] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1217), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_void] = ACTIONS(1219), - [anon_sym_anyopaque] = ACTIONS(1219), - [anon_sym_bool] = ACTIONS(1219), - [anon_sym_int] = ACTIONS(1219), - [anon_sym_uint] = ACTIONS(1219), - [anon_sym_float] = ACTIONS(1219), - [anon_sym_range] = ACTIONS(1219), - [anon_sym_i8] = ACTIONS(1219), - [anon_sym_i16] = ACTIONS(1219), - [anon_sym_i32] = ACTIONS(1219), - [anon_sym_i64] = ACTIONS(1219), - [anon_sym_u8] = ACTIONS(1219), - [anon_sym_u16] = ACTIONS(1219), - [anon_sym_u32] = ACTIONS(1219), - [anon_sym_u64] = ACTIONS(1219), - [anon_sym_isize] = ACTIONS(1219), - [anon_sym_usize] = ACTIONS(1219), - [anon_sym_f32] = ACTIONS(1219), - [anon_sym_f64] = ACTIONS(1219), - [anon_sym_c_char] = ACTIONS(1219), - [anon_sym_c_schar] = ACTIONS(1219), - [anon_sym_c_uchar] = ACTIONS(1219), - [anon_sym_c_short] = ACTIONS(1219), - [anon_sym_c_ushort] = ACTIONS(1219), - [anon_sym_c_int] = ACTIONS(1219), - [anon_sym_c_uint] = ACTIONS(1219), - [anon_sym_c_long] = ACTIONS(1219), - [anon_sym_c_ulong] = ACTIONS(1219), - [anon_sym_c_longlong] = ACTIONS(1219), - [anon_sym_c_ulonglong] = ACTIONS(1219), - [anon_sym_c_float] = ACTIONS(1219), - [anon_sym_c_double] = ACTIONS(1219), - [anon_sym_c_longdouble] = ACTIONS(1219), - [anon_sym_PLUS_EQ] = ACTIONS(1217), - [anon_sym_DASH_EQ] = ACTIONS(1217), - [anon_sym_STAR_EQ] = ACTIONS(1217), - [anon_sym_SLASH_EQ] = ACTIONS(1217), - [anon_sym_AMP_EQ] = ACTIONS(1217), - [anon_sym_PIPE_EQ] = ACTIONS(1217), - [anon_sym_xor_EQ] = ACTIONS(1217), - [anon_sym_LT_LT_EQ] = ACTIONS(1217), - [anon_sym_GT_GT_EQ] = ACTIONS(1217), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_defer] = ACTIONS(1219), - [anon_sym_errdefer] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_expand] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), - [anon_sym_orelse] = ACTIONS(1219), - [anon_sym_catch] = ACTIONS(1219), - [anon_sym_or] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1217), - [anon_sym_BANG_EQ] = ACTIONS(1217), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1217), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_xor] = ACTIONS(1219), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_LT_LT_PIPE] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_DOT] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1217), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_none] = ACTIONS(1219), - [sym_undefined] = ACTIONS(1219), - [sym_sink] = ACTIONS(1219), - [sym_integer] = ACTIONS(1219), - [sym_float] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_multiline_string] = ACTIONS(1217), - [sym_character] = ACTIONS(1217), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1036), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_test] = ACTIONS(1036), + [anon_sym_hide] = ACTIONS(1036), + [anon_sym_func] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_QMARK] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1034), + [anon_sym_void] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_anyopaque] = ACTIONS(1036), + [anon_sym_bool] = ACTIONS(1036), + [anon_sym_int] = ACTIONS(1036), + [anon_sym_uint] = ACTIONS(1036), + [anon_sym_float] = ACTIONS(1036), + [anon_sym_range] = ACTIONS(1036), + [anon_sym_i8] = ACTIONS(1036), + [anon_sym_i16] = ACTIONS(1036), + [anon_sym_i32] = ACTIONS(1036), + [anon_sym_i64] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1036), + [anon_sym_u16] = ACTIONS(1036), + [anon_sym_u32] = ACTIONS(1036), + [anon_sym_u64] = ACTIONS(1036), + [anon_sym_isize] = ACTIONS(1036), + [anon_sym_usize] = ACTIONS(1036), + [anon_sym_f32] = ACTIONS(1036), + [anon_sym_f64] = ACTIONS(1036), + [anon_sym_c_char] = ACTIONS(1036), + [anon_sym_c_schar] = ACTIONS(1036), + [anon_sym_c_uchar] = ACTIONS(1036), + [anon_sym_c_short] = ACTIONS(1036), + [anon_sym_c_ushort] = ACTIONS(1036), + [anon_sym_c_int] = ACTIONS(1036), + [anon_sym_c_uint] = ACTIONS(1036), + [anon_sym_c_long] = ACTIONS(1036), + [anon_sym_c_ulong] = ACTIONS(1036), + [anon_sym_c_longlong] = ACTIONS(1036), + [anon_sym_c_ulonglong] = ACTIONS(1036), + [anon_sym_c_float] = ACTIONS(1036), + [anon_sym_c_double] = ACTIONS(1036), + [anon_sym_c_longdouble] = ACTIONS(1036), + [anon_sym_PLUS_EQ] = ACTIONS(1034), + [anon_sym_DASH_EQ] = ACTIONS(1034), + [anon_sym_STAR_EQ] = ACTIONS(1034), + [anon_sym_SLASH_EQ] = ACTIONS(1034), + [anon_sym_AMP_EQ] = ACTIONS(1034), + [anon_sym_PIPE_EQ] = ACTIONS(1034), + [anon_sym_xor_EQ] = ACTIONS(1034), + [anon_sym_LT_LT_EQ] = ACTIONS(1034), + [anon_sym_GT_GT_EQ] = ACTIONS(1034), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_defer] = ACTIONS(1036), + [anon_sym_errdefer] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_expand] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_orelse] = ACTIONS(1036), + [anon_sym_catch] = ACTIONS(1036), + [anon_sym_or] = ACTIONS(1036), + [anon_sym_and] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_GT_EQ] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_xor] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1036), + [anon_sym_LT_LT_PIPE] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [sym_none] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1036), + [sym_sink] = ACTIONS(1036), + [sym_integer] = ACTIONS(1036), + [sym_float] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_multiline_string] = ACTIONS(1034), + [sym_character] = ACTIONS(1034), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1217), + [sym__newline] = ACTIONS(1034), }, [STATE(275)] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1223), - [anon_sym_import] = ACTIONS(1223), - [anon_sym_test] = ACTIONS(1223), - [anon_sym_hide] = ACTIONS(1223), - [anon_sym_func] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_void] = ACTIONS(1223), - [anon_sym_anyopaque] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_int] = ACTIONS(1223), - [anon_sym_uint] = ACTIONS(1223), - [anon_sym_float] = ACTIONS(1223), - [anon_sym_range] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_c_char] = ACTIONS(1223), - [anon_sym_c_schar] = ACTIONS(1223), - [anon_sym_c_uchar] = ACTIONS(1223), - [anon_sym_c_short] = ACTIONS(1223), - [anon_sym_c_ushort] = ACTIONS(1223), - [anon_sym_c_int] = ACTIONS(1223), - [anon_sym_c_uint] = ACTIONS(1223), - [anon_sym_c_long] = ACTIONS(1223), - [anon_sym_c_ulong] = ACTIONS(1223), - [anon_sym_c_longlong] = ACTIONS(1223), - [anon_sym_c_ulonglong] = ACTIONS(1223), - [anon_sym_c_float] = ACTIONS(1223), - [anon_sym_c_double] = ACTIONS(1223), - [anon_sym_c_longdouble] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1221), - [anon_sym_DASH_EQ] = ACTIONS(1221), - [anon_sym_STAR_EQ] = ACTIONS(1221), - [anon_sym_SLASH_EQ] = ACTIONS(1221), - [anon_sym_AMP_EQ] = ACTIONS(1221), - [anon_sym_PIPE_EQ] = ACTIONS(1221), - [anon_sym_xor_EQ] = ACTIONS(1221), - [anon_sym_LT_LT_EQ] = ACTIONS(1221), - [anon_sym_GT_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_yield] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_defer] = ACTIONS(1223), - [anon_sym_errdefer] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_expand] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_DOT_DOT] = ACTIONS(1223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), - [anon_sym_orelse] = ACTIONS(1223), - [anon_sym_catch] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_xor] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_PIPE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_try] = ACTIONS(1223), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_true] = ACTIONS(1223), - [anon_sym_false] = ACTIONS(1223), - [sym_none] = ACTIONS(1223), - [sym_undefined] = ACTIONS(1223), - [sym_sink] = ACTIONS(1223), - [sym_integer] = ACTIONS(1223), - [sym_float] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_multiline_string] = ACTIONS(1221), - [sym_character] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1040), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_test] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_func] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_void] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(1040), + [anon_sym_anyopaque] = ACTIONS(1040), + [anon_sym_bool] = ACTIONS(1040), + [anon_sym_int] = ACTIONS(1040), + [anon_sym_uint] = ACTIONS(1040), + [anon_sym_float] = ACTIONS(1040), + [anon_sym_range] = ACTIONS(1040), + [anon_sym_i8] = ACTIONS(1040), + [anon_sym_i16] = ACTIONS(1040), + [anon_sym_i32] = ACTIONS(1040), + [anon_sym_i64] = ACTIONS(1040), + [anon_sym_u8] = ACTIONS(1040), + [anon_sym_u16] = ACTIONS(1040), + [anon_sym_u32] = ACTIONS(1040), + [anon_sym_u64] = ACTIONS(1040), + [anon_sym_isize] = ACTIONS(1040), + [anon_sym_usize] = ACTIONS(1040), + [anon_sym_f32] = ACTIONS(1040), + [anon_sym_f64] = ACTIONS(1040), + [anon_sym_c_char] = ACTIONS(1040), + [anon_sym_c_schar] = ACTIONS(1040), + [anon_sym_c_uchar] = ACTIONS(1040), + [anon_sym_c_short] = ACTIONS(1040), + [anon_sym_c_ushort] = ACTIONS(1040), + [anon_sym_c_int] = ACTIONS(1040), + [anon_sym_c_uint] = ACTIONS(1040), + [anon_sym_c_long] = ACTIONS(1040), + [anon_sym_c_ulong] = ACTIONS(1040), + [anon_sym_c_longlong] = ACTIONS(1040), + [anon_sym_c_ulonglong] = ACTIONS(1040), + [anon_sym_c_float] = ACTIONS(1040), + [anon_sym_c_double] = ACTIONS(1040), + [anon_sym_c_longdouble] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1038), + [anon_sym_DASH_EQ] = ACTIONS(1038), + [anon_sym_STAR_EQ] = ACTIONS(1038), + [anon_sym_SLASH_EQ] = ACTIONS(1038), + [anon_sym_AMP_EQ] = ACTIONS(1038), + [anon_sym_PIPE_EQ] = ACTIONS(1038), + [anon_sym_xor_EQ] = ACTIONS(1038), + [anon_sym_LT_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_GT_EQ] = ACTIONS(1038), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_defer] = ACTIONS(1040), + [anon_sym_errdefer] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_expand] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_orelse] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_or] = ACTIONS(1040), + [anon_sym_and] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_xor] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_LT_LT_PIPE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [sym_none] = ACTIONS(1040), + [sym_undefined] = ACTIONS(1040), + [sym_sink] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [sym_float] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_multiline_string] = ACTIONS(1038), + [sym_character] = ACTIONS(1038), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1221), + [sym__newline] = ACTIONS(1038), }, [STATE(276)] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(1227), - [anon_sym_test] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_func] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1227), - [anon_sym_anyopaque] = ACTIONS(1227), - [anon_sym_bool] = ACTIONS(1227), - [anon_sym_int] = ACTIONS(1227), - [anon_sym_uint] = ACTIONS(1227), - [anon_sym_float] = ACTIONS(1227), - [anon_sym_range] = ACTIONS(1227), - [anon_sym_i8] = ACTIONS(1227), - [anon_sym_i16] = ACTIONS(1227), - [anon_sym_i32] = ACTIONS(1227), - [anon_sym_i64] = ACTIONS(1227), - [anon_sym_u8] = ACTIONS(1227), - [anon_sym_u16] = ACTIONS(1227), - [anon_sym_u32] = ACTIONS(1227), - [anon_sym_u64] = ACTIONS(1227), - [anon_sym_isize] = ACTIONS(1227), - [anon_sym_usize] = ACTIONS(1227), - [anon_sym_f32] = ACTIONS(1227), - [anon_sym_f64] = ACTIONS(1227), - [anon_sym_c_char] = ACTIONS(1227), - [anon_sym_c_schar] = ACTIONS(1227), - [anon_sym_c_uchar] = ACTIONS(1227), - [anon_sym_c_short] = ACTIONS(1227), - [anon_sym_c_ushort] = ACTIONS(1227), - [anon_sym_c_int] = ACTIONS(1227), - [anon_sym_c_uint] = ACTIONS(1227), - [anon_sym_c_long] = ACTIONS(1227), - [anon_sym_c_ulong] = ACTIONS(1227), - [anon_sym_c_longlong] = ACTIONS(1227), - [anon_sym_c_ulonglong] = ACTIONS(1227), - [anon_sym_c_float] = ACTIONS(1227), - [anon_sym_c_double] = ACTIONS(1227), - [anon_sym_c_longdouble] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1225), - [anon_sym_DASH_EQ] = ACTIONS(1225), - [anon_sym_STAR_EQ] = ACTIONS(1225), - [anon_sym_SLASH_EQ] = ACTIONS(1225), - [anon_sym_AMP_EQ] = ACTIONS(1225), - [anon_sym_PIPE_EQ] = ACTIONS(1225), - [anon_sym_xor_EQ] = ACTIONS(1225), - [anon_sym_LT_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_GT_EQ] = ACTIONS(1225), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_defer] = ACTIONS(1227), - [anon_sym_errdefer] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_expand] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), - [anon_sym_orelse] = ACTIONS(1227), - [anon_sym_catch] = ACTIONS(1227), - [anon_sym_or] = ACTIONS(1227), - [anon_sym_and] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_xor] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_PIPE] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_DOT] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [sym_none] = ACTIONS(1227), - [sym_undefined] = ACTIONS(1227), - [sym_sink] = ACTIONS(1227), - [sym_integer] = ACTIONS(1227), - [sym_float] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_multiline_string] = ACTIONS(1225), - [sym_character] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1044), + [anon_sym_test] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_func] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_void] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_anyopaque] = ACTIONS(1044), + [anon_sym_bool] = ACTIONS(1044), + [anon_sym_int] = ACTIONS(1044), + [anon_sym_uint] = ACTIONS(1044), + [anon_sym_float] = ACTIONS(1044), + [anon_sym_range] = ACTIONS(1044), + [anon_sym_i8] = ACTIONS(1044), + [anon_sym_i16] = ACTIONS(1044), + [anon_sym_i32] = ACTIONS(1044), + [anon_sym_i64] = ACTIONS(1044), + [anon_sym_u8] = ACTIONS(1044), + [anon_sym_u16] = ACTIONS(1044), + [anon_sym_u32] = ACTIONS(1044), + [anon_sym_u64] = ACTIONS(1044), + [anon_sym_isize] = ACTIONS(1044), + [anon_sym_usize] = ACTIONS(1044), + [anon_sym_f32] = ACTIONS(1044), + [anon_sym_f64] = ACTIONS(1044), + [anon_sym_c_char] = ACTIONS(1044), + [anon_sym_c_schar] = ACTIONS(1044), + [anon_sym_c_uchar] = ACTIONS(1044), + [anon_sym_c_short] = ACTIONS(1044), + [anon_sym_c_ushort] = ACTIONS(1044), + [anon_sym_c_int] = ACTIONS(1044), + [anon_sym_c_uint] = ACTIONS(1044), + [anon_sym_c_long] = ACTIONS(1044), + [anon_sym_c_ulong] = ACTIONS(1044), + [anon_sym_c_longlong] = ACTIONS(1044), + [anon_sym_c_ulonglong] = ACTIONS(1044), + [anon_sym_c_float] = ACTIONS(1044), + [anon_sym_c_double] = ACTIONS(1044), + [anon_sym_c_longdouble] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_xor_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_yield] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_defer] = ACTIONS(1044), + [anon_sym_errdefer] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_expand] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_orelse] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_or] = ACTIONS(1044), + [anon_sym_and] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_xor] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_LT_LT_PIPE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [sym_none] = ACTIONS(1044), + [sym_undefined] = ACTIONS(1044), + [sym_sink] = ACTIONS(1044), + [sym_integer] = ACTIONS(1044), + [sym_float] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_multiline_string] = ACTIONS(1042), + [sym_character] = ACTIONS(1042), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1225), + [sym__newline] = ACTIONS(1042), }, [STATE(277)] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [anon_sym_import] = ACTIONS(1231), - [anon_sym_test] = ACTIONS(1231), - [anon_sym_hide] = ACTIONS(1231), - [anon_sym_func] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1231), - [anon_sym_anyopaque] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1231), - [anon_sym_int] = ACTIONS(1231), - [anon_sym_uint] = ACTIONS(1231), - [anon_sym_float] = ACTIONS(1231), - [anon_sym_range] = ACTIONS(1231), - [anon_sym_i8] = ACTIONS(1231), - [anon_sym_i16] = ACTIONS(1231), - [anon_sym_i32] = ACTIONS(1231), - [anon_sym_i64] = ACTIONS(1231), - [anon_sym_u8] = ACTIONS(1231), - [anon_sym_u16] = ACTIONS(1231), - [anon_sym_u32] = ACTIONS(1231), - [anon_sym_u64] = ACTIONS(1231), - [anon_sym_isize] = ACTIONS(1231), - [anon_sym_usize] = ACTIONS(1231), - [anon_sym_f32] = ACTIONS(1231), - [anon_sym_f64] = ACTIONS(1231), - [anon_sym_c_char] = ACTIONS(1231), - [anon_sym_c_schar] = ACTIONS(1231), - [anon_sym_c_uchar] = ACTIONS(1231), - [anon_sym_c_short] = ACTIONS(1231), - [anon_sym_c_ushort] = ACTIONS(1231), - [anon_sym_c_int] = ACTIONS(1231), - [anon_sym_c_uint] = ACTIONS(1231), - [anon_sym_c_long] = ACTIONS(1231), - [anon_sym_c_ulong] = ACTIONS(1231), - [anon_sym_c_longlong] = ACTIONS(1231), - [anon_sym_c_ulonglong] = ACTIONS(1231), - [anon_sym_c_float] = ACTIONS(1231), - [anon_sym_c_double] = ACTIONS(1231), - [anon_sym_c_longdouble] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(1229), - [anon_sym_DASH_EQ] = ACTIONS(1229), - [anon_sym_STAR_EQ] = ACTIONS(1229), - [anon_sym_SLASH_EQ] = ACTIONS(1229), - [anon_sym_AMP_EQ] = ACTIONS(1229), - [anon_sym_PIPE_EQ] = ACTIONS(1229), - [anon_sym_xor_EQ] = ACTIONS(1229), - [anon_sym_LT_LT_EQ] = ACTIONS(1229), - [anon_sym_GT_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_defer] = ACTIONS(1231), - [anon_sym_errdefer] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_expand] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_DOT_DOT] = ACTIONS(1231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), - [anon_sym_orelse] = ACTIONS(1231), - [anon_sym_catch] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_xor] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_LT_LT_PIPE] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1231), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [sym_none] = ACTIONS(1231), - [sym_undefined] = ACTIONS(1231), - [sym_sink] = ACTIONS(1231), - [sym_integer] = ACTIONS(1231), - [sym_float] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_multiline_string] = ACTIONS(1229), - [sym_character] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_test] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_func] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_void] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_anyopaque] = ACTIONS(1048), + [anon_sym_bool] = ACTIONS(1048), + [anon_sym_int] = ACTIONS(1048), + [anon_sym_uint] = ACTIONS(1048), + [anon_sym_float] = ACTIONS(1048), + [anon_sym_range] = ACTIONS(1048), + [anon_sym_i8] = ACTIONS(1048), + [anon_sym_i16] = ACTIONS(1048), + [anon_sym_i32] = ACTIONS(1048), + [anon_sym_i64] = ACTIONS(1048), + [anon_sym_u8] = ACTIONS(1048), + [anon_sym_u16] = ACTIONS(1048), + [anon_sym_u32] = ACTIONS(1048), + [anon_sym_u64] = ACTIONS(1048), + [anon_sym_isize] = ACTIONS(1048), + [anon_sym_usize] = ACTIONS(1048), + [anon_sym_f32] = ACTIONS(1048), + [anon_sym_f64] = ACTIONS(1048), + [anon_sym_c_char] = ACTIONS(1048), + [anon_sym_c_schar] = ACTIONS(1048), + [anon_sym_c_uchar] = ACTIONS(1048), + [anon_sym_c_short] = ACTIONS(1048), + [anon_sym_c_ushort] = ACTIONS(1048), + [anon_sym_c_int] = ACTIONS(1048), + [anon_sym_c_uint] = ACTIONS(1048), + [anon_sym_c_long] = ACTIONS(1048), + [anon_sym_c_ulong] = ACTIONS(1048), + [anon_sym_c_longlong] = ACTIONS(1048), + [anon_sym_c_ulonglong] = ACTIONS(1048), + [anon_sym_c_float] = ACTIONS(1048), + [anon_sym_c_double] = ACTIONS(1048), + [anon_sym_c_longdouble] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_xor_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_defer] = ACTIONS(1048), + [anon_sym_errdefer] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_expand] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_orelse] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_or] = ACTIONS(1048), + [anon_sym_and] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_xor] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [sym_none] = ACTIONS(1048), + [sym_undefined] = ACTIONS(1048), + [sym_sink] = ACTIONS(1048), + [sym_integer] = ACTIONS(1048), + [sym_float] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_multiline_string] = ACTIONS(1046), + [sym_character] = ACTIONS(1046), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1229), + [sym__newline] = ACTIONS(1046), }, [STATE(278)] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_import] = ACTIONS(1235), - [anon_sym_test] = ACTIONS(1235), - [anon_sym_hide] = ACTIONS(1235), - [anon_sym_func] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_void] = ACTIONS(1235), - [anon_sym_anyopaque] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_int] = ACTIONS(1235), - [anon_sym_uint] = ACTIONS(1235), - [anon_sym_float] = ACTIONS(1235), - [anon_sym_range] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_c_char] = ACTIONS(1235), - [anon_sym_c_schar] = ACTIONS(1235), - [anon_sym_c_uchar] = ACTIONS(1235), - [anon_sym_c_short] = ACTIONS(1235), - [anon_sym_c_ushort] = ACTIONS(1235), - [anon_sym_c_int] = ACTIONS(1235), - [anon_sym_c_uint] = ACTIONS(1235), - [anon_sym_c_long] = ACTIONS(1235), - [anon_sym_c_ulong] = ACTIONS(1235), - [anon_sym_c_longlong] = ACTIONS(1235), - [anon_sym_c_ulonglong] = ACTIONS(1235), - [anon_sym_c_float] = ACTIONS(1235), - [anon_sym_c_double] = ACTIONS(1235), - [anon_sym_c_longdouble] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1233), - [anon_sym_DASH_EQ] = ACTIONS(1233), - [anon_sym_STAR_EQ] = ACTIONS(1233), - [anon_sym_SLASH_EQ] = ACTIONS(1233), - [anon_sym_AMP_EQ] = ACTIONS(1233), - [anon_sym_PIPE_EQ] = ACTIONS(1233), - [anon_sym_xor_EQ] = ACTIONS(1233), - [anon_sym_LT_LT_EQ] = ACTIONS(1233), - [anon_sym_GT_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_defer] = ACTIONS(1235), - [anon_sym_errdefer] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_expand] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), - [anon_sym_orelse] = ACTIONS(1235), - [anon_sym_catch] = ACTIONS(1235), - [anon_sym_or] = ACTIONS(1235), - [anon_sym_and] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_EQ] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_xor] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_LT_LT_PIPE] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_try] = ACTIONS(1235), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1235), - [anon_sym_false] = ACTIONS(1235), - [sym_none] = ACTIONS(1235), - [sym_undefined] = ACTIONS(1235), - [sym_sink] = ACTIONS(1235), - [sym_integer] = ACTIONS(1235), - [sym_float] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_multiline_string] = ACTIONS(1233), - [sym_character] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1052), + [anon_sym_import] = ACTIONS(1052), + [anon_sym_test] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_func] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_void] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1052), + [anon_sym_anyopaque] = ACTIONS(1052), + [anon_sym_bool] = ACTIONS(1052), + [anon_sym_int] = ACTIONS(1052), + [anon_sym_uint] = ACTIONS(1052), + [anon_sym_float] = ACTIONS(1052), + [anon_sym_range] = ACTIONS(1052), + [anon_sym_i8] = ACTIONS(1052), + [anon_sym_i16] = ACTIONS(1052), + [anon_sym_i32] = ACTIONS(1052), + [anon_sym_i64] = ACTIONS(1052), + [anon_sym_u8] = ACTIONS(1052), + [anon_sym_u16] = ACTIONS(1052), + [anon_sym_u32] = ACTIONS(1052), + [anon_sym_u64] = ACTIONS(1052), + [anon_sym_isize] = ACTIONS(1052), + [anon_sym_usize] = ACTIONS(1052), + [anon_sym_f32] = ACTIONS(1052), + [anon_sym_f64] = ACTIONS(1052), + [anon_sym_c_char] = ACTIONS(1052), + [anon_sym_c_schar] = ACTIONS(1052), + [anon_sym_c_uchar] = ACTIONS(1052), + [anon_sym_c_short] = ACTIONS(1052), + [anon_sym_c_ushort] = ACTIONS(1052), + [anon_sym_c_int] = ACTIONS(1052), + [anon_sym_c_uint] = ACTIONS(1052), + [anon_sym_c_long] = ACTIONS(1052), + [anon_sym_c_ulong] = ACTIONS(1052), + [anon_sym_c_longlong] = ACTIONS(1052), + [anon_sym_c_ulonglong] = ACTIONS(1052), + [anon_sym_c_float] = ACTIONS(1052), + [anon_sym_c_double] = ACTIONS(1052), + [anon_sym_c_longdouble] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_AMP_EQ] = ACTIONS(1050), + [anon_sym_PIPE_EQ] = ACTIONS(1050), + [anon_sym_xor_EQ] = ACTIONS(1050), + [anon_sym_LT_LT_EQ] = ACTIONS(1050), + [anon_sym_GT_GT_EQ] = ACTIONS(1050), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_defer] = ACTIONS(1052), + [anon_sym_errdefer] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_expand] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_orelse] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_or] = ACTIONS(1052), + [anon_sym_and] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1052), + [anon_sym_xor] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT_PIPE] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_SLASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [sym_none] = ACTIONS(1052), + [sym_undefined] = ACTIONS(1052), + [sym_sink] = ACTIONS(1052), + [sym_integer] = ACTIONS(1052), + [sym_float] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_multiline_string] = ACTIONS(1050), + [sym_character] = ACTIONS(1050), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1233), + [sym__newline] = ACTIONS(1050), }, [STATE(279)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1056), + [anon_sym_import] = ACTIONS(1056), + [anon_sym_test] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_func] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_void] = ACTIONS(1056), + [anon_sym_type] = ACTIONS(1056), + [anon_sym_anyopaque] = ACTIONS(1056), + [anon_sym_bool] = ACTIONS(1056), + [anon_sym_int] = ACTIONS(1056), + [anon_sym_uint] = ACTIONS(1056), + [anon_sym_float] = ACTIONS(1056), + [anon_sym_range] = ACTIONS(1056), + [anon_sym_i8] = ACTIONS(1056), + [anon_sym_i16] = ACTIONS(1056), + [anon_sym_i32] = ACTIONS(1056), + [anon_sym_i64] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1056), + [anon_sym_u16] = ACTIONS(1056), + [anon_sym_u32] = ACTIONS(1056), + [anon_sym_u64] = ACTIONS(1056), + [anon_sym_isize] = ACTIONS(1056), + [anon_sym_usize] = ACTIONS(1056), + [anon_sym_f32] = ACTIONS(1056), + [anon_sym_f64] = ACTIONS(1056), + [anon_sym_c_char] = ACTIONS(1056), + [anon_sym_c_schar] = ACTIONS(1056), + [anon_sym_c_uchar] = ACTIONS(1056), + [anon_sym_c_short] = ACTIONS(1056), + [anon_sym_c_ushort] = ACTIONS(1056), + [anon_sym_c_int] = ACTIONS(1056), + [anon_sym_c_uint] = ACTIONS(1056), + [anon_sym_c_long] = ACTIONS(1056), + [anon_sym_c_ulong] = ACTIONS(1056), + [anon_sym_c_longlong] = ACTIONS(1056), + [anon_sym_c_ulonglong] = ACTIONS(1056), + [anon_sym_c_float] = ACTIONS(1056), + [anon_sym_c_double] = ACTIONS(1056), + [anon_sym_c_longdouble] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_AMP_EQ] = ACTIONS(1054), + [anon_sym_PIPE_EQ] = ACTIONS(1054), + [anon_sym_xor_EQ] = ACTIONS(1054), + [anon_sym_LT_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_GT_EQ] = ACTIONS(1054), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_defer] = ACTIONS(1056), + [anon_sym_errdefer] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_expand] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_orelse] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_or] = ACTIONS(1056), + [anon_sym_and] = ACTIONS(1056), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_xor] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_LT_LT_PIPE] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [sym_none] = ACTIONS(1056), + [sym_undefined] = ACTIONS(1056), + [sym_sink] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_multiline_string] = ACTIONS(1054), + [sym_character] = ACTIONS(1054), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1054), }, [STATE(280)] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [anon_sym_import] = ACTIONS(1239), - [anon_sym_test] = ACTIONS(1239), - [anon_sym_hide] = ACTIONS(1239), - [anon_sym_func] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_EQ] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1239), - [anon_sym_anyopaque] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_int] = ACTIONS(1239), - [anon_sym_uint] = ACTIONS(1239), - [anon_sym_float] = ACTIONS(1239), - [anon_sym_range] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_c_char] = ACTIONS(1239), - [anon_sym_c_schar] = ACTIONS(1239), - [anon_sym_c_uchar] = ACTIONS(1239), - [anon_sym_c_short] = ACTIONS(1239), - [anon_sym_c_ushort] = ACTIONS(1239), - [anon_sym_c_int] = ACTIONS(1239), - [anon_sym_c_uint] = ACTIONS(1239), - [anon_sym_c_long] = ACTIONS(1239), - [anon_sym_c_ulong] = ACTIONS(1239), - [anon_sym_c_longlong] = ACTIONS(1239), - [anon_sym_c_ulonglong] = ACTIONS(1239), - [anon_sym_c_float] = ACTIONS(1239), - [anon_sym_c_double] = ACTIONS(1239), - [anon_sym_c_longdouble] = ACTIONS(1239), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_xor_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_defer] = ACTIONS(1239), - [anon_sym_errdefer] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_expand] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), - [anon_sym_orelse] = ACTIONS(1239), - [anon_sym_catch] = ACTIONS(1239), - [anon_sym_or] = ACTIONS(1239), - [anon_sym_and] = ACTIONS(1239), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_xor] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_LT_LT_PIPE] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_SLASH] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [sym_none] = ACTIONS(1239), - [sym_undefined] = ACTIONS(1239), - [sym_sink] = ACTIONS(1239), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_multiline_string] = ACTIONS(1237), - [sym_character] = ACTIONS(1237), + [ts_builtin_sym_end] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(1062), + [anon_sym_test] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_func] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_void] = ACTIONS(1062), + [anon_sym_type] = ACTIONS(1062), + [anon_sym_anyopaque] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_int] = ACTIONS(1062), + [anon_sym_uint] = ACTIONS(1062), + [anon_sym_float] = ACTIONS(1062), + [anon_sym_range] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_c_char] = ACTIONS(1062), + [anon_sym_c_schar] = ACTIONS(1062), + [anon_sym_c_uchar] = ACTIONS(1062), + [anon_sym_c_short] = ACTIONS(1062), + [anon_sym_c_ushort] = ACTIONS(1062), + [anon_sym_c_int] = ACTIONS(1062), + [anon_sym_c_uint] = ACTIONS(1062), + [anon_sym_c_long] = ACTIONS(1062), + [anon_sym_c_ulong] = ACTIONS(1062), + [anon_sym_c_longlong] = ACTIONS(1062), + [anon_sym_c_ulonglong] = ACTIONS(1062), + [anon_sym_c_float] = ACTIONS(1062), + [anon_sym_c_double] = ACTIONS(1062), + [anon_sym_c_longdouble] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_AMP_EQ] = ACTIONS(1060), + [anon_sym_PIPE_EQ] = ACTIONS(1060), + [anon_sym_xor_EQ] = ACTIONS(1060), + [anon_sym_LT_LT_EQ] = ACTIONS(1060), + [anon_sym_GT_GT_EQ] = ACTIONS(1060), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_yield] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_defer] = ACTIONS(1062), + [anon_sym_errdefer] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_expand] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_orelse] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_or] = ACTIONS(1062), + [anon_sym_and] = ACTIONS(1062), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_xor] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(1062), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_LT_LT_PIPE] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [sym_none] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [sym_sink] = ACTIONS(1062), + [sym_integer] = ACTIONS(1062), + [sym_float] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym_multiline_string] = ACTIONS(1060), + [sym_character] = ACTIONS(1060), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1237), + [sym__newline] = ACTIONS(1060), }, [STATE(281)] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_import] = ACTIONS(1243), - [anon_sym_test] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_func] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_anyopaque] = ACTIONS(1243), - [anon_sym_bool] = ACTIONS(1243), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_uint] = ACTIONS(1243), - [anon_sym_float] = ACTIONS(1243), - [anon_sym_range] = ACTIONS(1243), - [anon_sym_i8] = ACTIONS(1243), - [anon_sym_i16] = ACTIONS(1243), - [anon_sym_i32] = ACTIONS(1243), - [anon_sym_i64] = ACTIONS(1243), - [anon_sym_u8] = ACTIONS(1243), - [anon_sym_u16] = ACTIONS(1243), - [anon_sym_u32] = ACTIONS(1243), - [anon_sym_u64] = ACTIONS(1243), - [anon_sym_isize] = ACTIONS(1243), - [anon_sym_usize] = ACTIONS(1243), - [anon_sym_f32] = ACTIONS(1243), - [anon_sym_f64] = ACTIONS(1243), - [anon_sym_c_char] = ACTIONS(1243), - [anon_sym_c_schar] = ACTIONS(1243), - [anon_sym_c_uchar] = ACTIONS(1243), - [anon_sym_c_short] = ACTIONS(1243), - [anon_sym_c_ushort] = ACTIONS(1243), - [anon_sym_c_int] = ACTIONS(1243), - [anon_sym_c_uint] = ACTIONS(1243), - [anon_sym_c_long] = ACTIONS(1243), - [anon_sym_c_ulong] = ACTIONS(1243), - [anon_sym_c_longlong] = ACTIONS(1243), - [anon_sym_c_ulonglong] = ACTIONS(1243), - [anon_sym_c_float] = ACTIONS(1243), - [anon_sym_c_double] = ACTIONS(1243), - [anon_sym_c_longdouble] = ACTIONS(1243), - [anon_sym_PLUS_EQ] = ACTIONS(1241), - [anon_sym_DASH_EQ] = ACTIONS(1241), - [anon_sym_STAR_EQ] = ACTIONS(1241), - [anon_sym_SLASH_EQ] = ACTIONS(1241), - [anon_sym_AMP_EQ] = ACTIONS(1241), - [anon_sym_PIPE_EQ] = ACTIONS(1241), - [anon_sym_xor_EQ] = ACTIONS(1241), - [anon_sym_LT_LT_EQ] = ACTIONS(1241), - [anon_sym_GT_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_defer] = ACTIONS(1243), - [anon_sym_errdefer] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_expand] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), - [anon_sym_orelse] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1241), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_LT_LT] = ACTIONS(1243), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_LT_LT_PIPE] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [sym_none] = ACTIONS(1243), - [sym_undefined] = ACTIONS(1243), - [sym_sink] = ACTIONS(1243), - [sym_integer] = ACTIONS(1243), - [sym_float] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_multiline_string] = ACTIONS(1241), - [sym_character] = ACTIONS(1241), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1066), + [anon_sym_import] = ACTIONS(1066), + [anon_sym_test] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_func] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_void] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_anyopaque] = ACTIONS(1066), + [anon_sym_bool] = ACTIONS(1066), + [anon_sym_int] = ACTIONS(1066), + [anon_sym_uint] = ACTIONS(1066), + [anon_sym_float] = ACTIONS(1066), + [anon_sym_range] = ACTIONS(1066), + [anon_sym_i8] = ACTIONS(1066), + [anon_sym_i16] = ACTIONS(1066), + [anon_sym_i32] = ACTIONS(1066), + [anon_sym_i64] = ACTIONS(1066), + [anon_sym_u8] = ACTIONS(1066), + [anon_sym_u16] = ACTIONS(1066), + [anon_sym_u32] = ACTIONS(1066), + [anon_sym_u64] = ACTIONS(1066), + [anon_sym_isize] = ACTIONS(1066), + [anon_sym_usize] = ACTIONS(1066), + [anon_sym_f32] = ACTIONS(1066), + [anon_sym_f64] = ACTIONS(1066), + [anon_sym_c_char] = ACTIONS(1066), + [anon_sym_c_schar] = ACTIONS(1066), + [anon_sym_c_uchar] = ACTIONS(1066), + [anon_sym_c_short] = ACTIONS(1066), + [anon_sym_c_ushort] = ACTIONS(1066), + [anon_sym_c_int] = ACTIONS(1066), + [anon_sym_c_uint] = ACTIONS(1066), + [anon_sym_c_long] = ACTIONS(1066), + [anon_sym_c_ulong] = ACTIONS(1066), + [anon_sym_c_longlong] = ACTIONS(1066), + [anon_sym_c_ulonglong] = ACTIONS(1066), + [anon_sym_c_float] = ACTIONS(1066), + [anon_sym_c_double] = ACTIONS(1066), + [anon_sym_c_longdouble] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_AMP_EQ] = ACTIONS(1064), + [anon_sym_PIPE_EQ] = ACTIONS(1064), + [anon_sym_xor_EQ] = ACTIONS(1064), + [anon_sym_LT_LT_EQ] = ACTIONS(1064), + [anon_sym_GT_GT_EQ] = ACTIONS(1064), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_yield] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_defer] = ACTIONS(1066), + [anon_sym_errdefer] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_expand] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_orelse] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_or] = ACTIONS(1066), + [anon_sym_and] = ACTIONS(1066), + [anon_sym_EQ_EQ] = ACTIONS(1064), + [anon_sym_BANG_EQ] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1064), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_xor] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_LT_LT_PIPE] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [sym_none] = ACTIONS(1066), + [sym_undefined] = ACTIONS(1066), + [sym_sink] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [sym_float] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_multiline_string] = ACTIONS(1064), + [sym_character] = ACTIONS(1064), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1241), + [sym__newline] = ACTIONS(1064), }, [STATE(282)] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_import] = ACTIONS(1247), - [anon_sym_test] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_func] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_void] = ACTIONS(1247), - [anon_sym_anyopaque] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_int] = ACTIONS(1247), - [anon_sym_uint] = ACTIONS(1247), - [anon_sym_float] = ACTIONS(1247), - [anon_sym_range] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_c_char] = ACTIONS(1247), - [anon_sym_c_schar] = ACTIONS(1247), - [anon_sym_c_uchar] = ACTIONS(1247), - [anon_sym_c_short] = ACTIONS(1247), - [anon_sym_c_ushort] = ACTIONS(1247), - [anon_sym_c_int] = ACTIONS(1247), - [anon_sym_c_uint] = ACTIONS(1247), - [anon_sym_c_long] = ACTIONS(1247), - [anon_sym_c_ulong] = ACTIONS(1247), - [anon_sym_c_longlong] = ACTIONS(1247), - [anon_sym_c_ulonglong] = ACTIONS(1247), - [anon_sym_c_float] = ACTIONS(1247), - [anon_sym_c_double] = ACTIONS(1247), - [anon_sym_c_longdouble] = ACTIONS(1247), - [anon_sym_PLUS_EQ] = ACTIONS(1245), - [anon_sym_DASH_EQ] = ACTIONS(1245), - [anon_sym_STAR_EQ] = ACTIONS(1245), - [anon_sym_SLASH_EQ] = ACTIONS(1245), - [anon_sym_AMP_EQ] = ACTIONS(1245), - [anon_sym_PIPE_EQ] = ACTIONS(1245), - [anon_sym_xor_EQ] = ACTIONS(1245), - [anon_sym_LT_LT_EQ] = ACTIONS(1245), - [anon_sym_GT_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_defer] = ACTIONS(1247), - [anon_sym_errdefer] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_expand] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [anon_sym_orelse] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_LT_LT_PIPE] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [sym_none] = ACTIONS(1247), - [sym_undefined] = ACTIONS(1247), - [sym_sink] = ACTIONS(1247), - [sym_integer] = ACTIONS(1247), - [sym_float] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_multiline_string] = ACTIONS(1245), - [sym_character] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1070), + [anon_sym_import] = ACTIONS(1070), + [anon_sym_test] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_func] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_struct] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_void] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_anyopaque] = ACTIONS(1070), + [anon_sym_bool] = ACTIONS(1070), + [anon_sym_int] = ACTIONS(1070), + [anon_sym_uint] = ACTIONS(1070), + [anon_sym_float] = ACTIONS(1070), + [anon_sym_range] = ACTIONS(1070), + [anon_sym_i8] = ACTIONS(1070), + [anon_sym_i16] = ACTIONS(1070), + [anon_sym_i32] = ACTIONS(1070), + [anon_sym_i64] = ACTIONS(1070), + [anon_sym_u8] = ACTIONS(1070), + [anon_sym_u16] = ACTIONS(1070), + [anon_sym_u32] = ACTIONS(1070), + [anon_sym_u64] = ACTIONS(1070), + [anon_sym_isize] = ACTIONS(1070), + [anon_sym_usize] = ACTIONS(1070), + [anon_sym_f32] = ACTIONS(1070), + [anon_sym_f64] = ACTIONS(1070), + [anon_sym_c_char] = ACTIONS(1070), + [anon_sym_c_schar] = ACTIONS(1070), + [anon_sym_c_uchar] = ACTIONS(1070), + [anon_sym_c_short] = ACTIONS(1070), + [anon_sym_c_ushort] = ACTIONS(1070), + [anon_sym_c_int] = ACTIONS(1070), + [anon_sym_c_uint] = ACTIONS(1070), + [anon_sym_c_long] = ACTIONS(1070), + [anon_sym_c_ulong] = ACTIONS(1070), + [anon_sym_c_longlong] = ACTIONS(1070), + [anon_sym_c_ulonglong] = ACTIONS(1070), + [anon_sym_c_float] = ACTIONS(1070), + [anon_sym_c_double] = ACTIONS(1070), + [anon_sym_c_longdouble] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_AMP_EQ] = ACTIONS(1068), + [anon_sym_PIPE_EQ] = ACTIONS(1068), + [anon_sym_xor_EQ] = ACTIONS(1068), + [anon_sym_LT_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_GT_EQ] = ACTIONS(1068), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_yield] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_defer] = ACTIONS(1070), + [anon_sym_errdefer] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_expand] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_orelse] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_LT_LT] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_LT_LT_PIPE] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [sym_none] = ACTIONS(1070), + [sym_undefined] = ACTIONS(1070), + [sym_sink] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [sym_float] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_multiline_string] = ACTIONS(1068), + [sym_character] = ACTIONS(1068), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1245), + [sym__newline] = ACTIONS(1068), }, [STATE(283)] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_import] = ACTIONS(1251), - [anon_sym_test] = ACTIONS(1251), - [anon_sym_hide] = ACTIONS(1251), - [anon_sym_func] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_RPAREN] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_void] = ACTIONS(1251), - [anon_sym_anyopaque] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_int] = ACTIONS(1251), - [anon_sym_uint] = ACTIONS(1251), - [anon_sym_float] = ACTIONS(1251), - [anon_sym_range] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_c_char] = ACTIONS(1251), - [anon_sym_c_schar] = ACTIONS(1251), - [anon_sym_c_uchar] = ACTIONS(1251), - [anon_sym_c_short] = ACTIONS(1251), - [anon_sym_c_ushort] = ACTIONS(1251), - [anon_sym_c_int] = ACTIONS(1251), - [anon_sym_c_uint] = ACTIONS(1251), - [anon_sym_c_long] = ACTIONS(1251), - [anon_sym_c_ulong] = ACTIONS(1251), - [anon_sym_c_longlong] = ACTIONS(1251), - [anon_sym_c_ulonglong] = ACTIONS(1251), - [anon_sym_c_float] = ACTIONS(1251), - [anon_sym_c_double] = ACTIONS(1251), - [anon_sym_c_longdouble] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_xor_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_yield] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_defer] = ACTIONS(1251), - [anon_sym_errdefer] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_expand] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), - [anon_sym_orelse] = ACTIONS(1251), - [anon_sym_catch] = ACTIONS(1251), - [anon_sym_or] = ACTIONS(1251), - [anon_sym_and] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_xor] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_LT_LT_PIPE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [sym_none] = ACTIONS(1251), - [sym_undefined] = ACTIONS(1251), - [sym_sink] = ACTIONS(1251), - [sym_integer] = ACTIONS(1251), - [sym_float] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_multiline_string] = ACTIONS(1249), - [sym_character] = ACTIONS(1249), + [ts_builtin_sym_end] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1074), + [anon_sym_import] = ACTIONS(1074), + [anon_sym_test] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_func] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_void] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_anyopaque] = ACTIONS(1074), + [anon_sym_bool] = ACTIONS(1074), + [anon_sym_int] = ACTIONS(1074), + [anon_sym_uint] = ACTIONS(1074), + [anon_sym_float] = ACTIONS(1074), + [anon_sym_range] = ACTIONS(1074), + [anon_sym_i8] = ACTIONS(1074), + [anon_sym_i16] = ACTIONS(1074), + [anon_sym_i32] = ACTIONS(1074), + [anon_sym_i64] = ACTIONS(1074), + [anon_sym_u8] = ACTIONS(1074), + [anon_sym_u16] = ACTIONS(1074), + [anon_sym_u32] = ACTIONS(1074), + [anon_sym_u64] = ACTIONS(1074), + [anon_sym_isize] = ACTIONS(1074), + [anon_sym_usize] = ACTIONS(1074), + [anon_sym_f32] = ACTIONS(1074), + [anon_sym_f64] = ACTIONS(1074), + [anon_sym_c_char] = ACTIONS(1074), + [anon_sym_c_schar] = ACTIONS(1074), + [anon_sym_c_uchar] = ACTIONS(1074), + [anon_sym_c_short] = ACTIONS(1074), + [anon_sym_c_ushort] = ACTIONS(1074), + [anon_sym_c_int] = ACTIONS(1074), + [anon_sym_c_uint] = ACTIONS(1074), + [anon_sym_c_long] = ACTIONS(1074), + [anon_sym_c_ulong] = ACTIONS(1074), + [anon_sym_c_longlong] = ACTIONS(1074), + [anon_sym_c_ulonglong] = ACTIONS(1074), + [anon_sym_c_float] = ACTIONS(1074), + [anon_sym_c_double] = ACTIONS(1074), + [anon_sym_c_longdouble] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_AMP_EQ] = ACTIONS(1072), + [anon_sym_PIPE_EQ] = ACTIONS(1072), + [anon_sym_xor_EQ] = ACTIONS(1072), + [anon_sym_LT_LT_EQ] = ACTIONS(1072), + [anon_sym_GT_GT_EQ] = ACTIONS(1072), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_defer] = ACTIONS(1074), + [anon_sym_errdefer] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_expand] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_orelse] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_or] = ACTIONS(1074), + [anon_sym_and] = ACTIONS(1074), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_xor] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1074), + [anon_sym_GT_GT] = ACTIONS(1074), + [anon_sym_LT_LT_PIPE] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [sym_none] = ACTIONS(1074), + [sym_undefined] = ACTIONS(1074), + [sym_sink] = ACTIONS(1074), + [sym_integer] = ACTIONS(1074), + [sym_float] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_multiline_string] = ACTIONS(1072), + [sym_character] = ACTIONS(1072), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1249), + [sym__newline] = ACTIONS(1072), }, [STATE(284)] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_import] = ACTIONS(1255), - [anon_sym_test] = ACTIONS(1255), - [anon_sym_hide] = ACTIONS(1255), - [anon_sym_func] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1255), - [anon_sym_anyopaque] = ACTIONS(1255), - [anon_sym_bool] = ACTIONS(1255), - [anon_sym_int] = ACTIONS(1255), - [anon_sym_uint] = ACTIONS(1255), - [anon_sym_float] = ACTIONS(1255), - [anon_sym_range] = ACTIONS(1255), - [anon_sym_i8] = ACTIONS(1255), - [anon_sym_i16] = ACTIONS(1255), - [anon_sym_i32] = ACTIONS(1255), - [anon_sym_i64] = ACTIONS(1255), - [anon_sym_u8] = ACTIONS(1255), - [anon_sym_u16] = ACTIONS(1255), - [anon_sym_u32] = ACTIONS(1255), - [anon_sym_u64] = ACTIONS(1255), - [anon_sym_isize] = ACTIONS(1255), - [anon_sym_usize] = ACTIONS(1255), - [anon_sym_f32] = ACTIONS(1255), - [anon_sym_f64] = ACTIONS(1255), - [anon_sym_c_char] = ACTIONS(1255), - [anon_sym_c_schar] = ACTIONS(1255), - [anon_sym_c_uchar] = ACTIONS(1255), - [anon_sym_c_short] = ACTIONS(1255), - [anon_sym_c_ushort] = ACTIONS(1255), - [anon_sym_c_int] = ACTIONS(1255), - [anon_sym_c_uint] = ACTIONS(1255), - [anon_sym_c_long] = ACTIONS(1255), - [anon_sym_c_ulong] = ACTIONS(1255), - [anon_sym_c_longlong] = ACTIONS(1255), - [anon_sym_c_ulonglong] = ACTIONS(1255), - [anon_sym_c_float] = ACTIONS(1255), - [anon_sym_c_double] = ACTIONS(1255), - [anon_sym_c_longdouble] = ACTIONS(1255), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_AMP_EQ] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1253), - [anon_sym_xor_EQ] = ACTIONS(1253), - [anon_sym_LT_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_defer] = ACTIONS(1255), - [anon_sym_errdefer] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_expand] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_DOT_DOT] = ACTIONS(1255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_orelse] = ACTIONS(1255), - [anon_sym_catch] = ACTIONS(1255), - [anon_sym_or] = ACTIONS(1255), - [anon_sym_and] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_xor] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_LT_LT_PIPE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [sym_none] = ACTIONS(1255), - [sym_undefined] = ACTIONS(1255), - [sym_sink] = ACTIONS(1255), - [sym_integer] = ACTIONS(1255), - [sym_float] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_multiline_string] = ACTIONS(1253), - [sym_character] = ACTIONS(1253), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_test] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_func] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_anyopaque] = ACTIONS(1078), + [anon_sym_bool] = ACTIONS(1078), + [anon_sym_int] = ACTIONS(1078), + [anon_sym_uint] = ACTIONS(1078), + [anon_sym_float] = ACTIONS(1078), + [anon_sym_range] = ACTIONS(1078), + [anon_sym_i8] = ACTIONS(1078), + [anon_sym_i16] = ACTIONS(1078), + [anon_sym_i32] = ACTIONS(1078), + [anon_sym_i64] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1078), + [anon_sym_u16] = ACTIONS(1078), + [anon_sym_u32] = ACTIONS(1078), + [anon_sym_u64] = ACTIONS(1078), + [anon_sym_isize] = ACTIONS(1078), + [anon_sym_usize] = ACTIONS(1078), + [anon_sym_f32] = ACTIONS(1078), + [anon_sym_f64] = ACTIONS(1078), + [anon_sym_c_char] = ACTIONS(1078), + [anon_sym_c_schar] = ACTIONS(1078), + [anon_sym_c_uchar] = ACTIONS(1078), + [anon_sym_c_short] = ACTIONS(1078), + [anon_sym_c_ushort] = ACTIONS(1078), + [anon_sym_c_int] = ACTIONS(1078), + [anon_sym_c_uint] = ACTIONS(1078), + [anon_sym_c_long] = ACTIONS(1078), + [anon_sym_c_ulong] = ACTIONS(1078), + [anon_sym_c_longlong] = ACTIONS(1078), + [anon_sym_c_ulonglong] = ACTIONS(1078), + [anon_sym_c_float] = ACTIONS(1078), + [anon_sym_c_double] = ACTIONS(1078), + [anon_sym_c_longdouble] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_AMP_EQ] = ACTIONS(1076), + [anon_sym_PIPE_EQ] = ACTIONS(1076), + [anon_sym_xor_EQ] = ACTIONS(1076), + [anon_sym_LT_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_GT_EQ] = ACTIONS(1076), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_defer] = ACTIONS(1078), + [anon_sym_errdefer] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_expand] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_orelse] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_or] = ACTIONS(1078), + [anon_sym_and] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_xor] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_LT_LT_PIPE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [sym_none] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [sym_sink] = ACTIONS(1078), + [sym_integer] = ACTIONS(1078), + [sym_float] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_multiline_string] = ACTIONS(1076), + [sym_character] = ACTIONS(1076), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1253), + [sym__newline] = ACTIONS(1076), }, [STATE(285)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_import] = ACTIONS(1082), + [anon_sym_test] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_func] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_void] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1082), + [anon_sym_anyopaque] = ACTIONS(1082), + [anon_sym_bool] = ACTIONS(1082), + [anon_sym_int] = ACTIONS(1082), + [anon_sym_uint] = ACTIONS(1082), + [anon_sym_float] = ACTIONS(1082), + [anon_sym_range] = ACTIONS(1082), + [anon_sym_i8] = ACTIONS(1082), + [anon_sym_i16] = ACTIONS(1082), + [anon_sym_i32] = ACTIONS(1082), + [anon_sym_i64] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1082), + [anon_sym_u16] = ACTIONS(1082), + [anon_sym_u32] = ACTIONS(1082), + [anon_sym_u64] = ACTIONS(1082), + [anon_sym_isize] = ACTIONS(1082), + [anon_sym_usize] = ACTIONS(1082), + [anon_sym_f32] = ACTIONS(1082), + [anon_sym_f64] = ACTIONS(1082), + [anon_sym_c_char] = ACTIONS(1082), + [anon_sym_c_schar] = ACTIONS(1082), + [anon_sym_c_uchar] = ACTIONS(1082), + [anon_sym_c_short] = ACTIONS(1082), + [anon_sym_c_ushort] = ACTIONS(1082), + [anon_sym_c_int] = ACTIONS(1082), + [anon_sym_c_uint] = ACTIONS(1082), + [anon_sym_c_long] = ACTIONS(1082), + [anon_sym_c_ulong] = ACTIONS(1082), + [anon_sym_c_longlong] = ACTIONS(1082), + [anon_sym_c_ulonglong] = ACTIONS(1082), + [anon_sym_c_float] = ACTIONS(1082), + [anon_sym_c_double] = ACTIONS(1082), + [anon_sym_c_longdouble] = ACTIONS(1082), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_AMP_EQ] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1080), + [anon_sym_xor_EQ] = ACTIONS(1080), + [anon_sym_LT_LT_EQ] = ACTIONS(1080), + [anon_sym_GT_GT_EQ] = ACTIONS(1080), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_defer] = ACTIONS(1082), + [anon_sym_errdefer] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_expand] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_orelse] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_LT_LT_PIPE] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [sym_none] = ACTIONS(1082), + [sym_undefined] = ACTIONS(1082), + [sym_sink] = ACTIONS(1082), + [sym_integer] = ACTIONS(1082), + [sym_float] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_multiline_string] = ACTIONS(1080), + [sym_character] = ACTIONS(1080), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1080), }, [STATE(286)] = { - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(385), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_import] = ACTIONS(1086), + [anon_sym_test] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_func] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_type] = ACTIONS(1086), + [anon_sym_anyopaque] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_int] = ACTIONS(1086), + [anon_sym_uint] = ACTIONS(1086), + [anon_sym_float] = ACTIONS(1086), + [anon_sym_range] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_c_char] = ACTIONS(1086), + [anon_sym_c_schar] = ACTIONS(1086), + [anon_sym_c_uchar] = ACTIONS(1086), + [anon_sym_c_short] = ACTIONS(1086), + [anon_sym_c_ushort] = ACTIONS(1086), + [anon_sym_c_int] = ACTIONS(1086), + [anon_sym_c_uint] = ACTIONS(1086), + [anon_sym_c_long] = ACTIONS(1086), + [anon_sym_c_ulong] = ACTIONS(1086), + [anon_sym_c_longlong] = ACTIONS(1086), + [anon_sym_c_ulonglong] = ACTIONS(1086), + [anon_sym_c_float] = ACTIONS(1086), + [anon_sym_c_double] = ACTIONS(1086), + [anon_sym_c_longdouble] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), + [anon_sym_STAR_EQ] = ACTIONS(1084), + [anon_sym_SLASH_EQ] = ACTIONS(1084), + [anon_sym_AMP_EQ] = ACTIONS(1084), + [anon_sym_PIPE_EQ] = ACTIONS(1084), + [anon_sym_xor_EQ] = ACTIONS(1084), + [anon_sym_LT_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_defer] = ACTIONS(1086), + [anon_sym_errdefer] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_expand] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1084), + [anon_sym_orelse] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_LT_LT_PIPE] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [sym_none] = ACTIONS(1086), + [sym_undefined] = ACTIONS(1086), + [sym_sink] = ACTIONS(1086), + [sym_integer] = ACTIONS(1086), + [sym_float] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_multiline_string] = ACTIONS(1084), + [sym_character] = ACTIONS(1084), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(1084), }, [STATE(287)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_import] = ACTIONS(539), + [anon_sym_test] = ACTIONS(539), + [anon_sym_hide] = ACTIONS(539), + [anon_sym_func] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_void] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_anyopaque] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_int] = ACTIONS(539), + [anon_sym_uint] = ACTIONS(539), + [anon_sym_float] = ACTIONS(539), + [anon_sym_range] = ACTIONS(539), + [anon_sym_i8] = ACTIONS(539), + [anon_sym_i16] = ACTIONS(539), + [anon_sym_i32] = ACTIONS(539), + [anon_sym_i64] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(539), + [anon_sym_u16] = ACTIONS(539), + [anon_sym_u32] = ACTIONS(539), + [anon_sym_u64] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_c_char] = ACTIONS(539), + [anon_sym_c_schar] = ACTIONS(539), + [anon_sym_c_uchar] = ACTIONS(539), + [anon_sym_c_short] = ACTIONS(539), + [anon_sym_c_ushort] = ACTIONS(539), + [anon_sym_c_int] = ACTIONS(539), + [anon_sym_c_uint] = ACTIONS(539), + [anon_sym_c_long] = ACTIONS(539), + [anon_sym_c_ulong] = ACTIONS(539), + [anon_sym_c_longlong] = ACTIONS(539), + [anon_sym_c_ulonglong] = ACTIONS(539), + [anon_sym_c_float] = ACTIONS(539), + [anon_sym_c_double] = ACTIONS(539), + [anon_sym_c_longdouble] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_AMP_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_xor_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_yield] = ACTIONS(539), + [anon_sym_break] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_defer] = ACTIONS(539), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_else] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [anon_sym_expand] = ACTIONS(539), + [anon_sym_for] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_orelse] = ACTIONS(539), + [anon_sym_catch] = ACTIONS(539), + [anon_sym_or] = ACTIONS(539), + [anon_sym_and] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_xor] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(539), + [anon_sym_LT_LT_PIPE] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_try] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [sym_none] = ACTIONS(539), + [sym_undefined] = ACTIONS(539), + [sym_sink] = ACTIONS(539), + [sym_integer] = ACTIONS(539), + [sym_float] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(537), + [sym_multiline_string] = ACTIONS(537), + [sym_character] = ACTIONS(537), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(537), }, [STATE(288)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(291), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1090), + [anon_sym_import] = ACTIONS(1090), + [anon_sym_test] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_func] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_type] = ACTIONS(1090), + [anon_sym_anyopaque] = ACTIONS(1090), + [anon_sym_bool] = ACTIONS(1090), + [anon_sym_int] = ACTIONS(1090), + [anon_sym_uint] = ACTIONS(1090), + [anon_sym_float] = ACTIONS(1090), + [anon_sym_range] = ACTIONS(1090), + [anon_sym_i8] = ACTIONS(1090), + [anon_sym_i16] = ACTIONS(1090), + [anon_sym_i32] = ACTIONS(1090), + [anon_sym_i64] = ACTIONS(1090), + [anon_sym_u8] = ACTIONS(1090), + [anon_sym_u16] = ACTIONS(1090), + [anon_sym_u32] = ACTIONS(1090), + [anon_sym_u64] = ACTIONS(1090), + [anon_sym_isize] = ACTIONS(1090), + [anon_sym_usize] = ACTIONS(1090), + [anon_sym_f32] = ACTIONS(1090), + [anon_sym_f64] = ACTIONS(1090), + [anon_sym_c_char] = ACTIONS(1090), + [anon_sym_c_schar] = ACTIONS(1090), + [anon_sym_c_uchar] = ACTIONS(1090), + [anon_sym_c_short] = ACTIONS(1090), + [anon_sym_c_ushort] = ACTIONS(1090), + [anon_sym_c_int] = ACTIONS(1090), + [anon_sym_c_uint] = ACTIONS(1090), + [anon_sym_c_long] = ACTIONS(1090), + [anon_sym_c_ulong] = ACTIONS(1090), + [anon_sym_c_longlong] = ACTIONS(1090), + [anon_sym_c_ulonglong] = ACTIONS(1090), + [anon_sym_c_float] = ACTIONS(1090), + [anon_sym_c_double] = ACTIONS(1090), + [anon_sym_c_longdouble] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_xor_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_yield] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_defer] = ACTIONS(1090), + [anon_sym_errdefer] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_expand] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [anon_sym_orelse] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_or] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_xor] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_LT_LT_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [sym_none] = ACTIONS(1090), + [sym_undefined] = ACTIONS(1090), + [sym_sink] = ACTIONS(1090), + [sym_integer] = ACTIONS(1090), + [sym_float] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_multiline_string] = ACTIONS(1088), + [sym_character] = ACTIONS(1088), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1257), + [sym__newline] = ACTIONS(1088), }, [STATE(289)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1741), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1741), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(1094), + [anon_sym_test] = ACTIONS(1094), + [anon_sym_hide] = ACTIONS(1094), + [anon_sym_func] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_anyopaque] = ACTIONS(1094), + [anon_sym_bool] = ACTIONS(1094), + [anon_sym_int] = ACTIONS(1094), + [anon_sym_uint] = ACTIONS(1094), + [anon_sym_float] = ACTIONS(1094), + [anon_sym_range] = ACTIONS(1094), + [anon_sym_i8] = ACTIONS(1094), + [anon_sym_i16] = ACTIONS(1094), + [anon_sym_i32] = ACTIONS(1094), + [anon_sym_i64] = ACTIONS(1094), + [anon_sym_u8] = ACTIONS(1094), + [anon_sym_u16] = ACTIONS(1094), + [anon_sym_u32] = ACTIONS(1094), + [anon_sym_u64] = ACTIONS(1094), + [anon_sym_isize] = ACTIONS(1094), + [anon_sym_usize] = ACTIONS(1094), + [anon_sym_f32] = ACTIONS(1094), + [anon_sym_f64] = ACTIONS(1094), + [anon_sym_c_char] = ACTIONS(1094), + [anon_sym_c_schar] = ACTIONS(1094), + [anon_sym_c_uchar] = ACTIONS(1094), + [anon_sym_c_short] = ACTIONS(1094), + [anon_sym_c_ushort] = ACTIONS(1094), + [anon_sym_c_int] = ACTIONS(1094), + [anon_sym_c_uint] = ACTIONS(1094), + [anon_sym_c_long] = ACTIONS(1094), + [anon_sym_c_ulong] = ACTIONS(1094), + [anon_sym_c_longlong] = ACTIONS(1094), + [anon_sym_c_ulonglong] = ACTIONS(1094), + [anon_sym_c_float] = ACTIONS(1094), + [anon_sym_c_double] = ACTIONS(1094), + [anon_sym_c_longdouble] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_xor_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_defer] = ACTIONS(1094), + [anon_sym_errdefer] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_expand] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_match] = ACTIONS(1094), + [anon_sym_DOT_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), + [anon_sym_orelse] = ACTIONS(1094), + [anon_sym_catch] = ACTIONS(1094), + [anon_sym_or] = ACTIONS(1094), + [anon_sym_and] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_xor] = ACTIONS(1094), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_LT_LT_PIPE] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [sym_none] = ACTIONS(1094), + [sym_undefined] = ACTIONS(1094), + [sym_sink] = ACTIONS(1094), + [sym_integer] = ACTIONS(1094), + [sym_float] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_multiline_string] = ACTIONS(1092), + [sym_character] = ACTIONS(1092), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1092), }, [STATE(290)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(292), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_test] = ACTIONS(1100), + [anon_sym_hide] = ACTIONS(1100), + [anon_sym_func] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_anyopaque] = ACTIONS(1100), + [anon_sym_bool] = ACTIONS(1100), + [anon_sym_int] = ACTIONS(1100), + [anon_sym_uint] = ACTIONS(1100), + [anon_sym_float] = ACTIONS(1100), + [anon_sym_range] = ACTIONS(1100), + [anon_sym_i8] = ACTIONS(1100), + [anon_sym_i16] = ACTIONS(1100), + [anon_sym_i32] = ACTIONS(1100), + [anon_sym_i64] = ACTIONS(1100), + [anon_sym_u8] = ACTIONS(1100), + [anon_sym_u16] = ACTIONS(1100), + [anon_sym_u32] = ACTIONS(1100), + [anon_sym_u64] = ACTIONS(1100), + [anon_sym_isize] = ACTIONS(1100), + [anon_sym_usize] = ACTIONS(1100), + [anon_sym_f32] = ACTIONS(1100), + [anon_sym_f64] = ACTIONS(1100), + [anon_sym_c_char] = ACTIONS(1100), + [anon_sym_c_schar] = ACTIONS(1100), + [anon_sym_c_uchar] = ACTIONS(1100), + [anon_sym_c_short] = ACTIONS(1100), + [anon_sym_c_ushort] = ACTIONS(1100), + [anon_sym_c_int] = ACTIONS(1100), + [anon_sym_c_uint] = ACTIONS(1100), + [anon_sym_c_long] = ACTIONS(1100), + [anon_sym_c_ulong] = ACTIONS(1100), + [anon_sym_c_longlong] = ACTIONS(1100), + [anon_sym_c_ulonglong] = ACTIONS(1100), + [anon_sym_c_float] = ACTIONS(1100), + [anon_sym_c_double] = ACTIONS(1100), + [anon_sym_c_longdouble] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_xor_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_defer] = ACTIONS(1100), + [anon_sym_errdefer] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_expand] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_match] = ACTIONS(1100), + [anon_sym_DOT_DOT] = ACTIONS(1100), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1098), + [anon_sym_orelse] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_or] = ACTIONS(1100), + [anon_sym_and] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_xor] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_LT_LT_PIPE] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [sym_none] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [sym_sink] = ACTIONS(1100), + [sym_integer] = ACTIONS(1100), + [sym_float] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_multiline_string] = ACTIONS(1098), + [sym_character] = ACTIONS(1098), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1261), + [sym__newline] = ACTIONS(1098), }, [STATE(291)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_test] = ACTIONS(1104), + [anon_sym_hide] = ACTIONS(1104), + [anon_sym_func] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_DOLLAR] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_void] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_anyopaque] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_int] = ACTIONS(1104), + [anon_sym_uint] = ACTIONS(1104), + [anon_sym_float] = ACTIONS(1104), + [anon_sym_range] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_c_char] = ACTIONS(1104), + [anon_sym_c_schar] = ACTIONS(1104), + [anon_sym_c_uchar] = ACTIONS(1104), + [anon_sym_c_short] = ACTIONS(1104), + [anon_sym_c_ushort] = ACTIONS(1104), + [anon_sym_c_int] = ACTIONS(1104), + [anon_sym_c_uint] = ACTIONS(1104), + [anon_sym_c_long] = ACTIONS(1104), + [anon_sym_c_ulong] = ACTIONS(1104), + [anon_sym_c_longlong] = ACTIONS(1104), + [anon_sym_c_ulonglong] = ACTIONS(1104), + [anon_sym_c_float] = ACTIONS(1104), + [anon_sym_c_double] = ACTIONS(1104), + [anon_sym_c_longdouble] = ACTIONS(1104), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_xor_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_defer] = ACTIONS(1104), + [anon_sym_errdefer] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_expand] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_DOT_DOT] = ACTIONS(1104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1102), + [anon_sym_orelse] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_or] = ACTIONS(1104), + [anon_sym_and] = ACTIONS(1104), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_xor] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_LT_LT_PIPE] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_none] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1104), + [sym_sink] = ACTIONS(1104), + [sym_integer] = ACTIONS(1104), + [sym_float] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_multiline_string] = ACTIONS(1102), + [sym_character] = ACTIONS(1102), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1102), }, [STATE(292)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(109), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_test] = ACTIONS(1108), + [anon_sym_hide] = ACTIONS(1108), + [anon_sym_func] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_DOLLAR] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_anyopaque] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_int] = ACTIONS(1108), + [anon_sym_uint] = ACTIONS(1108), + [anon_sym_float] = ACTIONS(1108), + [anon_sym_range] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_c_char] = ACTIONS(1108), + [anon_sym_c_schar] = ACTIONS(1108), + [anon_sym_c_uchar] = ACTIONS(1108), + [anon_sym_c_short] = ACTIONS(1108), + [anon_sym_c_ushort] = ACTIONS(1108), + [anon_sym_c_int] = ACTIONS(1108), + [anon_sym_c_uint] = ACTIONS(1108), + [anon_sym_c_long] = ACTIONS(1108), + [anon_sym_c_ulong] = ACTIONS(1108), + [anon_sym_c_longlong] = ACTIONS(1108), + [anon_sym_c_ulonglong] = ACTIONS(1108), + [anon_sym_c_float] = ACTIONS(1108), + [anon_sym_c_double] = ACTIONS(1108), + [anon_sym_c_longdouble] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_xor_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_defer] = ACTIONS(1108), + [anon_sym_errdefer] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_expand] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_DOT_DOT] = ACTIONS(1108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1106), + [anon_sym_orelse] = ACTIONS(1108), + [anon_sym_catch] = ACTIONS(1108), + [anon_sym_or] = ACTIONS(1108), + [anon_sym_and] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_xor] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_LT_LT_PIPE] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_none] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [sym_sink] = ACTIONS(1108), + [sym_integer] = ACTIONS(1108), + [sym_float] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_multiline_string] = ACTIONS(1106), + [sym_character] = ACTIONS(1106), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(1106), }, [STATE(293)] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_test] = ACTIONS(643), - [anon_sym_hide] = ACTIONS(643), - [anon_sym_func] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(641), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_void] = ACTIONS(643), - [anon_sym_anyopaque] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_uint] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_range] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_c_char] = ACTIONS(643), - [anon_sym_c_schar] = ACTIONS(643), - [anon_sym_c_uchar] = ACTIONS(643), - [anon_sym_c_short] = ACTIONS(643), - [anon_sym_c_ushort] = ACTIONS(643), - [anon_sym_c_int] = ACTIONS(643), - [anon_sym_c_uint] = ACTIONS(643), - [anon_sym_c_long] = ACTIONS(643), - [anon_sym_c_ulong] = ACTIONS(643), - [anon_sym_c_longlong] = ACTIONS(643), - [anon_sym_c_ulonglong] = ACTIONS(643), - [anon_sym_c_float] = ACTIONS(643), - [anon_sym_c_double] = ACTIONS(643), - [anon_sym_c_longdouble] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(641), - [anon_sym_DASH_EQ] = ACTIONS(641), - [anon_sym_STAR_EQ] = ACTIONS(641), - [anon_sym_SLASH_EQ] = ACTIONS(641), - [anon_sym_AMP_EQ] = ACTIONS(641), - [anon_sym_PIPE_EQ] = ACTIONS(641), - [anon_sym_xor_EQ] = ACTIONS(641), - [anon_sym_LT_LT_EQ] = ACTIONS(641), - [anon_sym_GT_GT_EQ] = ACTIONS(641), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_defer] = ACTIONS(643), - [anon_sym_errdefer] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_expand] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(641), - [anon_sym_orelse] = ACTIONS(643), - [anon_sym_catch] = ACTIONS(643), - [anon_sym_or] = ACTIONS(643), - [anon_sym_and] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_xor] = ACTIONS(643), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_LT_LT_PIPE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_try] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(641), - [anon_sym_true] = ACTIONS(643), - [anon_sym_false] = ACTIONS(643), - [sym_none] = ACTIONS(643), - [sym_undefined] = ACTIONS(643), - [sym_sink] = ACTIONS(643), - [sym_integer] = ACTIONS(643), - [sym_float] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_multiline_string] = ACTIONS(641), - [sym_character] = ACTIONS(641), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_test] = ACTIONS(1112), + [anon_sym_hide] = ACTIONS(1112), + [anon_sym_func] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_void] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_anyopaque] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_int] = ACTIONS(1112), + [anon_sym_uint] = ACTIONS(1112), + [anon_sym_float] = ACTIONS(1112), + [anon_sym_range] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_c_char] = ACTIONS(1112), + [anon_sym_c_schar] = ACTIONS(1112), + [anon_sym_c_uchar] = ACTIONS(1112), + [anon_sym_c_short] = ACTIONS(1112), + [anon_sym_c_ushort] = ACTIONS(1112), + [anon_sym_c_int] = ACTIONS(1112), + [anon_sym_c_uint] = ACTIONS(1112), + [anon_sym_c_long] = ACTIONS(1112), + [anon_sym_c_ulong] = ACTIONS(1112), + [anon_sym_c_longlong] = ACTIONS(1112), + [anon_sym_c_ulonglong] = ACTIONS(1112), + [anon_sym_c_float] = ACTIONS(1112), + [anon_sym_c_double] = ACTIONS(1112), + [anon_sym_c_longdouble] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(1110), + [anon_sym_DASH_EQ] = ACTIONS(1110), + [anon_sym_STAR_EQ] = ACTIONS(1110), + [anon_sym_SLASH_EQ] = ACTIONS(1110), + [anon_sym_AMP_EQ] = ACTIONS(1110), + [anon_sym_PIPE_EQ] = ACTIONS(1110), + [anon_sym_xor_EQ] = ACTIONS(1110), + [anon_sym_LT_LT_EQ] = ACTIONS(1110), + [anon_sym_GT_GT_EQ] = ACTIONS(1110), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_defer] = ACTIONS(1112), + [anon_sym_errdefer] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_expand] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_DOT_DOT] = ACTIONS(1112), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1110), + [anon_sym_orelse] = ACTIONS(1112), + [anon_sym_catch] = ACTIONS(1112), + [anon_sym_or] = ACTIONS(1112), + [anon_sym_and] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_xor] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_LT_LT_PIPE] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_none] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1112), + [sym_sink] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [sym_float] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_multiline_string] = ACTIONS(1110), + [sym_character] = ACTIONS(1110), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(641), + [sym__newline] = ACTIONS(1110), }, [STATE(294)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2522), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2522), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_import] = ACTIONS(1116), + [anon_sym_test] = ACTIONS(1116), + [anon_sym_hide] = ACTIONS(1116), + [anon_sym_func] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_COMMA] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_QMARK] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_void] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_anyopaque] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_int] = ACTIONS(1116), + [anon_sym_uint] = ACTIONS(1116), + [anon_sym_float] = ACTIONS(1116), + [anon_sym_range] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_c_char] = ACTIONS(1116), + [anon_sym_c_schar] = ACTIONS(1116), + [anon_sym_c_uchar] = ACTIONS(1116), + [anon_sym_c_short] = ACTIONS(1116), + [anon_sym_c_ushort] = ACTIONS(1116), + [anon_sym_c_int] = ACTIONS(1116), + [anon_sym_c_uint] = ACTIONS(1116), + [anon_sym_c_long] = ACTIONS(1116), + [anon_sym_c_ulong] = ACTIONS(1116), + [anon_sym_c_longlong] = ACTIONS(1116), + [anon_sym_c_ulonglong] = ACTIONS(1116), + [anon_sym_c_float] = ACTIONS(1116), + [anon_sym_c_double] = ACTIONS(1116), + [anon_sym_c_longdouble] = ACTIONS(1116), + [anon_sym_PLUS_EQ] = ACTIONS(1114), + [anon_sym_DASH_EQ] = ACTIONS(1114), + [anon_sym_STAR_EQ] = ACTIONS(1114), + [anon_sym_SLASH_EQ] = ACTIONS(1114), + [anon_sym_AMP_EQ] = ACTIONS(1114), + [anon_sym_PIPE_EQ] = ACTIONS(1114), + [anon_sym_xor_EQ] = ACTIONS(1114), + [anon_sym_LT_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_defer] = ACTIONS(1116), + [anon_sym_errdefer] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_expand] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_DOT_DOT] = ACTIONS(1116), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1114), + [anon_sym_orelse] = ACTIONS(1116), + [anon_sym_catch] = ACTIONS(1116), + [anon_sym_or] = ACTIONS(1116), + [anon_sym_and] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1114), + [anon_sym_BANG_EQ] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_xor] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_LT_LT_PIPE] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_SLASH] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_none] = ACTIONS(1116), + [sym_undefined] = ACTIONS(1116), + [sym_sink] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_multiline_string] = ACTIONS(1114), + [sym_character] = ACTIONS(1114), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1265), + [sym__newline] = ACTIONS(1114), }, [STATE(295)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2522), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2522), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(1122), + [anon_sym_test] = ACTIONS(1122), + [anon_sym_hide] = ACTIONS(1122), + [anon_sym_func] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_EQ] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1122), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_anyopaque] = ACTIONS(1122), + [anon_sym_bool] = ACTIONS(1122), + [anon_sym_int] = ACTIONS(1122), + [anon_sym_uint] = ACTIONS(1122), + [anon_sym_float] = ACTIONS(1122), + [anon_sym_range] = ACTIONS(1122), + [anon_sym_i8] = ACTIONS(1122), + [anon_sym_i16] = ACTIONS(1122), + [anon_sym_i32] = ACTIONS(1122), + [anon_sym_i64] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1122), + [anon_sym_u16] = ACTIONS(1122), + [anon_sym_u32] = ACTIONS(1122), + [anon_sym_u64] = ACTIONS(1122), + [anon_sym_isize] = ACTIONS(1122), + [anon_sym_usize] = ACTIONS(1122), + [anon_sym_f32] = ACTIONS(1122), + [anon_sym_f64] = ACTIONS(1122), + [anon_sym_c_char] = ACTIONS(1122), + [anon_sym_c_schar] = ACTIONS(1122), + [anon_sym_c_uchar] = ACTIONS(1122), + [anon_sym_c_short] = ACTIONS(1122), + [anon_sym_c_ushort] = ACTIONS(1122), + [anon_sym_c_int] = ACTIONS(1122), + [anon_sym_c_uint] = ACTIONS(1122), + [anon_sym_c_long] = ACTIONS(1122), + [anon_sym_c_ulong] = ACTIONS(1122), + [anon_sym_c_longlong] = ACTIONS(1122), + [anon_sym_c_ulonglong] = ACTIONS(1122), + [anon_sym_c_float] = ACTIONS(1122), + [anon_sym_c_double] = ACTIONS(1122), + [anon_sym_c_longdouble] = ACTIONS(1122), + [anon_sym_PLUS_EQ] = ACTIONS(1120), + [anon_sym_DASH_EQ] = ACTIONS(1120), + [anon_sym_STAR_EQ] = ACTIONS(1120), + [anon_sym_SLASH_EQ] = ACTIONS(1120), + [anon_sym_AMP_EQ] = ACTIONS(1120), + [anon_sym_PIPE_EQ] = ACTIONS(1120), + [anon_sym_xor_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_EQ] = ACTIONS(1120), + [anon_sym_GT_GT_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_defer] = ACTIONS(1122), + [anon_sym_errdefer] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_expand] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_match] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1120), + [anon_sym_orelse] = ACTIONS(1122), + [anon_sym_catch] = ACTIONS(1122), + [anon_sym_or] = ACTIONS(1122), + [anon_sym_and] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_xor] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT_LT_PIPE] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_try] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_CARET] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1122), + [anon_sym_false] = ACTIONS(1122), + [sym_none] = ACTIONS(1122), + [sym_undefined] = ACTIONS(1122), + [sym_sink] = ACTIONS(1122), + [sym_integer] = ACTIONS(1122), + [sym_float] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_multiline_string] = ACTIONS(1120), + [sym_character] = ACTIONS(1120), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1120), }, [STATE(296)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(93), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [anon_sym_import] = ACTIONS(1126), + [anon_sym_test] = ACTIONS(1126), + [anon_sym_hide] = ACTIONS(1126), + [anon_sym_func] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_void] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1126), + [anon_sym_anyopaque] = ACTIONS(1126), + [anon_sym_bool] = ACTIONS(1126), + [anon_sym_int] = ACTIONS(1126), + [anon_sym_uint] = ACTIONS(1126), + [anon_sym_float] = ACTIONS(1126), + [anon_sym_range] = ACTIONS(1126), + [anon_sym_i8] = ACTIONS(1126), + [anon_sym_i16] = ACTIONS(1126), + [anon_sym_i32] = ACTIONS(1126), + [anon_sym_i64] = ACTIONS(1126), + [anon_sym_u8] = ACTIONS(1126), + [anon_sym_u16] = ACTIONS(1126), + [anon_sym_u32] = ACTIONS(1126), + [anon_sym_u64] = ACTIONS(1126), + [anon_sym_isize] = ACTIONS(1126), + [anon_sym_usize] = ACTIONS(1126), + [anon_sym_f32] = ACTIONS(1126), + [anon_sym_f64] = ACTIONS(1126), + [anon_sym_c_char] = ACTIONS(1126), + [anon_sym_c_schar] = ACTIONS(1126), + [anon_sym_c_uchar] = ACTIONS(1126), + [anon_sym_c_short] = ACTIONS(1126), + [anon_sym_c_ushort] = ACTIONS(1126), + [anon_sym_c_int] = ACTIONS(1126), + [anon_sym_c_uint] = ACTIONS(1126), + [anon_sym_c_long] = ACTIONS(1126), + [anon_sym_c_ulong] = ACTIONS(1126), + [anon_sym_c_longlong] = ACTIONS(1126), + [anon_sym_c_ulonglong] = ACTIONS(1126), + [anon_sym_c_float] = ACTIONS(1126), + [anon_sym_c_double] = ACTIONS(1126), + [anon_sym_c_longdouble] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1124), + [anon_sym_DASH_EQ] = ACTIONS(1124), + [anon_sym_STAR_EQ] = ACTIONS(1124), + [anon_sym_SLASH_EQ] = ACTIONS(1124), + [anon_sym_AMP_EQ] = ACTIONS(1124), + [anon_sym_PIPE_EQ] = ACTIONS(1124), + [anon_sym_xor_EQ] = ACTIONS(1124), + [anon_sym_LT_LT_EQ] = ACTIONS(1124), + [anon_sym_GT_GT_EQ] = ACTIONS(1124), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_defer] = ACTIONS(1126), + [anon_sym_errdefer] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_expand] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_match] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1124), + [anon_sym_orelse] = ACTIONS(1126), + [anon_sym_catch] = ACTIONS(1126), + [anon_sym_or] = ACTIONS(1126), + [anon_sym_and] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(1124), + [anon_sym_BANG_EQ] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_EQ] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_xor] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_LT_LT_PIPE] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(1126), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [sym_none] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1126), + [sym_sink] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [sym_float] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_multiline_string] = ACTIONS(1124), + [sym_character] = ACTIONS(1124), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1269), + [sym__newline] = ACTIONS(1124), }, [STATE(297)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2529), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2529), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_import] = ACTIONS(1130), + [anon_sym_test] = ACTIONS(1130), + [anon_sym_hide] = ACTIONS(1130), + [anon_sym_func] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_void] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_anyopaque] = ACTIONS(1130), + [anon_sym_bool] = ACTIONS(1130), + [anon_sym_int] = ACTIONS(1130), + [anon_sym_uint] = ACTIONS(1130), + [anon_sym_float] = ACTIONS(1130), + [anon_sym_range] = ACTIONS(1130), + [anon_sym_i8] = ACTIONS(1130), + [anon_sym_i16] = ACTIONS(1130), + [anon_sym_i32] = ACTIONS(1130), + [anon_sym_i64] = ACTIONS(1130), + [anon_sym_u8] = ACTIONS(1130), + [anon_sym_u16] = ACTIONS(1130), + [anon_sym_u32] = ACTIONS(1130), + [anon_sym_u64] = ACTIONS(1130), + [anon_sym_isize] = ACTIONS(1130), + [anon_sym_usize] = ACTIONS(1130), + [anon_sym_f32] = ACTIONS(1130), + [anon_sym_f64] = ACTIONS(1130), + [anon_sym_c_char] = ACTIONS(1130), + [anon_sym_c_schar] = ACTIONS(1130), + [anon_sym_c_uchar] = ACTIONS(1130), + [anon_sym_c_short] = ACTIONS(1130), + [anon_sym_c_ushort] = ACTIONS(1130), + [anon_sym_c_int] = ACTIONS(1130), + [anon_sym_c_uint] = ACTIONS(1130), + [anon_sym_c_long] = ACTIONS(1130), + [anon_sym_c_ulong] = ACTIONS(1130), + [anon_sym_c_longlong] = ACTIONS(1130), + [anon_sym_c_ulonglong] = ACTIONS(1130), + [anon_sym_c_float] = ACTIONS(1130), + [anon_sym_c_double] = ACTIONS(1130), + [anon_sym_c_longdouble] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_DASH_EQ] = ACTIONS(1128), + [anon_sym_STAR_EQ] = ACTIONS(1128), + [anon_sym_SLASH_EQ] = ACTIONS(1128), + [anon_sym_AMP_EQ] = ACTIONS(1128), + [anon_sym_PIPE_EQ] = ACTIONS(1128), + [anon_sym_xor_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_EQ] = ACTIONS(1128), + [anon_sym_GT_GT_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_yield] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_defer] = ACTIONS(1130), + [anon_sym_errdefer] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_expand] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1128), + [anon_sym_orelse] = ACTIONS(1130), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_or] = ACTIONS(1130), + [anon_sym_and] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_xor] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_LT_LT_PIPE] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [sym_none] = ACTIONS(1130), + [sym_undefined] = ACTIONS(1130), + [sym_sink] = ACTIONS(1130), + [sym_integer] = ACTIONS(1130), + [sym_float] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_multiline_string] = ACTIONS(1128), + [sym_character] = ACTIONS(1128), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1128), }, [STATE(298)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_import] = ACTIONS(1134), + [anon_sym_test] = ACTIONS(1134), + [anon_sym_hide] = ACTIONS(1134), + [anon_sym_func] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_QMARK] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_void] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_anyopaque] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_int] = ACTIONS(1134), + [anon_sym_uint] = ACTIONS(1134), + [anon_sym_float] = ACTIONS(1134), + [anon_sym_range] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_c_char] = ACTIONS(1134), + [anon_sym_c_schar] = ACTIONS(1134), + [anon_sym_c_uchar] = ACTIONS(1134), + [anon_sym_c_short] = ACTIONS(1134), + [anon_sym_c_ushort] = ACTIONS(1134), + [anon_sym_c_int] = ACTIONS(1134), + [anon_sym_c_uint] = ACTIONS(1134), + [anon_sym_c_long] = ACTIONS(1134), + [anon_sym_c_ulong] = ACTIONS(1134), + [anon_sym_c_longlong] = ACTIONS(1134), + [anon_sym_c_ulonglong] = ACTIONS(1134), + [anon_sym_c_float] = ACTIONS(1134), + [anon_sym_c_double] = ACTIONS(1134), + [anon_sym_c_longdouble] = ACTIONS(1134), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), + [anon_sym_STAR_EQ] = ACTIONS(1132), + [anon_sym_SLASH_EQ] = ACTIONS(1132), + [anon_sym_AMP_EQ] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1132), + [anon_sym_xor_EQ] = ACTIONS(1132), + [anon_sym_LT_LT_EQ] = ACTIONS(1132), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_yield] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_defer] = ACTIONS(1134), + [anon_sym_errdefer] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_expand] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1132), + [anon_sym_orelse] = ACTIONS(1134), + [anon_sym_catch] = ACTIONS(1134), + [anon_sym_or] = ACTIONS(1134), + [anon_sym_and] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_xor] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_LT_LT_PIPE] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_try] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [sym_none] = ACTIONS(1134), + [sym_undefined] = ACTIONS(1134), + [sym_sink] = ACTIONS(1134), + [sym_integer] = ACTIONS(1134), + [sym_float] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_multiline_string] = ACTIONS(1132), + [sym_character] = ACTIONS(1132), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1271), + [sym__newline] = ACTIONS(1132), }, [STATE(299)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2530), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2530), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(1138), + [anon_sym_test] = ACTIONS(1138), + [anon_sym_hide] = ACTIONS(1138), + [anon_sym_func] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_anyopaque] = ACTIONS(1138), + [anon_sym_bool] = ACTIONS(1138), + [anon_sym_int] = ACTIONS(1138), + [anon_sym_uint] = ACTIONS(1138), + [anon_sym_float] = ACTIONS(1138), + [anon_sym_range] = ACTIONS(1138), + [anon_sym_i8] = ACTIONS(1138), + [anon_sym_i16] = ACTIONS(1138), + [anon_sym_i32] = ACTIONS(1138), + [anon_sym_i64] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1138), + [anon_sym_u16] = ACTIONS(1138), + [anon_sym_u32] = ACTIONS(1138), + [anon_sym_u64] = ACTIONS(1138), + [anon_sym_isize] = ACTIONS(1138), + [anon_sym_usize] = ACTIONS(1138), + [anon_sym_f32] = ACTIONS(1138), + [anon_sym_f64] = ACTIONS(1138), + [anon_sym_c_char] = ACTIONS(1138), + [anon_sym_c_schar] = ACTIONS(1138), + [anon_sym_c_uchar] = ACTIONS(1138), + [anon_sym_c_short] = ACTIONS(1138), + [anon_sym_c_ushort] = ACTIONS(1138), + [anon_sym_c_int] = ACTIONS(1138), + [anon_sym_c_uint] = ACTIONS(1138), + [anon_sym_c_long] = ACTIONS(1138), + [anon_sym_c_ulong] = ACTIONS(1138), + [anon_sym_c_longlong] = ACTIONS(1138), + [anon_sym_c_ulonglong] = ACTIONS(1138), + [anon_sym_c_float] = ACTIONS(1138), + [anon_sym_c_double] = ACTIONS(1138), + [anon_sym_c_longdouble] = ACTIONS(1138), + [anon_sym_PLUS_EQ] = ACTIONS(1136), + [anon_sym_DASH_EQ] = ACTIONS(1136), + [anon_sym_STAR_EQ] = ACTIONS(1136), + [anon_sym_SLASH_EQ] = ACTIONS(1136), + [anon_sym_AMP_EQ] = ACTIONS(1136), + [anon_sym_PIPE_EQ] = ACTIONS(1136), + [anon_sym_xor_EQ] = ACTIONS(1136), + [anon_sym_LT_LT_EQ] = ACTIONS(1136), + [anon_sym_GT_GT_EQ] = ACTIONS(1136), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_defer] = ACTIONS(1138), + [anon_sym_errdefer] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_expand] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_match] = ACTIONS(1138), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), + [anon_sym_orelse] = ACTIONS(1138), + [anon_sym_catch] = ACTIONS(1138), + [anon_sym_or] = ACTIONS(1138), + [anon_sym_and] = ACTIONS(1138), + [anon_sym_EQ_EQ] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1138), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_xor] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1138), + [anon_sym_LT_LT_PIPE] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_try] = ACTIONS(1138), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [sym_none] = ACTIONS(1138), + [sym_undefined] = ACTIONS(1138), + [sym_sink] = ACTIONS(1138), + [sym_integer] = ACTIONS(1138), + [sym_float] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_multiline_string] = ACTIONS(1136), + [sym_character] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1273), + [sym__newline] = ACTIONS(1136), }, [STATE(300)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2530), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2530), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_import] = ACTIONS(1142), + [anon_sym_test] = ACTIONS(1142), + [anon_sym_hide] = ACTIONS(1142), + [anon_sym_func] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_QMARK] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_void] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_anyopaque] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_int] = ACTIONS(1142), + [anon_sym_uint] = ACTIONS(1142), + [anon_sym_float] = ACTIONS(1142), + [anon_sym_range] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_c_char] = ACTIONS(1142), + [anon_sym_c_schar] = ACTIONS(1142), + [anon_sym_c_uchar] = ACTIONS(1142), + [anon_sym_c_short] = ACTIONS(1142), + [anon_sym_c_ushort] = ACTIONS(1142), + [anon_sym_c_int] = ACTIONS(1142), + [anon_sym_c_uint] = ACTIONS(1142), + [anon_sym_c_long] = ACTIONS(1142), + [anon_sym_c_ulong] = ACTIONS(1142), + [anon_sym_c_longlong] = ACTIONS(1142), + [anon_sym_c_ulonglong] = ACTIONS(1142), + [anon_sym_c_float] = ACTIONS(1142), + [anon_sym_c_double] = ACTIONS(1142), + [anon_sym_c_longdouble] = ACTIONS(1142), + [anon_sym_PLUS_EQ] = ACTIONS(1140), + [anon_sym_DASH_EQ] = ACTIONS(1140), + [anon_sym_STAR_EQ] = ACTIONS(1140), + [anon_sym_SLASH_EQ] = ACTIONS(1140), + [anon_sym_AMP_EQ] = ACTIONS(1140), + [anon_sym_PIPE_EQ] = ACTIONS(1140), + [anon_sym_xor_EQ] = ACTIONS(1140), + [anon_sym_LT_LT_EQ] = ACTIONS(1140), + [anon_sym_GT_GT_EQ] = ACTIONS(1140), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_defer] = ACTIONS(1142), + [anon_sym_errdefer] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_expand] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1140), + [anon_sym_orelse] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1142), + [anon_sym_or] = ACTIONS(1142), + [anon_sym_and] = ACTIONS(1142), + [anon_sym_EQ_EQ] = ACTIONS(1140), + [anon_sym_BANG_EQ] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_GT_EQ] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_xor] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1142), + [anon_sym_GT_GT] = ACTIONS(1142), + [anon_sym_LT_LT_PIPE] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(1142), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_none] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1142), + [sym_sink] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [sym_float] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_multiline_string] = ACTIONS(1140), + [sym_character] = ACTIONS(1140), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1140), }, [STATE(301)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2514), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2514), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_test] = ACTIONS(1146), + [anon_sym_hide] = ACTIONS(1146), + [anon_sym_func] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_DOLLAR] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_QMARK] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_void] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_anyopaque] = ACTIONS(1146), + [anon_sym_bool] = ACTIONS(1146), + [anon_sym_int] = ACTIONS(1146), + [anon_sym_uint] = ACTIONS(1146), + [anon_sym_float] = ACTIONS(1146), + [anon_sym_range] = ACTIONS(1146), + [anon_sym_i8] = ACTIONS(1146), + [anon_sym_i16] = ACTIONS(1146), + [anon_sym_i32] = ACTIONS(1146), + [anon_sym_i64] = ACTIONS(1146), + [anon_sym_u8] = ACTIONS(1146), + [anon_sym_u16] = ACTIONS(1146), + [anon_sym_u32] = ACTIONS(1146), + [anon_sym_u64] = ACTIONS(1146), + [anon_sym_isize] = ACTIONS(1146), + [anon_sym_usize] = ACTIONS(1146), + [anon_sym_f32] = ACTIONS(1146), + [anon_sym_f64] = ACTIONS(1146), + [anon_sym_c_char] = ACTIONS(1146), + [anon_sym_c_schar] = ACTIONS(1146), + [anon_sym_c_uchar] = ACTIONS(1146), + [anon_sym_c_short] = ACTIONS(1146), + [anon_sym_c_ushort] = ACTIONS(1146), + [anon_sym_c_int] = ACTIONS(1146), + [anon_sym_c_uint] = ACTIONS(1146), + [anon_sym_c_long] = ACTIONS(1146), + [anon_sym_c_ulong] = ACTIONS(1146), + [anon_sym_c_longlong] = ACTIONS(1146), + [anon_sym_c_ulonglong] = ACTIONS(1146), + [anon_sym_c_float] = ACTIONS(1146), + [anon_sym_c_double] = ACTIONS(1146), + [anon_sym_c_longdouble] = ACTIONS(1146), + [anon_sym_PLUS_EQ] = ACTIONS(1144), + [anon_sym_DASH_EQ] = ACTIONS(1144), + [anon_sym_STAR_EQ] = ACTIONS(1144), + [anon_sym_SLASH_EQ] = ACTIONS(1144), + [anon_sym_AMP_EQ] = ACTIONS(1144), + [anon_sym_PIPE_EQ] = ACTIONS(1144), + [anon_sym_xor_EQ] = ACTIONS(1144), + [anon_sym_LT_LT_EQ] = ACTIONS(1144), + [anon_sym_GT_GT_EQ] = ACTIONS(1144), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_defer] = ACTIONS(1146), + [anon_sym_errdefer] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_expand] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_DOT_DOT] = ACTIONS(1146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1144), + [anon_sym_orelse] = ACTIONS(1146), + [anon_sym_catch] = ACTIONS(1146), + [anon_sym_or] = ACTIONS(1146), + [anon_sym_and] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1144), + [anon_sym_BANG_EQ] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_EQ] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_GT_EQ] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_xor] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT_PIPE] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [sym_none] = ACTIONS(1146), + [sym_undefined] = ACTIONS(1146), + [sym_sink] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [sym_float] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_multiline_string] = ACTIONS(1144), + [sym_character] = ACTIONS(1144), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1144), }, [STATE(302)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(309), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_test] = ACTIONS(1150), + [anon_sym_hide] = ACTIONS(1150), + [anon_sym_func] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_DOLLAR] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_anyopaque] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_int] = ACTIONS(1150), + [anon_sym_uint] = ACTIONS(1150), + [anon_sym_float] = ACTIONS(1150), + [anon_sym_range] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_c_char] = ACTIONS(1150), + [anon_sym_c_schar] = ACTIONS(1150), + [anon_sym_c_uchar] = ACTIONS(1150), + [anon_sym_c_short] = ACTIONS(1150), + [anon_sym_c_ushort] = ACTIONS(1150), + [anon_sym_c_int] = ACTIONS(1150), + [anon_sym_c_uint] = ACTIONS(1150), + [anon_sym_c_long] = ACTIONS(1150), + [anon_sym_c_ulong] = ACTIONS(1150), + [anon_sym_c_longlong] = ACTIONS(1150), + [anon_sym_c_ulonglong] = ACTIONS(1150), + [anon_sym_c_float] = ACTIONS(1150), + [anon_sym_c_double] = ACTIONS(1150), + [anon_sym_c_longdouble] = ACTIONS(1150), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_xor_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_defer] = ACTIONS(1150), + [anon_sym_errdefer] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_expand] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), + [anon_sym_orelse] = ACTIONS(1150), + [anon_sym_catch] = ACTIONS(1150), + [anon_sym_or] = ACTIONS(1150), + [anon_sym_and] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_BANG_EQ] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_LT_EQ] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1150), + [anon_sym_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_xor] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1150), + [anon_sym_LT_LT_PIPE] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_DOT] = ACTIONS(1150), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [sym_none] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1150), + [sym_sink] = ACTIONS(1150), + [sym_integer] = ACTIONS(1150), + [sym_float] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_multiline_string] = ACTIONS(1148), + [sym_character] = ACTIONS(1148), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1275), + [sym__newline] = ACTIONS(1148), }, [STATE(303)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_import] = ACTIONS(1154), + [anon_sym_test] = ACTIONS(1154), + [anon_sym_hide] = ACTIONS(1154), + [anon_sym_func] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_COMMA] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_anyopaque] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_int] = ACTIONS(1154), + [anon_sym_uint] = ACTIONS(1154), + [anon_sym_float] = ACTIONS(1154), + [anon_sym_range] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_c_char] = ACTIONS(1154), + [anon_sym_c_schar] = ACTIONS(1154), + [anon_sym_c_uchar] = ACTIONS(1154), + [anon_sym_c_short] = ACTIONS(1154), + [anon_sym_c_ushort] = ACTIONS(1154), + [anon_sym_c_int] = ACTIONS(1154), + [anon_sym_c_uint] = ACTIONS(1154), + [anon_sym_c_long] = ACTIONS(1154), + [anon_sym_c_ulong] = ACTIONS(1154), + [anon_sym_c_longlong] = ACTIONS(1154), + [anon_sym_c_ulonglong] = ACTIONS(1154), + [anon_sym_c_float] = ACTIONS(1154), + [anon_sym_c_double] = ACTIONS(1154), + [anon_sym_c_longdouble] = ACTIONS(1154), + [anon_sym_PLUS_EQ] = ACTIONS(1152), + [anon_sym_DASH_EQ] = ACTIONS(1152), + [anon_sym_STAR_EQ] = ACTIONS(1152), + [anon_sym_SLASH_EQ] = ACTIONS(1152), + [anon_sym_AMP_EQ] = ACTIONS(1152), + [anon_sym_PIPE_EQ] = ACTIONS(1152), + [anon_sym_xor_EQ] = ACTIONS(1152), + [anon_sym_LT_LT_EQ] = ACTIONS(1152), + [anon_sym_GT_GT_EQ] = ACTIONS(1152), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_defer] = ACTIONS(1154), + [anon_sym_errdefer] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_expand] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1152), + [anon_sym_orelse] = ACTIONS(1154), + [anon_sym_catch] = ACTIONS(1154), + [anon_sym_or] = ACTIONS(1154), + [anon_sym_and] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_BANG_EQ] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1154), + [anon_sym_GT_EQ] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_xor] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1154), + [anon_sym_LT_LT_PIPE] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_DOT] = ACTIONS(1154), + [anon_sym_CARET] = ACTIONS(1152), + [anon_sym_true] = ACTIONS(1154), + [anon_sym_false] = ACTIONS(1154), + [sym_none] = ACTIONS(1154), + [sym_undefined] = ACTIONS(1154), + [sym_sink] = ACTIONS(1154), + [sym_integer] = ACTIONS(1154), + [sym_float] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_multiline_string] = ACTIONS(1152), + [sym_character] = ACTIONS(1152), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1152), }, [STATE(304)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(312), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), + [anon_sym_import] = ACTIONS(1158), + [anon_sym_test] = ACTIONS(1158), + [anon_sym_hide] = ACTIONS(1158), + [anon_sym_func] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_EQ] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_void] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_anyopaque] = ACTIONS(1158), + [anon_sym_bool] = ACTIONS(1158), + [anon_sym_int] = ACTIONS(1158), + [anon_sym_uint] = ACTIONS(1158), + [anon_sym_float] = ACTIONS(1158), + [anon_sym_range] = ACTIONS(1158), + [anon_sym_i8] = ACTIONS(1158), + [anon_sym_i16] = ACTIONS(1158), + [anon_sym_i32] = ACTIONS(1158), + [anon_sym_i64] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1158), + [anon_sym_u16] = ACTIONS(1158), + [anon_sym_u32] = ACTIONS(1158), + [anon_sym_u64] = ACTIONS(1158), + [anon_sym_isize] = ACTIONS(1158), + [anon_sym_usize] = ACTIONS(1158), + [anon_sym_f32] = ACTIONS(1158), + [anon_sym_f64] = ACTIONS(1158), + [anon_sym_c_char] = ACTIONS(1158), + [anon_sym_c_schar] = ACTIONS(1158), + [anon_sym_c_uchar] = ACTIONS(1158), + [anon_sym_c_short] = ACTIONS(1158), + [anon_sym_c_ushort] = ACTIONS(1158), + [anon_sym_c_int] = ACTIONS(1158), + [anon_sym_c_uint] = ACTIONS(1158), + [anon_sym_c_long] = ACTIONS(1158), + [anon_sym_c_ulong] = ACTIONS(1158), + [anon_sym_c_longlong] = ACTIONS(1158), + [anon_sym_c_ulonglong] = ACTIONS(1158), + [anon_sym_c_float] = ACTIONS(1158), + [anon_sym_c_double] = ACTIONS(1158), + [anon_sym_c_longdouble] = ACTIONS(1158), + [anon_sym_PLUS_EQ] = ACTIONS(1156), + [anon_sym_DASH_EQ] = ACTIONS(1156), + [anon_sym_STAR_EQ] = ACTIONS(1156), + [anon_sym_SLASH_EQ] = ACTIONS(1156), + [anon_sym_AMP_EQ] = ACTIONS(1156), + [anon_sym_PIPE_EQ] = ACTIONS(1156), + [anon_sym_xor_EQ] = ACTIONS(1156), + [anon_sym_LT_LT_EQ] = ACTIONS(1156), + [anon_sym_GT_GT_EQ] = ACTIONS(1156), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_defer] = ACTIONS(1158), + [anon_sym_errdefer] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_expand] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_match] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1156), + [anon_sym_orelse] = ACTIONS(1158), + [anon_sym_catch] = ACTIONS(1158), + [anon_sym_or] = ACTIONS(1158), + [anon_sym_and] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1156), + [anon_sym_BANG_EQ] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_LT_EQ] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(1158), + [anon_sym_GT_EQ] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_xor] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1158), + [anon_sym_LT_LT_PIPE] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_try] = ACTIONS(1158), + [anon_sym_DOT] = ACTIONS(1158), + [anon_sym_CARET] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [sym_none] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1158), + [sym_sink] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [sym_float] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_multiline_string] = ACTIONS(1156), + [sym_character] = ACTIONS(1156), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1277), + [sym__newline] = ACTIONS(1156), }, [STATE(305)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2531), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2531), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_test] = ACTIONS(1162), + [anon_sym_hide] = ACTIONS(1162), + [anon_sym_func] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_anyopaque] = ACTIONS(1162), + [anon_sym_bool] = ACTIONS(1162), + [anon_sym_int] = ACTIONS(1162), + [anon_sym_uint] = ACTIONS(1162), + [anon_sym_float] = ACTIONS(1162), + [anon_sym_range] = ACTIONS(1162), + [anon_sym_i8] = ACTIONS(1162), + [anon_sym_i16] = ACTIONS(1162), + [anon_sym_i32] = ACTIONS(1162), + [anon_sym_i64] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1162), + [anon_sym_u16] = ACTIONS(1162), + [anon_sym_u32] = ACTIONS(1162), + [anon_sym_u64] = ACTIONS(1162), + [anon_sym_isize] = ACTIONS(1162), + [anon_sym_usize] = ACTIONS(1162), + [anon_sym_f32] = ACTIONS(1162), + [anon_sym_f64] = ACTIONS(1162), + [anon_sym_c_char] = ACTIONS(1162), + [anon_sym_c_schar] = ACTIONS(1162), + [anon_sym_c_uchar] = ACTIONS(1162), + [anon_sym_c_short] = ACTIONS(1162), + [anon_sym_c_ushort] = ACTIONS(1162), + [anon_sym_c_int] = ACTIONS(1162), + [anon_sym_c_uint] = ACTIONS(1162), + [anon_sym_c_long] = ACTIONS(1162), + [anon_sym_c_ulong] = ACTIONS(1162), + [anon_sym_c_longlong] = ACTIONS(1162), + [anon_sym_c_ulonglong] = ACTIONS(1162), + [anon_sym_c_float] = ACTIONS(1162), + [anon_sym_c_double] = ACTIONS(1162), + [anon_sym_c_longdouble] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1160), + [anon_sym_DASH_EQ] = ACTIONS(1160), + [anon_sym_STAR_EQ] = ACTIONS(1160), + [anon_sym_SLASH_EQ] = ACTIONS(1160), + [anon_sym_AMP_EQ] = ACTIONS(1160), + [anon_sym_PIPE_EQ] = ACTIONS(1160), + [anon_sym_xor_EQ] = ACTIONS(1160), + [anon_sym_LT_LT_EQ] = ACTIONS(1160), + [anon_sym_GT_GT_EQ] = ACTIONS(1160), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_yield] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_defer] = ACTIONS(1162), + [anon_sym_errdefer] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_expand] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_match] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1160), + [anon_sym_orelse] = ACTIONS(1162), + [anon_sym_catch] = ACTIONS(1162), + [anon_sym_or] = ACTIONS(1162), + [anon_sym_and] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_GT_EQ] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_xor] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_LT_LT_PIPE] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1162), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [sym_none] = ACTIONS(1162), + [sym_undefined] = ACTIONS(1162), + [sym_sink] = ACTIONS(1162), + [sym_integer] = ACTIONS(1162), + [sym_float] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_multiline_string] = ACTIONS(1160), + [sym_character] = ACTIONS(1160), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1160), }, [STATE(306)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_import] = ACTIONS(1166), + [anon_sym_test] = ACTIONS(1166), + [anon_sym_hide] = ACTIONS(1166), + [anon_sym_func] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1166), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_anyopaque] = ACTIONS(1166), + [anon_sym_bool] = ACTIONS(1166), + [anon_sym_int] = ACTIONS(1166), + [anon_sym_uint] = ACTIONS(1166), + [anon_sym_float] = ACTIONS(1166), + [anon_sym_range] = ACTIONS(1166), + [anon_sym_i8] = ACTIONS(1166), + [anon_sym_i16] = ACTIONS(1166), + [anon_sym_i32] = ACTIONS(1166), + [anon_sym_i64] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1166), + [anon_sym_u16] = ACTIONS(1166), + [anon_sym_u32] = ACTIONS(1166), + [anon_sym_u64] = ACTIONS(1166), + [anon_sym_isize] = ACTIONS(1166), + [anon_sym_usize] = ACTIONS(1166), + [anon_sym_f32] = ACTIONS(1166), + [anon_sym_f64] = ACTIONS(1166), + [anon_sym_c_char] = ACTIONS(1166), + [anon_sym_c_schar] = ACTIONS(1166), + [anon_sym_c_uchar] = ACTIONS(1166), + [anon_sym_c_short] = ACTIONS(1166), + [anon_sym_c_ushort] = ACTIONS(1166), + [anon_sym_c_int] = ACTIONS(1166), + [anon_sym_c_uint] = ACTIONS(1166), + [anon_sym_c_long] = ACTIONS(1166), + [anon_sym_c_ulong] = ACTIONS(1166), + [anon_sym_c_longlong] = ACTIONS(1166), + [anon_sym_c_ulonglong] = ACTIONS(1166), + [anon_sym_c_float] = ACTIONS(1166), + [anon_sym_c_double] = ACTIONS(1166), + [anon_sym_c_longdouble] = ACTIONS(1166), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_xor_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_defer] = ACTIONS(1166), + [anon_sym_errdefer] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_expand] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_match] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_orelse] = ACTIONS(1166), + [anon_sym_catch] = ACTIONS(1166), + [anon_sym_or] = ACTIONS(1166), + [anon_sym_and] = ACTIONS(1166), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1166), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_xor] = ACTIONS(1166), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_LT_LT_PIPE] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_DOT] = ACTIONS(1166), + [anon_sym_CARET] = ACTIONS(1164), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_none] = ACTIONS(1166), + [sym_undefined] = ACTIONS(1166), + [sym_sink] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [sym_float] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_multiline_string] = ACTIONS(1164), + [sym_character] = ACTIONS(1164), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1279), + [sym__newline] = ACTIONS(1164), }, [STATE(307)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_test] = ACTIONS(1170), + [anon_sym_hide] = ACTIONS(1170), + [anon_sym_func] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_DOLLAR] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_QMARK] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_anyopaque] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_int] = ACTIONS(1170), + [anon_sym_uint] = ACTIONS(1170), + [anon_sym_float] = ACTIONS(1170), + [anon_sym_range] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_c_char] = ACTIONS(1170), + [anon_sym_c_schar] = ACTIONS(1170), + [anon_sym_c_uchar] = ACTIONS(1170), + [anon_sym_c_short] = ACTIONS(1170), + [anon_sym_c_ushort] = ACTIONS(1170), + [anon_sym_c_int] = ACTIONS(1170), + [anon_sym_c_uint] = ACTIONS(1170), + [anon_sym_c_long] = ACTIONS(1170), + [anon_sym_c_ulong] = ACTIONS(1170), + [anon_sym_c_longlong] = ACTIONS(1170), + [anon_sym_c_ulonglong] = ACTIONS(1170), + [anon_sym_c_float] = ACTIONS(1170), + [anon_sym_c_double] = ACTIONS(1170), + [anon_sym_c_longdouble] = ACTIONS(1170), + [anon_sym_PLUS_EQ] = ACTIONS(1168), + [anon_sym_DASH_EQ] = ACTIONS(1168), + [anon_sym_STAR_EQ] = ACTIONS(1168), + [anon_sym_SLASH_EQ] = ACTIONS(1168), + [anon_sym_AMP_EQ] = ACTIONS(1168), + [anon_sym_PIPE_EQ] = ACTIONS(1168), + [anon_sym_xor_EQ] = ACTIONS(1168), + [anon_sym_LT_LT_EQ] = ACTIONS(1168), + [anon_sym_GT_GT_EQ] = ACTIONS(1168), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_defer] = ACTIONS(1170), + [anon_sym_errdefer] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_expand] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_match] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), + [anon_sym_orelse] = ACTIONS(1170), + [anon_sym_catch] = ACTIONS(1170), + [anon_sym_or] = ACTIONS(1170), + [anon_sym_and] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1168), + [anon_sym_BANG_EQ] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1170), + [anon_sym_GT_EQ] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_xor] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1170), + [anon_sym_LT_LT_PIPE] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_try] = ACTIONS(1170), + [anon_sym_DOT] = ACTIONS(1170), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1170), + [anon_sym_false] = ACTIONS(1170), + [sym_none] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1170), + [sym_sink] = ACTIONS(1170), + [sym_integer] = ACTIONS(1170), + [sym_float] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_multiline_string] = ACTIONS(1168), + [sym_character] = ACTIONS(1168), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1281), + [sym__newline] = ACTIONS(1168), }, [STATE(308)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1712), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1712), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(332), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1174), + [anon_sym_import] = ACTIONS(1174), + [anon_sym_test] = ACTIONS(1174), + [anon_sym_hide] = ACTIONS(1174), + [anon_sym_func] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_void] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_anyopaque] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_int] = ACTIONS(1174), + [anon_sym_uint] = ACTIONS(1174), + [anon_sym_float] = ACTIONS(1174), + [anon_sym_range] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_c_char] = ACTIONS(1174), + [anon_sym_c_schar] = ACTIONS(1174), + [anon_sym_c_uchar] = ACTIONS(1174), + [anon_sym_c_short] = ACTIONS(1174), + [anon_sym_c_ushort] = ACTIONS(1174), + [anon_sym_c_int] = ACTIONS(1174), + [anon_sym_c_uint] = ACTIONS(1174), + [anon_sym_c_long] = ACTIONS(1174), + [anon_sym_c_ulong] = ACTIONS(1174), + [anon_sym_c_longlong] = ACTIONS(1174), + [anon_sym_c_ulonglong] = ACTIONS(1174), + [anon_sym_c_float] = ACTIONS(1174), + [anon_sym_c_double] = ACTIONS(1174), + [anon_sym_c_longdouble] = ACTIONS(1174), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_xor_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_defer] = ACTIONS(1174), + [anon_sym_errdefer] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_expand] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), + [anon_sym_orelse] = ACTIONS(1174), + [anon_sym_catch] = ACTIONS(1174), + [anon_sym_or] = ACTIONS(1174), + [anon_sym_and] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1174), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_xor] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1174), + [anon_sym_LT_LT_PIPE] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1174), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_none] = ACTIONS(1174), + [sym_undefined] = ACTIONS(1174), + [sym_sink] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [sym_float] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_multiline_string] = ACTIONS(1172), + [sym_character] = ACTIONS(1172), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1283), + [sym__newline] = ACTIONS(1172), }, [STATE(309)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1178), + [anon_sym_import] = ACTIONS(1178), + [anon_sym_test] = ACTIONS(1178), + [anon_sym_hide] = ACTIONS(1178), + [anon_sym_func] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_RPAREN] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_COMMA] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_void] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_anyopaque] = ACTIONS(1178), + [anon_sym_bool] = ACTIONS(1178), + [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), + [anon_sym_float] = ACTIONS(1178), + [anon_sym_range] = ACTIONS(1178), + [anon_sym_i8] = ACTIONS(1178), + [anon_sym_i16] = ACTIONS(1178), + [anon_sym_i32] = ACTIONS(1178), + [anon_sym_i64] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1178), + [anon_sym_u16] = ACTIONS(1178), + [anon_sym_u32] = ACTIONS(1178), + [anon_sym_u64] = ACTIONS(1178), + [anon_sym_isize] = ACTIONS(1178), + [anon_sym_usize] = ACTIONS(1178), + [anon_sym_f32] = ACTIONS(1178), + [anon_sym_f64] = ACTIONS(1178), + [anon_sym_c_char] = ACTIONS(1178), + [anon_sym_c_schar] = ACTIONS(1178), + [anon_sym_c_uchar] = ACTIONS(1178), + [anon_sym_c_short] = ACTIONS(1178), + [anon_sym_c_ushort] = ACTIONS(1178), + [anon_sym_c_int] = ACTIONS(1178), + [anon_sym_c_uint] = ACTIONS(1178), + [anon_sym_c_long] = ACTIONS(1178), + [anon_sym_c_ulong] = ACTIONS(1178), + [anon_sym_c_longlong] = ACTIONS(1178), + [anon_sym_c_ulonglong] = ACTIONS(1178), + [anon_sym_c_float] = ACTIONS(1178), + [anon_sym_c_double] = ACTIONS(1178), + [anon_sym_c_longdouble] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(1176), + [anon_sym_DASH_EQ] = ACTIONS(1176), + [anon_sym_STAR_EQ] = ACTIONS(1176), + [anon_sym_SLASH_EQ] = ACTIONS(1176), + [anon_sym_AMP_EQ] = ACTIONS(1176), + [anon_sym_PIPE_EQ] = ACTIONS(1176), + [anon_sym_xor_EQ] = ACTIONS(1176), + [anon_sym_LT_LT_EQ] = ACTIONS(1176), + [anon_sym_GT_GT_EQ] = ACTIONS(1176), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_defer] = ACTIONS(1178), + [anon_sym_errdefer] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_expand] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), + [anon_sym_orelse] = ACTIONS(1178), + [anon_sym_catch] = ACTIONS(1178), + [anon_sym_or] = ACTIONS(1178), + [anon_sym_and] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1176), + [anon_sym_BANG_EQ] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1176), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_xor] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_LT_LT_PIPE] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1178), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1178), + [anon_sym_false] = ACTIONS(1178), + [sym_none] = ACTIONS(1178), + [sym_undefined] = ACTIONS(1178), + [sym_sink] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [sym_float] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_multiline_string] = ACTIONS(1176), + [sym_character] = ACTIONS(1176), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1176), }, [STATE(310)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1182), + [anon_sym_import] = ACTIONS(1182), + [anon_sym_test] = ACTIONS(1182), + [anon_sym_hide] = ACTIONS(1182), + [anon_sym_func] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_RPAREN] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_COMMA] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_DOLLAR] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_void] = ACTIONS(1182), + [anon_sym_type] = ACTIONS(1182), + [anon_sym_anyopaque] = ACTIONS(1182), + [anon_sym_bool] = ACTIONS(1182), + [anon_sym_int] = ACTIONS(1182), + [anon_sym_uint] = ACTIONS(1182), + [anon_sym_float] = ACTIONS(1182), + [anon_sym_range] = ACTIONS(1182), + [anon_sym_i8] = ACTIONS(1182), + [anon_sym_i16] = ACTIONS(1182), + [anon_sym_i32] = ACTIONS(1182), + [anon_sym_i64] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1182), + [anon_sym_u16] = ACTIONS(1182), + [anon_sym_u32] = ACTIONS(1182), + [anon_sym_u64] = ACTIONS(1182), + [anon_sym_isize] = ACTIONS(1182), + [anon_sym_usize] = ACTIONS(1182), + [anon_sym_f32] = ACTIONS(1182), + [anon_sym_f64] = ACTIONS(1182), + [anon_sym_c_char] = ACTIONS(1182), + [anon_sym_c_schar] = ACTIONS(1182), + [anon_sym_c_uchar] = ACTIONS(1182), + [anon_sym_c_short] = ACTIONS(1182), + [anon_sym_c_ushort] = ACTIONS(1182), + [anon_sym_c_int] = ACTIONS(1182), + [anon_sym_c_uint] = ACTIONS(1182), + [anon_sym_c_long] = ACTIONS(1182), + [anon_sym_c_ulong] = ACTIONS(1182), + [anon_sym_c_longlong] = ACTIONS(1182), + [anon_sym_c_ulonglong] = ACTIONS(1182), + [anon_sym_c_float] = ACTIONS(1182), + [anon_sym_c_double] = ACTIONS(1182), + [anon_sym_c_longdouble] = ACTIONS(1182), + [anon_sym_PLUS_EQ] = ACTIONS(1180), + [anon_sym_DASH_EQ] = ACTIONS(1180), + [anon_sym_STAR_EQ] = ACTIONS(1180), + [anon_sym_SLASH_EQ] = ACTIONS(1180), + [anon_sym_AMP_EQ] = ACTIONS(1180), + [anon_sym_PIPE_EQ] = ACTIONS(1180), + [anon_sym_xor_EQ] = ACTIONS(1180), + [anon_sym_LT_LT_EQ] = ACTIONS(1180), + [anon_sym_GT_GT_EQ] = ACTIONS(1180), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_yield] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_defer] = ACTIONS(1182), + [anon_sym_errdefer] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_else] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_expand] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_match] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1180), + [anon_sym_orelse] = ACTIONS(1182), + [anon_sym_catch] = ACTIONS(1182), + [anon_sym_or] = ACTIONS(1182), + [anon_sym_and] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1180), + [anon_sym_BANG_EQ] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_EQ] = ACTIONS(1180), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_xor] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_LT_LT_PIPE] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_SLASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_try] = ACTIONS(1182), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [sym_none] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1182), + [sym_sink] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [sym_float] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_multiline_string] = ACTIONS(1180), + [sym_character] = ACTIONS(1180), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1285), + [sym__newline] = ACTIONS(1180), }, [STATE(311)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_test] = ACTIONS(1186), + [anon_sym_hide] = ACTIONS(1186), + [anon_sym_func] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_QMARK] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_anyopaque] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_int] = ACTIONS(1186), + [anon_sym_uint] = ACTIONS(1186), + [anon_sym_float] = ACTIONS(1186), + [anon_sym_range] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_c_char] = ACTIONS(1186), + [anon_sym_c_schar] = ACTIONS(1186), + [anon_sym_c_uchar] = ACTIONS(1186), + [anon_sym_c_short] = ACTIONS(1186), + [anon_sym_c_ushort] = ACTIONS(1186), + [anon_sym_c_int] = ACTIONS(1186), + [anon_sym_c_uint] = ACTIONS(1186), + [anon_sym_c_long] = ACTIONS(1186), + [anon_sym_c_ulong] = ACTIONS(1186), + [anon_sym_c_longlong] = ACTIONS(1186), + [anon_sym_c_ulonglong] = ACTIONS(1186), + [anon_sym_c_float] = ACTIONS(1186), + [anon_sym_c_double] = ACTIONS(1186), + [anon_sym_c_longdouble] = ACTIONS(1186), + [anon_sym_PLUS_EQ] = ACTIONS(1184), + [anon_sym_DASH_EQ] = ACTIONS(1184), + [anon_sym_STAR_EQ] = ACTIONS(1184), + [anon_sym_SLASH_EQ] = ACTIONS(1184), + [anon_sym_AMP_EQ] = ACTIONS(1184), + [anon_sym_PIPE_EQ] = ACTIONS(1184), + [anon_sym_xor_EQ] = ACTIONS(1184), + [anon_sym_LT_LT_EQ] = ACTIONS(1184), + [anon_sym_GT_GT_EQ] = ACTIONS(1184), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_defer] = ACTIONS(1186), + [anon_sym_errdefer] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_expand] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), + [anon_sym_orelse] = ACTIONS(1186), + [anon_sym_catch] = ACTIONS(1186), + [anon_sym_or] = ACTIONS(1186), + [anon_sym_and] = ACTIONS(1186), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1184), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_GT_EQ] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_xor] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1186), + [anon_sym_LT_LT_PIPE] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_SLASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(1186), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_none] = ACTIONS(1186), + [sym_undefined] = ACTIONS(1186), + [sym_sink] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [sym_float] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_multiline_string] = ACTIONS(1184), + [sym_character] = ACTIONS(1184), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1287), + [sym__newline] = ACTIONS(1184), }, [STATE(312)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_test] = ACTIONS(1190), + [anon_sym_hide] = ACTIONS(1190), + [anon_sym_func] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_QMARK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_anyopaque] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), + [anon_sym_float] = ACTIONS(1190), + [anon_sym_range] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_c_char] = ACTIONS(1190), + [anon_sym_c_schar] = ACTIONS(1190), + [anon_sym_c_uchar] = ACTIONS(1190), + [anon_sym_c_short] = ACTIONS(1190), + [anon_sym_c_ushort] = ACTIONS(1190), + [anon_sym_c_int] = ACTIONS(1190), + [anon_sym_c_uint] = ACTIONS(1190), + [anon_sym_c_long] = ACTIONS(1190), + [anon_sym_c_ulong] = ACTIONS(1190), + [anon_sym_c_longlong] = ACTIONS(1190), + [anon_sym_c_ulonglong] = ACTIONS(1190), + [anon_sym_c_float] = ACTIONS(1190), + [anon_sym_c_double] = ACTIONS(1190), + [anon_sym_c_longdouble] = ACTIONS(1190), + [anon_sym_PLUS_EQ] = ACTIONS(1188), + [anon_sym_DASH_EQ] = ACTIONS(1188), + [anon_sym_STAR_EQ] = ACTIONS(1188), + [anon_sym_SLASH_EQ] = ACTIONS(1188), + [anon_sym_AMP_EQ] = ACTIONS(1188), + [anon_sym_PIPE_EQ] = ACTIONS(1188), + [anon_sym_xor_EQ] = ACTIONS(1188), + [anon_sym_LT_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_defer] = ACTIONS(1190), + [anon_sym_errdefer] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_expand] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), + [anon_sym_orelse] = ACTIONS(1190), + [anon_sym_catch] = ACTIONS(1190), + [anon_sym_or] = ACTIONS(1190), + [anon_sym_and] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_xor] = ACTIONS(1190), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_LT_LT_PIPE] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_DOT] = ACTIONS(1190), + [anon_sym_CARET] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_none] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [sym_sink] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [sym_float] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_multiline_string] = ACTIONS(1188), + [sym_character] = ACTIONS(1188), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1188), }, [STATE(313)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(320), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_test] = ACTIONS(1194), + [anon_sym_hide] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_anyopaque] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_int] = ACTIONS(1194), + [anon_sym_uint] = ACTIONS(1194), + [anon_sym_float] = ACTIONS(1194), + [anon_sym_range] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_c_char] = ACTIONS(1194), + [anon_sym_c_schar] = ACTIONS(1194), + [anon_sym_c_uchar] = ACTIONS(1194), + [anon_sym_c_short] = ACTIONS(1194), + [anon_sym_c_ushort] = ACTIONS(1194), + [anon_sym_c_int] = ACTIONS(1194), + [anon_sym_c_uint] = ACTIONS(1194), + [anon_sym_c_long] = ACTIONS(1194), + [anon_sym_c_ulong] = ACTIONS(1194), + [anon_sym_c_longlong] = ACTIONS(1194), + [anon_sym_c_ulonglong] = ACTIONS(1194), + [anon_sym_c_float] = ACTIONS(1194), + [anon_sym_c_double] = ACTIONS(1194), + [anon_sym_c_longdouble] = ACTIONS(1194), + [anon_sym_PLUS_EQ] = ACTIONS(1192), + [anon_sym_DASH_EQ] = ACTIONS(1192), + [anon_sym_STAR_EQ] = ACTIONS(1192), + [anon_sym_SLASH_EQ] = ACTIONS(1192), + [anon_sym_AMP_EQ] = ACTIONS(1192), + [anon_sym_PIPE_EQ] = ACTIONS(1192), + [anon_sym_xor_EQ] = ACTIONS(1192), + [anon_sym_LT_LT_EQ] = ACTIONS(1192), + [anon_sym_GT_GT_EQ] = ACTIONS(1192), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_defer] = ACTIONS(1194), + [anon_sym_errdefer] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_expand] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_catch] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_xor] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_GT_GT] = ACTIONS(1194), + [anon_sym_LT_LT_PIPE] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_SLASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_none] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_multiline_string] = ACTIONS(1192), + [sym_character] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1289), + [sym__newline] = ACTIONS(1192), }, [STATE(314)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_test] = ACTIONS(1198), + [anon_sym_hide] = ACTIONS(1198), + [anon_sym_func] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_void] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_anyopaque] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_int] = ACTIONS(1198), + [anon_sym_uint] = ACTIONS(1198), + [anon_sym_float] = ACTIONS(1198), + [anon_sym_range] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_c_char] = ACTIONS(1198), + [anon_sym_c_schar] = ACTIONS(1198), + [anon_sym_c_uchar] = ACTIONS(1198), + [anon_sym_c_short] = ACTIONS(1198), + [anon_sym_c_ushort] = ACTIONS(1198), + [anon_sym_c_int] = ACTIONS(1198), + [anon_sym_c_uint] = ACTIONS(1198), + [anon_sym_c_long] = ACTIONS(1198), + [anon_sym_c_ulong] = ACTIONS(1198), + [anon_sym_c_longlong] = ACTIONS(1198), + [anon_sym_c_ulonglong] = ACTIONS(1198), + [anon_sym_c_float] = ACTIONS(1198), + [anon_sym_c_double] = ACTIONS(1198), + [anon_sym_c_longdouble] = ACTIONS(1198), + [anon_sym_PLUS_EQ] = ACTIONS(1196), + [anon_sym_DASH_EQ] = ACTIONS(1196), + [anon_sym_STAR_EQ] = ACTIONS(1196), + [anon_sym_SLASH_EQ] = ACTIONS(1196), + [anon_sym_AMP_EQ] = ACTIONS(1196), + [anon_sym_PIPE_EQ] = ACTIONS(1196), + [anon_sym_xor_EQ] = ACTIONS(1196), + [anon_sym_LT_LT_EQ] = ACTIONS(1196), + [anon_sym_GT_GT_EQ] = ACTIONS(1196), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_defer] = ACTIONS(1198), + [anon_sym_errdefer] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_expand] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), + [anon_sym_orelse] = ACTIONS(1198), + [anon_sym_catch] = ACTIONS(1198), + [anon_sym_or] = ACTIONS(1198), + [anon_sym_and] = ACTIONS(1198), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_BANG_EQ] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_LT_EQ] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_EQ] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_xor] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_LT_LT_PIPE] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_DOT] = ACTIONS(1198), + [anon_sym_CARET] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_none] = ACTIONS(1198), + [sym_undefined] = ACTIONS(1198), + [sym_sink] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [sym_float] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_multiline_string] = ACTIONS(1196), + [sym_character] = ACTIONS(1196), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1196), }, [STATE(315)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(1202), + [anon_sym_test] = ACTIONS(1202), + [anon_sym_hide] = ACTIONS(1202), + [anon_sym_func] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_QMARK] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_anyopaque] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_int] = ACTIONS(1202), + [anon_sym_uint] = ACTIONS(1202), + [anon_sym_float] = ACTIONS(1202), + [anon_sym_range] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_c_char] = ACTIONS(1202), + [anon_sym_c_schar] = ACTIONS(1202), + [anon_sym_c_uchar] = ACTIONS(1202), + [anon_sym_c_short] = ACTIONS(1202), + [anon_sym_c_ushort] = ACTIONS(1202), + [anon_sym_c_int] = ACTIONS(1202), + [anon_sym_c_uint] = ACTIONS(1202), + [anon_sym_c_long] = ACTIONS(1202), + [anon_sym_c_ulong] = ACTIONS(1202), + [anon_sym_c_longlong] = ACTIONS(1202), + [anon_sym_c_ulonglong] = ACTIONS(1202), + [anon_sym_c_float] = ACTIONS(1202), + [anon_sym_c_double] = ACTIONS(1202), + [anon_sym_c_longdouble] = ACTIONS(1202), + [anon_sym_PLUS_EQ] = ACTIONS(1200), + [anon_sym_DASH_EQ] = ACTIONS(1200), + [anon_sym_STAR_EQ] = ACTIONS(1200), + [anon_sym_SLASH_EQ] = ACTIONS(1200), + [anon_sym_AMP_EQ] = ACTIONS(1200), + [anon_sym_PIPE_EQ] = ACTIONS(1200), + [anon_sym_xor_EQ] = ACTIONS(1200), + [anon_sym_LT_LT_EQ] = ACTIONS(1200), + [anon_sym_GT_GT_EQ] = ACTIONS(1200), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_defer] = ACTIONS(1202), + [anon_sym_errdefer] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_expand] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1200), + [anon_sym_orelse] = ACTIONS(1202), + [anon_sym_catch] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1202), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1200), + [anon_sym_BANG_EQ] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_LT_EQ] = ACTIONS(1200), + [anon_sym_GT] = ACTIONS(1202), + [anon_sym_GT_EQ] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_xor] = ACTIONS(1202), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1202), + [anon_sym_LT_LT_PIPE] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_try] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_CARET] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_none] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1202), + [sym_sink] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [sym_float] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_multiline_string] = ACTIONS(1200), + [sym_character] = ACTIONS(1200), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1291), + [sym__newline] = ACTIONS(1200), }, [STATE(316)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1712), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1712), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_import] = ACTIONS(1206), + [anon_sym_test] = ACTIONS(1206), + [anon_sym_hide] = ACTIONS(1206), + [anon_sym_func] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_anyopaque] = ACTIONS(1206), + [anon_sym_bool] = ACTIONS(1206), + [anon_sym_int] = ACTIONS(1206), + [anon_sym_uint] = ACTIONS(1206), + [anon_sym_float] = ACTIONS(1206), + [anon_sym_range] = ACTIONS(1206), + [anon_sym_i8] = ACTIONS(1206), + [anon_sym_i16] = ACTIONS(1206), + [anon_sym_i32] = ACTIONS(1206), + [anon_sym_i64] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1206), + [anon_sym_u16] = ACTIONS(1206), + [anon_sym_u32] = ACTIONS(1206), + [anon_sym_u64] = ACTIONS(1206), + [anon_sym_isize] = ACTIONS(1206), + [anon_sym_usize] = ACTIONS(1206), + [anon_sym_f32] = ACTIONS(1206), + [anon_sym_f64] = ACTIONS(1206), + [anon_sym_c_char] = ACTIONS(1206), + [anon_sym_c_schar] = ACTIONS(1206), + [anon_sym_c_uchar] = ACTIONS(1206), + [anon_sym_c_short] = ACTIONS(1206), + [anon_sym_c_ushort] = ACTIONS(1206), + [anon_sym_c_int] = ACTIONS(1206), + [anon_sym_c_uint] = ACTIONS(1206), + [anon_sym_c_long] = ACTIONS(1206), + [anon_sym_c_ulong] = ACTIONS(1206), + [anon_sym_c_longlong] = ACTIONS(1206), + [anon_sym_c_ulonglong] = ACTIONS(1206), + [anon_sym_c_float] = ACTIONS(1206), + [anon_sym_c_double] = ACTIONS(1206), + [anon_sym_c_longdouble] = ACTIONS(1206), + [anon_sym_PLUS_EQ] = ACTIONS(1204), + [anon_sym_DASH_EQ] = ACTIONS(1204), + [anon_sym_STAR_EQ] = ACTIONS(1204), + [anon_sym_SLASH_EQ] = ACTIONS(1204), + [anon_sym_AMP_EQ] = ACTIONS(1204), + [anon_sym_PIPE_EQ] = ACTIONS(1204), + [anon_sym_xor_EQ] = ACTIONS(1204), + [anon_sym_LT_LT_EQ] = ACTIONS(1204), + [anon_sym_GT_GT_EQ] = ACTIONS(1204), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_defer] = ACTIONS(1206), + [anon_sym_errdefer] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_expand] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_match] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1204), + [anon_sym_orelse] = ACTIONS(1206), + [anon_sym_catch] = ACTIONS(1206), + [anon_sym_or] = ACTIONS(1206), + [anon_sym_and] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1204), + [anon_sym_BANG_EQ] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_xor] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1206), + [anon_sym_LT_LT_PIPE] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1206), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_none] = ACTIONS(1206), + [sym_undefined] = ACTIONS(1206), + [sym_sink] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [sym_float] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_multiline_string] = ACTIONS(1204), + [sym_character] = ACTIONS(1204), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1204), }, [STATE(317)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(1210), + [anon_sym_test] = ACTIONS(1210), + [anon_sym_hide] = ACTIONS(1210), + [anon_sym_func] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_DOLLAR] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_anyopaque] = ACTIONS(1210), + [anon_sym_bool] = ACTIONS(1210), + [anon_sym_int] = ACTIONS(1210), + [anon_sym_uint] = ACTIONS(1210), + [anon_sym_float] = ACTIONS(1210), + [anon_sym_range] = ACTIONS(1210), + [anon_sym_i8] = ACTIONS(1210), + [anon_sym_i16] = ACTIONS(1210), + [anon_sym_i32] = ACTIONS(1210), + [anon_sym_i64] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1210), + [anon_sym_u16] = ACTIONS(1210), + [anon_sym_u32] = ACTIONS(1210), + [anon_sym_u64] = ACTIONS(1210), + [anon_sym_isize] = ACTIONS(1210), + [anon_sym_usize] = ACTIONS(1210), + [anon_sym_f32] = ACTIONS(1210), + [anon_sym_f64] = ACTIONS(1210), + [anon_sym_c_char] = ACTIONS(1210), + [anon_sym_c_schar] = ACTIONS(1210), + [anon_sym_c_uchar] = ACTIONS(1210), + [anon_sym_c_short] = ACTIONS(1210), + [anon_sym_c_ushort] = ACTIONS(1210), + [anon_sym_c_int] = ACTIONS(1210), + [anon_sym_c_uint] = ACTIONS(1210), + [anon_sym_c_long] = ACTIONS(1210), + [anon_sym_c_ulong] = ACTIONS(1210), + [anon_sym_c_longlong] = ACTIONS(1210), + [anon_sym_c_ulonglong] = ACTIONS(1210), + [anon_sym_c_float] = ACTIONS(1210), + [anon_sym_c_double] = ACTIONS(1210), + [anon_sym_c_longdouble] = ACTIONS(1210), + [anon_sym_PLUS_EQ] = ACTIONS(1208), + [anon_sym_DASH_EQ] = ACTIONS(1208), + [anon_sym_STAR_EQ] = ACTIONS(1208), + [anon_sym_SLASH_EQ] = ACTIONS(1208), + [anon_sym_AMP_EQ] = ACTIONS(1208), + [anon_sym_PIPE_EQ] = ACTIONS(1208), + [anon_sym_xor_EQ] = ACTIONS(1208), + [anon_sym_LT_LT_EQ] = ACTIONS(1208), + [anon_sym_GT_GT_EQ] = ACTIONS(1208), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_defer] = ACTIONS(1210), + [anon_sym_errdefer] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_expand] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_match] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1208), + [anon_sym_orelse] = ACTIONS(1210), + [anon_sym_catch] = ACTIONS(1210), + [anon_sym_or] = ACTIONS(1210), + [anon_sym_and] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1208), + [anon_sym_BANG_EQ] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_LT_EQ] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_xor] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1210), + [anon_sym_GT_GT] = ACTIONS(1210), + [anon_sym_LT_LT_PIPE] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [sym_none] = ACTIONS(1210), + [sym_undefined] = ACTIONS(1210), + [sym_sink] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [sym_float] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_multiline_string] = ACTIONS(1208), + [sym_character] = ACTIONS(1208), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1208), }, [STATE(318)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_import] = ACTIONS(1214), + [anon_sym_test] = ACTIONS(1214), + [anon_sym_hide] = ACTIONS(1214), + [anon_sym_func] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_anyopaque] = ACTIONS(1214), + [anon_sym_bool] = ACTIONS(1214), + [anon_sym_int] = ACTIONS(1214), + [anon_sym_uint] = ACTIONS(1214), + [anon_sym_float] = ACTIONS(1214), + [anon_sym_range] = ACTIONS(1214), + [anon_sym_i8] = ACTIONS(1214), + [anon_sym_i16] = ACTIONS(1214), + [anon_sym_i32] = ACTIONS(1214), + [anon_sym_i64] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1214), + [anon_sym_u16] = ACTIONS(1214), + [anon_sym_u32] = ACTIONS(1214), + [anon_sym_u64] = ACTIONS(1214), + [anon_sym_isize] = ACTIONS(1214), + [anon_sym_usize] = ACTIONS(1214), + [anon_sym_f32] = ACTIONS(1214), + [anon_sym_f64] = ACTIONS(1214), + [anon_sym_c_char] = ACTIONS(1214), + [anon_sym_c_schar] = ACTIONS(1214), + [anon_sym_c_uchar] = ACTIONS(1214), + [anon_sym_c_short] = ACTIONS(1214), + [anon_sym_c_ushort] = ACTIONS(1214), + [anon_sym_c_int] = ACTIONS(1214), + [anon_sym_c_uint] = ACTIONS(1214), + [anon_sym_c_long] = ACTIONS(1214), + [anon_sym_c_ulong] = ACTIONS(1214), + [anon_sym_c_longlong] = ACTIONS(1214), + [anon_sym_c_ulonglong] = ACTIONS(1214), + [anon_sym_c_float] = ACTIONS(1214), + [anon_sym_c_double] = ACTIONS(1214), + [anon_sym_c_longdouble] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(1212), + [anon_sym_DASH_EQ] = ACTIONS(1212), + [anon_sym_STAR_EQ] = ACTIONS(1212), + [anon_sym_SLASH_EQ] = ACTIONS(1212), + [anon_sym_AMP_EQ] = ACTIONS(1212), + [anon_sym_PIPE_EQ] = ACTIONS(1212), + [anon_sym_xor_EQ] = ACTIONS(1212), + [anon_sym_LT_LT_EQ] = ACTIONS(1212), + [anon_sym_GT_GT_EQ] = ACTIONS(1212), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_defer] = ACTIONS(1214), + [anon_sym_errdefer] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_expand] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_match] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1212), + [anon_sym_orelse] = ACTIONS(1214), + [anon_sym_catch] = ACTIONS(1214), + [anon_sym_or] = ACTIONS(1214), + [anon_sym_and] = ACTIONS(1214), + [anon_sym_EQ_EQ] = ACTIONS(1212), + [anon_sym_BANG_EQ] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_xor] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_LT_LT_PIPE] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [sym_none] = ACTIONS(1214), + [sym_undefined] = ACTIONS(1214), + [sym_sink] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [sym_float] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_multiline_string] = ACTIONS(1212), + [sym_character] = ACTIONS(1212), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1212), }, [STATE(319)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_import] = ACTIONS(1218), + [anon_sym_test] = ACTIONS(1218), + [anon_sym_hide] = ACTIONS(1218), + [anon_sym_func] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_void] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_anyopaque] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_int] = ACTIONS(1218), + [anon_sym_uint] = ACTIONS(1218), + [anon_sym_float] = ACTIONS(1218), + [anon_sym_range] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_c_char] = ACTIONS(1218), + [anon_sym_c_schar] = ACTIONS(1218), + [anon_sym_c_uchar] = ACTIONS(1218), + [anon_sym_c_short] = ACTIONS(1218), + [anon_sym_c_ushort] = ACTIONS(1218), + [anon_sym_c_int] = ACTIONS(1218), + [anon_sym_c_uint] = ACTIONS(1218), + [anon_sym_c_long] = ACTIONS(1218), + [anon_sym_c_ulong] = ACTIONS(1218), + [anon_sym_c_longlong] = ACTIONS(1218), + [anon_sym_c_ulonglong] = ACTIONS(1218), + [anon_sym_c_float] = ACTIONS(1218), + [anon_sym_c_double] = ACTIONS(1218), + [anon_sym_c_longdouble] = ACTIONS(1218), + [anon_sym_PLUS_EQ] = ACTIONS(1216), + [anon_sym_DASH_EQ] = ACTIONS(1216), + [anon_sym_STAR_EQ] = ACTIONS(1216), + [anon_sym_SLASH_EQ] = ACTIONS(1216), + [anon_sym_AMP_EQ] = ACTIONS(1216), + [anon_sym_PIPE_EQ] = ACTIONS(1216), + [anon_sym_xor_EQ] = ACTIONS(1216), + [anon_sym_LT_LT_EQ] = ACTIONS(1216), + [anon_sym_GT_GT_EQ] = ACTIONS(1216), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_defer] = ACTIONS(1218), + [anon_sym_errdefer] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_expand] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_match] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1216), + [anon_sym_orelse] = ACTIONS(1218), + [anon_sym_catch] = ACTIONS(1218), + [anon_sym_or] = ACTIONS(1218), + [anon_sym_and] = ACTIONS(1218), + [anon_sym_EQ_EQ] = ACTIONS(1216), + [anon_sym_BANG_EQ] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_LT_EQ] = ACTIONS(1216), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_GT_EQ] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_xor] = ACTIONS(1218), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1218), + [anon_sym_LT_LT_PIPE] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [sym_none] = ACTIONS(1218), + [sym_undefined] = ACTIONS(1218), + [sym_sink] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [sym_float] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_multiline_string] = ACTIONS(1216), + [sym_character] = ACTIONS(1216), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1293), + [sym__newline] = ACTIONS(1216), }, [STATE(320)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_import] = ACTIONS(1222), + [anon_sym_test] = ACTIONS(1222), + [anon_sym_hide] = ACTIONS(1222), + [anon_sym_func] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_void] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1222), + [anon_sym_anyopaque] = ACTIONS(1222), + [anon_sym_bool] = ACTIONS(1222), + [anon_sym_int] = ACTIONS(1222), + [anon_sym_uint] = ACTIONS(1222), + [anon_sym_float] = ACTIONS(1222), + [anon_sym_range] = ACTIONS(1222), + [anon_sym_i8] = ACTIONS(1222), + [anon_sym_i16] = ACTIONS(1222), + [anon_sym_i32] = ACTIONS(1222), + [anon_sym_i64] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1222), + [anon_sym_u16] = ACTIONS(1222), + [anon_sym_u32] = ACTIONS(1222), + [anon_sym_u64] = ACTIONS(1222), + [anon_sym_isize] = ACTIONS(1222), + [anon_sym_usize] = ACTIONS(1222), + [anon_sym_f32] = ACTIONS(1222), + [anon_sym_f64] = ACTIONS(1222), + [anon_sym_c_char] = ACTIONS(1222), + [anon_sym_c_schar] = ACTIONS(1222), + [anon_sym_c_uchar] = ACTIONS(1222), + [anon_sym_c_short] = ACTIONS(1222), + [anon_sym_c_ushort] = ACTIONS(1222), + [anon_sym_c_int] = ACTIONS(1222), + [anon_sym_c_uint] = ACTIONS(1222), + [anon_sym_c_long] = ACTIONS(1222), + [anon_sym_c_ulong] = ACTIONS(1222), + [anon_sym_c_longlong] = ACTIONS(1222), + [anon_sym_c_ulonglong] = ACTIONS(1222), + [anon_sym_c_float] = ACTIONS(1222), + [anon_sym_c_double] = ACTIONS(1222), + [anon_sym_c_longdouble] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1220), + [anon_sym_DASH_EQ] = ACTIONS(1220), + [anon_sym_STAR_EQ] = ACTIONS(1220), + [anon_sym_SLASH_EQ] = ACTIONS(1220), + [anon_sym_AMP_EQ] = ACTIONS(1220), + [anon_sym_PIPE_EQ] = ACTIONS(1220), + [anon_sym_xor_EQ] = ACTIONS(1220), + [anon_sym_LT_LT_EQ] = ACTIONS(1220), + [anon_sym_GT_GT_EQ] = ACTIONS(1220), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_defer] = ACTIONS(1222), + [anon_sym_errdefer] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_expand] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), + [anon_sym_orelse] = ACTIONS(1222), + [anon_sym_catch] = ACTIONS(1222), + [anon_sym_or] = ACTIONS(1222), + [anon_sym_and] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_xor] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [sym_none] = ACTIONS(1222), + [sym_undefined] = ACTIONS(1222), + [sym_sink] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [sym_float] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_multiline_string] = ACTIONS(1220), + [sym_character] = ACTIONS(1220), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1220), }, [STATE(321)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(325), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_import] = ACTIONS(1226), + [anon_sym_test] = ACTIONS(1226), + [anon_sym_hide] = ACTIONS(1226), + [anon_sym_func] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1226), + [anon_sym_anyopaque] = ACTIONS(1226), + [anon_sym_bool] = ACTIONS(1226), + [anon_sym_int] = ACTIONS(1226), + [anon_sym_uint] = ACTIONS(1226), + [anon_sym_float] = ACTIONS(1226), + [anon_sym_range] = ACTIONS(1226), + [anon_sym_i8] = ACTIONS(1226), + [anon_sym_i16] = ACTIONS(1226), + [anon_sym_i32] = ACTIONS(1226), + [anon_sym_i64] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1226), + [anon_sym_u16] = ACTIONS(1226), + [anon_sym_u32] = ACTIONS(1226), + [anon_sym_u64] = ACTIONS(1226), + [anon_sym_isize] = ACTIONS(1226), + [anon_sym_usize] = ACTIONS(1226), + [anon_sym_f32] = ACTIONS(1226), + [anon_sym_f64] = ACTIONS(1226), + [anon_sym_c_char] = ACTIONS(1226), + [anon_sym_c_schar] = ACTIONS(1226), + [anon_sym_c_uchar] = ACTIONS(1226), + [anon_sym_c_short] = ACTIONS(1226), + [anon_sym_c_ushort] = ACTIONS(1226), + [anon_sym_c_int] = ACTIONS(1226), + [anon_sym_c_uint] = ACTIONS(1226), + [anon_sym_c_long] = ACTIONS(1226), + [anon_sym_c_ulong] = ACTIONS(1226), + [anon_sym_c_longlong] = ACTIONS(1226), + [anon_sym_c_ulonglong] = ACTIONS(1226), + [anon_sym_c_float] = ACTIONS(1226), + [anon_sym_c_double] = ACTIONS(1226), + [anon_sym_c_longdouble] = ACTIONS(1226), + [anon_sym_PLUS_EQ] = ACTIONS(1224), + [anon_sym_DASH_EQ] = ACTIONS(1224), + [anon_sym_STAR_EQ] = ACTIONS(1224), + [anon_sym_SLASH_EQ] = ACTIONS(1224), + [anon_sym_AMP_EQ] = ACTIONS(1224), + [anon_sym_PIPE_EQ] = ACTIONS(1224), + [anon_sym_xor_EQ] = ACTIONS(1224), + [anon_sym_LT_LT_EQ] = ACTIONS(1224), + [anon_sym_GT_GT_EQ] = ACTIONS(1224), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_defer] = ACTIONS(1226), + [anon_sym_errdefer] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_expand] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1224), + [anon_sym_orelse] = ACTIONS(1226), + [anon_sym_catch] = ACTIONS(1226), + [anon_sym_or] = ACTIONS(1226), + [anon_sym_and] = ACTIONS(1226), + [anon_sym_EQ_EQ] = ACTIONS(1224), + [anon_sym_BANG_EQ] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_EQ] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_EQ] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_xor] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_LT_LT_PIPE] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [sym_none] = ACTIONS(1226), + [sym_undefined] = ACTIONS(1226), + [sym_sink] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [sym_float] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_multiline_string] = ACTIONS(1224), + [sym_character] = ACTIONS(1224), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1295), + [sym__newline] = ACTIONS(1224), }, [STATE(322)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_import] = ACTIONS(1230), + [anon_sym_test] = ACTIONS(1230), + [anon_sym_hide] = ACTIONS(1230), + [anon_sym_func] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_EQ] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_DOLLAR] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_QMARK] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_void] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_anyopaque] = ACTIONS(1230), + [anon_sym_bool] = ACTIONS(1230), + [anon_sym_int] = ACTIONS(1230), + [anon_sym_uint] = ACTIONS(1230), + [anon_sym_float] = ACTIONS(1230), + [anon_sym_range] = ACTIONS(1230), + [anon_sym_i8] = ACTIONS(1230), + [anon_sym_i16] = ACTIONS(1230), + [anon_sym_i32] = ACTIONS(1230), + [anon_sym_i64] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1230), + [anon_sym_u16] = ACTIONS(1230), + [anon_sym_u32] = ACTIONS(1230), + [anon_sym_u64] = ACTIONS(1230), + [anon_sym_isize] = ACTIONS(1230), + [anon_sym_usize] = ACTIONS(1230), + [anon_sym_f32] = ACTIONS(1230), + [anon_sym_f64] = ACTIONS(1230), + [anon_sym_c_char] = ACTIONS(1230), + [anon_sym_c_schar] = ACTIONS(1230), + [anon_sym_c_uchar] = ACTIONS(1230), + [anon_sym_c_short] = ACTIONS(1230), + [anon_sym_c_ushort] = ACTIONS(1230), + [anon_sym_c_int] = ACTIONS(1230), + [anon_sym_c_uint] = ACTIONS(1230), + [anon_sym_c_long] = ACTIONS(1230), + [anon_sym_c_ulong] = ACTIONS(1230), + [anon_sym_c_longlong] = ACTIONS(1230), + [anon_sym_c_ulonglong] = ACTIONS(1230), + [anon_sym_c_float] = ACTIONS(1230), + [anon_sym_c_double] = ACTIONS(1230), + [anon_sym_c_longdouble] = ACTIONS(1230), + [anon_sym_PLUS_EQ] = ACTIONS(1228), + [anon_sym_DASH_EQ] = ACTIONS(1228), + [anon_sym_STAR_EQ] = ACTIONS(1228), + [anon_sym_SLASH_EQ] = ACTIONS(1228), + [anon_sym_AMP_EQ] = ACTIONS(1228), + [anon_sym_PIPE_EQ] = ACTIONS(1228), + [anon_sym_xor_EQ] = ACTIONS(1228), + [anon_sym_LT_LT_EQ] = ACTIONS(1228), + [anon_sym_GT_GT_EQ] = ACTIONS(1228), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_defer] = ACTIONS(1230), + [anon_sym_errdefer] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_expand] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_match] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1228), + [anon_sym_orelse] = ACTIONS(1230), + [anon_sym_catch] = ACTIONS(1230), + [anon_sym_or] = ACTIONS(1230), + [anon_sym_and] = ACTIONS(1230), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_xor] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_LT_LT_PIPE] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1230), + [anon_sym_false] = ACTIONS(1230), + [sym_none] = ACTIONS(1230), + [sym_undefined] = ACTIONS(1230), + [sym_sink] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [sym_float] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_multiline_string] = ACTIONS(1228), + [sym_character] = ACTIONS(1228), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1297), + [sym__newline] = ACTIONS(1228), }, [STATE(323)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_import] = ACTIONS(1234), + [anon_sym_test] = ACTIONS(1234), + [anon_sym_hide] = ACTIONS(1234), + [anon_sym_func] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_void] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_anyopaque] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_int] = ACTIONS(1234), + [anon_sym_uint] = ACTIONS(1234), + [anon_sym_float] = ACTIONS(1234), + [anon_sym_range] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_c_char] = ACTIONS(1234), + [anon_sym_c_schar] = ACTIONS(1234), + [anon_sym_c_uchar] = ACTIONS(1234), + [anon_sym_c_short] = ACTIONS(1234), + [anon_sym_c_ushort] = ACTIONS(1234), + [anon_sym_c_int] = ACTIONS(1234), + [anon_sym_c_uint] = ACTIONS(1234), + [anon_sym_c_long] = ACTIONS(1234), + [anon_sym_c_ulong] = ACTIONS(1234), + [anon_sym_c_longlong] = ACTIONS(1234), + [anon_sym_c_ulonglong] = ACTIONS(1234), + [anon_sym_c_float] = ACTIONS(1234), + [anon_sym_c_double] = ACTIONS(1234), + [anon_sym_c_longdouble] = ACTIONS(1234), + [anon_sym_PLUS_EQ] = ACTIONS(1232), + [anon_sym_DASH_EQ] = ACTIONS(1232), + [anon_sym_STAR_EQ] = ACTIONS(1232), + [anon_sym_SLASH_EQ] = ACTIONS(1232), + [anon_sym_AMP_EQ] = ACTIONS(1232), + [anon_sym_PIPE_EQ] = ACTIONS(1232), + [anon_sym_xor_EQ] = ACTIONS(1232), + [anon_sym_LT_LT_EQ] = ACTIONS(1232), + [anon_sym_GT_GT_EQ] = ACTIONS(1232), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_defer] = ACTIONS(1234), + [anon_sym_errdefer] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_expand] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), + [anon_sym_orelse] = ACTIONS(1234), + [anon_sym_catch] = ACTIONS(1234), + [anon_sym_or] = ACTIONS(1234), + [anon_sym_and] = ACTIONS(1234), + [anon_sym_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_xor] = ACTIONS(1234), + [anon_sym_LT_LT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_LT_LT_PIPE] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), + [sym_none] = ACTIONS(1234), + [sym_undefined] = ACTIONS(1234), + [sym_sink] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [sym_float] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_multiline_string] = ACTIONS(1232), + [sym_character] = ACTIONS(1232), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1232), }, [STATE(324)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(406), }, [STATE(325)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(326), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1238), }, [STATE(326)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(754), }, [STATE(327)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2927), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2927), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(329), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1299), + [sym__newline] = ACTIONS(1242), }, [STATE(328)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2927), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2927), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(329)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2515), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2515), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2933), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2933), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1301), + [sym__newline] = ACTIONS(466), }, [STATE(330)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1707), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1707), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -50084,422 +51688,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1303), + [sym__newline] = ACTIONS(1244), }, [STATE(331)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1707), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1707), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2935), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2935), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1246), }, [STATE(332)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1715), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1715), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2935), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2935), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(333)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1718), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1718), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1248), + [anon_sym_func] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_void] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_anyopaque] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_int] = ACTIONS(1274), + [anon_sym_uint] = ACTIONS(1274), + [anon_sym_float] = ACTIONS(1274), + [anon_sym_range] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_c_char] = ACTIONS(1274), + [anon_sym_c_schar] = ACTIONS(1274), + [anon_sym_c_uchar] = ACTIONS(1274), + [anon_sym_c_short] = ACTIONS(1274), + [anon_sym_c_ushort] = ACTIONS(1274), + [anon_sym_c_int] = ACTIONS(1274), + [anon_sym_c_uint] = ACTIONS(1274), + [anon_sym_c_long] = ACTIONS(1274), + [anon_sym_c_ulong] = ACTIONS(1274), + [anon_sym_c_longlong] = ACTIONS(1274), + [anon_sym_c_ulonglong] = ACTIONS(1274), + [anon_sym_c_float] = ACTIONS(1274), + [anon_sym_c_double] = ACTIONS(1274), + [anon_sym_c_longdouble] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_defer] = ACTIONS(1289), + [anon_sym_errdefer] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_expand] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_try] = ACTIONS(1310), + [anon_sym_DOT] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_none] = ACTIONS(1319), + [sym_undefined] = ACTIONS(1319), + [sym_sink] = ACTIONS(1322), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_multiline_string] = ACTIONS(1325), + [sym_character] = ACTIONS(1325), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1331), }, [STATE(334)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1708), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1708), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(336), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(339), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -50532,86 +52140,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1305), + [sym__newline] = ACTIONS(1334), }, [STATE(335)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1708), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1708), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -50644,86 +52253,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(336)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1711), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1711), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -50756,198 +52366,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1336), }, [STATE(337)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2920), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2920), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1307), + [sym__newline] = ACTIONS(466), }, [STATE(338)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2609), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2609), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -50980,86 +52592,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1309), + [sym__newline] = ACTIONS(1338), }, [STATE(339)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2609), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2609), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51092,86 +52705,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(340)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1709), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1709), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(357), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51204,86 +52818,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1311), + [sym__newline] = ACTIONS(1340), }, [STATE(341)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2688), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51316,86 +52931,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1342), }, [STATE(342)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2689), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51428,86 +53044,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1313), + [sym__newline] = ACTIONS(466), }, [STATE(343)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2689), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51540,86 +53157,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1344), }, [STATE(344)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2723), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2723), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51652,86 +53270,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(345)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1709), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1709), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51764,86 +53383,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1346), }, [STATE(346)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(347), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(517), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51876,86 +53496,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1317), + [sym__newline] = ACTIONS(466), }, [STATE(347)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(109), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(517), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -51988,86 +53609,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(466), }, [STATE(348)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(517), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -52100,310 +53722,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1321), + [sym__newline] = ACTIONS(1348), }, [STATE(349)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2947), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2947), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1323), + [sym__newline] = ACTIONS(466), }, [STATE(350)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2947), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2947), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1350), }, [STATE(351)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -52436,534 +54061,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1352), }, [STATE(352)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2955), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2955), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(353)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2956), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2956), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1325), + [sym__newline] = ACTIONS(466), }, [STATE(354)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2956), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2956), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(355)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(2959), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(2959), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(356)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(517), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -52996,86 +54626,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1327), + [sym__newline] = ACTIONS(1354), }, [STATE(357)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1710), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1710), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -53108,1878 +54739,1895 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(358)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1848), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1848), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(361), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1329), + [sym__newline] = ACTIONS(1356), }, [STATE(359)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(360), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1848), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1848), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1333), + [sym__newline] = ACTIONS(466), }, [STATE(360)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(109), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_block_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2928), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2928), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(1358), }, [STATE(361)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1850), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1850), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(362)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3031), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3031), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1852), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1852), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1337), + [sym__newline] = ACTIONS(1360), }, [STATE(363)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3031), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3031), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1852), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1852), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(364)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(398), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1854), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1854), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1339), + [sym__newline] = ACTIONS(466), }, [STATE(365)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3036), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3036), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(2928), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(2928), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(366)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3037), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3037), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3163), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3163), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), [aux_sym_import_declaration_repeat1] = STATE(368), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1341), + [sym__newline] = ACTIONS(1362), }, [STATE(367)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3037), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3037), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3163), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3163), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(368)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(3039), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(3039), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3175), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3175), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(369)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3176), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3176), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1343), + [sym__newline] = ACTIONS(1364), }, [STATE(370)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3176), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3176), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(371)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3034), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3034), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1345), + [sym__newline] = ACTIONS(466), }, [STATE(372)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(373), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1368), }, [STATE(373)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1347), + [sym__newline] = ACTIONS(754), }, [STATE(374)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3433), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3433), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(376), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55026,7 +56674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55038,60 +56686,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1349), + [sym__newline] = ACTIONS(1372), }, [STATE(375)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3433), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3433), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55138,7 +56787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55150,60 +56799,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(376)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(381), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3441), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3441), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55250,7 +56900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55262,60 +56912,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1351), + [sym__newline] = ACTIONS(466), }, [STATE(377)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(383), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3443), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3443), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(379), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55362,7 +57013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55374,60 +57025,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1353), + [sym__newline] = ACTIONS(1374), }, [STATE(378)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3443), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3443), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55474,7 +57126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55486,60 +57138,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(379)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(385), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3446), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3446), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55586,7 +57239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55598,284 +57251,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1355), + [sym__newline] = ACTIONS(466), }, [STATE(380)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(386), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(381), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1357), + [sym__newline] = ACTIONS(1378), }, [STATE(381)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(754), }, [STATE(382)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(388), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3328), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3328), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(384), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -55922,7 +57578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -55934,60 +57590,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1359), + [sym__newline] = ACTIONS(1382), }, [STATE(383)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3328), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3328), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -56034,7 +57691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -56046,60 +57703,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(384)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(391), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3344), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3344), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -56146,7 +57804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -56158,60 +57816,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1361), + [sym__newline] = ACTIONS(466), }, [STATE(385)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3346), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3346), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(387), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -56258,7 +57917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -56270,60 +57929,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1384), }, [STATE(386)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3346), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3346), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -56370,7 +58030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -56382,60 +58042,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(387)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(392), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(3349), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(3349), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -56482,7 +58143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -56494,956 +58155,11813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1363), + [sym__newline] = ACTIONS(466), }, [STATE(388)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(389), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1388), }, [STATE(389)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(333), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_block_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1365), + [sym__newline] = ACTIONS(754), }, [STATE(390)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(1392), }, [STATE(391)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(395), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1394), }, [STATE(392)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(393)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(398), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1396), }, [STATE(394)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(400), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1398), }, [STATE(395)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1369), + [sym__newline] = ACTIONS(466), }, [STATE(396)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1400), + }, + [STATE(397)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1402), + }, + [STATE(398)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(399)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1404), + }, + [STATE(400)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(401)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1406), + }, + [STATE(402)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(403)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(404)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1408), + }, + [STATE(405)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(406)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1410), + }, + [STATE(407)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1412), + }, + [STATE(408)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(409)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(410)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(411)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(412)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1414), + }, + [STATE(413)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(414)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1416), + }, + [STATE(415)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1418), + }, + [STATE(416)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(417)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1420), + }, + [STATE(418)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1422), + }, + [STATE(419)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(420)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1424), + }, + [STATE(421)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1426), + }, + [STATE(422)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(423)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(429), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1428), + }, + [STATE(424)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(425)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1430), + }, + [STATE(426)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(427)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(428)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1432), + }, + [STATE(429)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(430)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1434), + }, + [STATE(431)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1436), + }, + [STATE(432)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(433)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(434)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(435)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(436)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1438), + }, + [STATE(437)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(438)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1440), + }, + [STATE(439)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1442), + }, + [STATE(440)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(441)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1444), + }, + [STATE(442)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1446), + }, + [STATE(443)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(444)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1448), + }, + [STATE(445)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(451), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1450), + }, + [STATE(446)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(447)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1452), + }, + [STATE(448)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(449)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1454), + }, + [STATE(450)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(451)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(452)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1456), + }, + [STATE(453)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(454)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1458), + }, + [STATE(455)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(459), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1460), + }, + [STATE(456)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(457)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(458)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(459)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(460)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1462), + }, + [STATE(461)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(462)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1884), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1884), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1464), + }, + [STATE(463)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1884), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1884), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(464)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1886), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1886), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(465)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1887), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1887), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(467), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1466), + }, + [STATE(466)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1887), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1887), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(467)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1888), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1888), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(468)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1468), + }, + [STATE(469)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1470), + }, + [STATE(470)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(471)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1472), + }, + [STATE(472)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1474), + }, + [STATE(473)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(474)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1476), + }, + [STATE(475)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1478), + }, + [STATE(476)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(477)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1480), + }, + [STATE(478)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(479)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1482), + }, + [STATE(480)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(481)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(482)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1484), + }, + [STATE(483)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(484)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1486), + }, + [STATE(485)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1488), + }, + [STATE(486)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(487)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(488)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(489)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(490)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1490), + }, + [STATE(491)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1651), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1651), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(492)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1607), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1607), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(494), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -57490,7 +70008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -57502,12715 +70020,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(397)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1371), - }, - [STATE(398)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(399)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(400)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(402), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1373), - }, - [STATE(401)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1375), - }, - [STATE(402)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(403)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1377), - }, - [STATE(404)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1379), - }, - [STATE(405)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(406)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1381), - }, - [STATE(407)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1383), - }, - [STATE(408)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(409)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1385), - }, - [STATE(410)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(411)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1387), - }, - [STATE(412)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(413)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(414)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1389), - }, - [STATE(415)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(416)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1391), - }, - [STATE(417)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1393), - }, - [STATE(418)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(419)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(420)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(421)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(422)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1395), - }, - [STATE(423)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(424)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1397), - }, - [STATE(425)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), - }, - [STATE(426)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1401), - }, - [STATE(427)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(428)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), - }, - [STATE(429)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1405), - }, - [STATE(430)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(431)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), - }, - [STATE(432)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1409), - }, - [STATE(433)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(434)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1411), - }, - [STATE(435)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(436)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), - }, - [STATE(437)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(438)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(439)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1415), - }, - [STATE(440)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(441)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1417), - }, - [STATE(442)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1419), - }, - [STATE(443)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(444)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(445)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(446)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(447)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1421), - }, - [STATE(448)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(449)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(450)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1729), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1729), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1423), - }, - [STATE(451)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1729), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1729), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(452)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1730), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1730), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(453)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1731), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1731), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(455), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1425), - }, - [STATE(454)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1731), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1731), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(455)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1734), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1734), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(456)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1427), - }, - [STATE(457)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1429), - }, - [STATE(458)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1431), - }, - [STATE(459)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1433), - }, - [STATE(460)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(461)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1435), - }, - [STATE(462)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1437), - }, - [STATE(463)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(464)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1439), - }, - [STATE(465)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1441), - }, - [STATE(466)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(467)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1443), - }, - [STATE(468)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(469)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1445), - }, - [STATE(470)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(471)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(472)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1447), - }, - [STATE(473)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(474)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(478), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1449), - }, - [STATE(475)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1451), - }, - [STATE(476)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(477)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(478)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(479)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(480)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(481), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1453), - }, - [STATE(481)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1516), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1516), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(482)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(483)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(484)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(485)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(486)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1461), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1461), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1455), - }, - [STATE(487)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1680), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1680), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1457), - }, - [STATE(488)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(489)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1462), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1462), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1459), - }, - [STATE(490)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1469), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1469), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1461), - }, - [STATE(491)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(492)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1463), + [sym__newline] = ACTIONS(1492), }, [STATE(493)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1465), - }, - [STATE(494)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1555), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1555), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(495)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1556), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1556), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1467), - }, - [STATE(496)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(497)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1560), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1560), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1469), - }, - [STATE(498)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1627), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1627), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(499)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(500)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1471), - }, - [STATE(501)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(502)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1643), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1643), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(503)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1644), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1644), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1475), - }, - [STATE(504)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1647), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1647), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(505)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1688), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1688), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(506)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1689), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1689), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(507)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(508)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1690), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1690), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1477), - }, - [STATE(509)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1631), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym__branch_body] = STATE(1631), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1479), - }, - [STATE(510)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(547), - [sym_identifier] = ACTIONS(425), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1724), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1724), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70243,13 +70107,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -70257,71 +70121,1655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), + [sym_sink] = ACTIONS(99), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1481), + [sym__newline] = ACTIONS(1494), }, - [STATE(511)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), + [STATE(494)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(495)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1725), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1725), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1496), + }, + [STATE(496)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1726), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1726), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1498), + }, + [STATE(497)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(498)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1782), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1782), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1500), + }, + [STATE(499)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1502), + }, + [STATE(500)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1786), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1786), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(501)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1787), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1787), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1504), + }, + [STATE(502)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(503)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1506), + }, + [STATE(504)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1815), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1815), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(505)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(506)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1816), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1816), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1508), + }, + [STATE(507)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(508)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1818), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1818), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), [aux_sym_import_declaration_repeat1] = STATE(512), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70368,7 +71816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -70380,59 +71828,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1483), + [sym__newline] = ACTIONS(1510), + }, + [STATE(509)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1820), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1820), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1512), + }, + [STATE(510)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1822), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1822), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(511)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1655), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1655), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(512)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1662), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1662), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70479,7 +72268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -70491,59 +72280,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(513)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(514), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70590,7 +72381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -70602,59 +72393,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1485), + [sym__newline] = ACTIONS(466), }, [STATE(514)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1663), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym__branch_body] = STATE(1663), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(89), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70701,7 +72494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -70713,170 +72506,2077 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1514), }, [STATE(515)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(99), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_test] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_func] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_void] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_anyopaque] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_int] = ACTIONS(1518), + [anon_sym_uint] = ACTIONS(1518), + [anon_sym_float] = ACTIONS(1518), + [anon_sym_range] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_c_char] = ACTIONS(1518), + [anon_sym_c_schar] = ACTIONS(1518), + [anon_sym_c_uchar] = ACTIONS(1518), + [anon_sym_c_short] = ACTIONS(1518), + [anon_sym_c_ushort] = ACTIONS(1518), + [anon_sym_c_int] = ACTIONS(1518), + [anon_sym_c_uint] = ACTIONS(1518), + [anon_sym_c_long] = ACTIONS(1518), + [anon_sym_c_ulong] = ACTIONS(1518), + [anon_sym_c_longlong] = ACTIONS(1518), + [anon_sym_c_ulonglong] = ACTIONS(1518), + [anon_sym_c_float] = ACTIONS(1518), + [anon_sym_c_double] = ACTIONS(1518), + [anon_sym_c_longdouble] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_xor_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_defer] = ACTIONS(1518), + [anon_sym_errdefer] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_expand] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_orelse] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_or] = ACTIONS(1518), + [anon_sym_and] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_xor] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_LT_LT_PIPE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_none] = ACTIONS(1518), + [sym_undefined] = ACTIONS(1518), + [sym_sink] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_multiline_string] = ACTIONS(1516), + [sym_character] = ACTIONS(1516), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1487), + [sym__newline] = ACTIONS(1516), }, [STATE(516)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2217), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(517)] = { + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(1174), + [anon_sym_import] = ACTIONS(806), + [anon_sym_test] = ACTIONS(806), + [anon_sym_hide] = ACTIONS(806), + [anon_sym_func] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_void] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_anyopaque] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_int] = ACTIONS(1174), + [anon_sym_uint] = ACTIONS(1174), + [anon_sym_float] = ACTIONS(1174), + [anon_sym_range] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_c_char] = ACTIONS(1174), + [anon_sym_c_schar] = ACTIONS(1174), + [anon_sym_c_uchar] = ACTIONS(1174), + [anon_sym_c_short] = ACTIONS(1174), + [anon_sym_c_ushort] = ACTIONS(1174), + [anon_sym_c_int] = ACTIONS(1174), + [anon_sym_c_uint] = ACTIONS(1174), + [anon_sym_c_long] = ACTIONS(1174), + [anon_sym_c_ulong] = ACTIONS(1174), + [anon_sym_c_longlong] = ACTIONS(1174), + [anon_sym_c_ulonglong] = ACTIONS(1174), + [anon_sym_c_float] = ACTIONS(1174), + [anon_sym_c_double] = ACTIONS(1174), + [anon_sym_c_longdouble] = ACTIONS(1174), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_xor_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(804), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_defer] = ACTIONS(1174), + [anon_sym_errdefer] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(806), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_expand] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), + [anon_sym_orelse] = ACTIONS(1174), + [anon_sym_catch] = ACTIONS(1174), + [anon_sym_or] = ACTIONS(1174), + [anon_sym_and] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1174), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_xor] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1174), + [anon_sym_LT_LT_PIPE] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1174), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_none] = ACTIONS(1174), + [sym_undefined] = ACTIONS(1174), + [sym_sink] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [sym_float] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_multiline_string] = ACTIONS(1172), + [sym_character] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1172), + }, + [STATE(518)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1520), + }, + [STATE(519)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(520), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1522), + }, + [STATE(520)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(521)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1524), + }, + [STATE(522)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(590), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(596), + [anon_sym_errdefer] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(602), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(523)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(524)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1526), + }, + [STATE(525)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(551), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1528), + }, + [STATE(526)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(527)] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(1142), + [anon_sym_import] = ACTIONS(774), + [anon_sym_test] = ACTIONS(774), + [anon_sym_hide] = ACTIONS(774), + [anon_sym_func] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_QMARK] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_void] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_anyopaque] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_int] = ACTIONS(1142), + [anon_sym_uint] = ACTIONS(1142), + [anon_sym_float] = ACTIONS(1142), + [anon_sym_range] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_c_char] = ACTIONS(1142), + [anon_sym_c_schar] = ACTIONS(1142), + [anon_sym_c_uchar] = ACTIONS(1142), + [anon_sym_c_short] = ACTIONS(1142), + [anon_sym_c_ushort] = ACTIONS(1142), + [anon_sym_c_int] = ACTIONS(1142), + [anon_sym_c_uint] = ACTIONS(1142), + [anon_sym_c_long] = ACTIONS(1142), + [anon_sym_c_ulong] = ACTIONS(1142), + [anon_sym_c_longlong] = ACTIONS(1142), + [anon_sym_c_ulonglong] = ACTIONS(1142), + [anon_sym_c_float] = ACTIONS(1142), + [anon_sym_c_double] = ACTIONS(1142), + [anon_sym_c_longdouble] = ACTIONS(1142), + [anon_sym_PLUS_EQ] = ACTIONS(772), + [anon_sym_DASH_EQ] = ACTIONS(772), + [anon_sym_STAR_EQ] = ACTIONS(772), + [anon_sym_SLASH_EQ] = ACTIONS(772), + [anon_sym_AMP_EQ] = ACTIONS(772), + [anon_sym_PIPE_EQ] = ACTIONS(772), + [anon_sym_xor_EQ] = ACTIONS(772), + [anon_sym_LT_LT_EQ] = ACTIONS(772), + [anon_sym_GT_GT_EQ] = ACTIONS(772), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(772), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_defer] = ACTIONS(1142), + [anon_sym_errdefer] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(774), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_expand] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1140), + [anon_sym_orelse] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1142), + [anon_sym_or] = ACTIONS(1142), + [anon_sym_and] = ACTIONS(1142), + [anon_sym_EQ_EQ] = ACTIONS(1140), + [anon_sym_BANG_EQ] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_GT_EQ] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_xor] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1142), + [anon_sym_GT_GT] = ACTIONS(1142), + [anon_sym_LT_LT_PIPE] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(1142), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_none] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1142), + [sym_sink] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [sym_float] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_multiline_string] = ACTIONS(1140), + [sym_character] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1140), + }, + [STATE(528)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(529)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1530), + }, + [STATE(530)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(531)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1532), + }, + [STATE(532)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(533)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -70923,7 +74623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -70935,2057 +74635,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(517)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1489), - }, - [STATE(518)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(519)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(520)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1491), - }, - [STATE(521)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1493), - }, - [STATE(522)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(523)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1495), - }, - [STATE(524)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(137), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(525)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(526)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1497), - }, - [STATE(527)] = { - [sym_variant_payload] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(775), - [anon_sym_import] = ACTIONS(483), - [anon_sym_test] = ACTIONS(483), - [anon_sym_hide] = ACTIONS(483), - [anon_sym_func] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_void] = ACTIONS(775), - [anon_sym_anyopaque] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_int] = ACTIONS(775), - [anon_sym_uint] = ACTIONS(775), - [anon_sym_float] = ACTIONS(775), - [anon_sym_range] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_c_char] = ACTIONS(775), - [anon_sym_c_schar] = ACTIONS(775), - [anon_sym_c_uchar] = ACTIONS(775), - [anon_sym_c_short] = ACTIONS(775), - [anon_sym_c_ushort] = ACTIONS(775), - [anon_sym_c_int] = ACTIONS(775), - [anon_sym_c_uint] = ACTIONS(775), - [anon_sym_c_long] = ACTIONS(775), - [anon_sym_c_ulong] = ACTIONS(775), - [anon_sym_c_longlong] = ACTIONS(775), - [anon_sym_c_ulonglong] = ACTIONS(775), - [anon_sym_c_float] = ACTIONS(775), - [anon_sym_c_double] = ACTIONS(775), - [anon_sym_c_longdouble] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_xor_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), - [anon_sym_return] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_defer] = ACTIONS(775), - [anon_sym_errdefer] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_else] = ACTIONS(483), - [anon_sym_while] = ACTIONS(775), - [anon_sym_expand] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_orelse] = ACTIONS(775), - [anon_sym_catch] = ACTIONS(775), - [anon_sym_or] = ACTIONS(775), - [anon_sym_and] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_xor] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_try] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(773), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [sym_none] = ACTIONS(775), - [sym_undefined] = ACTIONS(775), - [sym_sink] = ACTIONS(775), - [sym_integer] = ACTIONS(775), - [sym_float] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [sym_multiline_string] = ACTIONS(773), - [sym_character] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(773), - }, - [STATE(528)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(529)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(530)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(531), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1499), - }, - [STATE(531)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(532)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1501), - }, - [STATE(533)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2261), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(179), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(199), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(201), - [anon_sym_errdefer] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(217), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(534)] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(651), - [anon_sym_test] = ACTIONS(651), - [anon_sym_hide] = ACTIONS(651), - [anon_sym_func] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_struct] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_anyopaque] = ACTIONS(1113), - [anon_sym_bool] = ACTIONS(1113), - [anon_sym_int] = ACTIONS(1113), - [anon_sym_uint] = ACTIONS(1113), - [anon_sym_float] = ACTIONS(1113), - [anon_sym_range] = ACTIONS(1113), - [anon_sym_i8] = ACTIONS(1113), - [anon_sym_i16] = ACTIONS(1113), - [anon_sym_i32] = ACTIONS(1113), - [anon_sym_i64] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1113), - [anon_sym_u16] = ACTIONS(1113), - [anon_sym_u32] = ACTIONS(1113), - [anon_sym_u64] = ACTIONS(1113), - [anon_sym_isize] = ACTIONS(1113), - [anon_sym_usize] = ACTIONS(1113), - [anon_sym_f32] = ACTIONS(1113), - [anon_sym_f64] = ACTIONS(1113), - [anon_sym_c_char] = ACTIONS(1113), - [anon_sym_c_schar] = ACTIONS(1113), - [anon_sym_c_uchar] = ACTIONS(1113), - [anon_sym_c_short] = ACTIONS(1113), - [anon_sym_c_ushort] = ACTIONS(1113), - [anon_sym_c_int] = ACTIONS(1113), - [anon_sym_c_uint] = ACTIONS(1113), - [anon_sym_c_long] = ACTIONS(1113), - [anon_sym_c_ulong] = ACTIONS(1113), - [anon_sym_c_longlong] = ACTIONS(1113), - [anon_sym_c_ulonglong] = ACTIONS(1113), - [anon_sym_c_float] = ACTIONS(1113), - [anon_sym_c_double] = ACTIONS(1113), - [anon_sym_c_longdouble] = ACTIONS(1113), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_AMP_EQ] = ACTIONS(649), - [anon_sym_PIPE_EQ] = ACTIONS(649), - [anon_sym_xor_EQ] = ACTIONS(649), - [anon_sym_LT_LT_EQ] = ACTIONS(649), - [anon_sym_GT_GT_EQ] = ACTIONS(649), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(649), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_defer] = ACTIONS(1113), - [anon_sym_errdefer] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(651), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_expand] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), - [anon_sym_orelse] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_LT_LT_PIPE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [sym_none] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [sym_sink] = ACTIONS(1113), - [sym_integer] = ACTIONS(1113), - [sym_float] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_multiline_string] = ACTIONS(1111), - [sym_character] = ACTIONS(1111), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1111), + [sym__newline] = ACTIONS(1534), }, [STATE(535)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2248), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(137), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -73018,307 +74833,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(145), - [anon_sym_yield] = ACTIONS(147), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(149), - [anon_sym_errdefer] = ACTIONS(151), - [anon_sym_if] = ACTIONS(153), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(159), + [sym_sink] = ACTIONS(99), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1503), + [sym__newline] = ACTIONS(466), }, [STATE(536)] = { - [ts_builtin_sym_end] = ACTIONS(789), - [sym_identifier] = ACTIONS(1147), - [anon_sym_import] = ACTIONS(791), - [anon_sym_test] = ACTIONS(791), - [anon_sym_hide] = ACTIONS(791), - [anon_sym_func] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(791), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_DOLLAR] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1147), - [anon_sym_QMARK] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_anyopaque] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_int] = ACTIONS(1147), - [anon_sym_uint] = ACTIONS(1147), - [anon_sym_float] = ACTIONS(1147), - [anon_sym_range] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_c_char] = ACTIONS(1147), - [anon_sym_c_schar] = ACTIONS(1147), - [anon_sym_c_uchar] = ACTIONS(1147), - [anon_sym_c_short] = ACTIONS(1147), - [anon_sym_c_ushort] = ACTIONS(1147), - [anon_sym_c_int] = ACTIONS(1147), - [anon_sym_c_uint] = ACTIONS(1147), - [anon_sym_c_long] = ACTIONS(1147), - [anon_sym_c_ulong] = ACTIONS(1147), - [anon_sym_c_longlong] = ACTIONS(1147), - [anon_sym_c_ulonglong] = ACTIONS(1147), - [anon_sym_c_float] = ACTIONS(1147), - [anon_sym_c_double] = ACTIONS(1147), - [anon_sym_c_longdouble] = ACTIONS(1147), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_xor_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(789), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(789), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_defer] = ACTIONS(1147), - [anon_sym_errdefer] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(791), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_expand] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), - [anon_sym_orelse] = ACTIONS(1147), - [anon_sym_catch] = ACTIONS(1147), - [anon_sym_or] = ACTIONS(1147), - [anon_sym_and] = ACTIONS(1147), - [anon_sym_EQ_EQ] = ACTIONS(1145), - [anon_sym_BANG_EQ] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_LT_EQ] = ACTIONS(1145), - [anon_sym_GT] = ACTIONS(1147), - [anon_sym_GT_EQ] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_xor] = ACTIONS(1147), - [anon_sym_LT_LT] = ACTIONS(1147), - [anon_sym_GT_GT] = ACTIONS(1147), - [anon_sym_LT_LT_PIPE] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1147), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_CARET] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), - [sym_none] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1147), - [sym_sink] = ACTIONS(1147), - [sym_integer] = ACTIONS(1147), - [sym_float] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_multiline_string] = ACTIONS(1145), - [sym_character] = ACTIONS(1145), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1145), + [sym__newline] = ACTIONS(1536), }, [STATE(537)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1505), + [sym__newline] = ACTIONS(466), }, [STATE(538)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -73351,973 +75169,2326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(99), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(539)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(732), + [anon_sym_test] = ACTIONS(732), + [anon_sym_hide] = ACTIONS(732), + [anon_sym_func] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(732), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_void] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_anyopaque] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_int] = ACTIONS(1112), + [anon_sym_uint] = ACTIONS(1112), + [anon_sym_float] = ACTIONS(1112), + [anon_sym_range] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_c_char] = ACTIONS(1112), + [anon_sym_c_schar] = ACTIONS(1112), + [anon_sym_c_uchar] = ACTIONS(1112), + [anon_sym_c_short] = ACTIONS(1112), + [anon_sym_c_ushort] = ACTIONS(1112), + [anon_sym_c_int] = ACTIONS(1112), + [anon_sym_c_uint] = ACTIONS(1112), + [anon_sym_c_long] = ACTIONS(1112), + [anon_sym_c_ulong] = ACTIONS(1112), + [anon_sym_c_longlong] = ACTIONS(1112), + [anon_sym_c_ulonglong] = ACTIONS(1112), + [anon_sym_c_float] = ACTIONS(1112), + [anon_sym_c_double] = ACTIONS(1112), + [anon_sym_c_longdouble] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(730), + [anon_sym_DASH_EQ] = ACTIONS(730), + [anon_sym_STAR_EQ] = ACTIONS(730), + [anon_sym_SLASH_EQ] = ACTIONS(730), + [anon_sym_AMP_EQ] = ACTIONS(730), + [anon_sym_PIPE_EQ] = ACTIONS(730), + [anon_sym_xor_EQ] = ACTIONS(730), + [anon_sym_LT_LT_EQ] = ACTIONS(730), + [anon_sym_GT_GT_EQ] = ACTIONS(730), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(730), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_defer] = ACTIONS(1112), + [anon_sym_errdefer] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(732), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_expand] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_DOT_DOT] = ACTIONS(1112), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1110), + [anon_sym_orelse] = ACTIONS(1112), + [anon_sym_catch] = ACTIONS(1112), + [anon_sym_or] = ACTIONS(1112), + [anon_sym_and] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_xor] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_LT_LT_PIPE] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_none] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1112), + [sym_sink] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [sym_float] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_multiline_string] = ACTIONS(1110), + [sym_character] = ACTIONS(1110), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1110), }, [STATE(540)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(541), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(444), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(456), + [anon_sym_errdefer] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(464), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1507), + [sym__newline] = ACTIONS(1538), }, [STATE(541)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(107), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1540), }, [STATE(542)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(543), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1509), + [sym__newline] = ACTIONS(466), }, [STATE(543)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(544)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(545), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(546), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1511), + [sym__newline] = ACTIONS(1542), }, [STATE(545)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1544), }, [STATE(546)] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_identifier] = ACTIONS(1187), - [anon_sym_import] = ACTIONS(833), - [anon_sym_test] = ACTIONS(833), - [anon_sym_hide] = ACTIONS(833), - [anon_sym_func] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_RPAREN] = ACTIONS(831), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_DOLLAR] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1187), - [anon_sym_anyopaque] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_int] = ACTIONS(1187), - [anon_sym_uint] = ACTIONS(1187), - [anon_sym_float] = ACTIONS(1187), - [anon_sym_range] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_c_char] = ACTIONS(1187), - [anon_sym_c_schar] = ACTIONS(1187), - [anon_sym_c_uchar] = ACTIONS(1187), - [anon_sym_c_short] = ACTIONS(1187), - [anon_sym_c_ushort] = ACTIONS(1187), - [anon_sym_c_int] = ACTIONS(1187), - [anon_sym_c_uint] = ACTIONS(1187), - [anon_sym_c_long] = ACTIONS(1187), - [anon_sym_c_ulong] = ACTIONS(1187), - [anon_sym_c_longlong] = ACTIONS(1187), - [anon_sym_c_ulonglong] = ACTIONS(1187), - [anon_sym_c_float] = ACTIONS(1187), - [anon_sym_c_double] = ACTIONS(1187), - [anon_sym_c_longdouble] = ACTIONS(1187), - [anon_sym_PLUS_EQ] = ACTIONS(831), - [anon_sym_DASH_EQ] = ACTIONS(831), - [anon_sym_STAR_EQ] = ACTIONS(831), - [anon_sym_SLASH_EQ] = ACTIONS(831), - [anon_sym_AMP_EQ] = ACTIONS(831), - [anon_sym_PIPE_EQ] = ACTIONS(831), - [anon_sym_xor_EQ] = ACTIONS(831), - [anon_sym_LT_LT_EQ] = ACTIONS(831), - [anon_sym_GT_GT_EQ] = ACTIONS(831), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(831), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_defer] = ACTIONS(1187), - [anon_sym_errdefer] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(833), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_expand] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_match] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), - [anon_sym_orelse] = ACTIONS(1187), - [anon_sym_catch] = ACTIONS(1187), - [anon_sym_or] = ACTIONS(1187), - [anon_sym_and] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_xor] = ACTIONS(1187), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_LT_LT_PIPE] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_try] = ACTIONS(1187), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_true] = ACTIONS(1187), - [anon_sym_false] = ACTIONS(1187), - [sym_none] = ACTIONS(1187), - [sym_undefined] = ACTIONS(1187), - [sym_sink] = ACTIONS(1187), - [sym_integer] = ACTIONS(1187), - [sym_float] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_multiline_string] = ACTIONS(1185), - [sym_character] = ACTIONS(1185), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1185), + [sym__newline] = ACTIONS(466), }, [STATE(547)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2234), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(425), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1546), + }, + [STATE(548)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(245), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(549)] = { + [sym_variant_payload] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(758), + [anon_sym_import] = ACTIONS(522), + [anon_sym_test] = ACTIONS(522), + [anon_sym_hide] = ACTIONS(522), + [anon_sym_func] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_void] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_anyopaque] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_int] = ACTIONS(758), + [anon_sym_uint] = ACTIONS(758), + [anon_sym_float] = ACTIONS(758), + [anon_sym_range] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_c_char] = ACTIONS(758), + [anon_sym_c_schar] = ACTIONS(758), + [anon_sym_c_uchar] = ACTIONS(758), + [anon_sym_c_short] = ACTIONS(758), + [anon_sym_c_ushort] = ACTIONS(758), + [anon_sym_c_int] = ACTIONS(758), + [anon_sym_c_uint] = ACTIONS(758), + [anon_sym_c_long] = ACTIONS(758), + [anon_sym_c_ulong] = ACTIONS(758), + [anon_sym_c_longlong] = ACTIONS(758), + [anon_sym_c_ulonglong] = ACTIONS(758), + [anon_sym_c_float] = ACTIONS(758), + [anon_sym_c_double] = ACTIONS(758), + [anon_sym_c_longdouble] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(520), + [anon_sym_DASH_EQ] = ACTIONS(520), + [anon_sym_STAR_EQ] = ACTIONS(520), + [anon_sym_SLASH_EQ] = ACTIONS(520), + [anon_sym_AMP_EQ] = ACTIONS(520), + [anon_sym_PIPE_EQ] = ACTIONS(520), + [anon_sym_xor_EQ] = ACTIONS(520), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_GT_GT_EQ] = ACTIONS(520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(520), + [anon_sym_return] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_defer] = ACTIONS(758), + [anon_sym_errdefer] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_else] = ACTIONS(522), + [anon_sym_while] = ACTIONS(758), + [anon_sym_expand] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [anon_sym_orelse] = ACTIONS(758), + [anon_sym_catch] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_LT_LT_PIPE] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_try] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_none] = ACTIONS(758), + [sym_undefined] = ACTIONS(758), + [sym_sink] = ACTIONS(758), + [sym_integer] = ACTIONS(758), + [sym_float] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_multiline_string] = ACTIONS(756), + [sym_character] = ACTIONS(756), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(756), + }, + [STATE(550)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(553), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1548), + }, + [STATE(551)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(552)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(570), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1550), + }, + [STATE(553)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(554)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(555), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1552), + }, + [STATE(555)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(556)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(572), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1554), + }, + [STATE(557)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(523), + [sym_identifier] = ACTIONS(504), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(512), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(518), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1556), + }, + [STATE(558)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(565), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1558), + }, + [STATE(559)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -74350,13 +77521,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(433), - [anon_sym_yield] = ACTIONS(435), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(437), - [anon_sym_errdefer] = ACTIONS(439), - [anon_sym_if] = ACTIONS(441), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -74364,1403 +77535,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(91), [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(445), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(548)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(549)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(550), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), - }, - [STATE(550)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(551)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(552), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1515), - }, - [STATE(552)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(553)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(604), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(517), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(523), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(527), - [anon_sym_errdefer] = ACTIONS(529), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(535), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1517), - }, - [STATE(554)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(548), - [sym_identifier] = ACTIONS(571), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(577), - [anon_sym_errdefer] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(583), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1519), - }, - [STATE(555)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(556), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1521), - }, - [STATE(556)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(557)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(558), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1523), - }, - [STATE(558)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(559)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(560), - [sym_identifier] = ACTIONS(227), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1525), + [sym__newline] = ACTIONS(1560), }, [STATE(560)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(751), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(227), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -75793,751 +77633,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(233), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(235), - [anon_sym_errdefer] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(561)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1554), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), [aux_sym_import_declaration_repeat1] = STATE(562), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1527), - }, - [STATE(562)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(563)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(564), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1529), - }, - [STATE(564)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1684), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(565)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1685), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(566), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1531), - }, - [STATE(566)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1538), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(2280), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(589), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_errdefer] = ACTIONS(597), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(601), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(567)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(1645), - [sym_statement] = STATE(1550), - [sym_constant_declaration] = STATE(1645), - [sym_variable_declaration] = STATE(1645), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_return_statement] = STATE(1645), - [sym_yield_statement] = STATE(1645), - [sym_break_statement] = STATE(1645), - [sym_continue_statement] = STATE(1645), - [sym_defer_statement] = STATE(1645), - [sym_labeled_block] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_while_statement] = STATE(1645), - [sym_for_statement] = STATE(1645), - [sym_match_statement] = STATE(1645), - [sym_expression] = STATE(597), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(107), + [sym_identifier] = ACTIONS(606), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -76570,3288 +77745,2726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(117), - [anon_sym_yield] = ACTIONS(119), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(121), - [anon_sym_errdefer] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(131), + [sym_sink] = ACTIONS(618), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1533), + [sym__newline] = ACTIONS(1562), + }, + [STATE(562)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(563)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(564), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1564), + }, + [STATE(564)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2512), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(606), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(612), + [anon_sym_errdefer] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(618), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(565)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(566)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1756), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(567), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1566), + }, + [STATE(567)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(568)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(543), - [sym_identifier] = ACTIONS(545), - [anon_sym_import] = ACTIONS(545), - [anon_sym_test] = ACTIONS(545), - [anon_sym_hide] = ACTIONS(545), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(569), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(1568), }, [STATE(569)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_import] = ACTIONS(490), - [anon_sym_test] = ACTIONS(490), - [anon_sym_hide] = ACTIONS(490), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(125), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(129), + [anon_sym_errdefer] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), + [sym__newline] = ACTIONS(466), }, [STATE(570)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_import] = ACTIONS(490), - [anon_sym_test] = ACTIONS(490), - [anon_sym_hide] = ACTIONS(490), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), + [sym__newline] = ACTIONS(466), }, [STATE(571)] = { - [sym_argument_list] = STATE(99), - [ts_builtin_sym_end] = ACTIONS(543), - [sym_identifier] = ACTIONS(545), - [anon_sym_import] = ACTIONS(545), - [anon_sym_test] = ACTIONS(545), - [anon_sym_hide] = ACTIONS(545), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(181), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(189), + [anon_sym_yield] = ACTIONS(191), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(193), + [anon_sym_errdefer] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(203), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(1570), }, [STATE(572)] = { - [sym_type] = STATE(3388), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_else] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1692), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(153), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_return] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(167), + [anon_sym_errdefer] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(177), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(466), }, [STATE(573)] = { - [sym_type] = STATE(3388), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_func] = ACTIONS(378), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(403), - [anon_sym_anyopaque] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_uint] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_range] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_c_char] = ACTIONS(403), - [anon_sym_c_schar] = ACTIONS(403), - [anon_sym_c_uchar] = ACTIONS(403), - [anon_sym_c_short] = ACTIONS(403), - [anon_sym_c_ushort] = ACTIONS(403), - [anon_sym_c_int] = ACTIONS(403), - [anon_sym_c_uint] = ACTIONS(403), - [anon_sym_c_long] = ACTIONS(403), - [anon_sym_c_ulong] = ACTIONS(403), - [anon_sym_c_longlong] = ACTIONS(403), - [anon_sym_c_ulonglong] = ACTIONS(403), - [anon_sym_c_float] = ACTIONS(403), - [anon_sym_c_double] = ACTIONS(403), - [anon_sym_c_longdouble] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_else] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1591), + [sym_statement] = STATE(1821), + [sym_constant_declaration] = STATE(1591), + [sym_variable_declaration] = STATE(1591), + [sym_assignment_statement] = STATE(1591), + [sym_expression_statement] = STATE(1591), + [sym_return_statement] = STATE(1591), + [sym_yield_statement] = STATE(1591), + [sym_break_statement] = STATE(1591), + [sym_continue_statement] = STATE(1591), + [sym_defer_statement] = STATE(1591), + [sym_labeled_block] = STATE(1591), + [sym_if_statement] = STATE(1591), + [sym_while_statement] = STATE(1591), + [sym_for_statement] = STATE(1591), + [sym_match_statement] = STATE(1591), + [sym_expression] = STATE(2510), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(1572), }, [STATE(574)] = { - [sym_struct_type] = STATE(2384), - [sym_c_struct_type] = STATE(2575), - [sym_distinct_type] = STATE(2575), - [sym_alias_type] = STATE(2575), - [sym_union_type] = STATE(2575), - [sym_enum_type] = STATE(2575), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2593), - [sym_labeled_block] = STATE(2593), - [sym_if_statement] = STATE(2593), - [sym_while_statement] = STATE(2593), - [sym_for_statement] = STATE(2593), - [sym_match_statement] = STATE(2593), - [sym__value] = STATE(2593), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_c_struct] = ACTIONS(1547), - [sym_opaque_type] = ACTIONS(1549), - [anon_sym_distinct] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [anon_sym_import] = ACTIONS(558), + [anon_sym_test] = ACTIONS(558), + [anon_sym_hide] = ACTIONS(558), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(556), }, [STATE(575)] = { - [sym_struct_type] = STATE(2357), - [sym_c_struct_type] = STATE(2550), - [sym_distinct_type] = STATE(2550), - [sym_alias_type] = STATE(2550), - [sym_union_type] = STATE(2550), - [sym_enum_type] = STATE(2550), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2566), - [sym_labeled_block] = STATE(2566), - [sym_if_statement] = STATE(2566), - [sym_while_statement] = STATE(2566), - [sym_for_statement] = STATE(2566), - [sym_match_statement] = STATE(2566), - [sym__value] = STATE(2566), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(574), - [sym_identifier] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1581), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_c_struct] = ACTIONS(1547), - [sym_opaque_type] = ACTIONS(1583), - [anon_sym_distinct] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_import] = ACTIONS(568), + [anon_sym_test] = ACTIONS(568), + [anon_sym_hide] = ACTIONS(568), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1585), + [sym__newline] = ACTIONS(566), }, [STATE(576)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [anon_sym_import] = ACTIONS(558), + [anon_sym_test] = ACTIONS(558), + [anon_sym_hide] = ACTIONS(558), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(556), }, [STATE(577)] = { - [sym_struct_type] = STATE(2351), - [sym_c_struct_type] = STATE(2572), - [sym_distinct_type] = STATE(2572), - [sym_alias_type] = STATE(2572), - [sym_union_type] = STATE(2572), - [sym_enum_type] = STATE(2572), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2546), - [sym_labeled_block] = STATE(2546), - [sym_if_statement] = STATE(2546), - [sym_while_statement] = STATE(2546), - [sym_for_statement] = STATE(2546), - [sym_match_statement] = STATE(2546), - [sym__value] = STATE(2546), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_c_struct] = ACTIONS(1547), - [sym_opaque_type] = ACTIONS(1587), - [anon_sym_distinct] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_argument_list] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_import] = ACTIONS(568), + [anon_sym_test] = ACTIONS(568), + [anon_sym_hide] = ACTIONS(568), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1589), + [sym__newline] = ACTIONS(566), }, [STATE(578)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_type] = STATE(3935), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_else] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(406), }, [STATE(579)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(488), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_type] = STATE(3935), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_func] = ACTIONS(390), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_anyopaque] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_int] = ACTIONS(419), + [anon_sym_uint] = ACTIONS(419), + [anon_sym_float] = ACTIONS(419), + [anon_sym_range] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_c_char] = ACTIONS(419), + [anon_sym_c_schar] = ACTIONS(419), + [anon_sym_c_uchar] = ACTIONS(419), + [anon_sym_c_short] = ACTIONS(419), + [anon_sym_c_ushort] = ACTIONS(419), + [anon_sym_c_int] = ACTIONS(419), + [anon_sym_c_uint] = ACTIONS(419), + [anon_sym_c_long] = ACTIONS(419), + [anon_sym_c_ulong] = ACTIONS(419), + [anon_sym_c_longlong] = ACTIONS(419), + [anon_sym_c_ulonglong] = ACTIONS(419), + [anon_sym_c_float] = ACTIONS(419), + [anon_sym_c_double] = ACTIONS(419), + [anon_sym_c_longdouble] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_else] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), + [sym__newline] = ACTIONS(406), }, [STATE(580)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(488), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_type] = STATE(617), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1576), + [anon_sym_func] = ACTIONS(1579), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_anyopaque] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_int] = ACTIONS(1600), + [anon_sym_uint] = ACTIONS(1600), + [anon_sym_float] = ACTIONS(1600), + [anon_sym_range] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_c_char] = ACTIONS(1600), + [anon_sym_c_schar] = ACTIONS(1600), + [anon_sym_c_uchar] = ACTIONS(1600), + [anon_sym_c_short] = ACTIONS(1600), + [anon_sym_c_ushort] = ACTIONS(1600), + [anon_sym_c_int] = ACTIONS(1600), + [anon_sym_c_uint] = ACTIONS(1600), + [anon_sym_c_long] = ACTIONS(1600), + [anon_sym_c_ulong] = ACTIONS(1600), + [anon_sym_c_longlong] = ACTIONS(1600), + [anon_sym_c_ulonglong] = ACTIONS(1600), + [anon_sym_c_float] = ACTIONS(1600), + [anon_sym_c_double] = ACTIONS(1600), + [anon_sym_c_longdouble] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_defer] = ACTIONS(343), + [anon_sym_errdefer] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_expand] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_try] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [sym_none] = ACTIONS(343), + [sym_undefined] = ACTIONS(343), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(343), + [sym_float] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_multiline_string] = ACTIONS(338), + [sym_character] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), + [sym__newline] = ACTIONS(338), }, [STATE(581)] = { - [sym_variant_payload] = STATE(2153), - [sym_identifier] = ACTIONS(775), - [anon_sym_func] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_void] = ACTIONS(775), - [anon_sym_anyopaque] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_int] = ACTIONS(775), - [anon_sym_uint] = ACTIONS(775), - [anon_sym_float] = ACTIONS(775), - [anon_sym_range] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_c_char] = ACTIONS(775), - [anon_sym_c_schar] = ACTIONS(775), - [anon_sym_c_uchar] = ACTIONS(775), - [anon_sym_c_short] = ACTIONS(775), - [anon_sym_c_ushort] = ACTIONS(775), - [anon_sym_c_int] = ACTIONS(775), - [anon_sym_c_uint] = ACTIONS(775), - [anon_sym_c_long] = ACTIONS(775), - [anon_sym_c_ulong] = ACTIONS(775), - [anon_sym_c_longlong] = ACTIONS(775), - [anon_sym_c_ulonglong] = ACTIONS(775), - [anon_sym_c_float] = ACTIONS(775), - [anon_sym_c_double] = ACTIONS(775), - [anon_sym_c_longdouble] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_xor_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), - [anon_sym_return] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_defer] = ACTIONS(775), - [anon_sym_errdefer] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_else] = ACTIONS(483), - [anon_sym_while] = ACTIONS(775), - [anon_sym_expand] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_orelse] = ACTIONS(775), - [anon_sym_catch] = ACTIONS(775), - [anon_sym_or] = ACTIONS(775), - [anon_sym_and] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_xor] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_try] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(773), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [sym_none] = ACTIONS(775), - [sym_undefined] = ACTIONS(775), - [sym_sink] = ACTIONS(775), - [sym_integer] = ACTIONS(775), - [sym_float] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [sym_multiline_string] = ACTIONS(773), - [sym_character] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(773), - }, - [STATE(582)] = { - [sym_struct_type] = STATE(2360), - [sym_c_struct_type] = STATE(2564), - [sym_distinct_type] = STATE(2564), - [sym_alias_type] = STATE(2564), - [sym_union_type] = STATE(2564), - [sym_enum_type] = STATE(2564), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2595), - [sym_labeled_block] = STATE(2595), - [sym_if_statement] = STATE(2595), - [sym_while_statement] = STATE(2595), - [sym_for_statement] = STATE(2595), - [sym_match_statement] = STATE(2595), - [sym__value] = STATE(2595), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_c_struct] = ACTIONS(1547), - [sym_opaque_type] = ACTIONS(1591), - [anon_sym_distinct] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), + [sym_struct_type] = STATE(2575), + [sym_c_struct_type] = STATE(2980), + [sym_distinct_type] = STATE(2980), + [sym_alias_type] = STATE(2980), + [sym_union_type] = STATE(2980), + [sym_enum_type] = STATE(2980), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2998), + [sym_labeled_block] = STATE(2998), + [sym_if_statement] = STATE(2998), + [sym_while_statement] = STATE(2998), + [sym_for_statement] = STATE(2998), + [sym_match_statement] = STATE(2998), + [sym__value] = STATE(2998), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_c_struct] = ACTIONS(1613), + [sym_opaque_type] = ACTIONS(1615), + [anon_sym_distinct] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1647), + }, + [STATE(582)] = { + [sym_type] = STATE(619), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1576), + [anon_sym_func] = ACTIONS(1579), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_anyopaque] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_int] = ACTIONS(1600), + [anon_sym_uint] = ACTIONS(1600), + [anon_sym_float] = ACTIONS(1600), + [anon_sym_range] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_c_char] = ACTIONS(1600), + [anon_sym_c_schar] = ACTIONS(1600), + [anon_sym_c_uchar] = ACTIONS(1600), + [anon_sym_c_short] = ACTIONS(1600), + [anon_sym_c_ushort] = ACTIONS(1600), + [anon_sym_c_int] = ACTIONS(1600), + [anon_sym_c_uint] = ACTIONS(1600), + [anon_sym_c_long] = ACTIONS(1600), + [anon_sym_c_ulong] = ACTIONS(1600), + [anon_sym_c_longlong] = ACTIONS(1600), + [anon_sym_c_ulonglong] = ACTIONS(1600), + [anon_sym_c_float] = ACTIONS(1600), + [anon_sym_c_double] = ACTIONS(1600), + [anon_sym_c_longdouble] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_defer] = ACTIONS(343), + [anon_sym_errdefer] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_expand] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_try] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [sym_none] = ACTIONS(343), + [sym_undefined] = ACTIONS(343), + [sym_sink] = ACTIONS(343), + [sym_integer] = ACTIONS(343), + [sym_float] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [sym_multiline_string] = ACTIONS(338), + [sym_character] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), }, [STATE(583)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_xor_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_errdefer] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), + [sym_struct_type] = STATE(2579), + [sym_c_struct_type] = STATE(3001), + [sym_distinct_type] = STATE(3001), + [sym_alias_type] = STATE(3001), + [sym_union_type] = STATE(3001), + [sym_enum_type] = STATE(3001), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2966), + [sym_labeled_block] = STATE(2966), + [sym_if_statement] = STATE(2966), + [sym_while_statement] = STATE(2966), + [sym_for_statement] = STATE(2966), + [sym_match_statement] = STATE(2966), + [sym__value] = STATE(2966), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1651), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_c_struct] = ACTIONS(1613), + [sym_opaque_type] = ACTIONS(1653), + [anon_sym_distinct] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), + [sym__newline] = ACTIONS(466), }, [STATE(584)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_defer] = ACTIONS(545), - [anon_sym_errdefer] = ACTIONS(545), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(545), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(545), - [anon_sym_match] = ACTIONS(545), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), + [sym_type] = STATE(633), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1655), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_anyopaque] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_range] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_c_char] = ACTIONS(1675), + [anon_sym_c_schar] = ACTIONS(1675), + [anon_sym_c_uchar] = ACTIONS(1675), + [anon_sym_c_short] = ACTIONS(1675), + [anon_sym_c_ushort] = ACTIONS(1675), + [anon_sym_c_int] = ACTIONS(1675), + [anon_sym_c_uint] = ACTIONS(1675), + [anon_sym_c_long] = ACTIONS(1675), + [anon_sym_c_ulong] = ACTIONS(1675), + [anon_sym_c_longlong] = ACTIONS(1675), + [anon_sym_c_ulonglong] = ACTIONS(1675), + [anon_sym_c_float] = ACTIONS(1675), + [anon_sym_c_double] = ACTIONS(1675), + [anon_sym_c_longdouble] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(253), }, [STATE(585)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_defer] = ACTIONS(545), - [anon_sym_errdefer] = ACTIONS(545), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(545), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(545), - [anon_sym_match] = ACTIONS(545), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), + [sym_type] = STATE(614), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1655), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_anyopaque] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_range] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_c_char] = ACTIONS(1675), + [anon_sym_c_schar] = ACTIONS(1675), + [anon_sym_c_uchar] = ACTIONS(1675), + [anon_sym_c_short] = ACTIONS(1675), + [anon_sym_c_ushort] = ACTIONS(1675), + [anon_sym_c_int] = ACTIONS(1675), + [anon_sym_c_uint] = ACTIONS(1675), + [anon_sym_c_long] = ACTIONS(1675), + [anon_sym_c_ulong] = ACTIONS(1675), + [anon_sym_c_longlong] = ACTIONS(1675), + [anon_sym_c_ulonglong] = ACTIONS(1675), + [anon_sym_c_float] = ACTIONS(1675), + [anon_sym_c_double] = ACTIONS(1675), + [anon_sym_c_longdouble] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(253), }, [STATE(586)] = { - [sym_type] = STATE(627), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1607), - [anon_sym_func] = ACTIONS(1610), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_anyopaque] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_range] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_c_char] = ACTIONS(1628), - [anon_sym_c_schar] = ACTIONS(1628), - [anon_sym_c_uchar] = ACTIONS(1628), - [anon_sym_c_short] = ACTIONS(1628), - [anon_sym_c_ushort] = ACTIONS(1628), - [anon_sym_c_int] = ACTIONS(1628), - [anon_sym_c_uint] = ACTIONS(1628), - [anon_sym_c_long] = ACTIONS(1628), - [anon_sym_c_ulong] = ACTIONS(1628), - [anon_sym_c_longlong] = ACTIONS(1628), - [anon_sym_c_ulonglong] = ACTIONS(1628), - [anon_sym_c_float] = ACTIONS(1628), - [anon_sym_c_double] = ACTIONS(1628), - [anon_sym_c_longdouble] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(338), - [anon_sym_yield] = ACTIONS(338), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_defer] = ACTIONS(338), - [anon_sym_errdefer] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_else] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [anon_sym_expand] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_match] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(333), - [anon_sym_LT_LT_PIPE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_SLASH] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(333), - [anon_sym_try] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), - [anon_sym_true] = ACTIONS(338), - [anon_sym_false] = ACTIONS(338), - [sym_none] = ACTIONS(338), - [sym_undefined] = ACTIONS(338), - [sym_sink] = ACTIONS(338), - [sym_integer] = ACTIONS(338), - [sym_float] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(333), - [sym_multiline_string] = ACTIONS(333), - [sym_character] = ACTIONS(333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - }, - [STATE(587)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_defer] = ACTIONS(490), - [anon_sym_errdefer] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(588)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_defer] = ACTIONS(490), - [anon_sym_errdefer] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(589)] = { - [sym_type] = STATE(622), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1631), - [anon_sym_func] = ACTIONS(1634), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_anyopaque] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_range] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_c_char] = ACTIONS(1648), - [anon_sym_c_schar] = ACTIONS(1648), - [anon_sym_c_uchar] = ACTIONS(1648), - [anon_sym_c_short] = ACTIONS(1648), - [anon_sym_c_ushort] = ACTIONS(1648), - [anon_sym_c_int] = ACTIONS(1648), - [anon_sym_c_uint] = ACTIONS(1648), - [anon_sym_c_long] = ACTIONS(1648), - [anon_sym_c_ulong] = ACTIONS(1648), - [anon_sym_c_longlong] = ACTIONS(1648), - [anon_sym_c_ulonglong] = ACTIONS(1648), - [anon_sym_c_float] = ACTIONS(1648), - [anon_sym_c_double] = ACTIONS(1648), - [anon_sym_c_longdouble] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_defer] = ACTIONS(310), - [anon_sym_errdefer] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_expand] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_try] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_true] = ACTIONS(310), - [anon_sym_false] = ACTIONS(310), - [sym_none] = ACTIONS(310), - [sym_undefined] = ACTIONS(310), - [sym_sink] = ACTIONS(310), - [sym_integer] = ACTIONS(310), - [sym_float] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [sym_multiline_string] = ACTIONS(305), - [sym_character] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(590)] = { - [sym_type] = STATE(639), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1631), - [anon_sym_func] = ACTIONS(1634), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_anyopaque] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_range] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_c_char] = ACTIONS(1648), - [anon_sym_c_schar] = ACTIONS(1648), - [anon_sym_c_uchar] = ACTIONS(1648), - [anon_sym_c_short] = ACTIONS(1648), - [anon_sym_c_ushort] = ACTIONS(1648), - [anon_sym_c_int] = ACTIONS(1648), - [anon_sym_c_uint] = ACTIONS(1648), - [anon_sym_c_long] = ACTIONS(1648), - [anon_sym_c_ulong] = ACTIONS(1648), - [anon_sym_c_longlong] = ACTIONS(1648), - [anon_sym_c_ulonglong] = ACTIONS(1648), - [anon_sym_c_float] = ACTIONS(1648), - [anon_sym_c_double] = ACTIONS(1648), - [anon_sym_c_longdouble] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_defer] = ACTIONS(310), - [anon_sym_errdefer] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_expand] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_try] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_true] = ACTIONS(310), - [anon_sym_false] = ACTIONS(310), - [sym_none] = ACTIONS(310), - [sym_undefined] = ACTIONS(310), - [sym_sink] = ACTIONS(310), - [sym_integer] = ACTIONS(310), - [sym_float] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [sym_multiline_string] = ACTIONS(305), - [sym_character] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(591)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_xor_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_errdefer] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), - }, - [STATE(592)] = { - [sym_type] = STATE(611), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1655), - [anon_sym_func] = ACTIONS(1658), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_anyopaque] = ACTIONS(1672), - [anon_sym_bool] = ACTIONS(1672), - [anon_sym_int] = ACTIONS(1672), - [anon_sym_uint] = ACTIONS(1672), - [anon_sym_float] = ACTIONS(1672), - [anon_sym_range] = ACTIONS(1672), - [anon_sym_i8] = ACTIONS(1672), - [anon_sym_i16] = ACTIONS(1672), - [anon_sym_i32] = ACTIONS(1672), - [anon_sym_i64] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1672), - [anon_sym_u16] = ACTIONS(1672), - [anon_sym_u32] = ACTIONS(1672), - [anon_sym_u64] = ACTIONS(1672), - [anon_sym_isize] = ACTIONS(1672), - [anon_sym_usize] = ACTIONS(1672), - [anon_sym_f32] = ACTIONS(1672), - [anon_sym_f64] = ACTIONS(1672), - [anon_sym_c_char] = ACTIONS(1672), - [anon_sym_c_schar] = ACTIONS(1672), - [anon_sym_c_uchar] = ACTIONS(1672), - [anon_sym_c_short] = ACTIONS(1672), - [anon_sym_c_ushort] = ACTIONS(1672), - [anon_sym_c_int] = ACTIONS(1672), - [anon_sym_c_uint] = ACTIONS(1672), - [anon_sym_c_long] = ACTIONS(1672), - [anon_sym_c_ulong] = ACTIONS(1672), - [anon_sym_c_longlong] = ACTIONS(1672), - [anon_sym_c_ulonglong] = ACTIONS(1672), - [anon_sym_c_float] = ACTIONS(1672), - [anon_sym_c_double] = ACTIONS(1672), - [anon_sym_c_longdouble] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_defer] = ACTIONS(258), - [anon_sym_errdefer] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_expand] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_match] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_try] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_none] = ACTIONS(258), - [sym_undefined] = ACTIONS(258), - [sym_sink] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_multiline_string] = ACTIONS(253), - [sym_character] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(593)] = { - [sym_type] = STATE(613), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1655), - [anon_sym_func] = ACTIONS(1658), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_anyopaque] = ACTIONS(1672), - [anon_sym_bool] = ACTIONS(1672), - [anon_sym_int] = ACTIONS(1672), - [anon_sym_uint] = ACTIONS(1672), - [anon_sym_float] = ACTIONS(1672), - [anon_sym_range] = ACTIONS(1672), - [anon_sym_i8] = ACTIONS(1672), - [anon_sym_i16] = ACTIONS(1672), - [anon_sym_i32] = ACTIONS(1672), - [anon_sym_i64] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1672), - [anon_sym_u16] = ACTIONS(1672), - [anon_sym_u32] = ACTIONS(1672), - [anon_sym_u64] = ACTIONS(1672), - [anon_sym_isize] = ACTIONS(1672), - [anon_sym_usize] = ACTIONS(1672), - [anon_sym_f32] = ACTIONS(1672), - [anon_sym_f64] = ACTIONS(1672), - [anon_sym_c_char] = ACTIONS(1672), - [anon_sym_c_schar] = ACTIONS(1672), - [anon_sym_c_uchar] = ACTIONS(1672), - [anon_sym_c_short] = ACTIONS(1672), - [anon_sym_c_ushort] = ACTIONS(1672), - [anon_sym_c_int] = ACTIONS(1672), - [anon_sym_c_uint] = ACTIONS(1672), - [anon_sym_c_long] = ACTIONS(1672), - [anon_sym_c_ulong] = ACTIONS(1672), - [anon_sym_c_longlong] = ACTIONS(1672), - [anon_sym_c_ulonglong] = ACTIONS(1672), - [anon_sym_c_float] = ACTIONS(1672), - [anon_sym_c_double] = ACTIONS(1672), - [anon_sym_c_longdouble] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_defer] = ACTIONS(258), - [anon_sym_errdefer] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_expand] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_match] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_try] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_none] = ACTIONS(258), - [sym_undefined] = ACTIONS(258), - [sym_sink] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_multiline_string] = ACTIONS(253), - [sym_character] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(594)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - }, - [STATE(595)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - }, - [STATE(596)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_xor_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_errdefer] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), - }, - [STATE(597)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1681), - [anon_sym_DASH_EQ] = ACTIONS(1681), - [anon_sym_STAR_EQ] = ACTIONS(1681), - [anon_sym_SLASH_EQ] = ACTIONS(1681), - [anon_sym_AMP_EQ] = ACTIONS(1681), - [anon_sym_PIPE_EQ] = ACTIONS(1681), - [anon_sym_xor_EQ] = ACTIONS(1681), - [anon_sym_LT_LT_EQ] = ACTIONS(1681), - [anon_sym_GT_GT_EQ] = ACTIONS(1681), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_errdefer] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), - }, - [STATE(598)] = { - [sym_type] = STATE(619), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [sym_identifier] = ACTIONS(1683), - [anon_sym_func] = ACTIONS(1686), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(281), + [sym_type] = STATE(647), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1680), + [anon_sym_func] = ACTIONS(1683), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(311), [anon_sym_QMARK] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1590), [anon_sym_STAR] = ACTIONS(1692), [anon_sym_mut] = ACTIONS(1695), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_void] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), [anon_sym_anyopaque] = ACTIONS(1700), [anon_sym_bool] = ACTIONS(1700), [anon_sym_int] = ACTIONS(1700), @@ -79884,8770 +80497,7986 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(1700), [anon_sym_c_double] = ACTIONS(1700), [anon_sym_c_longdouble] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(286), - [anon_sym_yield] = ACTIONS(286), - [anon_sym_break] = ACTIONS(286), - [anon_sym_continue] = ACTIONS(286), - [anon_sym_defer] = ACTIONS(286), - [anon_sym_errdefer] = ACTIONS(286), - [anon_sym_if] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(286), - [anon_sym_expand] = ACTIONS(286), - [anon_sym_for] = ACTIONS(286), - [anon_sym_match] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_LT_LT_PIPE] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_SLASH] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_try] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [sym_none] = ACTIONS(286), - [sym_undefined] = ACTIONS(286), - [sym_sink] = ACTIONS(286), - [sym_integer] = ACTIONS(286), - [sym_float] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [sym_multiline_string] = ACTIONS(281), - [sym_character] = ACTIONS(281), + [anon_sym_return] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(316), + [anon_sym_break] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_defer] = ACTIONS(316), + [anon_sym_errdefer] = ACTIONS(316), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [anon_sym_expand] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_match] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_LT_LT_PIPE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_try] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [sym_none] = ACTIONS(316), + [sym_undefined] = ACTIONS(316), + [sym_sink] = ACTIONS(316), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(311), + [sym_multiline_string] = ACTIONS(311), + [sym_character] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), + [sym__newline] = ACTIONS(311), }, - [STATE(599)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(600)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(601)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - }, - [STATE(602)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(543), - [anon_sym_DASH_EQ] = ACTIONS(543), - [anon_sym_STAR_EQ] = ACTIONS(543), - [anon_sym_SLASH_EQ] = ACTIONS(543), - [anon_sym_AMP_EQ] = ACTIONS(543), - [anon_sym_PIPE_EQ] = ACTIONS(543), - [anon_sym_xor_EQ] = ACTIONS(543), - [anon_sym_LT_LT_EQ] = ACTIONS(543), - [anon_sym_GT_GT_EQ] = ACTIONS(543), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - }, - [STATE(603)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(604)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_xor_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_errdefer] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), - }, - [STATE(605)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(490), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_xor_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), - [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(606)] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_COLON_COLON] = ACTIONS(1233), - [anon_sym_import] = ACTIONS(1235), - [anon_sym_test] = ACTIONS(1235), - [anon_sym_hide] = ACTIONS(1235), - [anon_sym_func] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1233), - [anon_sym_QMARK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_void] = ACTIONS(1235), - [anon_sym_anyopaque] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_int] = ACTIONS(1235), - [anon_sym_uint] = ACTIONS(1235), - [anon_sym_float] = ACTIONS(1235), - [anon_sym_range] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_c_char] = ACTIONS(1235), - [anon_sym_c_schar] = ACTIONS(1235), - [anon_sym_c_uchar] = ACTIONS(1235), - [anon_sym_c_short] = ACTIONS(1235), - [anon_sym_c_ushort] = ACTIONS(1235), - [anon_sym_c_int] = ACTIONS(1235), - [anon_sym_c_uint] = ACTIONS(1235), - [anon_sym_c_long] = ACTIONS(1235), - [anon_sym_c_ulong] = ACTIONS(1235), - [anon_sym_c_longlong] = ACTIONS(1235), - [anon_sym_c_ulonglong] = ACTIONS(1235), - [anon_sym_c_float] = ACTIONS(1235), - [anon_sym_c_double] = ACTIONS(1235), - [anon_sym_c_longdouble] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(1235), - [anon_sym_COLON] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_defer] = ACTIONS(1235), - [anon_sym_errdefer] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_expand] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), - [anon_sym_orelse] = ACTIONS(1235), - [anon_sym_catch] = ACTIONS(1235), - [anon_sym_or] = ACTIONS(1235), - [anon_sym_and] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_EQ] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_xor] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT_PIPE] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_SLASH] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_try] = ACTIONS(1235), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1235), - [anon_sym_false] = ACTIONS(1235), - [sym_none] = ACTIONS(1235), - [sym_undefined] = ACTIONS(1235), - [sym_sink] = ACTIONS(1235), - [sym_integer] = ACTIONS(1235), - [sym_float] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_multiline_string] = ACTIONS(1233), - [sym_character] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1233), - }, - [STATE(607)] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_COLON_COLON] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1219), - [anon_sym_test] = ACTIONS(1219), - [anon_sym_hide] = ACTIONS(1219), - [anon_sym_func] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_DOLLAR] = ACTIONS(1217), - [anon_sym_PIPE] = ACTIONS(1217), - [anon_sym_QMARK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_void] = ACTIONS(1219), - [anon_sym_anyopaque] = ACTIONS(1219), - [anon_sym_bool] = ACTIONS(1219), - [anon_sym_int] = ACTIONS(1219), - [anon_sym_uint] = ACTIONS(1219), - [anon_sym_float] = ACTIONS(1219), - [anon_sym_range] = ACTIONS(1219), - [anon_sym_i8] = ACTIONS(1219), - [anon_sym_i16] = ACTIONS(1219), - [anon_sym_i32] = ACTIONS(1219), - [anon_sym_i64] = ACTIONS(1219), - [anon_sym_u8] = ACTIONS(1219), - [anon_sym_u16] = ACTIONS(1219), - [anon_sym_u32] = ACTIONS(1219), - [anon_sym_u64] = ACTIONS(1219), - [anon_sym_isize] = ACTIONS(1219), - [anon_sym_usize] = ACTIONS(1219), - [anon_sym_f32] = ACTIONS(1219), - [anon_sym_f64] = ACTIONS(1219), - [anon_sym_c_char] = ACTIONS(1219), - [anon_sym_c_schar] = ACTIONS(1219), - [anon_sym_c_uchar] = ACTIONS(1219), - [anon_sym_c_short] = ACTIONS(1219), - [anon_sym_c_ushort] = ACTIONS(1219), - [anon_sym_c_int] = ACTIONS(1219), - [anon_sym_c_uint] = ACTIONS(1219), - [anon_sym_c_long] = ACTIONS(1219), - [anon_sym_c_ulong] = ACTIONS(1219), - [anon_sym_c_longlong] = ACTIONS(1219), - [anon_sym_c_ulonglong] = ACTIONS(1219), - [anon_sym_c_float] = ACTIONS(1219), - [anon_sym_c_double] = ACTIONS(1219), - [anon_sym_c_longdouble] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_defer] = ACTIONS(1219), - [anon_sym_errdefer] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_expand] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), - [anon_sym_orelse] = ACTIONS(1219), - [anon_sym_catch] = ACTIONS(1219), - [anon_sym_or] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1217), - [anon_sym_BANG_EQ] = ACTIONS(1217), - [anon_sym_LT] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1217), - [anon_sym_GT] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_xor] = ACTIONS(1219), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1217), - [anon_sym_LT_LT_PIPE] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_DOT] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1217), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_none] = ACTIONS(1219), - [sym_undefined] = ACTIONS(1219), - [sym_sink] = ACTIONS(1219), - [sym_integer] = ACTIONS(1219), - [sym_float] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_multiline_string] = ACTIONS(1217), - [sym_character] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1217), - }, - [STATE(608)] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1221), - [anon_sym_import] = ACTIONS(1223), - [anon_sym_test] = ACTIONS(1223), - [anon_sym_hide] = ACTIONS(1223), - [anon_sym_func] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_DOLLAR] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_void] = ACTIONS(1223), - [anon_sym_anyopaque] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_int] = ACTIONS(1223), - [anon_sym_uint] = ACTIONS(1223), - [anon_sym_float] = ACTIONS(1223), - [anon_sym_range] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_c_char] = ACTIONS(1223), - [anon_sym_c_schar] = ACTIONS(1223), - [anon_sym_c_uchar] = ACTIONS(1223), - [anon_sym_c_short] = ACTIONS(1223), - [anon_sym_c_ushort] = ACTIONS(1223), - [anon_sym_c_int] = ACTIONS(1223), - [anon_sym_c_uint] = ACTIONS(1223), - [anon_sym_c_long] = ACTIONS(1223), - [anon_sym_c_ulong] = ACTIONS(1223), - [anon_sym_c_longlong] = ACTIONS(1223), - [anon_sym_c_ulonglong] = ACTIONS(1223), - [anon_sym_c_float] = ACTIONS(1223), - [anon_sym_c_double] = ACTIONS(1223), - [anon_sym_c_longdouble] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_yield] = ACTIONS(1223), - [anon_sym_COLON] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_defer] = ACTIONS(1223), - [anon_sym_errdefer] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_expand] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_DOT_DOT] = ACTIONS(1223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), - [anon_sym_orelse] = ACTIONS(1223), - [anon_sym_catch] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_xor] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1221), - [anon_sym_LT_LT_PIPE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_try] = ACTIONS(1223), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_true] = ACTIONS(1223), - [anon_sym_false] = ACTIONS(1223), - [sym_none] = ACTIONS(1223), - [sym_undefined] = ACTIONS(1223), - [sym_sink] = ACTIONS(1223), - [sym_integer] = ACTIONS(1223), - [sym_float] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_multiline_string] = ACTIONS(1221), - [sym_character] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1221), - }, - [STATE(609)] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(1225), - [anon_sym_import] = ACTIONS(1227), - [anon_sym_test] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_func] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1225), - [anon_sym_QMARK] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1227), - [anon_sym_anyopaque] = ACTIONS(1227), - [anon_sym_bool] = ACTIONS(1227), - [anon_sym_int] = ACTIONS(1227), - [anon_sym_uint] = ACTIONS(1227), - [anon_sym_float] = ACTIONS(1227), - [anon_sym_range] = ACTIONS(1227), - [anon_sym_i8] = ACTIONS(1227), - [anon_sym_i16] = ACTIONS(1227), - [anon_sym_i32] = ACTIONS(1227), - [anon_sym_i64] = ACTIONS(1227), - [anon_sym_u8] = ACTIONS(1227), - [anon_sym_u16] = ACTIONS(1227), - [anon_sym_u32] = ACTIONS(1227), - [anon_sym_u64] = ACTIONS(1227), - [anon_sym_isize] = ACTIONS(1227), - [anon_sym_usize] = ACTIONS(1227), - [anon_sym_f32] = ACTIONS(1227), - [anon_sym_f64] = ACTIONS(1227), - [anon_sym_c_char] = ACTIONS(1227), - [anon_sym_c_schar] = ACTIONS(1227), - [anon_sym_c_uchar] = ACTIONS(1227), - [anon_sym_c_short] = ACTIONS(1227), - [anon_sym_c_ushort] = ACTIONS(1227), - [anon_sym_c_int] = ACTIONS(1227), - [anon_sym_c_uint] = ACTIONS(1227), - [anon_sym_c_long] = ACTIONS(1227), - [anon_sym_c_ulong] = ACTIONS(1227), - [anon_sym_c_longlong] = ACTIONS(1227), - [anon_sym_c_ulonglong] = ACTIONS(1227), - [anon_sym_c_float] = ACTIONS(1227), - [anon_sym_c_double] = ACTIONS(1227), - [anon_sym_c_longdouble] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_COLON] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_defer] = ACTIONS(1227), - [anon_sym_errdefer] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_expand] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), - [anon_sym_orelse] = ACTIONS(1227), - [anon_sym_catch] = ACTIONS(1227), - [anon_sym_or] = ACTIONS(1227), - [anon_sym_and] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_xor] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1225), - [anon_sym_LT_LT_PIPE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_DOT] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [sym_none] = ACTIONS(1227), - [sym_undefined] = ACTIONS(1227), - [sym_sink] = ACTIONS(1227), - [sym_integer] = ACTIONS(1227), - [sym_float] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_multiline_string] = ACTIONS(1225), - [sym_character] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1225), - }, - [STATE(610)] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(1131), - [anon_sym_test] = ACTIONS(1131), - [anon_sym_hide] = ACTIONS(1131), - [anon_sym_func] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1131), - [anon_sym_anyopaque] = ACTIONS(1131), - [anon_sym_bool] = ACTIONS(1131), - [anon_sym_int] = ACTIONS(1131), - [anon_sym_uint] = ACTIONS(1131), - [anon_sym_float] = ACTIONS(1131), - [anon_sym_range] = ACTIONS(1131), - [anon_sym_i8] = ACTIONS(1131), - [anon_sym_i16] = ACTIONS(1131), - [anon_sym_i32] = ACTIONS(1131), - [anon_sym_i64] = ACTIONS(1131), - [anon_sym_u8] = ACTIONS(1131), - [anon_sym_u16] = ACTIONS(1131), - [anon_sym_u32] = ACTIONS(1131), - [anon_sym_u64] = ACTIONS(1131), - [anon_sym_isize] = ACTIONS(1131), - [anon_sym_usize] = ACTIONS(1131), - [anon_sym_f32] = ACTIONS(1131), - [anon_sym_f64] = ACTIONS(1131), - [anon_sym_c_char] = ACTIONS(1131), - [anon_sym_c_schar] = ACTIONS(1131), - [anon_sym_c_uchar] = ACTIONS(1131), - [anon_sym_c_short] = ACTIONS(1131), - [anon_sym_c_ushort] = ACTIONS(1131), - [anon_sym_c_int] = ACTIONS(1131), - [anon_sym_c_uint] = ACTIONS(1131), - [anon_sym_c_long] = ACTIONS(1131), - [anon_sym_c_ulong] = ACTIONS(1131), - [anon_sym_c_longlong] = ACTIONS(1131), - [anon_sym_c_ulonglong] = ACTIONS(1131), - [anon_sym_c_float] = ACTIONS(1131), - [anon_sym_c_double] = ACTIONS(1131), - [anon_sym_c_longdouble] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_defer] = ACTIONS(1131), - [anon_sym_errdefer] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_expand] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), - [anon_sym_orelse] = ACTIONS(1131), - [anon_sym_catch] = ACTIONS(1131), - [anon_sym_or] = ACTIONS(1131), - [anon_sym_and] = ACTIONS(1131), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_xor] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1131), - [anon_sym_GT_GT] = ACTIONS(1129), - [anon_sym_LT_LT_PIPE] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_CARET] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [sym_none] = ACTIONS(1131), - [sym_undefined] = ACTIONS(1131), - [sym_sink] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_multiline_string] = ACTIONS(1129), - [sym_character] = ACTIONS(1129), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1129), - }, - [STATE(611)] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [anon_sym_COLON_COLON] = ACTIONS(1133), - [anon_sym_import] = ACTIONS(1135), - [anon_sym_test] = ACTIONS(1135), - [anon_sym_hide] = ACTIONS(1135), - [anon_sym_func] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_anyopaque] = ACTIONS(1135), - [anon_sym_bool] = ACTIONS(1135), - [anon_sym_int] = ACTIONS(1135), - [anon_sym_uint] = ACTIONS(1135), - [anon_sym_float] = ACTIONS(1135), - [anon_sym_range] = ACTIONS(1135), - [anon_sym_i8] = ACTIONS(1135), - [anon_sym_i16] = ACTIONS(1135), - [anon_sym_i32] = ACTIONS(1135), - [anon_sym_i64] = ACTIONS(1135), - [anon_sym_u8] = ACTIONS(1135), - [anon_sym_u16] = ACTIONS(1135), - [anon_sym_u32] = ACTIONS(1135), - [anon_sym_u64] = ACTIONS(1135), - [anon_sym_isize] = ACTIONS(1135), - [anon_sym_usize] = ACTIONS(1135), - [anon_sym_f32] = ACTIONS(1135), - [anon_sym_f64] = ACTIONS(1135), - [anon_sym_c_char] = ACTIONS(1135), - [anon_sym_c_schar] = ACTIONS(1135), - [anon_sym_c_uchar] = ACTIONS(1135), - [anon_sym_c_short] = ACTIONS(1135), - [anon_sym_c_ushort] = ACTIONS(1135), - [anon_sym_c_int] = ACTIONS(1135), - [anon_sym_c_uint] = ACTIONS(1135), - [anon_sym_c_long] = ACTIONS(1135), - [anon_sym_c_ulong] = ACTIONS(1135), - [anon_sym_c_longlong] = ACTIONS(1135), - [anon_sym_c_ulonglong] = ACTIONS(1135), - [anon_sym_c_float] = ACTIONS(1135), - [anon_sym_c_double] = ACTIONS(1135), - [anon_sym_c_longdouble] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_defer] = ACTIONS(1135), - [anon_sym_errdefer] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_expand] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1133), - [anon_sym_orelse] = ACTIONS(1135), - [anon_sym_catch] = ACTIONS(1135), - [anon_sym_or] = ACTIONS(1135), - [anon_sym_and] = ACTIONS(1135), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_xor] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [sym_none] = ACTIONS(1135), - [sym_undefined] = ACTIONS(1135), - [sym_sink] = ACTIONS(1135), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_multiline_string] = ACTIONS(1133), - [sym_character] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1133), - }, - [STATE(612)] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1139), - [anon_sym_COLON_COLON] = ACTIONS(1137), - [anon_sym_import] = ACTIONS(1139), - [anon_sym_test] = ACTIONS(1139), - [anon_sym_hide] = ACTIONS(1139), - [anon_sym_func] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_COMMA] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1139), - [anon_sym_anyopaque] = ACTIONS(1139), - [anon_sym_bool] = ACTIONS(1139), - [anon_sym_int] = ACTIONS(1139), - [anon_sym_uint] = ACTIONS(1139), - [anon_sym_float] = ACTIONS(1139), - [anon_sym_range] = ACTIONS(1139), - [anon_sym_i8] = ACTIONS(1139), - [anon_sym_i16] = ACTIONS(1139), - [anon_sym_i32] = ACTIONS(1139), - [anon_sym_i64] = ACTIONS(1139), - [anon_sym_u8] = ACTIONS(1139), - [anon_sym_u16] = ACTIONS(1139), - [anon_sym_u32] = ACTIONS(1139), - [anon_sym_u64] = ACTIONS(1139), - [anon_sym_isize] = ACTIONS(1139), - [anon_sym_usize] = ACTIONS(1139), - [anon_sym_f32] = ACTIONS(1139), - [anon_sym_f64] = ACTIONS(1139), - [anon_sym_c_char] = ACTIONS(1139), - [anon_sym_c_schar] = ACTIONS(1139), - [anon_sym_c_uchar] = ACTIONS(1139), - [anon_sym_c_short] = ACTIONS(1139), - [anon_sym_c_ushort] = ACTIONS(1139), - [anon_sym_c_int] = ACTIONS(1139), - [anon_sym_c_uint] = ACTIONS(1139), - [anon_sym_c_long] = ACTIONS(1139), - [anon_sym_c_ulong] = ACTIONS(1139), - [anon_sym_c_longlong] = ACTIONS(1139), - [anon_sym_c_ulonglong] = ACTIONS(1139), - [anon_sym_c_float] = ACTIONS(1139), - [anon_sym_c_double] = ACTIONS(1139), - [anon_sym_c_longdouble] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1139), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_defer] = ACTIONS(1139), - [anon_sym_errdefer] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_expand] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), - [anon_sym_orelse] = ACTIONS(1139), - [anon_sym_catch] = ACTIONS(1139), - [anon_sym_or] = ACTIONS(1139), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1137), - [anon_sym_BANG_EQ] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1137), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_xor] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_LT_LT_PIPE] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_SLASH] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), - [sym_none] = ACTIONS(1139), - [sym_undefined] = ACTIONS(1139), - [sym_sink] = ACTIONS(1139), - [sym_integer] = ACTIONS(1139), - [sym_float] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_multiline_string] = ACTIONS(1137), - [sym_character] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1137), - }, - [STATE(613)] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1143), - [anon_sym_test] = ACTIONS(1143), - [anon_sym_hide] = ACTIONS(1143), - [anon_sym_func] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_void] = ACTIONS(1143), - [anon_sym_anyopaque] = ACTIONS(1143), - [anon_sym_bool] = ACTIONS(1143), - [anon_sym_int] = ACTIONS(1143), - [anon_sym_uint] = ACTIONS(1143), - [anon_sym_float] = ACTIONS(1143), - [anon_sym_range] = ACTIONS(1143), - [anon_sym_i8] = ACTIONS(1143), - [anon_sym_i16] = ACTIONS(1143), - [anon_sym_i32] = ACTIONS(1143), - [anon_sym_i64] = ACTIONS(1143), - [anon_sym_u8] = ACTIONS(1143), - [anon_sym_u16] = ACTIONS(1143), - [anon_sym_u32] = ACTIONS(1143), - [anon_sym_u64] = ACTIONS(1143), - [anon_sym_isize] = ACTIONS(1143), - [anon_sym_usize] = ACTIONS(1143), - [anon_sym_f32] = ACTIONS(1143), - [anon_sym_f64] = ACTIONS(1143), - [anon_sym_c_char] = ACTIONS(1143), - [anon_sym_c_schar] = ACTIONS(1143), - [anon_sym_c_uchar] = ACTIONS(1143), - [anon_sym_c_short] = ACTIONS(1143), - [anon_sym_c_ushort] = ACTIONS(1143), - [anon_sym_c_int] = ACTIONS(1143), - [anon_sym_c_uint] = ACTIONS(1143), - [anon_sym_c_long] = ACTIONS(1143), - [anon_sym_c_ulong] = ACTIONS(1143), - [anon_sym_c_longlong] = ACTIONS(1143), - [anon_sym_c_ulonglong] = ACTIONS(1143), - [anon_sym_c_float] = ACTIONS(1143), - [anon_sym_c_double] = ACTIONS(1143), - [anon_sym_c_longdouble] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_defer] = ACTIONS(1143), - [anon_sym_errdefer] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_expand] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(1143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), - [anon_sym_orelse] = ACTIONS(1143), - [anon_sym_catch] = ACTIONS(1143), - [anon_sym_or] = ACTIONS(1143), - [anon_sym_and] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1141), - [anon_sym_BANG_EQ] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_xor] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_LT_LT_PIPE] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), - [sym_none] = ACTIONS(1143), - [sym_undefined] = ACTIONS(1143), - [sym_sink] = ACTIONS(1143), - [sym_integer] = ACTIONS(1143), - [sym_float] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_multiline_string] = ACTIONS(1141), - [sym_character] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1141), - }, - [STATE(614)] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1147), - [anon_sym_COLON_COLON] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_test] = ACTIONS(1147), - [anon_sym_hide] = ACTIONS(1147), - [anon_sym_func] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_QMARK] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_anyopaque] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_int] = ACTIONS(1147), - [anon_sym_uint] = ACTIONS(1147), - [anon_sym_float] = ACTIONS(1147), - [anon_sym_range] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_c_char] = ACTIONS(1147), - [anon_sym_c_schar] = ACTIONS(1147), - [anon_sym_c_uchar] = ACTIONS(1147), - [anon_sym_c_short] = ACTIONS(1147), - [anon_sym_c_ushort] = ACTIONS(1147), - [anon_sym_c_int] = ACTIONS(1147), - [anon_sym_c_uint] = ACTIONS(1147), - [anon_sym_c_long] = ACTIONS(1147), - [anon_sym_c_ulong] = ACTIONS(1147), - [anon_sym_c_longlong] = ACTIONS(1147), - [anon_sym_c_ulonglong] = ACTIONS(1147), - [anon_sym_c_float] = ACTIONS(1147), - [anon_sym_c_double] = ACTIONS(1147), - [anon_sym_c_longdouble] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1147), - [anon_sym_COLON] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_defer] = ACTIONS(1147), - [anon_sym_errdefer] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_expand] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), - [anon_sym_orelse] = ACTIONS(1147), - [anon_sym_catch] = ACTIONS(1147), - [anon_sym_or] = ACTIONS(1147), - [anon_sym_and] = ACTIONS(1147), - [anon_sym_EQ_EQ] = ACTIONS(1145), - [anon_sym_BANG_EQ] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_LT_EQ] = ACTIONS(1145), - [anon_sym_GT] = ACTIONS(1147), - [anon_sym_GT_EQ] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_xor] = ACTIONS(1147), - [anon_sym_LT_LT] = ACTIONS(1147), - [anon_sym_GT_GT] = ACTIONS(1145), - [anon_sym_LT_LT_PIPE] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1147), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_CARET] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), - [sym_none] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1147), - [sym_sink] = ACTIONS(1147), - [sym_integer] = ACTIONS(1147), - [sym_float] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_multiline_string] = ACTIONS(1145), - [sym_character] = ACTIONS(1145), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1145), - }, - [STATE(615)] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_identifier] = ACTIONS(1171), - [anon_sym_COLON_COLON] = ACTIONS(1169), - [anon_sym_import] = ACTIONS(1171), - [anon_sym_test] = ACTIONS(1171), - [anon_sym_hide] = ACTIONS(1171), - [anon_sym_func] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_EQ] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_DOLLAR] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1169), - [anon_sym_QMARK] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_void] = ACTIONS(1171), - [anon_sym_anyopaque] = ACTIONS(1171), - [anon_sym_bool] = ACTIONS(1171), - [anon_sym_int] = ACTIONS(1171), - [anon_sym_uint] = ACTIONS(1171), - [anon_sym_float] = ACTIONS(1171), - [anon_sym_range] = ACTIONS(1171), - [anon_sym_i8] = ACTIONS(1171), - [anon_sym_i16] = ACTIONS(1171), - [anon_sym_i32] = ACTIONS(1171), - [anon_sym_i64] = ACTIONS(1171), - [anon_sym_u8] = ACTIONS(1171), - [anon_sym_u16] = ACTIONS(1171), - [anon_sym_u32] = ACTIONS(1171), - [anon_sym_u64] = ACTIONS(1171), - [anon_sym_isize] = ACTIONS(1171), - [anon_sym_usize] = ACTIONS(1171), - [anon_sym_f32] = ACTIONS(1171), - [anon_sym_f64] = ACTIONS(1171), - [anon_sym_c_char] = ACTIONS(1171), - [anon_sym_c_schar] = ACTIONS(1171), - [anon_sym_c_uchar] = ACTIONS(1171), - [anon_sym_c_short] = ACTIONS(1171), - [anon_sym_c_ushort] = ACTIONS(1171), - [anon_sym_c_int] = ACTIONS(1171), - [anon_sym_c_uint] = ACTIONS(1171), - [anon_sym_c_long] = ACTIONS(1171), - [anon_sym_c_ulong] = ACTIONS(1171), - [anon_sym_c_longlong] = ACTIONS(1171), - [anon_sym_c_ulonglong] = ACTIONS(1171), - [anon_sym_c_float] = ACTIONS(1171), - [anon_sym_c_double] = ACTIONS(1171), - [anon_sym_c_longdouble] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_yield] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_defer] = ACTIONS(1171), - [anon_sym_errdefer] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_expand] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_DOT_DOT] = ACTIONS(1171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), - [anon_sym_orelse] = ACTIONS(1171), - [anon_sym_catch] = ACTIONS(1171), - [anon_sym_or] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_EQ_EQ] = ACTIONS(1169), - [anon_sym_BANG_EQ] = ACTIONS(1169), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LT_EQ] = ACTIONS(1169), - [anon_sym_GT] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_xor] = ACTIONS(1171), - [anon_sym_LT_LT] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(1169), - [anon_sym_LT_LT_PIPE] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_SLASH] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_CARET] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(1171), - [anon_sym_false] = ACTIONS(1171), - [sym_none] = ACTIONS(1171), - [sym_undefined] = ACTIONS(1171), - [sym_sink] = ACTIONS(1171), - [sym_integer] = ACTIONS(1171), - [sym_float] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym_multiline_string] = ACTIONS(1169), - [sym_character] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1169), - }, - [STATE(616)] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(1203), - [anon_sym_test] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_func] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1203), - [anon_sym_anyopaque] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1203), - [anon_sym_int] = ACTIONS(1203), - [anon_sym_uint] = ACTIONS(1203), - [anon_sym_float] = ACTIONS(1203), - [anon_sym_range] = ACTIONS(1203), - [anon_sym_i8] = ACTIONS(1203), - [anon_sym_i16] = ACTIONS(1203), - [anon_sym_i32] = ACTIONS(1203), - [anon_sym_i64] = ACTIONS(1203), - [anon_sym_u8] = ACTIONS(1203), - [anon_sym_u16] = ACTIONS(1203), - [anon_sym_u32] = ACTIONS(1203), - [anon_sym_u64] = ACTIONS(1203), - [anon_sym_isize] = ACTIONS(1203), - [anon_sym_usize] = ACTIONS(1203), - [anon_sym_f32] = ACTIONS(1203), - [anon_sym_f64] = ACTIONS(1203), - [anon_sym_c_char] = ACTIONS(1203), - [anon_sym_c_schar] = ACTIONS(1203), - [anon_sym_c_uchar] = ACTIONS(1203), - [anon_sym_c_short] = ACTIONS(1203), - [anon_sym_c_ushort] = ACTIONS(1203), - [anon_sym_c_int] = ACTIONS(1203), - [anon_sym_c_uint] = ACTIONS(1203), - [anon_sym_c_long] = ACTIONS(1203), - [anon_sym_c_ulong] = ACTIONS(1203), - [anon_sym_c_longlong] = ACTIONS(1203), - [anon_sym_c_ulonglong] = ACTIONS(1203), - [anon_sym_c_float] = ACTIONS(1203), - [anon_sym_c_double] = ACTIONS(1203), - [anon_sym_c_longdouble] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1203), - [anon_sym_COLON] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_defer] = ACTIONS(1203), - [anon_sym_errdefer] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_expand] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), - [anon_sym_orelse] = ACTIONS(1203), - [anon_sym_catch] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1203), - [anon_sym_GT_GT] = ACTIONS(1201), - [anon_sym_LT_LT_PIPE] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [sym_none] = ACTIONS(1203), - [sym_undefined] = ACTIONS(1203), - [sym_sink] = ACTIONS(1203), - [sym_integer] = ACTIONS(1203), - [sym_float] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_multiline_string] = ACTIONS(1201), - [sym_character] = ACTIONS(1201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1201), - }, - [STATE(617)] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1175), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1175), - [anon_sym_test] = ACTIONS(1175), - [anon_sym_hide] = ACTIONS(1175), - [anon_sym_func] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_EQ] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_void] = ACTIONS(1175), - [anon_sym_anyopaque] = ACTIONS(1175), - [anon_sym_bool] = ACTIONS(1175), - [anon_sym_int] = ACTIONS(1175), - [anon_sym_uint] = ACTIONS(1175), - [anon_sym_float] = ACTIONS(1175), - [anon_sym_range] = ACTIONS(1175), - [anon_sym_i8] = ACTIONS(1175), - [anon_sym_i16] = ACTIONS(1175), - [anon_sym_i32] = ACTIONS(1175), - [anon_sym_i64] = ACTIONS(1175), - [anon_sym_u8] = ACTIONS(1175), - [anon_sym_u16] = ACTIONS(1175), - [anon_sym_u32] = ACTIONS(1175), - [anon_sym_u64] = ACTIONS(1175), - [anon_sym_isize] = ACTIONS(1175), - [anon_sym_usize] = ACTIONS(1175), - [anon_sym_f32] = ACTIONS(1175), - [anon_sym_f64] = ACTIONS(1175), - [anon_sym_c_char] = ACTIONS(1175), - [anon_sym_c_schar] = ACTIONS(1175), - [anon_sym_c_uchar] = ACTIONS(1175), - [anon_sym_c_short] = ACTIONS(1175), - [anon_sym_c_ushort] = ACTIONS(1175), - [anon_sym_c_int] = ACTIONS(1175), - [anon_sym_c_uint] = ACTIONS(1175), - [anon_sym_c_long] = ACTIONS(1175), - [anon_sym_c_ulong] = ACTIONS(1175), - [anon_sym_c_longlong] = ACTIONS(1175), - [anon_sym_c_ulonglong] = ACTIONS(1175), - [anon_sym_c_float] = ACTIONS(1175), - [anon_sym_c_double] = ACTIONS(1175), - [anon_sym_c_longdouble] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_defer] = ACTIONS(1175), - [anon_sym_errdefer] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_expand] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_match] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), - [anon_sym_orelse] = ACTIONS(1175), - [anon_sym_catch] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1173), - [anon_sym_BANG_EQ] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_LT_EQ] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_xor] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1175), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_LT_LT_PIPE] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1175), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(1175), - [anon_sym_false] = ACTIONS(1175), - [sym_none] = ACTIONS(1175), - [sym_undefined] = ACTIONS(1175), - [sym_sink] = ACTIONS(1175), - [sym_integer] = ACTIONS(1175), - [sym_float] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_multiline_string] = ACTIONS(1173), - [sym_character] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1173), - }, - [STATE(618)] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_COLON_COLON] = ACTIONS(1205), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_test] = ACTIONS(1207), - [anon_sym_hide] = ACTIONS(1207), - [anon_sym_func] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_void] = ACTIONS(1207), - [anon_sym_anyopaque] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_int] = ACTIONS(1207), - [anon_sym_uint] = ACTIONS(1207), - [anon_sym_float] = ACTIONS(1207), - [anon_sym_range] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_c_char] = ACTIONS(1207), - [anon_sym_c_schar] = ACTIONS(1207), - [anon_sym_c_uchar] = ACTIONS(1207), - [anon_sym_c_short] = ACTIONS(1207), - [anon_sym_c_ushort] = ACTIONS(1207), - [anon_sym_c_int] = ACTIONS(1207), - [anon_sym_c_uint] = ACTIONS(1207), - [anon_sym_c_long] = ACTIONS(1207), - [anon_sym_c_ulong] = ACTIONS(1207), - [anon_sym_c_longlong] = ACTIONS(1207), - [anon_sym_c_ulonglong] = ACTIONS(1207), - [anon_sym_c_float] = ACTIONS(1207), - [anon_sym_c_double] = ACTIONS(1207), - [anon_sym_c_longdouble] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_defer] = ACTIONS(1207), - [anon_sym_errdefer] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_expand] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_match] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), - [anon_sym_orelse] = ACTIONS(1207), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_or] = ACTIONS(1207), - [anon_sym_and] = ACTIONS(1207), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_xor] = ACTIONS(1207), - [anon_sym_LT_LT] = ACTIONS(1207), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_LT_LT_PIPE] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_try] = ACTIONS(1207), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1207), - [anon_sym_false] = ACTIONS(1207), - [sym_none] = ACTIONS(1207), - [sym_undefined] = ACTIONS(1207), - [sym_sink] = ACTIONS(1207), - [sym_integer] = ACTIONS(1207), - [sym_float] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_multiline_string] = ACTIONS(1205), - [sym_character] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1205), - }, - [STATE(619)] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [anon_sym_COLON_COLON] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1179), - [anon_sym_test] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_func] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_void] = ACTIONS(1179), - [anon_sym_anyopaque] = ACTIONS(1179), - [anon_sym_bool] = ACTIONS(1179), - [anon_sym_int] = ACTIONS(1179), - [anon_sym_uint] = ACTIONS(1179), - [anon_sym_float] = ACTIONS(1179), - [anon_sym_range] = ACTIONS(1179), - [anon_sym_i8] = ACTIONS(1179), - [anon_sym_i16] = ACTIONS(1179), - [anon_sym_i32] = ACTIONS(1179), - [anon_sym_i64] = ACTIONS(1179), - [anon_sym_u8] = ACTIONS(1179), - [anon_sym_u16] = ACTIONS(1179), - [anon_sym_u32] = ACTIONS(1179), - [anon_sym_u64] = ACTIONS(1179), - [anon_sym_isize] = ACTIONS(1179), - [anon_sym_usize] = ACTIONS(1179), - [anon_sym_f32] = ACTIONS(1179), - [anon_sym_f64] = ACTIONS(1179), - [anon_sym_c_char] = ACTIONS(1179), - [anon_sym_c_schar] = ACTIONS(1179), - [anon_sym_c_uchar] = ACTIONS(1179), - [anon_sym_c_short] = ACTIONS(1179), - [anon_sym_c_ushort] = ACTIONS(1179), - [anon_sym_c_int] = ACTIONS(1179), - [anon_sym_c_uint] = ACTIONS(1179), - [anon_sym_c_long] = ACTIONS(1179), - [anon_sym_c_ulong] = ACTIONS(1179), - [anon_sym_c_longlong] = ACTIONS(1179), - [anon_sym_c_ulonglong] = ACTIONS(1179), - [anon_sym_c_float] = ACTIONS(1179), - [anon_sym_c_double] = ACTIONS(1179), - [anon_sym_c_longdouble] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_yield] = ACTIONS(1179), - [anon_sym_COLON] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_defer] = ACTIONS(1179), - [anon_sym_errdefer] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_expand] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), - [anon_sym_orelse] = ACTIONS(1179), - [anon_sym_catch] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_LT_LT] = ACTIONS(1179), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT_PIPE] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [sym_none] = ACTIONS(1179), - [sym_undefined] = ACTIONS(1179), - [sym_sink] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_multiline_string] = ACTIONS(1177), - [sym_character] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1177), - }, - [STATE(620)] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(1017), - [anon_sym_import] = ACTIONS(1019), - [anon_sym_test] = ACTIONS(1019), - [anon_sym_hide] = ACTIONS(1019), - [anon_sym_func] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1019), - [anon_sym_struct] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_anyopaque] = ACTIONS(1019), - [anon_sym_bool] = ACTIONS(1019), - [anon_sym_int] = ACTIONS(1019), - [anon_sym_uint] = ACTIONS(1019), - [anon_sym_float] = ACTIONS(1019), - [anon_sym_range] = ACTIONS(1019), - [anon_sym_i8] = ACTIONS(1019), - [anon_sym_i16] = ACTIONS(1019), - [anon_sym_i32] = ACTIONS(1019), - [anon_sym_i64] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1019), - [anon_sym_u16] = ACTIONS(1019), - [anon_sym_u32] = ACTIONS(1019), - [anon_sym_u64] = ACTIONS(1019), - [anon_sym_isize] = ACTIONS(1019), - [anon_sym_usize] = ACTIONS(1019), - [anon_sym_f32] = ACTIONS(1019), - [anon_sym_f64] = ACTIONS(1019), - [anon_sym_c_char] = ACTIONS(1019), - [anon_sym_c_schar] = ACTIONS(1019), - [anon_sym_c_uchar] = ACTIONS(1019), - [anon_sym_c_short] = ACTIONS(1019), - [anon_sym_c_ushort] = ACTIONS(1019), - [anon_sym_c_int] = ACTIONS(1019), - [anon_sym_c_uint] = ACTIONS(1019), - [anon_sym_c_long] = ACTIONS(1019), - [anon_sym_c_ulong] = ACTIONS(1019), - [anon_sym_c_longlong] = ACTIONS(1019), - [anon_sym_c_ulonglong] = ACTIONS(1019), - [anon_sym_c_float] = ACTIONS(1019), - [anon_sym_c_double] = ACTIONS(1019), - [anon_sym_c_longdouble] = ACTIONS(1019), - [anon_sym_return] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_break] = ACTIONS(1019), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_defer] = ACTIONS(1019), - [anon_sym_errdefer] = ACTIONS(1019), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_else] = ACTIONS(1019), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_expand] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1019), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_orelse] = ACTIONS(1019), - [anon_sym_catch] = ACTIONS(1019), - [anon_sym_or] = ACTIONS(1019), - [anon_sym_and] = ACTIONS(1019), - [anon_sym_EQ_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1017), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_EQ] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_xor] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_LT_LT_PIPE] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [sym_none] = ACTIONS(1019), - [sym_undefined] = ACTIONS(1019), - [sym_sink] = ACTIONS(1019), - [sym_integer] = ACTIONS(1019), - [sym_float] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym_multiline_string] = ACTIONS(1017), - [sym_character] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1017), - }, - [STATE(621)] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [anon_sym_COLON_COLON] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1231), - [anon_sym_test] = ACTIONS(1231), - [anon_sym_hide] = ACTIONS(1231), - [anon_sym_func] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1231), - [anon_sym_anyopaque] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1231), - [anon_sym_int] = ACTIONS(1231), - [anon_sym_uint] = ACTIONS(1231), - [anon_sym_float] = ACTIONS(1231), - [anon_sym_range] = ACTIONS(1231), - [anon_sym_i8] = ACTIONS(1231), - [anon_sym_i16] = ACTIONS(1231), - [anon_sym_i32] = ACTIONS(1231), - [anon_sym_i64] = ACTIONS(1231), - [anon_sym_u8] = ACTIONS(1231), - [anon_sym_u16] = ACTIONS(1231), - [anon_sym_u32] = ACTIONS(1231), - [anon_sym_u64] = ACTIONS(1231), - [anon_sym_isize] = ACTIONS(1231), - [anon_sym_usize] = ACTIONS(1231), - [anon_sym_f32] = ACTIONS(1231), - [anon_sym_f64] = ACTIONS(1231), - [anon_sym_c_char] = ACTIONS(1231), - [anon_sym_c_schar] = ACTIONS(1231), - [anon_sym_c_uchar] = ACTIONS(1231), - [anon_sym_c_short] = ACTIONS(1231), - [anon_sym_c_ushort] = ACTIONS(1231), - [anon_sym_c_int] = ACTIONS(1231), - [anon_sym_c_uint] = ACTIONS(1231), - [anon_sym_c_long] = ACTIONS(1231), - [anon_sym_c_ulong] = ACTIONS(1231), - [anon_sym_c_longlong] = ACTIONS(1231), - [anon_sym_c_ulonglong] = ACTIONS(1231), - [anon_sym_c_float] = ACTIONS(1231), - [anon_sym_c_double] = ACTIONS(1231), - [anon_sym_c_longdouble] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_defer] = ACTIONS(1231), - [anon_sym_errdefer] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_expand] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_DOT_DOT] = ACTIONS(1231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), - [anon_sym_orelse] = ACTIONS(1231), - [anon_sym_catch] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_xor] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_LT_LT_PIPE] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1231), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [sym_none] = ACTIONS(1231), - [sym_undefined] = ACTIONS(1231), - [sym_sink] = ACTIONS(1231), - [sym_integer] = ACTIONS(1231), - [sym_float] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_multiline_string] = ACTIONS(1229), - [sym_character] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1229), - }, - [STATE(622)] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [anon_sym_COLON_COLON] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_test] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_func] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1109), - [anon_sym_anyopaque] = ACTIONS(1109), - [anon_sym_bool] = ACTIONS(1109), - [anon_sym_int] = ACTIONS(1109), - [anon_sym_uint] = ACTIONS(1109), - [anon_sym_float] = ACTIONS(1109), - [anon_sym_range] = ACTIONS(1109), - [anon_sym_i8] = ACTIONS(1109), - [anon_sym_i16] = ACTIONS(1109), - [anon_sym_i32] = ACTIONS(1109), - [anon_sym_i64] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1109), - [anon_sym_u16] = ACTIONS(1109), - [anon_sym_u32] = ACTIONS(1109), - [anon_sym_u64] = ACTIONS(1109), - [anon_sym_isize] = ACTIONS(1109), - [anon_sym_usize] = ACTIONS(1109), - [anon_sym_f32] = ACTIONS(1109), - [anon_sym_f64] = ACTIONS(1109), - [anon_sym_c_char] = ACTIONS(1109), - [anon_sym_c_schar] = ACTIONS(1109), - [anon_sym_c_uchar] = ACTIONS(1109), - [anon_sym_c_short] = ACTIONS(1109), - [anon_sym_c_ushort] = ACTIONS(1109), - [anon_sym_c_int] = ACTIONS(1109), - [anon_sym_c_uint] = ACTIONS(1109), - [anon_sym_c_long] = ACTIONS(1109), - [anon_sym_c_ulong] = ACTIONS(1109), - [anon_sym_c_longlong] = ACTIONS(1109), - [anon_sym_c_ulonglong] = ACTIONS(1109), - [anon_sym_c_float] = ACTIONS(1109), - [anon_sym_c_double] = ACTIONS(1109), - [anon_sym_c_longdouble] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_COLON] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_defer] = ACTIONS(1109), - [anon_sym_errdefer] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_expand] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1107), - [anon_sym_orelse] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1107), - [anon_sym_BANG_EQ] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_LT_LT_PIPE] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [sym_none] = ACTIONS(1109), - [sym_undefined] = ACTIONS(1109), - [sym_sink] = ACTIONS(1109), - [sym_integer] = ACTIONS(1109), - [sym_float] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [sym_multiline_string] = ACTIONS(1107), - [sym_character] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1107), - }, - [STATE(623)] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_COLON_COLON] = ACTIONS(1165), - [anon_sym_import] = ACTIONS(1167), - [anon_sym_test] = ACTIONS(1167), - [anon_sym_hide] = ACTIONS(1167), - [anon_sym_func] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_void] = ACTIONS(1167), - [anon_sym_anyopaque] = ACTIONS(1167), - [anon_sym_bool] = ACTIONS(1167), - [anon_sym_int] = ACTIONS(1167), - [anon_sym_uint] = ACTIONS(1167), - [anon_sym_float] = ACTIONS(1167), - [anon_sym_range] = ACTIONS(1167), - [anon_sym_i8] = ACTIONS(1167), - [anon_sym_i16] = ACTIONS(1167), - [anon_sym_i32] = ACTIONS(1167), - [anon_sym_i64] = ACTIONS(1167), - [anon_sym_u8] = ACTIONS(1167), - [anon_sym_u16] = ACTIONS(1167), - [anon_sym_u32] = ACTIONS(1167), - [anon_sym_u64] = ACTIONS(1167), - [anon_sym_isize] = ACTIONS(1167), - [anon_sym_usize] = ACTIONS(1167), - [anon_sym_f32] = ACTIONS(1167), - [anon_sym_f64] = ACTIONS(1167), - [anon_sym_c_char] = ACTIONS(1167), - [anon_sym_c_schar] = ACTIONS(1167), - [anon_sym_c_uchar] = ACTIONS(1167), - [anon_sym_c_short] = ACTIONS(1167), - [anon_sym_c_ushort] = ACTIONS(1167), - [anon_sym_c_int] = ACTIONS(1167), - [anon_sym_c_uint] = ACTIONS(1167), - [anon_sym_c_long] = ACTIONS(1167), - [anon_sym_c_ulong] = ACTIONS(1167), - [anon_sym_c_longlong] = ACTIONS(1167), - [anon_sym_c_ulonglong] = ACTIONS(1167), - [anon_sym_c_float] = ACTIONS(1167), - [anon_sym_c_double] = ACTIONS(1167), - [anon_sym_c_longdouble] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_COLON] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_defer] = ACTIONS(1167), - [anon_sym_errdefer] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_expand] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1167), - [anon_sym_DOT_DOT] = ACTIONS(1167), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), - [anon_sym_orelse] = ACTIONS(1167), - [anon_sym_catch] = ACTIONS(1167), - [anon_sym_or] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_EQ_EQ] = ACTIONS(1165), - [anon_sym_BANG_EQ] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LT_EQ] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1167), - [anon_sym_GT_EQ] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_xor] = ACTIONS(1167), - [anon_sym_LT_LT] = ACTIONS(1167), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_LT_LT_PIPE] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_try] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1167), - [anon_sym_CARET] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_false] = ACTIONS(1167), - [sym_none] = ACTIONS(1167), - [sym_undefined] = ACTIONS(1167), - [sym_sink] = ACTIONS(1167), - [sym_integer] = ACTIONS(1167), - [sym_float] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_multiline_string] = ACTIONS(1165), - [sym_character] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1165), - }, - [STATE(624)] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_COLON_COLON] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_test] = ACTIONS(1183), - [anon_sym_hide] = ACTIONS(1183), - [anon_sym_func] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_QMARK] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1183), - [anon_sym_anyopaque] = ACTIONS(1183), - [anon_sym_bool] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_uint] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_range] = ACTIONS(1183), - [anon_sym_i8] = ACTIONS(1183), - [anon_sym_i16] = ACTIONS(1183), - [anon_sym_i32] = ACTIONS(1183), - [anon_sym_i64] = ACTIONS(1183), - [anon_sym_u8] = ACTIONS(1183), - [anon_sym_u16] = ACTIONS(1183), - [anon_sym_u32] = ACTIONS(1183), - [anon_sym_u64] = ACTIONS(1183), - [anon_sym_isize] = ACTIONS(1183), - [anon_sym_usize] = ACTIONS(1183), - [anon_sym_f32] = ACTIONS(1183), - [anon_sym_f64] = ACTIONS(1183), - [anon_sym_c_char] = ACTIONS(1183), - [anon_sym_c_schar] = ACTIONS(1183), - [anon_sym_c_uchar] = ACTIONS(1183), - [anon_sym_c_short] = ACTIONS(1183), - [anon_sym_c_ushort] = ACTIONS(1183), - [anon_sym_c_int] = ACTIONS(1183), - [anon_sym_c_uint] = ACTIONS(1183), - [anon_sym_c_long] = ACTIONS(1183), - [anon_sym_c_ulong] = ACTIONS(1183), - [anon_sym_c_longlong] = ACTIONS(1183), - [anon_sym_c_ulonglong] = ACTIONS(1183), - [anon_sym_c_float] = ACTIONS(1183), - [anon_sym_c_double] = ACTIONS(1183), - [anon_sym_c_longdouble] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_defer] = ACTIONS(1183), - [anon_sym_errdefer] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_expand] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_match] = ACTIONS(1183), - [anon_sym_DOT_DOT] = ACTIONS(1183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_orelse] = ACTIONS(1183), - [anon_sym_catch] = ACTIONS(1183), - [anon_sym_or] = ACTIONS(1183), - [anon_sym_and] = ACTIONS(1183), - [anon_sym_EQ_EQ] = ACTIONS(1181), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [anon_sym_LT] = ACTIONS(1183), - [anon_sym_LT_EQ] = ACTIONS(1181), - [anon_sym_GT] = ACTIONS(1183), - [anon_sym_GT_EQ] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_xor] = ACTIONS(1183), - [anon_sym_LT_LT] = ACTIONS(1183), - [anon_sym_GT_GT] = ACTIONS(1181), - [anon_sym_LT_LT_PIPE] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_DOT] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1183), - [anon_sym_false] = ACTIONS(1183), - [sym_none] = ACTIONS(1183), - [sym_undefined] = ACTIONS(1183), - [sym_sink] = ACTIONS(1183), - [sym_integer] = ACTIONS(1183), - [sym_float] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_multiline_string] = ACTIONS(1181), - [sym_character] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1181), - }, - [STATE(625)] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1237), - [anon_sym_import] = ACTIONS(1239), - [anon_sym_test] = ACTIONS(1239), - [anon_sym_hide] = ACTIONS(1239), - [anon_sym_func] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_EQ] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1239), - [anon_sym_anyopaque] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_int] = ACTIONS(1239), - [anon_sym_uint] = ACTIONS(1239), - [anon_sym_float] = ACTIONS(1239), - [anon_sym_range] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_c_char] = ACTIONS(1239), - [anon_sym_c_schar] = ACTIONS(1239), - [anon_sym_c_uchar] = ACTIONS(1239), - [anon_sym_c_short] = ACTIONS(1239), - [anon_sym_c_ushort] = ACTIONS(1239), - [anon_sym_c_int] = ACTIONS(1239), - [anon_sym_c_uint] = ACTIONS(1239), - [anon_sym_c_long] = ACTIONS(1239), - [anon_sym_c_ulong] = ACTIONS(1239), - [anon_sym_c_longlong] = ACTIONS(1239), - [anon_sym_c_ulonglong] = ACTIONS(1239), - [anon_sym_c_float] = ACTIONS(1239), - [anon_sym_c_double] = ACTIONS(1239), - [anon_sym_c_longdouble] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_COLON] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_defer] = ACTIONS(1239), - [anon_sym_errdefer] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_expand] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), - [anon_sym_orelse] = ACTIONS(1239), - [anon_sym_catch] = ACTIONS(1239), - [anon_sym_or] = ACTIONS(1239), - [anon_sym_and] = ACTIONS(1239), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_xor] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_LT_LT_PIPE] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [sym_none] = ACTIONS(1239), - [sym_undefined] = ACTIONS(1239), - [sym_sink] = ACTIONS(1239), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_multiline_string] = ACTIONS(1237), - [sym_character] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1237), - }, - [STATE(626)] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_import] = ACTIONS(1243), - [anon_sym_test] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_func] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_EQ] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_QMARK] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_anyopaque] = ACTIONS(1243), - [anon_sym_bool] = ACTIONS(1243), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_uint] = ACTIONS(1243), - [anon_sym_float] = ACTIONS(1243), - [anon_sym_range] = ACTIONS(1243), - [anon_sym_i8] = ACTIONS(1243), - [anon_sym_i16] = ACTIONS(1243), - [anon_sym_i32] = ACTIONS(1243), - [anon_sym_i64] = ACTIONS(1243), - [anon_sym_u8] = ACTIONS(1243), - [anon_sym_u16] = ACTIONS(1243), - [anon_sym_u32] = ACTIONS(1243), - [anon_sym_u64] = ACTIONS(1243), - [anon_sym_isize] = ACTIONS(1243), - [anon_sym_usize] = ACTIONS(1243), - [anon_sym_f32] = ACTIONS(1243), - [anon_sym_f64] = ACTIONS(1243), - [anon_sym_c_char] = ACTIONS(1243), - [anon_sym_c_schar] = ACTIONS(1243), - [anon_sym_c_uchar] = ACTIONS(1243), - [anon_sym_c_short] = ACTIONS(1243), - [anon_sym_c_ushort] = ACTIONS(1243), - [anon_sym_c_int] = ACTIONS(1243), - [anon_sym_c_uint] = ACTIONS(1243), - [anon_sym_c_long] = ACTIONS(1243), - [anon_sym_c_ulong] = ACTIONS(1243), - [anon_sym_c_longlong] = ACTIONS(1243), - [anon_sym_c_ulonglong] = ACTIONS(1243), - [anon_sym_c_float] = ACTIONS(1243), - [anon_sym_c_double] = ACTIONS(1243), - [anon_sym_c_longdouble] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_COLON] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_defer] = ACTIONS(1243), - [anon_sym_errdefer] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_expand] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), - [anon_sym_orelse] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1241), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_LT_LT] = ACTIONS(1243), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT_PIPE] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [sym_none] = ACTIONS(1243), - [sym_undefined] = ACTIONS(1243), - [sym_sink] = ACTIONS(1243), - [sym_integer] = ACTIONS(1243), - [sym_float] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_multiline_string] = ACTIONS(1241), - [sym_character] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1241), - }, - [STATE(627)] = { - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_identifier] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1067), - [anon_sym_test] = ACTIONS(1067), - [anon_sym_hide] = ACTIONS(1067), - [anon_sym_func] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_struct] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_void] = ACTIONS(1067), - [anon_sym_anyopaque] = ACTIONS(1067), - [anon_sym_bool] = ACTIONS(1067), - [anon_sym_int] = ACTIONS(1067), - [anon_sym_uint] = ACTIONS(1067), - [anon_sym_float] = ACTIONS(1067), - [anon_sym_range] = ACTIONS(1067), - [anon_sym_i8] = ACTIONS(1067), - [anon_sym_i16] = ACTIONS(1067), - [anon_sym_i32] = ACTIONS(1067), - [anon_sym_i64] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(1067), - [anon_sym_u16] = ACTIONS(1067), - [anon_sym_u32] = ACTIONS(1067), - [anon_sym_u64] = ACTIONS(1067), - [anon_sym_isize] = ACTIONS(1067), - [anon_sym_usize] = ACTIONS(1067), - [anon_sym_f32] = ACTIONS(1067), - [anon_sym_f64] = ACTIONS(1067), - [anon_sym_c_char] = ACTIONS(1067), - [anon_sym_c_schar] = ACTIONS(1067), - [anon_sym_c_uchar] = ACTIONS(1067), - [anon_sym_c_short] = ACTIONS(1067), - [anon_sym_c_ushort] = ACTIONS(1067), - [anon_sym_c_int] = ACTIONS(1067), - [anon_sym_c_uint] = ACTIONS(1067), - [anon_sym_c_long] = ACTIONS(1067), - [anon_sym_c_ulong] = ACTIONS(1067), - [anon_sym_c_longlong] = ACTIONS(1067), - [anon_sym_c_ulonglong] = ACTIONS(1067), - [anon_sym_c_float] = ACTIONS(1067), - [anon_sym_c_double] = ACTIONS(1067), - [anon_sym_c_longdouble] = ACTIONS(1067), - [anon_sym_return] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1067), - [anon_sym_COLON] = ACTIONS(1067), - [anon_sym_break] = ACTIONS(1067), - [anon_sym_continue] = ACTIONS(1067), - [anon_sym_defer] = ACTIONS(1067), - [anon_sym_errdefer] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1067), - [anon_sym_else] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_expand] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_orelse] = ACTIONS(1067), - [anon_sym_catch] = ACTIONS(1067), - [anon_sym_or] = ACTIONS(1067), - [anon_sym_and] = ACTIONS(1067), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1067), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_LT_LT_PIPE] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1067), - [anon_sym_false] = ACTIONS(1067), - [sym_none] = ACTIONS(1067), - [sym_undefined] = ACTIONS(1067), - [sym_sink] = ACTIONS(1067), - [sym_integer] = ACTIONS(1067), - [sym_float] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_multiline_string] = ACTIONS(1065), - [sym_character] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1065), - }, - [STATE(628)] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1187), - [anon_sym_COLON_COLON] = ACTIONS(1185), - [anon_sym_import] = ACTIONS(1187), - [anon_sym_test] = ACTIONS(1187), - [anon_sym_hide] = ACTIONS(1187), - [anon_sym_func] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DOLLAR] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1187), - [anon_sym_anyopaque] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_int] = ACTIONS(1187), - [anon_sym_uint] = ACTIONS(1187), - [anon_sym_float] = ACTIONS(1187), - [anon_sym_range] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_c_char] = ACTIONS(1187), - [anon_sym_c_schar] = ACTIONS(1187), - [anon_sym_c_uchar] = ACTIONS(1187), - [anon_sym_c_short] = ACTIONS(1187), - [anon_sym_c_ushort] = ACTIONS(1187), - [anon_sym_c_int] = ACTIONS(1187), - [anon_sym_c_uint] = ACTIONS(1187), - [anon_sym_c_long] = ACTIONS(1187), - [anon_sym_c_ulong] = ACTIONS(1187), - [anon_sym_c_longlong] = ACTIONS(1187), - [anon_sym_c_ulonglong] = ACTIONS(1187), - [anon_sym_c_float] = ACTIONS(1187), - [anon_sym_c_double] = ACTIONS(1187), - [anon_sym_c_longdouble] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_COLON] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_defer] = ACTIONS(1187), - [anon_sym_errdefer] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_expand] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_match] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), - [anon_sym_orelse] = ACTIONS(1187), - [anon_sym_catch] = ACTIONS(1187), - [anon_sym_or] = ACTIONS(1187), - [anon_sym_and] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_xor] = ACTIONS(1187), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT_PIPE] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_try] = ACTIONS(1187), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_true] = ACTIONS(1187), - [anon_sym_false] = ACTIONS(1187), - [sym_none] = ACTIONS(1187), - [sym_undefined] = ACTIONS(1187), - [sym_sink] = ACTIONS(1187), - [sym_integer] = ACTIONS(1187), - [sym_float] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_multiline_string] = ACTIONS(1185), - [sym_character] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1185), - }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(1073), - [anon_sym_import] = ACTIONS(1075), - [anon_sym_test] = ACTIONS(1075), - [anon_sym_hide] = ACTIONS(1075), - [anon_sym_func] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_DOLLAR] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_QMARK] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_void] = ACTIONS(1075), - [anon_sym_anyopaque] = ACTIONS(1075), - [anon_sym_bool] = ACTIONS(1075), - [anon_sym_int] = ACTIONS(1075), - [anon_sym_uint] = ACTIONS(1075), - [anon_sym_float] = ACTIONS(1075), - [anon_sym_range] = ACTIONS(1075), - [anon_sym_i8] = ACTIONS(1075), - [anon_sym_i16] = ACTIONS(1075), - [anon_sym_i32] = ACTIONS(1075), - [anon_sym_i64] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1075), - [anon_sym_u16] = ACTIONS(1075), - [anon_sym_u32] = ACTIONS(1075), - [anon_sym_u64] = ACTIONS(1075), - [anon_sym_isize] = ACTIONS(1075), - [anon_sym_usize] = ACTIONS(1075), - [anon_sym_f32] = ACTIONS(1075), - [anon_sym_f64] = ACTIONS(1075), - [anon_sym_c_char] = ACTIONS(1075), - [anon_sym_c_schar] = ACTIONS(1075), - [anon_sym_c_uchar] = ACTIONS(1075), - [anon_sym_c_short] = ACTIONS(1075), - [anon_sym_c_ushort] = ACTIONS(1075), - [anon_sym_c_int] = ACTIONS(1075), - [anon_sym_c_uint] = ACTIONS(1075), - [anon_sym_c_long] = ACTIONS(1075), - [anon_sym_c_ulong] = ACTIONS(1075), - [anon_sym_c_longlong] = ACTIONS(1075), - [anon_sym_c_ulonglong] = ACTIONS(1075), - [anon_sym_c_float] = ACTIONS(1075), - [anon_sym_c_double] = ACTIONS(1075), - [anon_sym_c_longdouble] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_COLON] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_defer] = ACTIONS(1075), - [anon_sym_errdefer] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_expand] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_match] = ACTIONS(1075), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), - [anon_sym_orelse] = ACTIONS(1075), - [anon_sym_catch] = ACTIONS(1075), - [anon_sym_or] = ACTIONS(1075), - [anon_sym_and] = ACTIONS(1075), - [anon_sym_EQ_EQ] = ACTIONS(1073), - [anon_sym_BANG_EQ] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_xor] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1075), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT_LT_PIPE] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_SLASH] = ACTIONS(1073), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_try] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1073), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [sym_none] = ACTIONS(1075), - [sym_undefined] = ACTIONS(1075), - [sym_sink] = ACTIONS(1075), - [sym_integer] = ACTIONS(1075), - [sym_float] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [sym_multiline_string] = ACTIONS(1073), - [sym_character] = ACTIONS(1073), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1073), - }, - [STATE(630)] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1211), - [anon_sym_COLON_COLON] = ACTIONS(1209), - [anon_sym_import] = ACTIONS(1211), - [anon_sym_test] = ACTIONS(1211), - [anon_sym_hide] = ACTIONS(1211), - [anon_sym_func] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_QMARK] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1211), - [anon_sym_anyopaque] = ACTIONS(1211), - [anon_sym_bool] = ACTIONS(1211), - [anon_sym_int] = ACTIONS(1211), - [anon_sym_uint] = ACTIONS(1211), - [anon_sym_float] = ACTIONS(1211), - [anon_sym_range] = ACTIONS(1211), - [anon_sym_i8] = ACTIONS(1211), - [anon_sym_i16] = ACTIONS(1211), - [anon_sym_i32] = ACTIONS(1211), - [anon_sym_i64] = ACTIONS(1211), - [anon_sym_u8] = ACTIONS(1211), - [anon_sym_u16] = ACTIONS(1211), - [anon_sym_u32] = ACTIONS(1211), - [anon_sym_u64] = ACTIONS(1211), - [anon_sym_isize] = ACTIONS(1211), - [anon_sym_usize] = ACTIONS(1211), - [anon_sym_f32] = ACTIONS(1211), - [anon_sym_f64] = ACTIONS(1211), - [anon_sym_c_char] = ACTIONS(1211), - [anon_sym_c_schar] = ACTIONS(1211), - [anon_sym_c_uchar] = ACTIONS(1211), - [anon_sym_c_short] = ACTIONS(1211), - [anon_sym_c_ushort] = ACTIONS(1211), - [anon_sym_c_int] = ACTIONS(1211), - [anon_sym_c_uint] = ACTIONS(1211), - [anon_sym_c_long] = ACTIONS(1211), - [anon_sym_c_ulong] = ACTIONS(1211), - [anon_sym_c_longlong] = ACTIONS(1211), - [anon_sym_c_ulonglong] = ACTIONS(1211), - [anon_sym_c_float] = ACTIONS(1211), - [anon_sym_c_double] = ACTIONS(1211), - [anon_sym_c_longdouble] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_defer] = ACTIONS(1211), - [anon_sym_errdefer] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_expand] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), - [anon_sym_orelse] = ACTIONS(1211), - [anon_sym_catch] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_xor] = ACTIONS(1211), - [anon_sym_LT_LT] = ACTIONS(1211), - [anon_sym_GT_GT] = ACTIONS(1209), - [anon_sym_LT_LT_PIPE] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_try] = ACTIONS(1211), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1209), - [anon_sym_true] = ACTIONS(1211), - [anon_sym_false] = ACTIONS(1211), - [sym_none] = ACTIONS(1211), - [sym_undefined] = ACTIONS(1211), - [sym_sink] = ACTIONS(1211), - [sym_integer] = ACTIONS(1211), - [sym_float] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_multiline_string] = ACTIONS(1209), - [sym_character] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1209), - }, - [STATE(631)] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [anon_sym_COLON_COLON] = ACTIONS(1111), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_test] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_func] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_struct] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_void] = ACTIONS(1113), - [anon_sym_anyopaque] = ACTIONS(1113), - [anon_sym_bool] = ACTIONS(1113), - [anon_sym_int] = ACTIONS(1113), - [anon_sym_uint] = ACTIONS(1113), - [anon_sym_float] = ACTIONS(1113), - [anon_sym_range] = ACTIONS(1113), - [anon_sym_i8] = ACTIONS(1113), - [anon_sym_i16] = ACTIONS(1113), - [anon_sym_i32] = ACTIONS(1113), - [anon_sym_i64] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1113), - [anon_sym_u16] = ACTIONS(1113), - [anon_sym_u32] = ACTIONS(1113), - [anon_sym_u64] = ACTIONS(1113), - [anon_sym_isize] = ACTIONS(1113), - [anon_sym_usize] = ACTIONS(1113), - [anon_sym_f32] = ACTIONS(1113), - [anon_sym_f64] = ACTIONS(1113), - [anon_sym_c_char] = ACTIONS(1113), - [anon_sym_c_schar] = ACTIONS(1113), - [anon_sym_c_uchar] = ACTIONS(1113), - [anon_sym_c_short] = ACTIONS(1113), - [anon_sym_c_ushort] = ACTIONS(1113), - [anon_sym_c_int] = ACTIONS(1113), - [anon_sym_c_uint] = ACTIONS(1113), - [anon_sym_c_long] = ACTIONS(1113), - [anon_sym_c_ulong] = ACTIONS(1113), - [anon_sym_c_longlong] = ACTIONS(1113), - [anon_sym_c_ulonglong] = ACTIONS(1113), - [anon_sym_c_float] = ACTIONS(1113), - [anon_sym_c_double] = ACTIONS(1113), - [anon_sym_c_longdouble] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_defer] = ACTIONS(1113), - [anon_sym_errdefer] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_expand] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), - [anon_sym_orelse] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1111), - [anon_sym_LT_LT_PIPE] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [sym_none] = ACTIONS(1113), - [sym_undefined] = ACTIONS(1113), - [sym_sink] = ACTIONS(1113), - [sym_integer] = ACTIONS(1113), - [sym_float] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_multiline_string] = ACTIONS(1111), - [sym_character] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1111), - }, - [STATE(632)] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [anon_sym_COLON_COLON] = ACTIONS(1115), - [anon_sym_import] = ACTIONS(1117), - [anon_sym_test] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_func] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_struct] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1115), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_void] = ACTIONS(1117), - [anon_sym_anyopaque] = ACTIONS(1117), - [anon_sym_bool] = ACTIONS(1117), - [anon_sym_int] = ACTIONS(1117), - [anon_sym_uint] = ACTIONS(1117), - [anon_sym_float] = ACTIONS(1117), - [anon_sym_range] = ACTIONS(1117), - [anon_sym_i8] = ACTIONS(1117), - [anon_sym_i16] = ACTIONS(1117), - [anon_sym_i32] = ACTIONS(1117), - [anon_sym_i64] = ACTIONS(1117), - [anon_sym_u8] = ACTIONS(1117), - [anon_sym_u16] = ACTIONS(1117), - [anon_sym_u32] = ACTIONS(1117), - [anon_sym_u64] = ACTIONS(1117), - [anon_sym_isize] = ACTIONS(1117), - [anon_sym_usize] = ACTIONS(1117), - [anon_sym_f32] = ACTIONS(1117), - [anon_sym_f64] = ACTIONS(1117), - [anon_sym_c_char] = ACTIONS(1117), - [anon_sym_c_schar] = ACTIONS(1117), - [anon_sym_c_uchar] = ACTIONS(1117), - [anon_sym_c_short] = ACTIONS(1117), - [anon_sym_c_ushort] = ACTIONS(1117), - [anon_sym_c_int] = ACTIONS(1117), - [anon_sym_c_uint] = ACTIONS(1117), - [anon_sym_c_long] = ACTIONS(1117), - [anon_sym_c_ulong] = ACTIONS(1117), - [anon_sym_c_longlong] = ACTIONS(1117), - [anon_sym_c_ulonglong] = ACTIONS(1117), - [anon_sym_c_float] = ACTIONS(1117), - [anon_sym_c_double] = ACTIONS(1117), - [anon_sym_c_longdouble] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_defer] = ACTIONS(1117), - [anon_sym_errdefer] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_expand] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), - [anon_sym_orelse] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1115), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1115), - [anon_sym_LT_LT_PIPE] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [sym_none] = ACTIONS(1117), - [sym_undefined] = ACTIONS(1117), - [sym_sink] = ACTIONS(1117), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym_multiline_string] = ACTIONS(1115), - [sym_character] = ACTIONS(1115), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1115), - }, - [STATE(633)] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_COLON_COLON] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(1163), - [anon_sym_test] = ACTIONS(1163), - [anon_sym_hide] = ACTIONS(1163), - [anon_sym_func] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_EQ] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_void] = ACTIONS(1163), - [anon_sym_anyopaque] = ACTIONS(1163), - [anon_sym_bool] = ACTIONS(1163), - [anon_sym_int] = ACTIONS(1163), - [anon_sym_uint] = ACTIONS(1163), - [anon_sym_float] = ACTIONS(1163), - [anon_sym_range] = ACTIONS(1163), - [anon_sym_i8] = ACTIONS(1163), - [anon_sym_i16] = ACTIONS(1163), - [anon_sym_i32] = ACTIONS(1163), - [anon_sym_i64] = ACTIONS(1163), - [anon_sym_u8] = ACTIONS(1163), - [anon_sym_u16] = ACTIONS(1163), - [anon_sym_u32] = ACTIONS(1163), - [anon_sym_u64] = ACTIONS(1163), - [anon_sym_isize] = ACTIONS(1163), - [anon_sym_usize] = ACTIONS(1163), - [anon_sym_f32] = ACTIONS(1163), - [anon_sym_f64] = ACTIONS(1163), - [anon_sym_c_char] = ACTIONS(1163), - [anon_sym_c_schar] = ACTIONS(1163), - [anon_sym_c_uchar] = ACTIONS(1163), - [anon_sym_c_short] = ACTIONS(1163), - [anon_sym_c_ushort] = ACTIONS(1163), - [anon_sym_c_int] = ACTIONS(1163), - [anon_sym_c_uint] = ACTIONS(1163), - [anon_sym_c_long] = ACTIONS(1163), - [anon_sym_c_ulong] = ACTIONS(1163), - [anon_sym_c_longlong] = ACTIONS(1163), - [anon_sym_c_ulonglong] = ACTIONS(1163), - [anon_sym_c_float] = ACTIONS(1163), - [anon_sym_c_double] = ACTIONS(1163), - [anon_sym_c_longdouble] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_COLON] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_defer] = ACTIONS(1163), - [anon_sym_errdefer] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_expand] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_match] = ACTIONS(1163), - [anon_sym_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1161), - [anon_sym_orelse] = ACTIONS(1163), - [anon_sym_catch] = ACTIONS(1163), - [anon_sym_or] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1161), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_xor] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1161), - [anon_sym_LT_LT_PIPE] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(1163), - [anon_sym_false] = ACTIONS(1163), - [sym_none] = ACTIONS(1163), - [sym_undefined] = ACTIONS(1163), - [sym_sink] = ACTIONS(1163), - [sym_integer] = ACTIONS(1163), - [sym_float] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_multiline_string] = ACTIONS(1161), - [sym_character] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1161), - }, - [STATE(634)] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_identifier] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1079), - [anon_sym_test] = ACTIONS(1079), - [anon_sym_hide] = ACTIONS(1079), - [anon_sym_func] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_struct] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_void] = ACTIONS(1079), - [anon_sym_anyopaque] = ACTIONS(1079), - [anon_sym_bool] = ACTIONS(1079), - [anon_sym_int] = ACTIONS(1079), - [anon_sym_uint] = ACTIONS(1079), - [anon_sym_float] = ACTIONS(1079), - [anon_sym_range] = ACTIONS(1079), - [anon_sym_i8] = ACTIONS(1079), - [anon_sym_i16] = ACTIONS(1079), - [anon_sym_i32] = ACTIONS(1079), - [anon_sym_i64] = ACTIONS(1079), - [anon_sym_u8] = ACTIONS(1079), - [anon_sym_u16] = ACTIONS(1079), - [anon_sym_u32] = ACTIONS(1079), - [anon_sym_u64] = ACTIONS(1079), - [anon_sym_isize] = ACTIONS(1079), - [anon_sym_usize] = ACTIONS(1079), - [anon_sym_f32] = ACTIONS(1079), - [anon_sym_f64] = ACTIONS(1079), - [anon_sym_c_char] = ACTIONS(1079), - [anon_sym_c_schar] = ACTIONS(1079), - [anon_sym_c_uchar] = ACTIONS(1079), - [anon_sym_c_short] = ACTIONS(1079), - [anon_sym_c_ushort] = ACTIONS(1079), - [anon_sym_c_int] = ACTIONS(1079), - [anon_sym_c_uint] = ACTIONS(1079), - [anon_sym_c_long] = ACTIONS(1079), - [anon_sym_c_ulong] = ACTIONS(1079), - [anon_sym_c_longlong] = ACTIONS(1079), - [anon_sym_c_ulonglong] = ACTIONS(1079), - [anon_sym_c_float] = ACTIONS(1079), - [anon_sym_c_double] = ACTIONS(1079), - [anon_sym_c_longdouble] = ACTIONS(1079), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_COLON] = ACTIONS(1079), - [anon_sym_break] = ACTIONS(1079), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_defer] = ACTIONS(1079), - [anon_sym_errdefer] = ACTIONS(1079), - [anon_sym_if] = ACTIONS(1079), - [anon_sym_else] = ACTIONS(1079), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_expand] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1079), - [anon_sym_match] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1077), - [anon_sym_orelse] = ACTIONS(1079), - [anon_sym_catch] = ACTIONS(1079), - [anon_sym_or] = ACTIONS(1079), - [anon_sym_and] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1077), - [anon_sym_BANG_EQ] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_xor] = ACTIONS(1079), - [anon_sym_LT_LT] = ACTIONS(1079), - [anon_sym_GT_GT] = ACTIONS(1077), - [anon_sym_LT_LT_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1079), - [anon_sym_DOT] = ACTIONS(1079), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_true] = ACTIONS(1079), - [anon_sym_false] = ACTIONS(1079), - [sym_none] = ACTIONS(1079), - [sym_undefined] = ACTIONS(1079), - [sym_sink] = ACTIONS(1079), - [sym_integer] = ACTIONS(1079), - [sym_float] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [sym_multiline_string] = ACTIONS(1077), - [sym_character] = ACTIONS(1077), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1077), - }, - [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_COLON_COLON] = ACTIONS(1213), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_test] = ACTIONS(1215), - [anon_sym_hide] = ACTIONS(1215), - [anon_sym_func] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_struct] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_anyopaque] = ACTIONS(1215), - [anon_sym_bool] = ACTIONS(1215), - [anon_sym_int] = ACTIONS(1215), - [anon_sym_uint] = ACTIONS(1215), - [anon_sym_float] = ACTIONS(1215), - [anon_sym_range] = ACTIONS(1215), - [anon_sym_i8] = ACTIONS(1215), - [anon_sym_i16] = ACTIONS(1215), - [anon_sym_i32] = ACTIONS(1215), - [anon_sym_i64] = ACTIONS(1215), - [anon_sym_u8] = ACTIONS(1215), - [anon_sym_u16] = ACTIONS(1215), - [anon_sym_u32] = ACTIONS(1215), - [anon_sym_u64] = ACTIONS(1215), - [anon_sym_isize] = ACTIONS(1215), - [anon_sym_usize] = ACTIONS(1215), - [anon_sym_f32] = ACTIONS(1215), - [anon_sym_f64] = ACTIONS(1215), - [anon_sym_c_char] = ACTIONS(1215), - [anon_sym_c_schar] = ACTIONS(1215), - [anon_sym_c_uchar] = ACTIONS(1215), - [anon_sym_c_short] = ACTIONS(1215), - [anon_sym_c_ushort] = ACTIONS(1215), - [anon_sym_c_int] = ACTIONS(1215), - [anon_sym_c_uint] = ACTIONS(1215), - [anon_sym_c_long] = ACTIONS(1215), - [anon_sym_c_ulong] = ACTIONS(1215), - [anon_sym_c_longlong] = ACTIONS(1215), - [anon_sym_c_ulonglong] = ACTIONS(1215), - [anon_sym_c_float] = ACTIONS(1215), - [anon_sym_c_double] = ACTIONS(1215), - [anon_sym_c_longdouble] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_COLON] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_defer] = ACTIONS(1215), - [anon_sym_errdefer] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_expand] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), - [anon_sym_orelse] = ACTIONS(1215), - [anon_sym_catch] = ACTIONS(1215), - [anon_sym_or] = ACTIONS(1215), - [anon_sym_and] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1213), - [anon_sym_BANG_EQ] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_xor] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1213), - [anon_sym_LT_LT_PIPE] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), - [sym_none] = ACTIONS(1215), - [sym_undefined] = ACTIONS(1215), - [sym_sink] = ACTIONS(1215), - [sym_integer] = ACTIONS(1215), - [sym_float] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_multiline_string] = ACTIONS(1213), - [sym_character] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1213), - }, - [STATE(636)] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(1247), - [anon_sym_test] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_func] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_void] = ACTIONS(1247), - [anon_sym_anyopaque] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_int] = ACTIONS(1247), - [anon_sym_uint] = ACTIONS(1247), - [anon_sym_float] = ACTIONS(1247), - [anon_sym_range] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_c_char] = ACTIONS(1247), - [anon_sym_c_schar] = ACTIONS(1247), - [anon_sym_c_uchar] = ACTIONS(1247), - [anon_sym_c_short] = ACTIONS(1247), - [anon_sym_c_ushort] = ACTIONS(1247), - [anon_sym_c_int] = ACTIONS(1247), - [anon_sym_c_uint] = ACTIONS(1247), - [anon_sym_c_long] = ACTIONS(1247), - [anon_sym_c_ulong] = ACTIONS(1247), - [anon_sym_c_longlong] = ACTIONS(1247), - [anon_sym_c_ulonglong] = ACTIONS(1247), - [anon_sym_c_float] = ACTIONS(1247), - [anon_sym_c_double] = ACTIONS(1247), - [anon_sym_c_longdouble] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(1247), - [anon_sym_COLON] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_defer] = ACTIONS(1247), - [anon_sym_errdefer] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_expand] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [anon_sym_orelse] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT_PIPE] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [sym_none] = ACTIONS(1247), - [sym_undefined] = ACTIONS(1247), - [sym_sink] = ACTIONS(1247), - [sym_integer] = ACTIONS(1247), - [sym_float] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_multiline_string] = ACTIONS(1245), - [sym_character] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1245), - }, - [STATE(637)] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_import] = ACTIONS(1251), - [anon_sym_test] = ACTIONS(1251), - [anon_sym_hide] = ACTIONS(1251), - [anon_sym_func] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_RPAREN] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_void] = ACTIONS(1251), - [anon_sym_anyopaque] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_int] = ACTIONS(1251), - [anon_sym_uint] = ACTIONS(1251), - [anon_sym_float] = ACTIONS(1251), - [anon_sym_range] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_c_char] = ACTIONS(1251), - [anon_sym_c_schar] = ACTIONS(1251), - [anon_sym_c_uchar] = ACTIONS(1251), - [anon_sym_c_short] = ACTIONS(1251), - [anon_sym_c_ushort] = ACTIONS(1251), - [anon_sym_c_int] = ACTIONS(1251), - [anon_sym_c_uint] = ACTIONS(1251), - [anon_sym_c_long] = ACTIONS(1251), - [anon_sym_c_ulong] = ACTIONS(1251), - [anon_sym_c_longlong] = ACTIONS(1251), - [anon_sym_c_ulonglong] = ACTIONS(1251), - [anon_sym_c_float] = ACTIONS(1251), - [anon_sym_c_double] = ACTIONS(1251), - [anon_sym_c_longdouble] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_yield] = ACTIONS(1251), - [anon_sym_COLON] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_defer] = ACTIONS(1251), - [anon_sym_errdefer] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_expand] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), - [anon_sym_orelse] = ACTIONS(1251), - [anon_sym_catch] = ACTIONS(1251), - [anon_sym_or] = ACTIONS(1251), - [anon_sym_and] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_xor] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT_PIPE] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [sym_none] = ACTIONS(1251), - [sym_undefined] = ACTIONS(1251), - [sym_sink] = ACTIONS(1251), - [sym_integer] = ACTIONS(1251), - [sym_float] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_multiline_string] = ACTIONS(1249), - [sym_character] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1249), - }, - [STATE(638)] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(1255), - [anon_sym_test] = ACTIONS(1255), - [anon_sym_hide] = ACTIONS(1255), - [anon_sym_func] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1255), - [anon_sym_anyopaque] = ACTIONS(1255), - [anon_sym_bool] = ACTIONS(1255), - [anon_sym_int] = ACTIONS(1255), - [anon_sym_uint] = ACTIONS(1255), - [anon_sym_float] = ACTIONS(1255), - [anon_sym_range] = ACTIONS(1255), - [anon_sym_i8] = ACTIONS(1255), - [anon_sym_i16] = ACTIONS(1255), - [anon_sym_i32] = ACTIONS(1255), - [anon_sym_i64] = ACTIONS(1255), - [anon_sym_u8] = ACTIONS(1255), - [anon_sym_u16] = ACTIONS(1255), - [anon_sym_u32] = ACTIONS(1255), - [anon_sym_u64] = ACTIONS(1255), - [anon_sym_isize] = ACTIONS(1255), - [anon_sym_usize] = ACTIONS(1255), - [anon_sym_f32] = ACTIONS(1255), - [anon_sym_f64] = ACTIONS(1255), - [anon_sym_c_char] = ACTIONS(1255), - [anon_sym_c_schar] = ACTIONS(1255), - [anon_sym_c_uchar] = ACTIONS(1255), - [anon_sym_c_short] = ACTIONS(1255), - [anon_sym_c_ushort] = ACTIONS(1255), - [anon_sym_c_int] = ACTIONS(1255), - [anon_sym_c_uint] = ACTIONS(1255), - [anon_sym_c_long] = ACTIONS(1255), - [anon_sym_c_ulong] = ACTIONS(1255), - [anon_sym_c_longlong] = ACTIONS(1255), - [anon_sym_c_ulonglong] = ACTIONS(1255), - [anon_sym_c_float] = ACTIONS(1255), - [anon_sym_c_double] = ACTIONS(1255), - [anon_sym_c_longdouble] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_defer] = ACTIONS(1255), - [anon_sym_errdefer] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_expand] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_DOT_DOT] = ACTIONS(1255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_orelse] = ACTIONS(1255), - [anon_sym_catch] = ACTIONS(1255), - [anon_sym_or] = ACTIONS(1255), - [anon_sym_and] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_LT_LT_PIPE] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [sym_none] = ACTIONS(1255), - [sym_undefined] = ACTIONS(1255), - [sym_sink] = ACTIONS(1255), - [sym_integer] = ACTIONS(1255), - [sym_float] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_multiline_string] = ACTIONS(1253), - [sym_character] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1253), - }, - [STATE(639)] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(1103), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_test] = ACTIONS(1105), - [anon_sym_hide] = ACTIONS(1105), - [anon_sym_func] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_anyopaque] = ACTIONS(1105), - [anon_sym_bool] = ACTIONS(1105), - [anon_sym_int] = ACTIONS(1105), - [anon_sym_uint] = ACTIONS(1105), - [anon_sym_float] = ACTIONS(1105), - [anon_sym_range] = ACTIONS(1105), - [anon_sym_i8] = ACTIONS(1105), - [anon_sym_i16] = ACTIONS(1105), - [anon_sym_i32] = ACTIONS(1105), - [anon_sym_i64] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1105), - [anon_sym_u16] = ACTIONS(1105), - [anon_sym_u32] = ACTIONS(1105), - [anon_sym_u64] = ACTIONS(1105), - [anon_sym_isize] = ACTIONS(1105), - [anon_sym_usize] = ACTIONS(1105), - [anon_sym_f32] = ACTIONS(1105), - [anon_sym_f64] = ACTIONS(1105), - [anon_sym_c_char] = ACTIONS(1105), - [anon_sym_c_schar] = ACTIONS(1105), - [anon_sym_c_uchar] = ACTIONS(1105), - [anon_sym_c_short] = ACTIONS(1105), - [anon_sym_c_ushort] = ACTIONS(1105), - [anon_sym_c_int] = ACTIONS(1105), - [anon_sym_c_uint] = ACTIONS(1105), - [anon_sym_c_long] = ACTIONS(1105), - [anon_sym_c_ulong] = ACTIONS(1105), - [anon_sym_c_longlong] = ACTIONS(1105), - [anon_sym_c_ulonglong] = ACTIONS(1105), - [anon_sym_c_float] = ACTIONS(1105), - [anon_sym_c_double] = ACTIONS(1105), - [anon_sym_c_longdouble] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_defer] = ACTIONS(1105), - [anon_sym_errdefer] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_expand] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_match] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), - [anon_sym_orelse] = ACTIONS(1105), - [anon_sym_catch] = ACTIONS(1105), - [anon_sym_or] = ACTIONS(1105), - [anon_sym_and] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1103), - [anon_sym_BANG_EQ] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_GT_EQ] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_xor] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_LT_LT_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_true] = ACTIONS(1105), - [anon_sym_false] = ACTIONS(1105), - [sym_none] = ACTIONS(1105), - [sym_undefined] = ACTIONS(1105), - [sym_sink] = ACTIONS(1105), - [sym_integer] = ACTIONS(1105), - [sym_float] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_multiline_string] = ACTIONS(1103), - [sym_character] = ACTIONS(1103), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1103), - }, - [STATE(640)] = { - [ts_builtin_sym_end] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_import] = ACTIONS(607), - [anon_sym_test] = ACTIONS(607), - [anon_sym_hide] = ACTIONS(607), - [anon_sym_func] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(605), - [anon_sym_void] = ACTIONS(607), - [anon_sym_anyopaque] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_int] = ACTIONS(607), - [anon_sym_uint] = ACTIONS(607), - [anon_sym_float] = ACTIONS(607), - [anon_sym_range] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_c_char] = ACTIONS(607), - [anon_sym_c_schar] = ACTIONS(607), - [anon_sym_c_uchar] = ACTIONS(607), - [anon_sym_c_short] = ACTIONS(607), - [anon_sym_c_ushort] = ACTIONS(607), - [anon_sym_c_int] = ACTIONS(607), - [anon_sym_c_uint] = ACTIONS(607), - [anon_sym_c_long] = ACTIONS(607), - [anon_sym_c_ulong] = ACTIONS(607), - [anon_sym_c_longlong] = ACTIONS(607), - [anon_sym_c_ulonglong] = ACTIONS(607), - [anon_sym_c_float] = ACTIONS(607), - [anon_sym_c_double] = ACTIONS(607), - [anon_sym_c_longdouble] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_errdefer] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_expand] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(605), - [anon_sym_orelse] = ACTIONS(607), - [anon_sym_catch] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_and] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_xor] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_LT_LT_PIPE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_try] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_true] = ACTIONS(607), - [anon_sym_false] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_undefined] = ACTIONS(607), - [sym_sink] = ACTIONS(607), - [sym_integer] = ACTIONS(607), - [sym_float] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_multiline_string] = ACTIONS(605), - [sym_character] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(605), - }, - [STATE(641)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), + [STATE(587)] = { + [sym_type] = STATE(615), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_defer] = ACTIONS(1713), - [anon_sym_errdefer] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(1713), + [anon_sym_func] = ACTIONS(1706), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_anyopaque] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_int] = ACTIONS(1723), + [anon_sym_uint] = ACTIONS(1723), + [anon_sym_float] = ACTIONS(1723), + [anon_sym_range] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_c_char] = ACTIONS(1723), + [anon_sym_c_schar] = ACTIONS(1723), + [anon_sym_c_uchar] = ACTIONS(1723), + [anon_sym_c_short] = ACTIONS(1723), + [anon_sym_c_ushort] = ACTIONS(1723), + [anon_sym_c_int] = ACTIONS(1723), + [anon_sym_c_uint] = ACTIONS(1723), + [anon_sym_c_long] = ACTIONS(1723), + [anon_sym_c_ulong] = ACTIONS(1723), + [anon_sym_c_longlong] = ACTIONS(1723), + [anon_sym_c_ulonglong] = ACTIONS(1723), + [anon_sym_c_float] = ACTIONS(1723), + [anon_sym_c_double] = ACTIONS(1723), + [anon_sym_c_longdouble] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_defer] = ACTIONS(289), + [anon_sym_errdefer] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_expand] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_try] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [sym_none] = ACTIONS(289), + [sym_undefined] = ACTIONS(289), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(289), + [sym_float] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_multiline_string] = ACTIONS(284), + [sym_character] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(588)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_defer] = ACTIONS(558), + [anon_sym_errdefer] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(589)] = { + [sym_struct_type] = STATE(2594), + [sym_c_struct_type] = STATE(2986), + [sym_distinct_type] = STATE(2986), + [sym_alias_type] = STATE(2986), + [sym_union_type] = STATE(2986), + [sym_enum_type] = STATE(2986), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2991), + [sym_labeled_block] = STATE(2991), + [sym_if_statement] = STATE(2991), + [sym_while_statement] = STATE(2991), + [sym_for_statement] = STATE(2991), + [sym_match_statement] = STATE(2991), + [sym__value] = STATE(2991), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_c_struct] = ACTIONS(1613), + [sym_opaque_type] = ACTIONS(1726), + [anon_sym_distinct] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), + [sym__newline] = ACTIONS(466), }, - [STATE(642)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_defer] = ACTIONS(1713), - [anon_sym_errdefer] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(643)] = { - [sym_argument_list] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_import] = ACTIONS(490), - [anon_sym_test] = ACTIONS(490), - [anon_sym_hide] = ACTIONS(490), - [anon_sym_func] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_DOLLAR] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(490), - [anon_sym_anyopaque] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_int] = ACTIONS(490), - [anon_sym_uint] = ACTIONS(490), - [anon_sym_float] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_c_char] = ACTIONS(490), - [anon_sym_c_schar] = ACTIONS(490), - [anon_sym_c_uchar] = ACTIONS(490), - [anon_sym_c_short] = ACTIONS(490), - [anon_sym_c_ushort] = ACTIONS(490), - [anon_sym_c_int] = ACTIONS(490), - [anon_sym_c_uint] = ACTIONS(490), - [anon_sym_c_long] = ACTIONS(490), - [anon_sym_c_ulong] = ACTIONS(490), - [anon_sym_c_longlong] = ACTIONS(490), - [anon_sym_c_ulonglong] = ACTIONS(490), - [anon_sym_c_float] = ACTIONS(490), - [anon_sym_c_double] = ACTIONS(490), - [anon_sym_c_longdouble] = ACTIONS(490), - [anon_sym_return] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_defer] = ACTIONS(490), - [anon_sym_errdefer] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_expand] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_orelse] = ACTIONS(490), - [anon_sym_catch] = ACTIONS(490), - [anon_sym_or] = ACTIONS(490), + [STATE(590)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), [anon_sym_and] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_xor] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_LT_LT_PIPE] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_try] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_none] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [sym_sink] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [sym_float] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [sym_multiline_string] = ACTIONS(488), - [sym_character] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - }, - [STATE(644)] = { - [sym_argument_list] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(543), - [sym_identifier] = ACTIONS(545), - [anon_sym_import] = ACTIONS(545), - [anon_sym_test] = ACTIONS(545), - [anon_sym_hide] = ACTIONS(545), - [anon_sym_func] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(545), - [anon_sym_anyopaque] = ACTIONS(545), - [anon_sym_bool] = ACTIONS(545), - [anon_sym_int] = ACTIONS(545), - [anon_sym_uint] = ACTIONS(545), - [anon_sym_float] = ACTIONS(545), - [anon_sym_range] = ACTIONS(545), - [anon_sym_i8] = ACTIONS(545), - [anon_sym_i16] = ACTIONS(545), - [anon_sym_i32] = ACTIONS(545), - [anon_sym_i64] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(545), - [anon_sym_u16] = ACTIONS(545), - [anon_sym_u32] = ACTIONS(545), - [anon_sym_u64] = ACTIONS(545), - [anon_sym_isize] = ACTIONS(545), - [anon_sym_usize] = ACTIONS(545), - [anon_sym_f32] = ACTIONS(545), - [anon_sym_f64] = ACTIONS(545), - [anon_sym_c_char] = ACTIONS(545), - [anon_sym_c_schar] = ACTIONS(545), - [anon_sym_c_uchar] = ACTIONS(545), - [anon_sym_c_short] = ACTIONS(545), - [anon_sym_c_ushort] = ACTIONS(545), - [anon_sym_c_int] = ACTIONS(545), - [anon_sym_c_uint] = ACTIONS(545), - [anon_sym_c_long] = ACTIONS(545), - [anon_sym_c_ulong] = ACTIONS(545), - [anon_sym_c_longlong] = ACTIONS(545), - [anon_sym_c_ulonglong] = ACTIONS(545), - [anon_sym_c_float] = ACTIONS(545), - [anon_sym_c_double] = ACTIONS(545), - [anon_sym_c_longdouble] = ACTIONS(545), - [anon_sym_return] = ACTIONS(545), - [anon_sym_yield] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(543), - [anon_sym_break] = ACTIONS(545), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_defer] = ACTIONS(545), - [anon_sym_errdefer] = ACTIONS(545), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(545), - [anon_sym_while] = ACTIONS(545), - [anon_sym_expand] = ACTIONS(545), - [anon_sym_for] = ACTIONS(545), - [anon_sym_match] = ACTIONS(545), - [anon_sym_DOT_DOT] = ACTIONS(545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(543), - [anon_sym_orelse] = ACTIONS(545), - [anon_sym_catch] = ACTIONS(545), - [anon_sym_or] = ACTIONS(545), - [anon_sym_and] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_xor] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_LT_LT_PIPE] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_try] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(545), - [anon_sym_false] = ACTIONS(545), - [sym_none] = ACTIONS(545), - [sym_undefined] = ACTIONS(545), - [sym_sink] = ACTIONS(545), - [sym_integer] = ACTIONS(545), - [sym_float] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_multiline_string] = ACTIONS(543), - [sym_character] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - }, - [STATE(645)] = { - [sym_argument_list] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_test] = ACTIONS(451), - [anon_sym_hide] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_COLON] = ACTIONS(449), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_LT_LT_PIPE] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(646)] = { - [sym_argument_list] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_test] = ACTIONS(551), - [anon_sym_hide] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_COLON] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_LT_LT_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), - }, - [STATE(647)] = { - [aux_sym_type_repeat1] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(513), - [sym_identifier] = ACTIONS(515), - [anon_sym_import] = ACTIONS(515), - [anon_sym_test] = ACTIONS(515), - [anon_sym_hide] = ACTIONS(515), - [anon_sym_func] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_struct] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(513), - [anon_sym_void] = ACTIONS(515), - [anon_sym_anyopaque] = ACTIONS(515), - [anon_sym_bool] = ACTIONS(515), - [anon_sym_int] = ACTIONS(515), - [anon_sym_uint] = ACTIONS(515), - [anon_sym_float] = ACTIONS(515), - [anon_sym_range] = ACTIONS(515), - [anon_sym_i8] = ACTIONS(515), - [anon_sym_i16] = ACTIONS(515), - [anon_sym_i32] = ACTIONS(515), - [anon_sym_i64] = ACTIONS(515), - [anon_sym_u8] = ACTIONS(515), - [anon_sym_u16] = ACTIONS(515), - [anon_sym_u32] = ACTIONS(515), - [anon_sym_u64] = ACTIONS(515), - [anon_sym_isize] = ACTIONS(515), - [anon_sym_usize] = ACTIONS(515), - [anon_sym_f32] = ACTIONS(515), - [anon_sym_f64] = ACTIONS(515), - [anon_sym_c_char] = ACTIONS(515), - [anon_sym_c_schar] = ACTIONS(515), - [anon_sym_c_uchar] = ACTIONS(515), - [anon_sym_c_short] = ACTIONS(515), - [anon_sym_c_ushort] = ACTIONS(515), - [anon_sym_c_int] = ACTIONS(515), - [anon_sym_c_uint] = ACTIONS(515), - [anon_sym_c_long] = ACTIONS(515), - [anon_sym_c_ulong] = ACTIONS(515), - [anon_sym_c_longlong] = ACTIONS(515), - [anon_sym_c_ulonglong] = ACTIONS(515), - [anon_sym_c_float] = ACTIONS(515), - [anon_sym_c_double] = ACTIONS(515), - [anon_sym_c_longdouble] = ACTIONS(515), - [anon_sym_return] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(513), - [anon_sym_break] = ACTIONS(515), - [anon_sym_continue] = ACTIONS(515), - [anon_sym_defer] = ACTIONS(515), - [anon_sym_errdefer] = ACTIONS(515), - [anon_sym_if] = ACTIONS(515), - [anon_sym_else] = ACTIONS(515), - [anon_sym_while] = ACTIONS(515), - [anon_sym_expand] = ACTIONS(515), - [anon_sym_for] = ACTIONS(515), - [anon_sym_match] = ACTIONS(515), - [anon_sym_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(513), - [anon_sym_orelse] = ACTIONS(515), - [anon_sym_catch] = ACTIONS(515), - [anon_sym_or] = ACTIONS(515), - [anon_sym_and] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_xor] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_LT_LT_PIPE] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_SLASH] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_try] = ACTIONS(515), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_true] = ACTIONS(515), - [anon_sym_false] = ACTIONS(515), - [sym_none] = ACTIONS(515), - [sym_undefined] = ACTIONS(515), - [sym_sink] = ACTIONS(515), - [sym_integer] = ACTIONS(515), - [sym_float] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_multiline_string] = ACTIONS(513), - [sym_character] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - }, - [STATE(648)] = { - [aux_sym_type_repeat1] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(502), - [sym_identifier] = ACTIONS(504), - [anon_sym_import] = ACTIONS(504), - [anon_sym_test] = ACTIONS(504), - [anon_sym_hide] = ACTIONS(504), - [anon_sym_func] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_struct] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_DOLLAR] = ACTIONS(502), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_void] = ACTIONS(504), - [anon_sym_anyopaque] = ACTIONS(504), - [anon_sym_bool] = ACTIONS(504), - [anon_sym_int] = ACTIONS(504), - [anon_sym_uint] = ACTIONS(504), - [anon_sym_float] = ACTIONS(504), - [anon_sym_range] = ACTIONS(504), - [anon_sym_i8] = ACTIONS(504), - [anon_sym_i16] = ACTIONS(504), - [anon_sym_i32] = ACTIONS(504), - [anon_sym_i64] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(504), - [anon_sym_u16] = ACTIONS(504), - [anon_sym_u32] = ACTIONS(504), - [anon_sym_u64] = ACTIONS(504), - [anon_sym_isize] = ACTIONS(504), - [anon_sym_usize] = ACTIONS(504), - [anon_sym_f32] = ACTIONS(504), - [anon_sym_f64] = ACTIONS(504), - [anon_sym_c_char] = ACTIONS(504), - [anon_sym_c_schar] = ACTIONS(504), - [anon_sym_c_uchar] = ACTIONS(504), - [anon_sym_c_short] = ACTIONS(504), - [anon_sym_c_ushort] = ACTIONS(504), - [anon_sym_c_int] = ACTIONS(504), - [anon_sym_c_uint] = ACTIONS(504), - [anon_sym_c_long] = ACTIONS(504), - [anon_sym_c_ulong] = ACTIONS(504), - [anon_sym_c_longlong] = ACTIONS(504), - [anon_sym_c_ulonglong] = ACTIONS(504), - [anon_sym_c_float] = ACTIONS(504), - [anon_sym_c_double] = ACTIONS(504), - [anon_sym_c_longdouble] = ACTIONS(504), - [anon_sym_return] = ACTIONS(504), - [anon_sym_yield] = ACTIONS(504), - [anon_sym_COLON] = ACTIONS(502), - [anon_sym_break] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(504), - [anon_sym_defer] = ACTIONS(504), - [anon_sym_errdefer] = ACTIONS(504), - [anon_sym_if] = ACTIONS(504), - [anon_sym_else] = ACTIONS(504), - [anon_sym_while] = ACTIONS(504), - [anon_sym_expand] = ACTIONS(504), - [anon_sym_for] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(502), - [anon_sym_orelse] = ACTIONS(504), - [anon_sym_catch] = ACTIONS(504), - [anon_sym_or] = ACTIONS(504), - [anon_sym_and] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_xor] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_LT_LT_PIPE] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_try] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_true] = ACTIONS(504), - [anon_sym_false] = ACTIONS(504), - [sym_none] = ACTIONS(504), - [sym_undefined] = ACTIONS(504), - [sym_sink] = ACTIONS(504), - [sym_integer] = ACTIONS(504), - [sym_float] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(502), - [sym_multiline_string] = ACTIONS(502), - [sym_character] = ACTIONS(502), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(502), - }, - [STATE(649)] = { - [aux_sym_type_repeat1] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_test] = ACTIONS(508), - [anon_sym_hide] = ACTIONS(508), - [anon_sym_func] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_void] = ACTIONS(508), - [anon_sym_anyopaque] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_int] = ACTIONS(508), - [anon_sym_uint] = ACTIONS(508), - [anon_sym_float] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_c_char] = ACTIONS(508), - [anon_sym_c_schar] = ACTIONS(508), - [anon_sym_c_uchar] = ACTIONS(508), - [anon_sym_c_short] = ACTIONS(508), - [anon_sym_c_ushort] = ACTIONS(508), - [anon_sym_c_int] = ACTIONS(508), - [anon_sym_c_uint] = ACTIONS(508), - [anon_sym_c_long] = ACTIONS(508), - [anon_sym_c_ulong] = ACTIONS(508), - [anon_sym_c_longlong] = ACTIONS(508), - [anon_sym_c_ulonglong] = ACTIONS(508), - [anon_sym_c_float] = ACTIONS(508), - [anon_sym_c_double] = ACTIONS(508), - [anon_sym_c_longdouble] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_defer] = ACTIONS(508), - [anon_sym_errdefer] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_expand] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_orelse] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_or] = ACTIONS(508), - [anon_sym_and] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_xor] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LT_LT_PIPE] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_try] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [sym_none] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [sym_sink] = ACTIONS(508), - [sym_integer] = ACTIONS(508), - [sym_float] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(506), - [sym_multiline_string] = ACTIONS(506), - [sym_character] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(506), - }, - [STATE(650)] = { - [sym_argument_list] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [anon_sym_import] = ACTIONS(494), - [anon_sym_test] = ACTIONS(494), - [anon_sym_hide] = ACTIONS(494), - [anon_sym_func] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_struct] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_DOLLAR] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_void] = ACTIONS(494), - [anon_sym_anyopaque] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_int] = ACTIONS(494), - [anon_sym_uint] = ACTIONS(494), - [anon_sym_float] = ACTIONS(494), - [anon_sym_range] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_c_char] = ACTIONS(494), - [anon_sym_c_schar] = ACTIONS(494), - [anon_sym_c_uchar] = ACTIONS(494), - [anon_sym_c_short] = ACTIONS(494), - [anon_sym_c_ushort] = ACTIONS(494), - [anon_sym_c_int] = ACTIONS(494), - [anon_sym_c_uint] = ACTIONS(494), - [anon_sym_c_long] = ACTIONS(494), - [anon_sym_c_ulong] = ACTIONS(494), - [anon_sym_c_longlong] = ACTIONS(494), - [anon_sym_c_ulonglong] = ACTIONS(494), - [anon_sym_c_float] = ACTIONS(494), - [anon_sym_c_double] = ACTIONS(494), - [anon_sym_c_longdouble] = ACTIONS(494), - [anon_sym_return] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(492), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_defer] = ACTIONS(494), - [anon_sym_errdefer] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_else] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_expand] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_orelse] = ACTIONS(494), - [anon_sym_catch] = ACTIONS(494), - [anon_sym_or] = ACTIONS(494), - [anon_sym_and] = ACTIONS(494), [anon_sym_EQ_EQ] = ACTIONS(492), [anon_sym_BANG_EQ] = ACTIONS(492), [anon_sym_LT] = ACTIONS(494), [anon_sym_LT_EQ] = ACTIONS(492), [anon_sym_GT] = ACTIONS(494), [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_xor] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_LT_LT_PIPE] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_try] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_none] = ACTIONS(494), - [sym_undefined] = ACTIONS(494), - [sym_sink] = ACTIONS(494), - [sym_integer] = ACTIONS(494), - [sym_float] = ACTIONS(492), - [anon_sym_DQUOTE] = ACTIONS(492), - [sym_multiline_string] = ACTIONS(492), - [sym_character] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(492), + [sym__newline] = ACTIONS(1732), + }, + [STATE(591)] = { + [sym_variant_payload] = STATE(2364), + [sym_identifier] = ACTIONS(758), + [anon_sym_func] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_void] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_anyopaque] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_int] = ACTIONS(758), + [anon_sym_uint] = ACTIONS(758), + [anon_sym_float] = ACTIONS(758), + [anon_sym_range] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_c_char] = ACTIONS(758), + [anon_sym_c_schar] = ACTIONS(758), + [anon_sym_c_uchar] = ACTIONS(758), + [anon_sym_c_short] = ACTIONS(758), + [anon_sym_c_ushort] = ACTIONS(758), + [anon_sym_c_int] = ACTIONS(758), + [anon_sym_c_uint] = ACTIONS(758), + [anon_sym_c_long] = ACTIONS(758), + [anon_sym_c_ulong] = ACTIONS(758), + [anon_sym_c_longlong] = ACTIONS(758), + [anon_sym_c_ulonglong] = ACTIONS(758), + [anon_sym_c_float] = ACTIONS(758), + [anon_sym_c_double] = ACTIONS(758), + [anon_sym_c_longdouble] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(520), + [anon_sym_DASH_EQ] = ACTIONS(520), + [anon_sym_STAR_EQ] = ACTIONS(520), + [anon_sym_SLASH_EQ] = ACTIONS(520), + [anon_sym_AMP_EQ] = ACTIONS(520), + [anon_sym_PIPE_EQ] = ACTIONS(520), + [anon_sym_xor_EQ] = ACTIONS(520), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_GT_GT_EQ] = ACTIONS(520), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(520), + [anon_sym_return] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_defer] = ACTIONS(758), + [anon_sym_errdefer] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_else] = ACTIONS(522), + [anon_sym_while] = ACTIONS(758), + [anon_sym_expand] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [anon_sym_orelse] = ACTIONS(758), + [anon_sym_catch] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_LT_LT_PIPE] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_try] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_none] = ACTIONS(758), + [sym_undefined] = ACTIONS(758), + [sym_sink] = ACTIONS(758), + [sym_integer] = ACTIONS(758), + [sym_float] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_multiline_string] = ACTIONS(756), + [sym_character] = ACTIONS(756), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(756), + }, + [STATE(592)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(593)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(594)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(595)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1732), + }, + [STATE(596)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1732), + }, + [STATE(597)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1748), + [anon_sym_DASH_EQ] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1748), + [anon_sym_AMP_EQ] = ACTIONS(1748), + [anon_sym_PIPE_EQ] = ACTIONS(1748), + [anon_sym_xor_EQ] = ACTIONS(1748), + [anon_sym_LT_LT_EQ] = ACTIONS(1748), + [anon_sym_GT_GT_EQ] = ACTIONS(1748), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1732), + }, + [STATE(598)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(599)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(600)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(601)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(602)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(603)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1732), + }, + [STATE(604)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_defer] = ACTIONS(568), + [anon_sym_errdefer] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(605)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_defer] = ACTIONS(568), + [anon_sym_errdefer] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(606)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_defer] = ACTIONS(558), + [anon_sym_errdefer] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(607)] = { + [sym_struct_type] = STATE(2581), + [sym_c_struct_type] = STATE(2969), + [sym_distinct_type] = STATE(2969), + [sym_alias_type] = STATE(2969), + [sym_union_type] = STATE(2969), + [sym_enum_type] = STATE(2969), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2984), + [sym_labeled_block] = STATE(2984), + [sym_if_statement] = STATE(2984), + [sym_while_statement] = STATE(2984), + [sym_for_statement] = STATE(2984), + [sym_match_statement] = STATE(2984), + [sym__value] = STATE(2984), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(589), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_c_struct] = ACTIONS(1613), + [sym_opaque_type] = ACTIONS(1752), + [anon_sym_distinct] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1754), + }, + [STATE(608)] = { + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_test] = ACTIONS(1170), + [anon_sym_hide] = ACTIONS(1170), + [anon_sym_func] = ACTIONS(1170), + [anon_sym_c_func] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_anyopaque] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_int] = ACTIONS(1170), + [anon_sym_uint] = ACTIONS(1170), + [anon_sym_float] = ACTIONS(1170), + [anon_sym_range] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_c_char] = ACTIONS(1170), + [anon_sym_c_schar] = ACTIONS(1170), + [anon_sym_c_uchar] = ACTIONS(1170), + [anon_sym_c_short] = ACTIONS(1170), + [anon_sym_c_ushort] = ACTIONS(1170), + [anon_sym_c_int] = ACTIONS(1170), + [anon_sym_c_uint] = ACTIONS(1170), + [anon_sym_c_long] = ACTIONS(1170), + [anon_sym_c_ulong] = ACTIONS(1170), + [anon_sym_c_longlong] = ACTIONS(1170), + [anon_sym_c_ulonglong] = ACTIONS(1170), + [anon_sym_c_float] = ACTIONS(1170), + [anon_sym_c_double] = ACTIONS(1170), + [anon_sym_c_longdouble] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_defer] = ACTIONS(1170), + [anon_sym_errdefer] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_expand] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_match] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), + [anon_sym_orelse] = ACTIONS(1170), + [anon_sym_catch] = ACTIONS(1170), + [anon_sym_or] = ACTIONS(1170), + [anon_sym_and] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1168), + [anon_sym_BANG_EQ] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1170), + [anon_sym_GT_EQ] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_xor] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_LT_LT_PIPE] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_try] = ACTIONS(1170), + [anon_sym_DOT] = ACTIONS(1170), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1170), + [anon_sym_false] = ACTIONS(1170), + [sym_none] = ACTIONS(1170), + [sym_undefined] = ACTIONS(1170), + [sym_sink] = ACTIONS(1170), + [sym_integer] = ACTIONS(1170), + [sym_float] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_multiline_string] = ACTIONS(1168), + [sym_character] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1168), + }, + [STATE(609)] = { + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(1222), + [anon_sym_test] = ACTIONS(1222), + [anon_sym_hide] = ACTIONS(1222), + [anon_sym_func] = ACTIONS(1222), + [anon_sym_c_func] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_void] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1222), + [anon_sym_anyopaque] = ACTIONS(1222), + [anon_sym_bool] = ACTIONS(1222), + [anon_sym_int] = ACTIONS(1222), + [anon_sym_uint] = ACTIONS(1222), + [anon_sym_float] = ACTIONS(1222), + [anon_sym_range] = ACTIONS(1222), + [anon_sym_i8] = ACTIONS(1222), + [anon_sym_i16] = ACTIONS(1222), + [anon_sym_i32] = ACTIONS(1222), + [anon_sym_i64] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1222), + [anon_sym_u16] = ACTIONS(1222), + [anon_sym_u32] = ACTIONS(1222), + [anon_sym_u64] = ACTIONS(1222), + [anon_sym_isize] = ACTIONS(1222), + [anon_sym_usize] = ACTIONS(1222), + [anon_sym_f32] = ACTIONS(1222), + [anon_sym_f64] = ACTIONS(1222), + [anon_sym_c_char] = ACTIONS(1222), + [anon_sym_c_schar] = ACTIONS(1222), + [anon_sym_c_uchar] = ACTIONS(1222), + [anon_sym_c_short] = ACTIONS(1222), + [anon_sym_c_ushort] = ACTIONS(1222), + [anon_sym_c_int] = ACTIONS(1222), + [anon_sym_c_uint] = ACTIONS(1222), + [anon_sym_c_long] = ACTIONS(1222), + [anon_sym_c_ulong] = ACTIONS(1222), + [anon_sym_c_longlong] = ACTIONS(1222), + [anon_sym_c_ulonglong] = ACTIONS(1222), + [anon_sym_c_float] = ACTIONS(1222), + [anon_sym_c_double] = ACTIONS(1222), + [anon_sym_c_longdouble] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_defer] = ACTIONS(1222), + [anon_sym_errdefer] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_expand] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), + [anon_sym_orelse] = ACTIONS(1222), + [anon_sym_catch] = ACTIONS(1222), + [anon_sym_or] = ACTIONS(1222), + [anon_sym_and] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_LT_LT_PIPE] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [sym_none] = ACTIONS(1222), + [sym_undefined] = ACTIONS(1222), + [sym_sink] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [sym_float] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_multiline_string] = ACTIONS(1220), + [sym_character] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1220), + }, + [STATE(610)] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1026), + [anon_sym_import] = ACTIONS(1028), + [anon_sym_test] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_func] = ACTIONS(1028), + [anon_sym_c_func] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1028), + [anon_sym_anyopaque] = ACTIONS(1028), + [anon_sym_bool] = ACTIONS(1028), + [anon_sym_int] = ACTIONS(1028), + [anon_sym_uint] = ACTIONS(1028), + [anon_sym_float] = ACTIONS(1028), + [anon_sym_range] = ACTIONS(1028), + [anon_sym_i8] = ACTIONS(1028), + [anon_sym_i16] = ACTIONS(1028), + [anon_sym_i32] = ACTIONS(1028), + [anon_sym_i64] = ACTIONS(1028), + [anon_sym_u8] = ACTIONS(1028), + [anon_sym_u16] = ACTIONS(1028), + [anon_sym_u32] = ACTIONS(1028), + [anon_sym_u64] = ACTIONS(1028), + [anon_sym_isize] = ACTIONS(1028), + [anon_sym_usize] = ACTIONS(1028), + [anon_sym_f32] = ACTIONS(1028), + [anon_sym_f64] = ACTIONS(1028), + [anon_sym_c_char] = ACTIONS(1028), + [anon_sym_c_schar] = ACTIONS(1028), + [anon_sym_c_uchar] = ACTIONS(1028), + [anon_sym_c_short] = ACTIONS(1028), + [anon_sym_c_ushort] = ACTIONS(1028), + [anon_sym_c_int] = ACTIONS(1028), + [anon_sym_c_uint] = ACTIONS(1028), + [anon_sym_c_long] = ACTIONS(1028), + [anon_sym_c_ulong] = ACTIONS(1028), + [anon_sym_c_longlong] = ACTIONS(1028), + [anon_sym_c_ulonglong] = ACTIONS(1028), + [anon_sym_c_float] = ACTIONS(1028), + [anon_sym_c_double] = ACTIONS(1028), + [anon_sym_c_longdouble] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_yield] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_defer] = ACTIONS(1028), + [anon_sym_errdefer] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_expand] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_orelse] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_or] = ACTIONS(1028), + [anon_sym_and] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1028), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1026), + [anon_sym_LT_LT_PIPE] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [sym_none] = ACTIONS(1028), + [sym_undefined] = ACTIONS(1028), + [sym_sink] = ACTIONS(1028), + [sym_integer] = ACTIONS(1028), + [sym_float] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_multiline_string] = ACTIONS(1026), + [sym_character] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1026), + }, + [STATE(611)] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1210), + [anon_sym_test] = ACTIONS(1210), + [anon_sym_hide] = ACTIONS(1210), + [anon_sym_func] = ACTIONS(1210), + [anon_sym_c_func] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_anyopaque] = ACTIONS(1210), + [anon_sym_bool] = ACTIONS(1210), + [anon_sym_int] = ACTIONS(1210), + [anon_sym_uint] = ACTIONS(1210), + [anon_sym_float] = ACTIONS(1210), + [anon_sym_range] = ACTIONS(1210), + [anon_sym_i8] = ACTIONS(1210), + [anon_sym_i16] = ACTIONS(1210), + [anon_sym_i32] = ACTIONS(1210), + [anon_sym_i64] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1210), + [anon_sym_u16] = ACTIONS(1210), + [anon_sym_u32] = ACTIONS(1210), + [anon_sym_u64] = ACTIONS(1210), + [anon_sym_isize] = ACTIONS(1210), + [anon_sym_usize] = ACTIONS(1210), + [anon_sym_f32] = ACTIONS(1210), + [anon_sym_f64] = ACTIONS(1210), + [anon_sym_c_char] = ACTIONS(1210), + [anon_sym_c_schar] = ACTIONS(1210), + [anon_sym_c_uchar] = ACTIONS(1210), + [anon_sym_c_short] = ACTIONS(1210), + [anon_sym_c_ushort] = ACTIONS(1210), + [anon_sym_c_int] = ACTIONS(1210), + [anon_sym_c_uint] = ACTIONS(1210), + [anon_sym_c_long] = ACTIONS(1210), + [anon_sym_c_ulong] = ACTIONS(1210), + [anon_sym_c_longlong] = ACTIONS(1210), + [anon_sym_c_ulonglong] = ACTIONS(1210), + [anon_sym_c_float] = ACTIONS(1210), + [anon_sym_c_double] = ACTIONS(1210), + [anon_sym_c_longdouble] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_defer] = ACTIONS(1210), + [anon_sym_errdefer] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_expand] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_match] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1208), + [anon_sym_orelse] = ACTIONS(1210), + [anon_sym_catch] = ACTIONS(1210), + [anon_sym_or] = ACTIONS(1210), + [anon_sym_and] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1208), + [anon_sym_BANG_EQ] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_LT_EQ] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_xor] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1210), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_LT_LT_PIPE] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [sym_none] = ACTIONS(1210), + [sym_undefined] = ACTIONS(1210), + [sym_sink] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [sym_float] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_multiline_string] = ACTIONS(1208), + [sym_character] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1208), + }, + [STATE(612)] = { + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_test] = ACTIONS(1162), + [anon_sym_hide] = ACTIONS(1162), + [anon_sym_func] = ACTIONS(1162), + [anon_sym_c_func] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_anyopaque] = ACTIONS(1162), + [anon_sym_bool] = ACTIONS(1162), + [anon_sym_int] = ACTIONS(1162), + [anon_sym_uint] = ACTIONS(1162), + [anon_sym_float] = ACTIONS(1162), + [anon_sym_range] = ACTIONS(1162), + [anon_sym_i8] = ACTIONS(1162), + [anon_sym_i16] = ACTIONS(1162), + [anon_sym_i32] = ACTIONS(1162), + [anon_sym_i64] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1162), + [anon_sym_u16] = ACTIONS(1162), + [anon_sym_u32] = ACTIONS(1162), + [anon_sym_u64] = ACTIONS(1162), + [anon_sym_isize] = ACTIONS(1162), + [anon_sym_usize] = ACTIONS(1162), + [anon_sym_f32] = ACTIONS(1162), + [anon_sym_f64] = ACTIONS(1162), + [anon_sym_c_char] = ACTIONS(1162), + [anon_sym_c_schar] = ACTIONS(1162), + [anon_sym_c_uchar] = ACTIONS(1162), + [anon_sym_c_short] = ACTIONS(1162), + [anon_sym_c_ushort] = ACTIONS(1162), + [anon_sym_c_int] = ACTIONS(1162), + [anon_sym_c_uint] = ACTIONS(1162), + [anon_sym_c_long] = ACTIONS(1162), + [anon_sym_c_ulong] = ACTIONS(1162), + [anon_sym_c_longlong] = ACTIONS(1162), + [anon_sym_c_ulonglong] = ACTIONS(1162), + [anon_sym_c_float] = ACTIONS(1162), + [anon_sym_c_double] = ACTIONS(1162), + [anon_sym_c_longdouble] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_yield] = ACTIONS(1162), + [anon_sym_COLON] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_defer] = ACTIONS(1162), + [anon_sym_errdefer] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_expand] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_match] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1160), + [anon_sym_orelse] = ACTIONS(1162), + [anon_sym_catch] = ACTIONS(1162), + [anon_sym_or] = ACTIONS(1162), + [anon_sym_and] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_GT_EQ] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_xor] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT_PIPE] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1162), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [sym_none] = ACTIONS(1162), + [sym_undefined] = ACTIONS(1162), + [sym_sink] = ACTIONS(1162), + [sym_integer] = ACTIONS(1162), + [sym_float] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_multiline_string] = ACTIONS(1160), + [sym_character] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1160), + }, + [STATE(613)] = { + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1124), + [anon_sym_import] = ACTIONS(1126), + [anon_sym_test] = ACTIONS(1126), + [anon_sym_hide] = ACTIONS(1126), + [anon_sym_func] = ACTIONS(1126), + [anon_sym_c_func] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_void] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1126), + [anon_sym_anyopaque] = ACTIONS(1126), + [anon_sym_bool] = ACTIONS(1126), + [anon_sym_int] = ACTIONS(1126), + [anon_sym_uint] = ACTIONS(1126), + [anon_sym_float] = ACTIONS(1126), + [anon_sym_range] = ACTIONS(1126), + [anon_sym_i8] = ACTIONS(1126), + [anon_sym_i16] = ACTIONS(1126), + [anon_sym_i32] = ACTIONS(1126), + [anon_sym_i64] = ACTIONS(1126), + [anon_sym_u8] = ACTIONS(1126), + [anon_sym_u16] = ACTIONS(1126), + [anon_sym_u32] = ACTIONS(1126), + [anon_sym_u64] = ACTIONS(1126), + [anon_sym_isize] = ACTIONS(1126), + [anon_sym_usize] = ACTIONS(1126), + [anon_sym_f32] = ACTIONS(1126), + [anon_sym_f64] = ACTIONS(1126), + [anon_sym_c_char] = ACTIONS(1126), + [anon_sym_c_schar] = ACTIONS(1126), + [anon_sym_c_uchar] = ACTIONS(1126), + [anon_sym_c_short] = ACTIONS(1126), + [anon_sym_c_ushort] = ACTIONS(1126), + [anon_sym_c_int] = ACTIONS(1126), + [anon_sym_c_uint] = ACTIONS(1126), + [anon_sym_c_long] = ACTIONS(1126), + [anon_sym_c_ulong] = ACTIONS(1126), + [anon_sym_c_longlong] = ACTIONS(1126), + [anon_sym_c_ulonglong] = ACTIONS(1126), + [anon_sym_c_float] = ACTIONS(1126), + [anon_sym_c_double] = ACTIONS(1126), + [anon_sym_c_longdouble] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_COLON] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_defer] = ACTIONS(1126), + [anon_sym_errdefer] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_expand] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_match] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1124), + [anon_sym_orelse] = ACTIONS(1126), + [anon_sym_catch] = ACTIONS(1126), + [anon_sym_or] = ACTIONS(1126), + [anon_sym_and] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(1124), + [anon_sym_BANG_EQ] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_EQ] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_xor] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_LT_LT_PIPE] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(1126), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [sym_none] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1126), + [sym_sink] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [sym_float] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_multiline_string] = ACTIONS(1124), + [sym_character] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1124), + }, + [STATE(614)] = { + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1128), + [anon_sym_import] = ACTIONS(1130), + [anon_sym_test] = ACTIONS(1130), + [anon_sym_hide] = ACTIONS(1130), + [anon_sym_func] = ACTIONS(1130), + [anon_sym_c_func] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_void] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_anyopaque] = ACTIONS(1130), + [anon_sym_bool] = ACTIONS(1130), + [anon_sym_int] = ACTIONS(1130), + [anon_sym_uint] = ACTIONS(1130), + [anon_sym_float] = ACTIONS(1130), + [anon_sym_range] = ACTIONS(1130), + [anon_sym_i8] = ACTIONS(1130), + [anon_sym_i16] = ACTIONS(1130), + [anon_sym_i32] = ACTIONS(1130), + [anon_sym_i64] = ACTIONS(1130), + [anon_sym_u8] = ACTIONS(1130), + [anon_sym_u16] = ACTIONS(1130), + [anon_sym_u32] = ACTIONS(1130), + [anon_sym_u64] = ACTIONS(1130), + [anon_sym_isize] = ACTIONS(1130), + [anon_sym_usize] = ACTIONS(1130), + [anon_sym_f32] = ACTIONS(1130), + [anon_sym_f64] = ACTIONS(1130), + [anon_sym_c_char] = ACTIONS(1130), + [anon_sym_c_schar] = ACTIONS(1130), + [anon_sym_c_uchar] = ACTIONS(1130), + [anon_sym_c_short] = ACTIONS(1130), + [anon_sym_c_ushort] = ACTIONS(1130), + [anon_sym_c_int] = ACTIONS(1130), + [anon_sym_c_uint] = ACTIONS(1130), + [anon_sym_c_long] = ACTIONS(1130), + [anon_sym_c_ulong] = ACTIONS(1130), + [anon_sym_c_longlong] = ACTIONS(1130), + [anon_sym_c_ulonglong] = ACTIONS(1130), + [anon_sym_c_float] = ACTIONS(1130), + [anon_sym_c_double] = ACTIONS(1130), + [anon_sym_c_longdouble] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_yield] = ACTIONS(1130), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_defer] = ACTIONS(1130), + [anon_sym_errdefer] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_expand] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1128), + [anon_sym_orelse] = ACTIONS(1130), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_or] = ACTIONS(1130), + [anon_sym_and] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_xor] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_LT_LT_PIPE] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [sym_none] = ACTIONS(1130), + [sym_undefined] = ACTIONS(1130), + [sym_sink] = ACTIONS(1130), + [sym_integer] = ACTIONS(1130), + [sym_float] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_multiline_string] = ACTIONS(1128), + [sym_character] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1128), + }, + [STATE(615)] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(1166), + [anon_sym_test] = ACTIONS(1166), + [anon_sym_hide] = ACTIONS(1166), + [anon_sym_func] = ACTIONS(1166), + [anon_sym_c_func] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1166), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_anyopaque] = ACTIONS(1166), + [anon_sym_bool] = ACTIONS(1166), + [anon_sym_int] = ACTIONS(1166), + [anon_sym_uint] = ACTIONS(1166), + [anon_sym_float] = ACTIONS(1166), + [anon_sym_range] = ACTIONS(1166), + [anon_sym_i8] = ACTIONS(1166), + [anon_sym_i16] = ACTIONS(1166), + [anon_sym_i32] = ACTIONS(1166), + [anon_sym_i64] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1166), + [anon_sym_u16] = ACTIONS(1166), + [anon_sym_u32] = ACTIONS(1166), + [anon_sym_u64] = ACTIONS(1166), + [anon_sym_isize] = ACTIONS(1166), + [anon_sym_usize] = ACTIONS(1166), + [anon_sym_f32] = ACTIONS(1166), + [anon_sym_f64] = ACTIONS(1166), + [anon_sym_c_char] = ACTIONS(1166), + [anon_sym_c_schar] = ACTIONS(1166), + [anon_sym_c_uchar] = ACTIONS(1166), + [anon_sym_c_short] = ACTIONS(1166), + [anon_sym_c_ushort] = ACTIONS(1166), + [anon_sym_c_int] = ACTIONS(1166), + [anon_sym_c_uint] = ACTIONS(1166), + [anon_sym_c_long] = ACTIONS(1166), + [anon_sym_c_ulong] = ACTIONS(1166), + [anon_sym_c_longlong] = ACTIONS(1166), + [anon_sym_c_ulonglong] = ACTIONS(1166), + [anon_sym_c_float] = ACTIONS(1166), + [anon_sym_c_double] = ACTIONS(1166), + [anon_sym_c_longdouble] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_COLON] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_defer] = ACTIONS(1166), + [anon_sym_errdefer] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_expand] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_match] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_orelse] = ACTIONS(1166), + [anon_sym_catch] = ACTIONS(1166), + [anon_sym_or] = ACTIONS(1166), + [anon_sym_and] = ACTIONS(1166), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1166), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_xor] = ACTIONS(1166), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_LT_LT_PIPE] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_DOT] = ACTIONS(1166), + [anon_sym_CARET] = ACTIONS(1164), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_none] = ACTIONS(1166), + [sym_undefined] = ACTIONS(1166), + [sym_sink] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [sym_float] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_multiline_string] = ACTIONS(1164), + [sym_character] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1164), + }, + [STATE(616)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(617)] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_test] = ACTIONS(1104), + [anon_sym_hide] = ACTIONS(1104), + [anon_sym_func] = ACTIONS(1104), + [anon_sym_c_func] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_void] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_anyopaque] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_int] = ACTIONS(1104), + [anon_sym_uint] = ACTIONS(1104), + [anon_sym_float] = ACTIONS(1104), + [anon_sym_range] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_c_char] = ACTIONS(1104), + [anon_sym_c_schar] = ACTIONS(1104), + [anon_sym_c_uchar] = ACTIONS(1104), + [anon_sym_c_short] = ACTIONS(1104), + [anon_sym_c_ushort] = ACTIONS(1104), + [anon_sym_c_int] = ACTIONS(1104), + [anon_sym_c_uint] = ACTIONS(1104), + [anon_sym_c_long] = ACTIONS(1104), + [anon_sym_c_ulong] = ACTIONS(1104), + [anon_sym_c_longlong] = ACTIONS(1104), + [anon_sym_c_ulonglong] = ACTIONS(1104), + [anon_sym_c_float] = ACTIONS(1104), + [anon_sym_c_double] = ACTIONS(1104), + [anon_sym_c_longdouble] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_COLON] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_defer] = ACTIONS(1104), + [anon_sym_errdefer] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_expand] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_DOT_DOT] = ACTIONS(1104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1102), + [anon_sym_orelse] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_or] = ACTIONS(1104), + [anon_sym_and] = ACTIONS(1104), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_xor] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_LT_LT_PIPE] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_none] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1104), + [sym_sink] = ACTIONS(1104), + [sym_integer] = ACTIONS(1104), + [sym_float] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_multiline_string] = ACTIONS(1102), + [sym_character] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1102), + }, + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_test] = ACTIONS(1150), + [anon_sym_hide] = ACTIONS(1150), + [anon_sym_func] = ACTIONS(1150), + [anon_sym_c_func] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_anyopaque] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_int] = ACTIONS(1150), + [anon_sym_uint] = ACTIONS(1150), + [anon_sym_float] = ACTIONS(1150), + [anon_sym_range] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_c_char] = ACTIONS(1150), + [anon_sym_c_schar] = ACTIONS(1150), + [anon_sym_c_uchar] = ACTIONS(1150), + [anon_sym_c_short] = ACTIONS(1150), + [anon_sym_c_ushort] = ACTIONS(1150), + [anon_sym_c_int] = ACTIONS(1150), + [anon_sym_c_uint] = ACTIONS(1150), + [anon_sym_c_long] = ACTIONS(1150), + [anon_sym_c_ulong] = ACTIONS(1150), + [anon_sym_c_longlong] = ACTIONS(1150), + [anon_sym_c_ulonglong] = ACTIONS(1150), + [anon_sym_c_float] = ACTIONS(1150), + [anon_sym_c_double] = ACTIONS(1150), + [anon_sym_c_longdouble] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_COLON] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_defer] = ACTIONS(1150), + [anon_sym_errdefer] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_expand] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), + [anon_sym_orelse] = ACTIONS(1150), + [anon_sym_catch] = ACTIONS(1150), + [anon_sym_or] = ACTIONS(1150), + [anon_sym_and] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_BANG_EQ] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_LT_EQ] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1150), + [anon_sym_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_xor] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_LT_LT_PIPE] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_DOT] = ACTIONS(1150), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [sym_none] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1150), + [sym_sink] = ACTIONS(1150), + [sym_integer] = ACTIONS(1150), + [sym_float] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_multiline_string] = ACTIONS(1148), + [sym_character] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1148), + }, + [STATE(619)] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(1106), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_test] = ACTIONS(1108), + [anon_sym_hide] = ACTIONS(1108), + [anon_sym_func] = ACTIONS(1108), + [anon_sym_c_func] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_QMARK] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_void] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_anyopaque] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_int] = ACTIONS(1108), + [anon_sym_uint] = ACTIONS(1108), + [anon_sym_float] = ACTIONS(1108), + [anon_sym_range] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_c_char] = ACTIONS(1108), + [anon_sym_c_schar] = ACTIONS(1108), + [anon_sym_c_uchar] = ACTIONS(1108), + [anon_sym_c_short] = ACTIONS(1108), + [anon_sym_c_ushort] = ACTIONS(1108), + [anon_sym_c_int] = ACTIONS(1108), + [anon_sym_c_uint] = ACTIONS(1108), + [anon_sym_c_long] = ACTIONS(1108), + [anon_sym_c_ulong] = ACTIONS(1108), + [anon_sym_c_longlong] = ACTIONS(1108), + [anon_sym_c_ulonglong] = ACTIONS(1108), + [anon_sym_c_float] = ACTIONS(1108), + [anon_sym_c_double] = ACTIONS(1108), + [anon_sym_c_longdouble] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_COLON] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_defer] = ACTIONS(1108), + [anon_sym_errdefer] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_expand] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_DOT_DOT] = ACTIONS(1108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1106), + [anon_sym_orelse] = ACTIONS(1108), + [anon_sym_catch] = ACTIONS(1108), + [anon_sym_or] = ACTIONS(1108), + [anon_sym_and] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_xor] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_LT_LT_PIPE] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_none] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1108), + [sym_sink] = ACTIONS(1108), + [sym_integer] = ACTIONS(1108), + [sym_float] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_multiline_string] = ACTIONS(1106), + [sym_character] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1106), + }, + [STATE(620)] = { + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1154), + [anon_sym_test] = ACTIONS(1154), + [anon_sym_hide] = ACTIONS(1154), + [anon_sym_func] = ACTIONS(1154), + [anon_sym_c_func] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_COMMA] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_anyopaque] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_int] = ACTIONS(1154), + [anon_sym_uint] = ACTIONS(1154), + [anon_sym_float] = ACTIONS(1154), + [anon_sym_range] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_c_char] = ACTIONS(1154), + [anon_sym_c_schar] = ACTIONS(1154), + [anon_sym_c_uchar] = ACTIONS(1154), + [anon_sym_c_short] = ACTIONS(1154), + [anon_sym_c_ushort] = ACTIONS(1154), + [anon_sym_c_int] = ACTIONS(1154), + [anon_sym_c_uint] = ACTIONS(1154), + [anon_sym_c_long] = ACTIONS(1154), + [anon_sym_c_ulong] = ACTIONS(1154), + [anon_sym_c_longlong] = ACTIONS(1154), + [anon_sym_c_ulonglong] = ACTIONS(1154), + [anon_sym_c_float] = ACTIONS(1154), + [anon_sym_c_double] = ACTIONS(1154), + [anon_sym_c_longdouble] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1154), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_defer] = ACTIONS(1154), + [anon_sym_errdefer] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_expand] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1152), + [anon_sym_orelse] = ACTIONS(1154), + [anon_sym_catch] = ACTIONS(1154), + [anon_sym_or] = ACTIONS(1154), + [anon_sym_and] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_BANG_EQ] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1154), + [anon_sym_GT_EQ] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_xor] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_LT_LT_PIPE] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_DOT] = ACTIONS(1154), + [anon_sym_CARET] = ACTIONS(1152), + [anon_sym_true] = ACTIONS(1154), + [anon_sym_false] = ACTIONS(1154), + [sym_none] = ACTIONS(1154), + [sym_undefined] = ACTIONS(1154), + [sym_sink] = ACTIONS(1154), + [sym_integer] = ACTIONS(1154), + [sym_float] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_multiline_string] = ACTIONS(1152), + [sym_character] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1152), + }, + [STATE(621)] = { + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1158), + [anon_sym_test] = ACTIONS(1158), + [anon_sym_hide] = ACTIONS(1158), + [anon_sym_func] = ACTIONS(1158), + [anon_sym_c_func] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_EQ] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_void] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_anyopaque] = ACTIONS(1158), + [anon_sym_bool] = ACTIONS(1158), + [anon_sym_int] = ACTIONS(1158), + [anon_sym_uint] = ACTIONS(1158), + [anon_sym_float] = ACTIONS(1158), + [anon_sym_range] = ACTIONS(1158), + [anon_sym_i8] = ACTIONS(1158), + [anon_sym_i16] = ACTIONS(1158), + [anon_sym_i32] = ACTIONS(1158), + [anon_sym_i64] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1158), + [anon_sym_u16] = ACTIONS(1158), + [anon_sym_u32] = ACTIONS(1158), + [anon_sym_u64] = ACTIONS(1158), + [anon_sym_isize] = ACTIONS(1158), + [anon_sym_usize] = ACTIONS(1158), + [anon_sym_f32] = ACTIONS(1158), + [anon_sym_f64] = ACTIONS(1158), + [anon_sym_c_char] = ACTIONS(1158), + [anon_sym_c_schar] = ACTIONS(1158), + [anon_sym_c_uchar] = ACTIONS(1158), + [anon_sym_c_short] = ACTIONS(1158), + [anon_sym_c_ushort] = ACTIONS(1158), + [anon_sym_c_int] = ACTIONS(1158), + [anon_sym_c_uint] = ACTIONS(1158), + [anon_sym_c_long] = ACTIONS(1158), + [anon_sym_c_ulong] = ACTIONS(1158), + [anon_sym_c_longlong] = ACTIONS(1158), + [anon_sym_c_ulonglong] = ACTIONS(1158), + [anon_sym_c_float] = ACTIONS(1158), + [anon_sym_c_double] = ACTIONS(1158), + [anon_sym_c_longdouble] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1158), + [anon_sym_COLON] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_defer] = ACTIONS(1158), + [anon_sym_errdefer] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_expand] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_match] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1156), + [anon_sym_orelse] = ACTIONS(1158), + [anon_sym_catch] = ACTIONS(1158), + [anon_sym_or] = ACTIONS(1158), + [anon_sym_and] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1156), + [anon_sym_BANG_EQ] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_LT_EQ] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(1158), + [anon_sym_GT_EQ] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_xor] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_LT_PIPE] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_try] = ACTIONS(1158), + [anon_sym_DOT] = ACTIONS(1158), + [anon_sym_CARET] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [sym_none] = ACTIONS(1158), + [sym_undefined] = ACTIONS(1158), + [sym_sink] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [sym_float] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_multiline_string] = ACTIONS(1156), + [sym_character] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1156), + }, + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1230), + [anon_sym_test] = ACTIONS(1230), + [anon_sym_hide] = ACTIONS(1230), + [anon_sym_func] = ACTIONS(1230), + [anon_sym_c_func] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_EQ] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_QMARK] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_void] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_anyopaque] = ACTIONS(1230), + [anon_sym_bool] = ACTIONS(1230), + [anon_sym_int] = ACTIONS(1230), + [anon_sym_uint] = ACTIONS(1230), + [anon_sym_float] = ACTIONS(1230), + [anon_sym_range] = ACTIONS(1230), + [anon_sym_i8] = ACTIONS(1230), + [anon_sym_i16] = ACTIONS(1230), + [anon_sym_i32] = ACTIONS(1230), + [anon_sym_i64] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1230), + [anon_sym_u16] = ACTIONS(1230), + [anon_sym_u32] = ACTIONS(1230), + [anon_sym_u64] = ACTIONS(1230), + [anon_sym_isize] = ACTIONS(1230), + [anon_sym_usize] = ACTIONS(1230), + [anon_sym_f32] = ACTIONS(1230), + [anon_sym_f64] = ACTIONS(1230), + [anon_sym_c_char] = ACTIONS(1230), + [anon_sym_c_schar] = ACTIONS(1230), + [anon_sym_c_uchar] = ACTIONS(1230), + [anon_sym_c_short] = ACTIONS(1230), + [anon_sym_c_ushort] = ACTIONS(1230), + [anon_sym_c_int] = ACTIONS(1230), + [anon_sym_c_uint] = ACTIONS(1230), + [anon_sym_c_long] = ACTIONS(1230), + [anon_sym_c_ulong] = ACTIONS(1230), + [anon_sym_c_longlong] = ACTIONS(1230), + [anon_sym_c_ulonglong] = ACTIONS(1230), + [anon_sym_c_float] = ACTIONS(1230), + [anon_sym_c_double] = ACTIONS(1230), + [anon_sym_c_longdouble] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_defer] = ACTIONS(1230), + [anon_sym_errdefer] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_expand] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_match] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1228), + [anon_sym_orelse] = ACTIONS(1230), + [anon_sym_catch] = ACTIONS(1230), + [anon_sym_or] = ACTIONS(1230), + [anon_sym_and] = ACTIONS(1230), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_LT_LT_PIPE] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1230), + [anon_sym_false] = ACTIONS(1230), + [sym_none] = ACTIONS(1230), + [sym_undefined] = ACTIONS(1230), + [sym_sink] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [sym_float] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [sym_multiline_string] = ACTIONS(1228), + [sym_character] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1228), + }, + [STATE(623)] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1140), + [anon_sym_import] = ACTIONS(1142), + [anon_sym_test] = ACTIONS(1142), + [anon_sym_hide] = ACTIONS(1142), + [anon_sym_func] = ACTIONS(1142), + [anon_sym_c_func] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_QMARK] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_void] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_anyopaque] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_int] = ACTIONS(1142), + [anon_sym_uint] = ACTIONS(1142), + [anon_sym_float] = ACTIONS(1142), + [anon_sym_range] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_c_char] = ACTIONS(1142), + [anon_sym_c_schar] = ACTIONS(1142), + [anon_sym_c_uchar] = ACTIONS(1142), + [anon_sym_c_short] = ACTIONS(1142), + [anon_sym_c_ushort] = ACTIONS(1142), + [anon_sym_c_int] = ACTIONS(1142), + [anon_sym_c_uint] = ACTIONS(1142), + [anon_sym_c_long] = ACTIONS(1142), + [anon_sym_c_ulong] = ACTIONS(1142), + [anon_sym_c_longlong] = ACTIONS(1142), + [anon_sym_c_ulonglong] = ACTIONS(1142), + [anon_sym_c_float] = ACTIONS(1142), + [anon_sym_c_double] = ACTIONS(1142), + [anon_sym_c_longdouble] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_COLON] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_defer] = ACTIONS(1142), + [anon_sym_errdefer] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_expand] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1140), + [anon_sym_orelse] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1142), + [anon_sym_or] = ACTIONS(1142), + [anon_sym_and] = ACTIONS(1142), + [anon_sym_EQ_EQ] = ACTIONS(1140), + [anon_sym_BANG_EQ] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_GT_EQ] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_xor] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1142), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_LT_LT_PIPE] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(1142), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_none] = ACTIONS(1142), + [sym_undefined] = ACTIONS(1142), + [sym_sink] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [sym_float] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_multiline_string] = ACTIONS(1140), + [sym_character] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1140), + }, + [STATE(624)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(558), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_AMP_EQ] = ACTIONS(556), + [anon_sym_PIPE_EQ] = ACTIONS(556), + [anon_sym_xor_EQ] = ACTIONS(556), + [anon_sym_LT_LT_EQ] = ACTIONS(556), + [anon_sym_GT_GT_EQ] = ACTIONS(556), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(556), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), + }, + [STATE(625)] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_test] = ACTIONS(1194), + [anon_sym_hide] = ACTIONS(1194), + [anon_sym_func] = ACTIONS(1194), + [anon_sym_c_func] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_void] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_anyopaque] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_int] = ACTIONS(1194), + [anon_sym_uint] = ACTIONS(1194), + [anon_sym_float] = ACTIONS(1194), + [anon_sym_range] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_c_char] = ACTIONS(1194), + [anon_sym_c_schar] = ACTIONS(1194), + [anon_sym_c_uchar] = ACTIONS(1194), + [anon_sym_c_short] = ACTIONS(1194), + [anon_sym_c_ushort] = ACTIONS(1194), + [anon_sym_c_int] = ACTIONS(1194), + [anon_sym_c_uint] = ACTIONS(1194), + [anon_sym_c_long] = ACTIONS(1194), + [anon_sym_c_ulong] = ACTIONS(1194), + [anon_sym_c_longlong] = ACTIONS(1194), + [anon_sym_c_ulonglong] = ACTIONS(1194), + [anon_sym_c_float] = ACTIONS(1194), + [anon_sym_c_double] = ACTIONS(1194), + [anon_sym_c_longdouble] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_defer] = ACTIONS(1194), + [anon_sym_errdefer] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_expand] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), + [anon_sym_orelse] = ACTIONS(1194), + [anon_sym_catch] = ACTIONS(1194), + [anon_sym_or] = ACTIONS(1194), + [anon_sym_and] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_GT_EQ] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_xor] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_LT_LT_PIPE] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_CARET] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_none] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1194), + [sym_sink] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [sym_float] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_multiline_string] = ACTIONS(1192), + [sym_character] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1192), + }, + [STATE(626)] = { + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_test] = ACTIONS(1198), + [anon_sym_hide] = ACTIONS(1198), + [anon_sym_func] = ACTIONS(1198), + [anon_sym_c_func] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_void] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_anyopaque] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_int] = ACTIONS(1198), + [anon_sym_uint] = ACTIONS(1198), + [anon_sym_float] = ACTIONS(1198), + [anon_sym_range] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_c_char] = ACTIONS(1198), + [anon_sym_c_schar] = ACTIONS(1198), + [anon_sym_c_uchar] = ACTIONS(1198), + [anon_sym_c_short] = ACTIONS(1198), + [anon_sym_c_ushort] = ACTIONS(1198), + [anon_sym_c_int] = ACTIONS(1198), + [anon_sym_c_uint] = ACTIONS(1198), + [anon_sym_c_long] = ACTIONS(1198), + [anon_sym_c_ulong] = ACTIONS(1198), + [anon_sym_c_longlong] = ACTIONS(1198), + [anon_sym_c_ulonglong] = ACTIONS(1198), + [anon_sym_c_float] = ACTIONS(1198), + [anon_sym_c_double] = ACTIONS(1198), + [anon_sym_c_longdouble] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_defer] = ACTIONS(1198), + [anon_sym_errdefer] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_expand] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), + [anon_sym_orelse] = ACTIONS(1198), + [anon_sym_catch] = ACTIONS(1198), + [anon_sym_or] = ACTIONS(1198), + [anon_sym_and] = ACTIONS(1198), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_BANG_EQ] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_LT_EQ] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_EQ] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_xor] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_LT_LT_PIPE] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_DOT] = ACTIONS(1198), + [anon_sym_CARET] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_none] = ACTIONS(1198), + [sym_undefined] = ACTIONS(1198), + [sym_sink] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [sym_float] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_multiline_string] = ACTIONS(1196), + [sym_character] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1196), + }, + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_import] = ACTIONS(1234), + [anon_sym_test] = ACTIONS(1234), + [anon_sym_hide] = ACTIONS(1234), + [anon_sym_func] = ACTIONS(1234), + [anon_sym_c_func] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_void] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_anyopaque] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_int] = ACTIONS(1234), + [anon_sym_uint] = ACTIONS(1234), + [anon_sym_float] = ACTIONS(1234), + [anon_sym_range] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_c_char] = ACTIONS(1234), + [anon_sym_c_schar] = ACTIONS(1234), + [anon_sym_c_uchar] = ACTIONS(1234), + [anon_sym_c_short] = ACTIONS(1234), + [anon_sym_c_ushort] = ACTIONS(1234), + [anon_sym_c_int] = ACTIONS(1234), + [anon_sym_c_uint] = ACTIONS(1234), + [anon_sym_c_long] = ACTIONS(1234), + [anon_sym_c_ulong] = ACTIONS(1234), + [anon_sym_c_longlong] = ACTIONS(1234), + [anon_sym_c_ulonglong] = ACTIONS(1234), + [anon_sym_c_float] = ACTIONS(1234), + [anon_sym_c_double] = ACTIONS(1234), + [anon_sym_c_longdouble] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_defer] = ACTIONS(1234), + [anon_sym_errdefer] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_expand] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), + [anon_sym_orelse] = ACTIONS(1234), + [anon_sym_catch] = ACTIONS(1234), + [anon_sym_or] = ACTIONS(1234), + [anon_sym_and] = ACTIONS(1234), + [anon_sym_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_xor] = ACTIONS(1234), + [anon_sym_LT_LT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(1232), + [anon_sym_LT_LT_PIPE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), + [sym_none] = ACTIONS(1234), + [sym_undefined] = ACTIONS(1234), + [sym_sink] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [sym_float] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym_multiline_string] = ACTIONS(1232), + [sym_character] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1232), + }, + [STATE(628)] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(1010), + [anon_sym_import] = ACTIONS(1012), + [anon_sym_test] = ACTIONS(1012), + [anon_sym_hide] = ACTIONS(1012), + [anon_sym_func] = ACTIONS(1012), + [anon_sym_c_func] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_AT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_anyopaque] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_int] = ACTIONS(1012), + [anon_sym_uint] = ACTIONS(1012), + [anon_sym_float] = ACTIONS(1012), + [anon_sym_range] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_c_char] = ACTIONS(1012), + [anon_sym_c_schar] = ACTIONS(1012), + [anon_sym_c_uchar] = ACTIONS(1012), + [anon_sym_c_short] = ACTIONS(1012), + [anon_sym_c_ushort] = ACTIONS(1012), + [anon_sym_c_int] = ACTIONS(1012), + [anon_sym_c_uint] = ACTIONS(1012), + [anon_sym_c_long] = ACTIONS(1012), + [anon_sym_c_ulong] = ACTIONS(1012), + [anon_sym_c_longlong] = ACTIONS(1012), + [anon_sym_c_ulonglong] = ACTIONS(1012), + [anon_sym_c_float] = ACTIONS(1012), + [anon_sym_c_double] = ACTIONS(1012), + [anon_sym_c_longdouble] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_COLON] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_defer] = ACTIONS(1012), + [anon_sym_errdefer] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_expand] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_orelse] = ACTIONS(1012), + [anon_sym_catch] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1010), + [anon_sym_LT_LT_PIPE] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [sym_none] = ACTIONS(1012), + [sym_undefined] = ACTIONS(1012), + [sym_sink] = ACTIONS(1012), + [sym_integer] = ACTIONS(1012), + [sym_float] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_multiline_string] = ACTIONS(1010), + [sym_character] = ACTIONS(1010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1010), + }, + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1172), + [anon_sym_import] = ACTIONS(1174), + [anon_sym_test] = ACTIONS(1174), + [anon_sym_hide] = ACTIONS(1174), + [anon_sym_func] = ACTIONS(1174), + [anon_sym_c_func] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_void] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_anyopaque] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_int] = ACTIONS(1174), + [anon_sym_uint] = ACTIONS(1174), + [anon_sym_float] = ACTIONS(1174), + [anon_sym_range] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_c_char] = ACTIONS(1174), + [anon_sym_c_schar] = ACTIONS(1174), + [anon_sym_c_uchar] = ACTIONS(1174), + [anon_sym_c_short] = ACTIONS(1174), + [anon_sym_c_ushort] = ACTIONS(1174), + [anon_sym_c_int] = ACTIONS(1174), + [anon_sym_c_uint] = ACTIONS(1174), + [anon_sym_c_long] = ACTIONS(1174), + [anon_sym_c_ulong] = ACTIONS(1174), + [anon_sym_c_longlong] = ACTIONS(1174), + [anon_sym_c_ulonglong] = ACTIONS(1174), + [anon_sym_c_float] = ACTIONS(1174), + [anon_sym_c_double] = ACTIONS(1174), + [anon_sym_c_longdouble] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_COLON] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_defer] = ACTIONS(1174), + [anon_sym_errdefer] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_expand] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), + [anon_sym_orelse] = ACTIONS(1174), + [anon_sym_catch] = ACTIONS(1174), + [anon_sym_or] = ACTIONS(1174), + [anon_sym_and] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1174), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_xor] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_LT_LT_PIPE] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1174), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_none] = ACTIONS(1174), + [sym_undefined] = ACTIONS(1174), + [sym_sink] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [sym_float] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_multiline_string] = ACTIONS(1172), + [sym_character] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1172), + }, + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_COLON_COLON] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_test] = ACTIONS(1112), + [anon_sym_hide] = ACTIONS(1112), + [anon_sym_func] = ACTIONS(1112), + [anon_sym_c_func] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_void] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_anyopaque] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_int] = ACTIONS(1112), + [anon_sym_uint] = ACTIONS(1112), + [anon_sym_float] = ACTIONS(1112), + [anon_sym_range] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_c_char] = ACTIONS(1112), + [anon_sym_c_schar] = ACTIONS(1112), + [anon_sym_c_uchar] = ACTIONS(1112), + [anon_sym_c_short] = ACTIONS(1112), + [anon_sym_c_ushort] = ACTIONS(1112), + [anon_sym_c_int] = ACTIONS(1112), + [anon_sym_c_uint] = ACTIONS(1112), + [anon_sym_c_long] = ACTIONS(1112), + [anon_sym_c_ulong] = ACTIONS(1112), + [anon_sym_c_longlong] = ACTIONS(1112), + [anon_sym_c_ulonglong] = ACTIONS(1112), + [anon_sym_c_float] = ACTIONS(1112), + [anon_sym_c_double] = ACTIONS(1112), + [anon_sym_c_longdouble] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_defer] = ACTIONS(1112), + [anon_sym_errdefer] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_expand] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_DOT_DOT] = ACTIONS(1112), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1110), + [anon_sym_orelse] = ACTIONS(1112), + [anon_sym_catch] = ACTIONS(1112), + [anon_sym_or] = ACTIONS(1112), + [anon_sym_and] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_xor] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_LT_LT_PIPE] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_none] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1112), + [sym_sink] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [sym_float] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_multiline_string] = ACTIONS(1110), + [sym_character] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1110), + }, + [STATE(631)] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1202), + [anon_sym_test] = ACTIONS(1202), + [anon_sym_hide] = ACTIONS(1202), + [anon_sym_func] = ACTIONS(1202), + [anon_sym_c_func] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_QMARK] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_anyopaque] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_int] = ACTIONS(1202), + [anon_sym_uint] = ACTIONS(1202), + [anon_sym_float] = ACTIONS(1202), + [anon_sym_range] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_c_char] = ACTIONS(1202), + [anon_sym_c_schar] = ACTIONS(1202), + [anon_sym_c_uchar] = ACTIONS(1202), + [anon_sym_c_short] = ACTIONS(1202), + [anon_sym_c_ushort] = ACTIONS(1202), + [anon_sym_c_int] = ACTIONS(1202), + [anon_sym_c_uint] = ACTIONS(1202), + [anon_sym_c_long] = ACTIONS(1202), + [anon_sym_c_ulong] = ACTIONS(1202), + [anon_sym_c_longlong] = ACTIONS(1202), + [anon_sym_c_ulonglong] = ACTIONS(1202), + [anon_sym_c_float] = ACTIONS(1202), + [anon_sym_c_double] = ACTIONS(1202), + [anon_sym_c_longdouble] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_defer] = ACTIONS(1202), + [anon_sym_errdefer] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_expand] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1200), + [anon_sym_orelse] = ACTIONS(1202), + [anon_sym_catch] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1202), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1200), + [anon_sym_BANG_EQ] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_LT_EQ] = ACTIONS(1200), + [anon_sym_GT] = ACTIONS(1202), + [anon_sym_GT_EQ] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_xor] = ACTIONS(1202), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1200), + [anon_sym_LT_LT_PIPE] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_try] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_CARET] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_none] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1202), + [sym_sink] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [sym_float] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [sym_multiline_string] = ACTIONS(1200), + [sym_character] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1200), + }, + [STATE(632)] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1052), + [anon_sym_COLON_COLON] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(1052), + [anon_sym_test] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_func] = ACTIONS(1052), + [anon_sym_c_func] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_void] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1052), + [anon_sym_anyopaque] = ACTIONS(1052), + [anon_sym_bool] = ACTIONS(1052), + [anon_sym_int] = ACTIONS(1052), + [anon_sym_uint] = ACTIONS(1052), + [anon_sym_float] = ACTIONS(1052), + [anon_sym_range] = ACTIONS(1052), + [anon_sym_i8] = ACTIONS(1052), + [anon_sym_i16] = ACTIONS(1052), + [anon_sym_i32] = ACTIONS(1052), + [anon_sym_i64] = ACTIONS(1052), + [anon_sym_u8] = ACTIONS(1052), + [anon_sym_u16] = ACTIONS(1052), + [anon_sym_u32] = ACTIONS(1052), + [anon_sym_u64] = ACTIONS(1052), + [anon_sym_isize] = ACTIONS(1052), + [anon_sym_usize] = ACTIONS(1052), + [anon_sym_f32] = ACTIONS(1052), + [anon_sym_f64] = ACTIONS(1052), + [anon_sym_c_char] = ACTIONS(1052), + [anon_sym_c_schar] = ACTIONS(1052), + [anon_sym_c_uchar] = ACTIONS(1052), + [anon_sym_c_short] = ACTIONS(1052), + [anon_sym_c_ushort] = ACTIONS(1052), + [anon_sym_c_int] = ACTIONS(1052), + [anon_sym_c_uint] = ACTIONS(1052), + [anon_sym_c_long] = ACTIONS(1052), + [anon_sym_c_ulong] = ACTIONS(1052), + [anon_sym_c_longlong] = ACTIONS(1052), + [anon_sym_c_ulonglong] = ACTIONS(1052), + [anon_sym_c_float] = ACTIONS(1052), + [anon_sym_c_double] = ACTIONS(1052), + [anon_sym_c_longdouble] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_defer] = ACTIONS(1052), + [anon_sym_errdefer] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_expand] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_orelse] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_or] = ACTIONS(1052), + [anon_sym_and] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_xor] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_LT_LT_PIPE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [sym_none] = ACTIONS(1052), + [sym_undefined] = ACTIONS(1052), + [sym_sink] = ACTIONS(1052), + [sym_integer] = ACTIONS(1052), + [sym_float] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_multiline_string] = ACTIONS(1050), + [sym_character] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1050), + }, + [STATE(633)] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1138), + [anon_sym_test] = ACTIONS(1138), + [anon_sym_hide] = ACTIONS(1138), + [anon_sym_func] = ACTIONS(1138), + [anon_sym_c_func] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_DOLLAR] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_anyopaque] = ACTIONS(1138), + [anon_sym_bool] = ACTIONS(1138), + [anon_sym_int] = ACTIONS(1138), + [anon_sym_uint] = ACTIONS(1138), + [anon_sym_float] = ACTIONS(1138), + [anon_sym_range] = ACTIONS(1138), + [anon_sym_i8] = ACTIONS(1138), + [anon_sym_i16] = ACTIONS(1138), + [anon_sym_i32] = ACTIONS(1138), + [anon_sym_i64] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1138), + [anon_sym_u16] = ACTIONS(1138), + [anon_sym_u32] = ACTIONS(1138), + [anon_sym_u64] = ACTIONS(1138), + [anon_sym_isize] = ACTIONS(1138), + [anon_sym_usize] = ACTIONS(1138), + [anon_sym_f32] = ACTIONS(1138), + [anon_sym_f64] = ACTIONS(1138), + [anon_sym_c_char] = ACTIONS(1138), + [anon_sym_c_schar] = ACTIONS(1138), + [anon_sym_c_uchar] = ACTIONS(1138), + [anon_sym_c_short] = ACTIONS(1138), + [anon_sym_c_ushort] = ACTIONS(1138), + [anon_sym_c_int] = ACTIONS(1138), + [anon_sym_c_uint] = ACTIONS(1138), + [anon_sym_c_long] = ACTIONS(1138), + [anon_sym_c_ulong] = ACTIONS(1138), + [anon_sym_c_longlong] = ACTIONS(1138), + [anon_sym_c_ulonglong] = ACTIONS(1138), + [anon_sym_c_float] = ACTIONS(1138), + [anon_sym_c_double] = ACTIONS(1138), + [anon_sym_c_longdouble] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_defer] = ACTIONS(1138), + [anon_sym_errdefer] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_expand] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_match] = ACTIONS(1138), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), + [anon_sym_orelse] = ACTIONS(1138), + [anon_sym_catch] = ACTIONS(1138), + [anon_sym_or] = ACTIONS(1138), + [anon_sym_and] = ACTIONS(1138), + [anon_sym_EQ_EQ] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1138), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_xor] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_LT_LT_PIPE] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_try] = ACTIONS(1138), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [sym_none] = ACTIONS(1138), + [sym_undefined] = ACTIONS(1138), + [sym_sink] = ACTIONS(1138), + [sym_integer] = ACTIONS(1138), + [sym_float] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_multiline_string] = ACTIONS(1136), + [sym_character] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1136), + }, + [STATE(634)] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_import] = ACTIONS(1214), + [anon_sym_test] = ACTIONS(1214), + [anon_sym_hide] = ACTIONS(1214), + [anon_sym_func] = ACTIONS(1214), + [anon_sym_c_func] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_anyopaque] = ACTIONS(1214), + [anon_sym_bool] = ACTIONS(1214), + [anon_sym_int] = ACTIONS(1214), + [anon_sym_uint] = ACTIONS(1214), + [anon_sym_float] = ACTIONS(1214), + [anon_sym_range] = ACTIONS(1214), + [anon_sym_i8] = ACTIONS(1214), + [anon_sym_i16] = ACTIONS(1214), + [anon_sym_i32] = ACTIONS(1214), + [anon_sym_i64] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1214), + [anon_sym_u16] = ACTIONS(1214), + [anon_sym_u32] = ACTIONS(1214), + [anon_sym_u64] = ACTIONS(1214), + [anon_sym_isize] = ACTIONS(1214), + [anon_sym_usize] = ACTIONS(1214), + [anon_sym_f32] = ACTIONS(1214), + [anon_sym_f64] = ACTIONS(1214), + [anon_sym_c_char] = ACTIONS(1214), + [anon_sym_c_schar] = ACTIONS(1214), + [anon_sym_c_uchar] = ACTIONS(1214), + [anon_sym_c_short] = ACTIONS(1214), + [anon_sym_c_ushort] = ACTIONS(1214), + [anon_sym_c_int] = ACTIONS(1214), + [anon_sym_c_uint] = ACTIONS(1214), + [anon_sym_c_long] = ACTIONS(1214), + [anon_sym_c_ulong] = ACTIONS(1214), + [anon_sym_c_longlong] = ACTIONS(1214), + [anon_sym_c_ulonglong] = ACTIONS(1214), + [anon_sym_c_float] = ACTIONS(1214), + [anon_sym_c_double] = ACTIONS(1214), + [anon_sym_c_longdouble] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_defer] = ACTIONS(1214), + [anon_sym_errdefer] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_expand] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_match] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1212), + [anon_sym_orelse] = ACTIONS(1214), + [anon_sym_catch] = ACTIONS(1214), + [anon_sym_or] = ACTIONS(1214), + [anon_sym_and] = ACTIONS(1214), + [anon_sym_EQ_EQ] = ACTIONS(1212), + [anon_sym_BANG_EQ] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_xor] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_LT_LT_PIPE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [sym_none] = ACTIONS(1214), + [sym_undefined] = ACTIONS(1214), + [sym_sink] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [sym_float] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_multiline_string] = ACTIONS(1212), + [sym_character] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1212), + }, + [STATE(635)] = { + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(1134), + [anon_sym_test] = ACTIONS(1134), + [anon_sym_hide] = ACTIONS(1134), + [anon_sym_func] = ACTIONS(1134), + [anon_sym_c_func] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_void] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_anyopaque] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_int] = ACTIONS(1134), + [anon_sym_uint] = ACTIONS(1134), + [anon_sym_float] = ACTIONS(1134), + [anon_sym_range] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_c_char] = ACTIONS(1134), + [anon_sym_c_schar] = ACTIONS(1134), + [anon_sym_c_uchar] = ACTIONS(1134), + [anon_sym_c_short] = ACTIONS(1134), + [anon_sym_c_ushort] = ACTIONS(1134), + [anon_sym_c_int] = ACTIONS(1134), + [anon_sym_c_uint] = ACTIONS(1134), + [anon_sym_c_long] = ACTIONS(1134), + [anon_sym_c_ulong] = ACTIONS(1134), + [anon_sym_c_longlong] = ACTIONS(1134), + [anon_sym_c_ulonglong] = ACTIONS(1134), + [anon_sym_c_float] = ACTIONS(1134), + [anon_sym_c_double] = ACTIONS(1134), + [anon_sym_c_longdouble] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_yield] = ACTIONS(1134), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_defer] = ACTIONS(1134), + [anon_sym_errdefer] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_expand] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1132), + [anon_sym_orelse] = ACTIONS(1134), + [anon_sym_catch] = ACTIONS(1134), + [anon_sym_or] = ACTIONS(1134), + [anon_sym_and] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_xor] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_LT_LT_PIPE] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_try] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [sym_none] = ACTIONS(1134), + [sym_undefined] = ACTIONS(1134), + [sym_sink] = ACTIONS(1134), + [sym_integer] = ACTIONS(1134), + [sym_float] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_multiline_string] = ACTIONS(1132), + [sym_character] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1132), + }, + [STATE(636)] = { + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1182), + [anon_sym_test] = ACTIONS(1182), + [anon_sym_hide] = ACTIONS(1182), + [anon_sym_func] = ACTIONS(1182), + [anon_sym_c_func] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_RPAREN] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_COMMA] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_void] = ACTIONS(1182), + [anon_sym_type] = ACTIONS(1182), + [anon_sym_anyopaque] = ACTIONS(1182), + [anon_sym_bool] = ACTIONS(1182), + [anon_sym_int] = ACTIONS(1182), + [anon_sym_uint] = ACTIONS(1182), + [anon_sym_float] = ACTIONS(1182), + [anon_sym_range] = ACTIONS(1182), + [anon_sym_i8] = ACTIONS(1182), + [anon_sym_i16] = ACTIONS(1182), + [anon_sym_i32] = ACTIONS(1182), + [anon_sym_i64] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1182), + [anon_sym_u16] = ACTIONS(1182), + [anon_sym_u32] = ACTIONS(1182), + [anon_sym_u64] = ACTIONS(1182), + [anon_sym_isize] = ACTIONS(1182), + [anon_sym_usize] = ACTIONS(1182), + [anon_sym_f32] = ACTIONS(1182), + [anon_sym_f64] = ACTIONS(1182), + [anon_sym_c_char] = ACTIONS(1182), + [anon_sym_c_schar] = ACTIONS(1182), + [anon_sym_c_uchar] = ACTIONS(1182), + [anon_sym_c_short] = ACTIONS(1182), + [anon_sym_c_ushort] = ACTIONS(1182), + [anon_sym_c_int] = ACTIONS(1182), + [anon_sym_c_uint] = ACTIONS(1182), + [anon_sym_c_long] = ACTIONS(1182), + [anon_sym_c_ulong] = ACTIONS(1182), + [anon_sym_c_longlong] = ACTIONS(1182), + [anon_sym_c_ulonglong] = ACTIONS(1182), + [anon_sym_c_float] = ACTIONS(1182), + [anon_sym_c_double] = ACTIONS(1182), + [anon_sym_c_longdouble] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_yield] = ACTIONS(1182), + [anon_sym_COLON] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_defer] = ACTIONS(1182), + [anon_sym_errdefer] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_else] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_expand] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_match] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1180), + [anon_sym_orelse] = ACTIONS(1182), + [anon_sym_catch] = ACTIONS(1182), + [anon_sym_or] = ACTIONS(1182), + [anon_sym_and] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1180), + [anon_sym_BANG_EQ] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_EQ] = ACTIONS(1180), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_xor] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_LT_LT_PIPE] = ACTIONS(1180), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_try] = ACTIONS(1182), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [sym_none] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1182), + [sym_sink] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [sym_float] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_multiline_string] = ACTIONS(1180), + [sym_character] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1180), + }, + [STATE(637)] = { + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_test] = ACTIONS(1186), + [anon_sym_hide] = ACTIONS(1186), + [anon_sym_func] = ACTIONS(1186), + [anon_sym_c_func] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_anyopaque] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_int] = ACTIONS(1186), + [anon_sym_uint] = ACTIONS(1186), + [anon_sym_float] = ACTIONS(1186), + [anon_sym_range] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_c_char] = ACTIONS(1186), + [anon_sym_c_schar] = ACTIONS(1186), + [anon_sym_c_uchar] = ACTIONS(1186), + [anon_sym_c_short] = ACTIONS(1186), + [anon_sym_c_ushort] = ACTIONS(1186), + [anon_sym_c_int] = ACTIONS(1186), + [anon_sym_c_uint] = ACTIONS(1186), + [anon_sym_c_long] = ACTIONS(1186), + [anon_sym_c_ulong] = ACTIONS(1186), + [anon_sym_c_longlong] = ACTIONS(1186), + [anon_sym_c_ulonglong] = ACTIONS(1186), + [anon_sym_c_float] = ACTIONS(1186), + [anon_sym_c_double] = ACTIONS(1186), + [anon_sym_c_longdouble] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_COLON] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_defer] = ACTIONS(1186), + [anon_sym_errdefer] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_expand] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), + [anon_sym_orelse] = ACTIONS(1186), + [anon_sym_catch] = ACTIONS(1186), + [anon_sym_or] = ACTIONS(1186), + [anon_sym_and] = ACTIONS(1186), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1184), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_GT_EQ] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_xor] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_LT_LT_PIPE] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_SLASH] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(1186), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_none] = ACTIONS(1186), + [sym_undefined] = ACTIONS(1186), + [sym_sink] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [sym_float] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_multiline_string] = ACTIONS(1184), + [sym_character] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1184), + }, + [STATE(638)] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_test] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_func] = ACTIONS(1518), + [anon_sym_c_func] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_void] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_anyopaque] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_int] = ACTIONS(1518), + [anon_sym_uint] = ACTIONS(1518), + [anon_sym_float] = ACTIONS(1518), + [anon_sym_range] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_c_char] = ACTIONS(1518), + [anon_sym_c_schar] = ACTIONS(1518), + [anon_sym_c_uchar] = ACTIONS(1518), + [anon_sym_c_short] = ACTIONS(1518), + [anon_sym_c_ushort] = ACTIONS(1518), + [anon_sym_c_int] = ACTIONS(1518), + [anon_sym_c_uint] = ACTIONS(1518), + [anon_sym_c_long] = ACTIONS(1518), + [anon_sym_c_ulong] = ACTIONS(1518), + [anon_sym_c_longlong] = ACTIONS(1518), + [anon_sym_c_ulonglong] = ACTIONS(1518), + [anon_sym_c_float] = ACTIONS(1518), + [anon_sym_c_double] = ACTIONS(1518), + [anon_sym_c_longdouble] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_defer] = ACTIONS(1518), + [anon_sym_errdefer] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_expand] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_orelse] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_or] = ACTIONS(1518), + [anon_sym_and] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_xor] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_LT_LT_PIPE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_none] = ACTIONS(1518), + [sym_undefined] = ACTIONS(1518), + [sym_sink] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_multiline_string] = ACTIONS(1516), + [sym_character] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1516), + }, + [STATE(639)] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_test] = ACTIONS(1190), + [anon_sym_hide] = ACTIONS(1190), + [anon_sym_func] = ACTIONS(1190), + [anon_sym_c_func] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_QMARK] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_void] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_anyopaque] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), + [anon_sym_float] = ACTIONS(1190), + [anon_sym_range] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_c_char] = ACTIONS(1190), + [anon_sym_c_schar] = ACTIONS(1190), + [anon_sym_c_uchar] = ACTIONS(1190), + [anon_sym_c_short] = ACTIONS(1190), + [anon_sym_c_ushort] = ACTIONS(1190), + [anon_sym_c_int] = ACTIONS(1190), + [anon_sym_c_uint] = ACTIONS(1190), + [anon_sym_c_long] = ACTIONS(1190), + [anon_sym_c_ulong] = ACTIONS(1190), + [anon_sym_c_longlong] = ACTIONS(1190), + [anon_sym_c_ulonglong] = ACTIONS(1190), + [anon_sym_c_float] = ACTIONS(1190), + [anon_sym_c_double] = ACTIONS(1190), + [anon_sym_c_longdouble] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_COLON] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_defer] = ACTIONS(1190), + [anon_sym_errdefer] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_expand] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), + [anon_sym_orelse] = ACTIONS(1190), + [anon_sym_catch] = ACTIONS(1190), + [anon_sym_or] = ACTIONS(1190), + [anon_sym_and] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_xor] = ACTIONS(1190), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_LT_LT_PIPE] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_DOT] = ACTIONS(1190), + [anon_sym_CARET] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_none] = ACTIONS(1190), + [sym_undefined] = ACTIONS(1190), + [sym_sink] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [sym_float] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [sym_multiline_string] = ACTIONS(1188), + [sym_character] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1188), + }, + [STATE(640)] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1206), + [anon_sym_test] = ACTIONS(1206), + [anon_sym_hide] = ACTIONS(1206), + [anon_sym_func] = ACTIONS(1206), + [anon_sym_c_func] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_anyopaque] = ACTIONS(1206), + [anon_sym_bool] = ACTIONS(1206), + [anon_sym_int] = ACTIONS(1206), + [anon_sym_uint] = ACTIONS(1206), + [anon_sym_float] = ACTIONS(1206), + [anon_sym_range] = ACTIONS(1206), + [anon_sym_i8] = ACTIONS(1206), + [anon_sym_i16] = ACTIONS(1206), + [anon_sym_i32] = ACTIONS(1206), + [anon_sym_i64] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1206), + [anon_sym_u16] = ACTIONS(1206), + [anon_sym_u32] = ACTIONS(1206), + [anon_sym_u64] = ACTIONS(1206), + [anon_sym_isize] = ACTIONS(1206), + [anon_sym_usize] = ACTIONS(1206), + [anon_sym_f32] = ACTIONS(1206), + [anon_sym_f64] = ACTIONS(1206), + [anon_sym_c_char] = ACTIONS(1206), + [anon_sym_c_schar] = ACTIONS(1206), + [anon_sym_c_uchar] = ACTIONS(1206), + [anon_sym_c_short] = ACTIONS(1206), + [anon_sym_c_ushort] = ACTIONS(1206), + [anon_sym_c_int] = ACTIONS(1206), + [anon_sym_c_uint] = ACTIONS(1206), + [anon_sym_c_long] = ACTIONS(1206), + [anon_sym_c_ulong] = ACTIONS(1206), + [anon_sym_c_longlong] = ACTIONS(1206), + [anon_sym_c_ulonglong] = ACTIONS(1206), + [anon_sym_c_float] = ACTIONS(1206), + [anon_sym_c_double] = ACTIONS(1206), + [anon_sym_c_longdouble] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_defer] = ACTIONS(1206), + [anon_sym_errdefer] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_expand] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_match] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1204), + [anon_sym_orelse] = ACTIONS(1206), + [anon_sym_catch] = ACTIONS(1206), + [anon_sym_or] = ACTIONS(1206), + [anon_sym_and] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1204), + [anon_sym_BANG_EQ] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_xor] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1204), + [anon_sym_LT_LT_PIPE] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1206), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_none] = ACTIONS(1206), + [sym_undefined] = ACTIONS(1206), + [sym_sink] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [sym_float] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_multiline_string] = ACTIONS(1204), + [sym_character] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1204), + }, + [STATE(641)] = { + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1226), + [anon_sym_test] = ACTIONS(1226), + [anon_sym_hide] = ACTIONS(1226), + [anon_sym_func] = ACTIONS(1226), + [anon_sym_c_func] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1226), + [anon_sym_anyopaque] = ACTIONS(1226), + [anon_sym_bool] = ACTIONS(1226), + [anon_sym_int] = ACTIONS(1226), + [anon_sym_uint] = ACTIONS(1226), + [anon_sym_float] = ACTIONS(1226), + [anon_sym_range] = ACTIONS(1226), + [anon_sym_i8] = ACTIONS(1226), + [anon_sym_i16] = ACTIONS(1226), + [anon_sym_i32] = ACTIONS(1226), + [anon_sym_i64] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1226), + [anon_sym_u16] = ACTIONS(1226), + [anon_sym_u32] = ACTIONS(1226), + [anon_sym_u64] = ACTIONS(1226), + [anon_sym_isize] = ACTIONS(1226), + [anon_sym_usize] = ACTIONS(1226), + [anon_sym_f32] = ACTIONS(1226), + [anon_sym_f64] = ACTIONS(1226), + [anon_sym_c_char] = ACTIONS(1226), + [anon_sym_c_schar] = ACTIONS(1226), + [anon_sym_c_uchar] = ACTIONS(1226), + [anon_sym_c_short] = ACTIONS(1226), + [anon_sym_c_ushort] = ACTIONS(1226), + [anon_sym_c_int] = ACTIONS(1226), + [anon_sym_c_uint] = ACTIONS(1226), + [anon_sym_c_long] = ACTIONS(1226), + [anon_sym_c_ulong] = ACTIONS(1226), + [anon_sym_c_longlong] = ACTIONS(1226), + [anon_sym_c_ulonglong] = ACTIONS(1226), + [anon_sym_c_float] = ACTIONS(1226), + [anon_sym_c_double] = ACTIONS(1226), + [anon_sym_c_longdouble] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_COLON] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_defer] = ACTIONS(1226), + [anon_sym_errdefer] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_expand] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1224), + [anon_sym_orelse] = ACTIONS(1226), + [anon_sym_catch] = ACTIONS(1226), + [anon_sym_or] = ACTIONS(1226), + [anon_sym_and] = ACTIONS(1226), + [anon_sym_EQ_EQ] = ACTIONS(1224), + [anon_sym_BANG_EQ] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_EQ] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_EQ] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_xor] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_LT_LT_PIPE] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_try] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [sym_none] = ACTIONS(1226), + [sym_undefined] = ACTIONS(1226), + [sym_sink] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [sym_float] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [sym_multiline_string] = ACTIONS(1224), + [sym_character] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1224), + }, + [STATE(642)] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1090), + [anon_sym_COLON_COLON] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1090), + [anon_sym_test] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_func] = ACTIONS(1090), + [anon_sym_c_func] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_type] = ACTIONS(1090), + [anon_sym_anyopaque] = ACTIONS(1090), + [anon_sym_bool] = ACTIONS(1090), + [anon_sym_int] = ACTIONS(1090), + [anon_sym_uint] = ACTIONS(1090), + [anon_sym_float] = ACTIONS(1090), + [anon_sym_range] = ACTIONS(1090), + [anon_sym_i8] = ACTIONS(1090), + [anon_sym_i16] = ACTIONS(1090), + [anon_sym_i32] = ACTIONS(1090), + [anon_sym_i64] = ACTIONS(1090), + [anon_sym_u8] = ACTIONS(1090), + [anon_sym_u16] = ACTIONS(1090), + [anon_sym_u32] = ACTIONS(1090), + [anon_sym_u64] = ACTIONS(1090), + [anon_sym_isize] = ACTIONS(1090), + [anon_sym_usize] = ACTIONS(1090), + [anon_sym_f32] = ACTIONS(1090), + [anon_sym_f64] = ACTIONS(1090), + [anon_sym_c_char] = ACTIONS(1090), + [anon_sym_c_schar] = ACTIONS(1090), + [anon_sym_c_uchar] = ACTIONS(1090), + [anon_sym_c_short] = ACTIONS(1090), + [anon_sym_c_ushort] = ACTIONS(1090), + [anon_sym_c_int] = ACTIONS(1090), + [anon_sym_c_uint] = ACTIONS(1090), + [anon_sym_c_long] = ACTIONS(1090), + [anon_sym_c_ulong] = ACTIONS(1090), + [anon_sym_c_longlong] = ACTIONS(1090), + [anon_sym_c_ulonglong] = ACTIONS(1090), + [anon_sym_c_float] = ACTIONS(1090), + [anon_sym_c_double] = ACTIONS(1090), + [anon_sym_c_longdouble] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_yield] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_defer] = ACTIONS(1090), + [anon_sym_errdefer] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_expand] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [anon_sym_orelse] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_or] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_xor] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_LT_LT_PIPE] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [sym_none] = ACTIONS(1090), + [sym_undefined] = ACTIONS(1090), + [sym_sink] = ACTIONS(1090), + [sym_integer] = ACTIONS(1090), + [sym_float] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_multiline_string] = ACTIONS(1088), + [sym_character] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1088), + }, + [STATE(643)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_defer] = ACTIONS(1728), + [anon_sym_errdefer] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1732), + }, + [STATE(644)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(645)] = { + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(568), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_xor_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_LT_LT_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(646)] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1216), + [anon_sym_import] = ACTIONS(1218), + [anon_sym_test] = ACTIONS(1218), + [anon_sym_hide] = ACTIONS(1218), + [anon_sym_func] = ACTIONS(1218), + [anon_sym_c_func] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_void] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_anyopaque] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_int] = ACTIONS(1218), + [anon_sym_uint] = ACTIONS(1218), + [anon_sym_float] = ACTIONS(1218), + [anon_sym_range] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_c_char] = ACTIONS(1218), + [anon_sym_c_schar] = ACTIONS(1218), + [anon_sym_c_uchar] = ACTIONS(1218), + [anon_sym_c_short] = ACTIONS(1218), + [anon_sym_c_ushort] = ACTIONS(1218), + [anon_sym_c_int] = ACTIONS(1218), + [anon_sym_c_uint] = ACTIONS(1218), + [anon_sym_c_long] = ACTIONS(1218), + [anon_sym_c_ulong] = ACTIONS(1218), + [anon_sym_c_longlong] = ACTIONS(1218), + [anon_sym_c_ulonglong] = ACTIONS(1218), + [anon_sym_c_float] = ACTIONS(1218), + [anon_sym_c_double] = ACTIONS(1218), + [anon_sym_c_longdouble] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_defer] = ACTIONS(1218), + [anon_sym_errdefer] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_expand] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_match] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1216), + [anon_sym_orelse] = ACTIONS(1218), + [anon_sym_catch] = ACTIONS(1218), + [anon_sym_or] = ACTIONS(1218), + [anon_sym_and] = ACTIONS(1218), + [anon_sym_EQ_EQ] = ACTIONS(1216), + [anon_sym_BANG_EQ] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_LT_EQ] = ACTIONS(1216), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_GT_EQ] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_xor] = ACTIONS(1218), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_LT_LT_PIPE] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_SLASH] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [sym_none] = ACTIONS(1218), + [sym_undefined] = ACTIONS(1218), + [sym_sink] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [sym_float] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_multiline_string] = ACTIONS(1216), + [sym_character] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1216), + }, + [STATE(647)] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(1080), + [anon_sym_import] = ACTIONS(1082), + [anon_sym_test] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_func] = ACTIONS(1082), + [anon_sym_c_func] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_void] = ACTIONS(1082), + [anon_sym_type] = ACTIONS(1082), + [anon_sym_anyopaque] = ACTIONS(1082), + [anon_sym_bool] = ACTIONS(1082), + [anon_sym_int] = ACTIONS(1082), + [anon_sym_uint] = ACTIONS(1082), + [anon_sym_float] = ACTIONS(1082), + [anon_sym_range] = ACTIONS(1082), + [anon_sym_i8] = ACTIONS(1082), + [anon_sym_i16] = ACTIONS(1082), + [anon_sym_i32] = ACTIONS(1082), + [anon_sym_i64] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1082), + [anon_sym_u16] = ACTIONS(1082), + [anon_sym_u32] = ACTIONS(1082), + [anon_sym_u64] = ACTIONS(1082), + [anon_sym_isize] = ACTIONS(1082), + [anon_sym_usize] = ACTIONS(1082), + [anon_sym_f32] = ACTIONS(1082), + [anon_sym_f64] = ACTIONS(1082), + [anon_sym_c_char] = ACTIONS(1082), + [anon_sym_c_schar] = ACTIONS(1082), + [anon_sym_c_uchar] = ACTIONS(1082), + [anon_sym_c_short] = ACTIONS(1082), + [anon_sym_c_ushort] = ACTIONS(1082), + [anon_sym_c_int] = ACTIONS(1082), + [anon_sym_c_uint] = ACTIONS(1082), + [anon_sym_c_long] = ACTIONS(1082), + [anon_sym_c_ulong] = ACTIONS(1082), + [anon_sym_c_longlong] = ACTIONS(1082), + [anon_sym_c_ulonglong] = ACTIONS(1082), + [anon_sym_c_float] = ACTIONS(1082), + [anon_sym_c_double] = ACTIONS(1082), + [anon_sym_c_longdouble] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1082), + [anon_sym_COLON] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_defer] = ACTIONS(1082), + [anon_sym_errdefer] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_expand] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_orelse] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_LT_LT_PIPE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [sym_none] = ACTIONS(1082), + [sym_undefined] = ACTIONS(1082), + [sym_sink] = ACTIONS(1082), + [sym_integer] = ACTIONS(1082), + [sym_float] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_multiline_string] = ACTIONS(1080), + [sym_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1080), + }, + [STATE(648)] = { + [sym_argument_list] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_import] = ACTIONS(470), + [anon_sym_test] = ACTIONS(470), + [anon_sym_hide] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_COLON] = ACTIONS(468), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(649)] = { + [sym_argument_list] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(533), + [sym_identifier] = ACTIONS(535), + [anon_sym_import] = ACTIONS(535), + [anon_sym_test] = ACTIONS(535), + [anon_sym_hide] = ACTIONS(535), + [anon_sym_func] = ACTIONS(535), + [anon_sym_c_func] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_void] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_anyopaque] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_int] = ACTIONS(535), + [anon_sym_uint] = ACTIONS(535), + [anon_sym_float] = ACTIONS(535), + [anon_sym_range] = ACTIONS(535), + [anon_sym_i8] = ACTIONS(535), + [anon_sym_i16] = ACTIONS(535), + [anon_sym_i32] = ACTIONS(535), + [anon_sym_i64] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(535), + [anon_sym_u16] = ACTIONS(535), + [anon_sym_u32] = ACTIONS(535), + [anon_sym_u64] = ACTIONS(535), + [anon_sym_isize] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_f32] = ACTIONS(535), + [anon_sym_f64] = ACTIONS(535), + [anon_sym_c_char] = ACTIONS(535), + [anon_sym_c_schar] = ACTIONS(535), + [anon_sym_c_uchar] = ACTIONS(535), + [anon_sym_c_short] = ACTIONS(535), + [anon_sym_c_ushort] = ACTIONS(535), + [anon_sym_c_int] = ACTIONS(535), + [anon_sym_c_uint] = ACTIONS(535), + [anon_sym_c_long] = ACTIONS(535), + [anon_sym_c_ulong] = ACTIONS(535), + [anon_sym_c_longlong] = ACTIONS(535), + [anon_sym_c_ulonglong] = ACTIONS(535), + [anon_sym_c_float] = ACTIONS(535), + [anon_sym_c_double] = ACTIONS(535), + [anon_sym_c_longdouble] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_COLON] = ACTIONS(533), + [anon_sym_break] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_defer] = ACTIONS(535), + [anon_sym_errdefer] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_else] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [anon_sym_expand] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_match] = ACTIONS(535), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(533), + [anon_sym_orelse] = ACTIONS(535), + [anon_sym_catch] = ACTIONS(535), + [anon_sym_or] = ACTIONS(535), + [anon_sym_and] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(533), + [anon_sym_xor] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(533), + [anon_sym_LT_LT_PIPE] = ACTIONS(533), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_SLASH] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_try] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [sym_none] = ACTIONS(535), + [sym_undefined] = ACTIONS(535), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(535), + [sym_float] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(533), + [sym_multiline_string] = ACTIONS(533), + [sym_character] = ACTIONS(533), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(533), + }, + [STATE(650)] = { + [sym_argument_list] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [anon_sym_import] = ACTIONS(558), + [anon_sym_test] = ACTIONS(558), + [anon_sym_hide] = ACTIONS(558), + [anon_sym_func] = ACTIONS(558), + [anon_sym_c_func] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_anyopaque] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_int] = ACTIONS(558), + [anon_sym_uint] = ACTIONS(558), + [anon_sym_float] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_c_char] = ACTIONS(558), + [anon_sym_c_schar] = ACTIONS(558), + [anon_sym_c_uchar] = ACTIONS(558), + [anon_sym_c_short] = ACTIONS(558), + [anon_sym_c_ushort] = ACTIONS(558), + [anon_sym_c_int] = ACTIONS(558), + [anon_sym_c_uint] = ACTIONS(558), + [anon_sym_c_long] = ACTIONS(558), + [anon_sym_c_ulong] = ACTIONS(558), + [anon_sym_c_longlong] = ACTIONS(558), + [anon_sym_c_ulonglong] = ACTIONS(558), + [anon_sym_c_float] = ACTIONS(558), + [anon_sym_c_double] = ACTIONS(558), + [anon_sym_c_longdouble] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(556), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_defer] = ACTIONS(558), + [anon_sym_errdefer] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_expand] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_or] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_xor] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_LT_LT_PIPE] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_none] = ACTIONS(558), + [sym_undefined] = ACTIONS(558), + [sym_sink] = ACTIONS(558), + [sym_integer] = ACTIONS(558), + [sym_float] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_multiline_string] = ACTIONS(556), + [sym_character] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(556), }, [STATE(651)] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_test] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_func] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_void] = ACTIONS(973), - [anon_sym_anyopaque] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_int] = ACTIONS(973), - [anon_sym_uint] = ACTIONS(973), - [anon_sym_float] = ACTIONS(973), - [anon_sym_range] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_c_char] = ACTIONS(973), - [anon_sym_c_schar] = ACTIONS(973), - [anon_sym_c_uchar] = ACTIONS(973), - [anon_sym_c_short] = ACTIONS(973), - [anon_sym_c_ushort] = ACTIONS(973), - [anon_sym_c_int] = ACTIONS(973), - [anon_sym_c_uint] = ACTIONS(973), - [anon_sym_c_long] = ACTIONS(973), - [anon_sym_c_ulong] = ACTIONS(973), - [anon_sym_c_longlong] = ACTIONS(973), - [anon_sym_c_ulonglong] = ACTIONS(973), - [anon_sym_c_float] = ACTIONS(973), - [anon_sym_c_double] = ACTIONS(973), - [anon_sym_c_longdouble] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_defer] = ACTIONS(973), - [anon_sym_errdefer] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_expand] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_orelse] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_or] = ACTIONS(973), - [anon_sym_and] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT_PIPE] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [sym_none] = ACTIONS(973), - [sym_undefined] = ACTIONS(973), - [sym_sink] = ACTIONS(973), - [sym_integer] = ACTIONS(973), - [sym_float] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym_multiline_string] = ACTIONS(971), - [sym_character] = ACTIONS(971), + [aux_sym_type_repeat1] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [anon_sym_import] = ACTIONS(550), + [anon_sym_test] = ACTIONS(550), + [anon_sym_hide] = ACTIONS(550), + [anon_sym_func] = ACTIONS(550), + [anon_sym_c_func] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_void] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_anyopaque] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_int] = ACTIONS(550), + [anon_sym_uint] = ACTIONS(550), + [anon_sym_float] = ACTIONS(550), + [anon_sym_range] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_c_char] = ACTIONS(550), + [anon_sym_c_schar] = ACTIONS(550), + [anon_sym_c_uchar] = ACTIONS(550), + [anon_sym_c_short] = ACTIONS(550), + [anon_sym_c_ushort] = ACTIONS(550), + [anon_sym_c_int] = ACTIONS(550), + [anon_sym_c_uint] = ACTIONS(550), + [anon_sym_c_long] = ACTIONS(550), + [anon_sym_c_ulong] = ACTIONS(550), + [anon_sym_c_longlong] = ACTIONS(550), + [anon_sym_c_ulonglong] = ACTIONS(550), + [anon_sym_c_float] = ACTIONS(550), + [anon_sym_c_double] = ACTIONS(550), + [anon_sym_c_longdouble] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_defer] = ACTIONS(550), + [anon_sym_errdefer] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_else] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_expand] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_orelse] = ACTIONS(550), + [anon_sym_catch] = ACTIONS(550), + [anon_sym_or] = ACTIONS(550), + [anon_sym_and] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_xor] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_LT_LT_PIPE] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_try] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [sym_none] = ACTIONS(550), + [sym_undefined] = ACTIONS(550), + [sym_sink] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [sym_float] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(548), + [sym_multiline_string] = ACTIONS(548), + [sym_character] = ACTIONS(548), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(971), + [sym__newline] = ACTIONS(548), }, [STATE(652)] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_identifier] = ACTIONS(863), - [anon_sym_import] = ACTIONS(863), - [anon_sym_test] = ACTIONS(863), - [anon_sym_hide] = ACTIONS(863), - [anon_sym_func] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_void] = ACTIONS(863), - [anon_sym_anyopaque] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_int] = ACTIONS(863), - [anon_sym_uint] = ACTIONS(863), - [anon_sym_float] = ACTIONS(863), - [anon_sym_range] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_c_char] = ACTIONS(863), - [anon_sym_c_schar] = ACTIONS(863), - [anon_sym_c_uchar] = ACTIONS(863), - [anon_sym_c_short] = ACTIONS(863), - [anon_sym_c_ushort] = ACTIONS(863), - [anon_sym_c_int] = ACTIONS(863), - [anon_sym_c_uint] = ACTIONS(863), - [anon_sym_c_long] = ACTIONS(863), - [anon_sym_c_ulong] = ACTIONS(863), - [anon_sym_c_longlong] = ACTIONS(863), - [anon_sym_c_ulonglong] = ACTIONS(863), - [anon_sym_c_float] = ACTIONS(863), - [anon_sym_c_double] = ACTIONS(863), - [anon_sym_c_longdouble] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_COLON] = ACTIONS(861), - [anon_sym_break] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_defer] = ACTIONS(863), - [anon_sym_errdefer] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_else] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_expand] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [anon_sym_orelse] = ACTIONS(863), - [anon_sym_catch] = ACTIONS(863), - [anon_sym_or] = ACTIONS(863), - [anon_sym_and] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(863), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_LT_LT_PIPE] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_try] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [sym_none] = ACTIONS(863), - [sym_undefined] = ACTIONS(863), - [sym_sink] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [sym_float] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym_multiline_string] = ACTIONS(861), - [sym_character] = ACTIONS(861), + [sym_argument_list] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_test] = ACTIONS(572), + [anon_sym_hide] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(861), + [sym__newline] = ACTIONS(570), }, [STATE(653)] = { - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_identifier] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(1047), - [anon_sym_test] = ACTIONS(1047), - [anon_sym_hide] = ACTIONS(1047), - [anon_sym_func] = ACTIONS(1047), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_struct] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_void] = ACTIONS(1047), - [anon_sym_anyopaque] = ACTIONS(1047), - [anon_sym_bool] = ACTIONS(1047), - [anon_sym_int] = ACTIONS(1047), - [anon_sym_uint] = ACTIONS(1047), - [anon_sym_float] = ACTIONS(1047), - [anon_sym_range] = ACTIONS(1047), - [anon_sym_i8] = ACTIONS(1047), - [anon_sym_i16] = ACTIONS(1047), - [anon_sym_i32] = ACTIONS(1047), - [anon_sym_i64] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1047), - [anon_sym_u16] = ACTIONS(1047), - [anon_sym_u32] = ACTIONS(1047), - [anon_sym_u64] = ACTIONS(1047), - [anon_sym_isize] = ACTIONS(1047), - [anon_sym_usize] = ACTIONS(1047), - [anon_sym_f32] = ACTIONS(1047), - [anon_sym_f64] = ACTIONS(1047), - [anon_sym_c_char] = ACTIONS(1047), - [anon_sym_c_schar] = ACTIONS(1047), - [anon_sym_c_uchar] = ACTIONS(1047), - [anon_sym_c_short] = ACTIONS(1047), - [anon_sym_c_ushort] = ACTIONS(1047), - [anon_sym_c_int] = ACTIONS(1047), - [anon_sym_c_uint] = ACTIONS(1047), - [anon_sym_c_long] = ACTIONS(1047), - [anon_sym_c_ulong] = ACTIONS(1047), - [anon_sym_c_longlong] = ACTIONS(1047), - [anon_sym_c_ulonglong] = ACTIONS(1047), - [anon_sym_c_float] = ACTIONS(1047), - [anon_sym_c_double] = ACTIONS(1047), - [anon_sym_c_longdouble] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1047), - [anon_sym_yield] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1047), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_defer] = ACTIONS(1047), - [anon_sym_errdefer] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1047), - [anon_sym_else] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1047), - [anon_sym_expand] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_match] = ACTIONS(1047), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1045), - [anon_sym_orelse] = ACTIONS(1047), - [anon_sym_catch] = ACTIONS(1047), - [anon_sym_or] = ACTIONS(1047), - [anon_sym_and] = ACTIONS(1047), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1047), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_xor] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1047), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_LT_LT_PIPE] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [sym_none] = ACTIONS(1047), - [sym_undefined] = ACTIONS(1047), - [sym_sink] = ACTIONS(1047), - [sym_integer] = ACTIONS(1047), - [sym_float] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [sym_multiline_string] = ACTIONS(1045), - [sym_character] = ACTIONS(1045), + [aux_sym_type_repeat1] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_import] = ACTIONS(539), + [anon_sym_test] = ACTIONS(539), + [anon_sym_hide] = ACTIONS(539), + [anon_sym_func] = ACTIONS(539), + [anon_sym_c_func] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_void] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_anyopaque] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_int] = ACTIONS(539), + [anon_sym_uint] = ACTIONS(539), + [anon_sym_float] = ACTIONS(539), + [anon_sym_range] = ACTIONS(539), + [anon_sym_i8] = ACTIONS(539), + [anon_sym_i16] = ACTIONS(539), + [anon_sym_i32] = ACTIONS(539), + [anon_sym_i64] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(539), + [anon_sym_u16] = ACTIONS(539), + [anon_sym_u32] = ACTIONS(539), + [anon_sym_u64] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_c_char] = ACTIONS(539), + [anon_sym_c_schar] = ACTIONS(539), + [anon_sym_c_uchar] = ACTIONS(539), + [anon_sym_c_short] = ACTIONS(539), + [anon_sym_c_ushort] = ACTIONS(539), + [anon_sym_c_int] = ACTIONS(539), + [anon_sym_c_uint] = ACTIONS(539), + [anon_sym_c_long] = ACTIONS(539), + [anon_sym_c_ulong] = ACTIONS(539), + [anon_sym_c_longlong] = ACTIONS(539), + [anon_sym_c_ulonglong] = ACTIONS(539), + [anon_sym_c_float] = ACTIONS(539), + [anon_sym_c_double] = ACTIONS(539), + [anon_sym_c_longdouble] = ACTIONS(539), + [anon_sym_return] = ACTIONS(539), + [anon_sym_yield] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(537), + [anon_sym_break] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_defer] = ACTIONS(539), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_else] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [anon_sym_expand] = ACTIONS(539), + [anon_sym_for] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_orelse] = ACTIONS(539), + [anon_sym_catch] = ACTIONS(539), + [anon_sym_or] = ACTIONS(539), + [anon_sym_and] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_xor] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_LT_LT_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_try] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [sym_none] = ACTIONS(539), + [sym_undefined] = ACTIONS(539), + [sym_sink] = ACTIONS(539), + [sym_integer] = ACTIONS(539), + [sym_float] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(537), + [sym_multiline_string] = ACTIONS(537), + [sym_character] = ACTIONS(537), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1045), + [sym__newline] = ACTIONS(537), }, [STATE(654)] = { - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_identifier] = ACTIONS(1125), - [anon_sym_import] = ACTIONS(1125), - [anon_sym_test] = ACTIONS(1125), - [anon_sym_hide] = ACTIONS(1125), - [anon_sym_func] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_void] = ACTIONS(1125), - [anon_sym_anyopaque] = ACTIONS(1125), - [anon_sym_bool] = ACTIONS(1125), - [anon_sym_int] = ACTIONS(1125), - [anon_sym_uint] = ACTIONS(1125), - [anon_sym_float] = ACTIONS(1125), - [anon_sym_range] = ACTIONS(1125), - [anon_sym_i8] = ACTIONS(1125), - [anon_sym_i16] = ACTIONS(1125), - [anon_sym_i32] = ACTIONS(1125), - [anon_sym_i64] = ACTIONS(1125), - [anon_sym_u8] = ACTIONS(1125), - [anon_sym_u16] = ACTIONS(1125), - [anon_sym_u32] = ACTIONS(1125), - [anon_sym_u64] = ACTIONS(1125), - [anon_sym_isize] = ACTIONS(1125), - [anon_sym_usize] = ACTIONS(1125), - [anon_sym_f32] = ACTIONS(1125), - [anon_sym_f64] = ACTIONS(1125), - [anon_sym_c_char] = ACTIONS(1125), - [anon_sym_c_schar] = ACTIONS(1125), - [anon_sym_c_uchar] = ACTIONS(1125), - [anon_sym_c_short] = ACTIONS(1125), - [anon_sym_c_ushort] = ACTIONS(1125), - [anon_sym_c_int] = ACTIONS(1125), - [anon_sym_c_uint] = ACTIONS(1125), - [anon_sym_c_long] = ACTIONS(1125), - [anon_sym_c_ulong] = ACTIONS(1125), - [anon_sym_c_longlong] = ACTIONS(1125), - [anon_sym_c_ulonglong] = ACTIONS(1125), - [anon_sym_c_float] = ACTIONS(1125), - [anon_sym_c_double] = ACTIONS(1125), - [anon_sym_c_longdouble] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_yield] = ACTIONS(1125), - [anon_sym_COLON] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_defer] = ACTIONS(1125), - [anon_sym_errdefer] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_expand] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1123), - [anon_sym_orelse] = ACTIONS(1125), - [anon_sym_catch] = ACTIONS(1125), - [anon_sym_or] = ACTIONS(1125), - [anon_sym_and] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1123), - [anon_sym_BANG_EQ] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_xor] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_LT_LT_PIPE] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_SLASH] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_try] = ACTIONS(1125), - [anon_sym_DOT] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(1125), - [anon_sym_false] = ACTIONS(1125), - [sym_none] = ACTIONS(1125), - [sym_undefined] = ACTIONS(1125), - [sym_sink] = ACTIONS(1125), - [sym_integer] = ACTIONS(1125), - [sym_float] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_multiline_string] = ACTIONS(1123), - [sym_character] = ACTIONS(1123), + [sym_argument_list] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_import] = ACTIONS(568), + [anon_sym_test] = ACTIONS(568), + [anon_sym_hide] = ACTIONS(568), + [anon_sym_func] = ACTIONS(568), + [anon_sym_c_func] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_anyopaque] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_uint] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_range] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_c_char] = ACTIONS(568), + [anon_sym_c_schar] = ACTIONS(568), + [anon_sym_c_uchar] = ACTIONS(568), + [anon_sym_c_short] = ACTIONS(568), + [anon_sym_c_ushort] = ACTIONS(568), + [anon_sym_c_int] = ACTIONS(568), + [anon_sym_c_uint] = ACTIONS(568), + [anon_sym_c_long] = ACTIONS(568), + [anon_sym_c_ulong] = ACTIONS(568), + [anon_sym_c_longlong] = ACTIONS(568), + [anon_sym_c_ulonglong] = ACTIONS(568), + [anon_sym_c_float] = ACTIONS(568), + [anon_sym_c_double] = ACTIONS(568), + [anon_sym_c_longdouble] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_COLON] = ACTIONS(566), + [anon_sym_break] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_defer] = ACTIONS(568), + [anon_sym_errdefer] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_expand] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_and] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_xor] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_LT_LT_PIPE] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_try] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_none] = ACTIONS(568), + [sym_undefined] = ACTIONS(568), + [sym_sink] = ACTIONS(568), + [sym_integer] = ACTIONS(568), + [sym_float] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [sym_multiline_string] = ACTIONS(566), + [sym_character] = ACTIONS(566), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1123), + [sym__newline] = ACTIONS(566), }, [STATE(655)] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_import] = ACTIONS(1151), - [anon_sym_test] = ACTIONS(1151), - [anon_sym_hide] = ACTIONS(1151), - [anon_sym_func] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_QMARK] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_void] = ACTIONS(1151), - [anon_sym_anyopaque] = ACTIONS(1151), - [anon_sym_bool] = ACTIONS(1151), - [anon_sym_int] = ACTIONS(1151), - [anon_sym_uint] = ACTIONS(1151), - [anon_sym_float] = ACTIONS(1151), - [anon_sym_range] = ACTIONS(1151), - [anon_sym_i8] = ACTIONS(1151), - [anon_sym_i16] = ACTIONS(1151), - [anon_sym_i32] = ACTIONS(1151), - [anon_sym_i64] = ACTIONS(1151), - [anon_sym_u8] = ACTIONS(1151), - [anon_sym_u16] = ACTIONS(1151), - [anon_sym_u32] = ACTIONS(1151), - [anon_sym_u64] = ACTIONS(1151), - [anon_sym_isize] = ACTIONS(1151), - [anon_sym_usize] = ACTIONS(1151), - [anon_sym_f32] = ACTIONS(1151), - [anon_sym_f64] = ACTIONS(1151), - [anon_sym_c_char] = ACTIONS(1151), - [anon_sym_c_schar] = ACTIONS(1151), - [anon_sym_c_uchar] = ACTIONS(1151), - [anon_sym_c_short] = ACTIONS(1151), - [anon_sym_c_ushort] = ACTIONS(1151), - [anon_sym_c_int] = ACTIONS(1151), - [anon_sym_c_uint] = ACTIONS(1151), - [anon_sym_c_long] = ACTIONS(1151), - [anon_sym_c_ulong] = ACTIONS(1151), - [anon_sym_c_longlong] = ACTIONS(1151), - [anon_sym_c_ulonglong] = ACTIONS(1151), - [anon_sym_c_float] = ACTIONS(1151), - [anon_sym_c_double] = ACTIONS(1151), - [anon_sym_c_longdouble] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_yield] = ACTIONS(1151), - [anon_sym_COLON] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_defer] = ACTIONS(1151), - [anon_sym_errdefer] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_expand] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_match] = ACTIONS(1151), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1149), - [anon_sym_orelse] = ACTIONS(1151), - [anon_sym_catch] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1151), - [anon_sym_and] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1149), - [anon_sym_BANG_EQ] = ACTIONS(1149), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_xor] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1149), - [anon_sym_LT_LT_PIPE] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_SLASH] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_DOT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1149), - [anon_sym_true] = ACTIONS(1151), - [anon_sym_false] = ACTIONS(1151), - [sym_none] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1151), - [sym_sink] = ACTIONS(1151), - [sym_integer] = ACTIONS(1151), - [sym_float] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_multiline_string] = ACTIONS(1149), - [sym_character] = ACTIONS(1149), + [aux_sym_type_repeat1] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_test] = ACTIONS(546), + [anon_sym_hide] = ACTIONS(546), + [anon_sym_func] = ACTIONS(546), + [anon_sym_c_func] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_void] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_anyopaque] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_int] = ACTIONS(546), + [anon_sym_uint] = ACTIONS(546), + [anon_sym_float] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_c_char] = ACTIONS(546), + [anon_sym_c_schar] = ACTIONS(546), + [anon_sym_c_uchar] = ACTIONS(546), + [anon_sym_c_short] = ACTIONS(546), + [anon_sym_c_ushort] = ACTIONS(546), + [anon_sym_c_int] = ACTIONS(546), + [anon_sym_c_uint] = ACTIONS(546), + [anon_sym_c_long] = ACTIONS(546), + [anon_sym_c_ulong] = ACTIONS(546), + [anon_sym_c_longlong] = ACTIONS(546), + [anon_sym_c_ulonglong] = ACTIONS(546), + [anon_sym_c_float] = ACTIONS(546), + [anon_sym_c_double] = ACTIONS(546), + [anon_sym_c_longdouble] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_defer] = ACTIONS(546), + [anon_sym_errdefer] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_expand] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_orelse] = ACTIONS(546), + [anon_sym_catch] = ACTIONS(546), + [anon_sym_or] = ACTIONS(546), + [anon_sym_and] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_xor] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(544), + [anon_sym_LT_LT_PIPE] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_SLASH] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_try] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_none] = ACTIONS(546), + [sym_undefined] = ACTIONS(546), + [sym_sink] = ACTIONS(546), + [sym_integer] = ACTIONS(546), + [sym_float] = ACTIONS(544), + [anon_sym_DQUOTE] = ACTIONS(544), + [sym_multiline_string] = ACTIONS(544), + [sym_character] = ACTIONS(544), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1149), + [sym__newline] = ACTIONS(544), }, [STATE(656)] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(1155), - [anon_sym_test] = ACTIONS(1155), - [anon_sym_hide] = ACTIONS(1155), - [anon_sym_func] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_anyopaque] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_int] = ACTIONS(1155), - [anon_sym_uint] = ACTIONS(1155), - [anon_sym_float] = ACTIONS(1155), - [anon_sym_range] = ACTIONS(1155), - [anon_sym_i8] = ACTIONS(1155), - [anon_sym_i16] = ACTIONS(1155), - [anon_sym_i32] = ACTIONS(1155), - [anon_sym_i64] = ACTIONS(1155), - [anon_sym_u8] = ACTIONS(1155), - [anon_sym_u16] = ACTIONS(1155), - [anon_sym_u32] = ACTIONS(1155), - [anon_sym_u64] = ACTIONS(1155), - [anon_sym_isize] = ACTIONS(1155), - [anon_sym_usize] = ACTIONS(1155), - [anon_sym_f32] = ACTIONS(1155), - [anon_sym_f64] = ACTIONS(1155), - [anon_sym_c_char] = ACTIONS(1155), - [anon_sym_c_schar] = ACTIONS(1155), - [anon_sym_c_uchar] = ACTIONS(1155), - [anon_sym_c_short] = ACTIONS(1155), - [anon_sym_c_ushort] = ACTIONS(1155), - [anon_sym_c_int] = ACTIONS(1155), - [anon_sym_c_uint] = ACTIONS(1155), - [anon_sym_c_long] = ACTIONS(1155), - [anon_sym_c_ulong] = ACTIONS(1155), - [anon_sym_c_longlong] = ACTIONS(1155), - [anon_sym_c_ulonglong] = ACTIONS(1155), - [anon_sym_c_float] = ACTIONS(1155), - [anon_sym_c_double] = ACTIONS(1155), - [anon_sym_c_longdouble] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(1155), - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_defer] = ACTIONS(1155), - [anon_sym_errdefer] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_expand] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_DOT_DOT] = ACTIONS(1155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1153), - [anon_sym_orelse] = ACTIONS(1155), - [anon_sym_catch] = ACTIONS(1155), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_and] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_EQ] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_GT_EQ] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_xor] = ACTIONS(1155), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_LT_LT_PIPE] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1155), - [anon_sym_CARET] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), - [sym_none] = ACTIONS(1155), - [sym_undefined] = ACTIONS(1155), - [sym_sink] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [sym_float] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_multiline_string] = ACTIONS(1153), - [sym_character] = ACTIONS(1153), + [ts_builtin_sym_end] = ACTIONS(826), + [sym_identifier] = ACTIONS(828), + [anon_sym_import] = ACTIONS(828), + [anon_sym_test] = ACTIONS(828), + [anon_sym_hide] = ACTIONS(828), + [anon_sym_func] = ACTIONS(828), + [anon_sym_c_func] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_void] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_anyopaque] = ACTIONS(828), + [anon_sym_bool] = ACTIONS(828), + [anon_sym_int] = ACTIONS(828), + [anon_sym_uint] = ACTIONS(828), + [anon_sym_float] = ACTIONS(828), + [anon_sym_range] = ACTIONS(828), + [anon_sym_i8] = ACTIONS(828), + [anon_sym_i16] = ACTIONS(828), + [anon_sym_i32] = ACTIONS(828), + [anon_sym_i64] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(828), + [anon_sym_u16] = ACTIONS(828), + [anon_sym_u32] = ACTIONS(828), + [anon_sym_u64] = ACTIONS(828), + [anon_sym_isize] = ACTIONS(828), + [anon_sym_usize] = ACTIONS(828), + [anon_sym_f32] = ACTIONS(828), + [anon_sym_f64] = ACTIONS(828), + [anon_sym_c_char] = ACTIONS(828), + [anon_sym_c_schar] = ACTIONS(828), + [anon_sym_c_uchar] = ACTIONS(828), + [anon_sym_c_short] = ACTIONS(828), + [anon_sym_c_ushort] = ACTIONS(828), + [anon_sym_c_int] = ACTIONS(828), + [anon_sym_c_uint] = ACTIONS(828), + [anon_sym_c_long] = ACTIONS(828), + [anon_sym_c_ulong] = ACTIONS(828), + [anon_sym_c_longlong] = ACTIONS(828), + [anon_sym_c_ulonglong] = ACTIONS(828), + [anon_sym_c_float] = ACTIONS(828), + [anon_sym_c_double] = ACTIONS(828), + [anon_sym_c_longdouble] = ACTIONS(828), + [anon_sym_return] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(828), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(828), + [anon_sym_defer] = ACTIONS(828), + [anon_sym_errdefer] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_expand] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_match] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [anon_sym_orelse] = ACTIONS(828), + [anon_sym_catch] = ACTIONS(828), + [anon_sym_or] = ACTIONS(828), + [anon_sym_and] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(828), + [anon_sym_DOT] = ACTIONS(828), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_true] = ACTIONS(828), + [anon_sym_false] = ACTIONS(828), + [sym_none] = ACTIONS(828), + [sym_undefined] = ACTIONS(828), + [sym_sink] = ACTIONS(828), + [sym_integer] = ACTIONS(828), + [sym_float] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_multiline_string] = ACTIONS(826), + [sym_character] = ACTIONS(826), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(826), }, [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_import] = ACTIONS(787), - [anon_sym_test] = ACTIONS(787), - [anon_sym_hide] = ACTIONS(787), - [anon_sym_func] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_struct] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_void] = ACTIONS(787), - [anon_sym_anyopaque] = ACTIONS(787), - [anon_sym_bool] = ACTIONS(787), - [anon_sym_int] = ACTIONS(787), - [anon_sym_uint] = ACTIONS(787), - [anon_sym_float] = ACTIONS(787), - [anon_sym_range] = ACTIONS(787), - [anon_sym_i8] = ACTIONS(787), - [anon_sym_i16] = ACTIONS(787), - [anon_sym_i32] = ACTIONS(787), - [anon_sym_i64] = ACTIONS(787), - [anon_sym_u8] = ACTIONS(787), - [anon_sym_u16] = ACTIONS(787), - [anon_sym_u32] = ACTIONS(787), - [anon_sym_u64] = ACTIONS(787), - [anon_sym_isize] = ACTIONS(787), - [anon_sym_usize] = ACTIONS(787), - [anon_sym_f32] = ACTIONS(787), - [anon_sym_f64] = ACTIONS(787), - [anon_sym_c_char] = ACTIONS(787), - [anon_sym_c_schar] = ACTIONS(787), - [anon_sym_c_uchar] = ACTIONS(787), - [anon_sym_c_short] = ACTIONS(787), - [anon_sym_c_ushort] = ACTIONS(787), - [anon_sym_c_int] = ACTIONS(787), - [anon_sym_c_uint] = ACTIONS(787), - [anon_sym_c_long] = ACTIONS(787), - [anon_sym_c_ulong] = ACTIONS(787), - [anon_sym_c_longlong] = ACTIONS(787), - [anon_sym_c_ulonglong] = ACTIONS(787), - [anon_sym_c_float] = ACTIONS(787), - [anon_sym_c_double] = ACTIONS(787), - [anon_sym_c_longdouble] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_defer] = ACTIONS(787), - [anon_sym_errdefer] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_else] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_expand] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_match] = ACTIONS(787), - [anon_sym_DOT_DOT] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(785), - [anon_sym_orelse] = ACTIONS(787), - [anon_sym_catch] = ACTIONS(787), - [anon_sym_or] = ACTIONS(787), - [anon_sym_and] = ACTIONS(787), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_xor] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_LT_LT_PIPE] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_try] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), - [sym_undefined] = ACTIONS(787), - [sym_sink] = ACTIONS(787), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_multiline_string] = ACTIONS(785), - [sym_character] = ACTIONS(785), + [ts_builtin_sym_end] = ACTIONS(956), + [sym_identifier] = ACTIONS(958), + [anon_sym_import] = ACTIONS(958), + [anon_sym_test] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_func] = ACTIONS(958), + [anon_sym_c_func] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_struct] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_void] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_anyopaque] = ACTIONS(958), + [anon_sym_bool] = ACTIONS(958), + [anon_sym_int] = ACTIONS(958), + [anon_sym_uint] = ACTIONS(958), + [anon_sym_float] = ACTIONS(958), + [anon_sym_range] = ACTIONS(958), + [anon_sym_i8] = ACTIONS(958), + [anon_sym_i16] = ACTIONS(958), + [anon_sym_i32] = ACTIONS(958), + [anon_sym_i64] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(958), + [anon_sym_u16] = ACTIONS(958), + [anon_sym_u32] = ACTIONS(958), + [anon_sym_u64] = ACTIONS(958), + [anon_sym_isize] = ACTIONS(958), + [anon_sym_usize] = ACTIONS(958), + [anon_sym_f32] = ACTIONS(958), + [anon_sym_f64] = ACTIONS(958), + [anon_sym_c_char] = ACTIONS(958), + [anon_sym_c_schar] = ACTIONS(958), + [anon_sym_c_uchar] = ACTIONS(958), + [anon_sym_c_short] = ACTIONS(958), + [anon_sym_c_ushort] = ACTIONS(958), + [anon_sym_c_int] = ACTIONS(958), + [anon_sym_c_uint] = ACTIONS(958), + [anon_sym_c_long] = ACTIONS(958), + [anon_sym_c_ulong] = ACTIONS(958), + [anon_sym_c_longlong] = ACTIONS(958), + [anon_sym_c_ulonglong] = ACTIONS(958), + [anon_sym_c_float] = ACTIONS(958), + [anon_sym_c_double] = ACTIONS(958), + [anon_sym_c_longdouble] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(958), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_defer] = ACTIONS(958), + [anon_sym_errdefer] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_expand] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_orelse] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_or] = ACTIONS(958), + [anon_sym_and] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_GT_GT] = ACTIONS(956), + [anon_sym_LT_LT_PIPE] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(958), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [sym_none] = ACTIONS(958), + [sym_undefined] = ACTIONS(958), + [sym_sink] = ACTIONS(958), + [sym_integer] = ACTIONS(958), + [sym_float] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym_multiline_string] = ACTIONS(956), + [sym_character] = ACTIONS(956), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), + [sym__newline] = ACTIONS(956), }, [STATE(658)] = { - [ts_builtin_sym_end] = ACTIONS(1049), - [sym_identifier] = ACTIONS(1051), - [anon_sym_import] = ACTIONS(1051), - [anon_sym_test] = ACTIONS(1051), - [anon_sym_hide] = ACTIONS(1051), - [anon_sym_func] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_void] = ACTIONS(1051), - [anon_sym_anyopaque] = ACTIONS(1051), - [anon_sym_bool] = ACTIONS(1051), - [anon_sym_int] = ACTIONS(1051), - [anon_sym_uint] = ACTIONS(1051), - [anon_sym_float] = ACTIONS(1051), - [anon_sym_range] = ACTIONS(1051), - [anon_sym_i8] = ACTIONS(1051), - [anon_sym_i16] = ACTIONS(1051), - [anon_sym_i32] = ACTIONS(1051), - [anon_sym_i64] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1051), - [anon_sym_u16] = ACTIONS(1051), - [anon_sym_u32] = ACTIONS(1051), - [anon_sym_u64] = ACTIONS(1051), - [anon_sym_isize] = ACTIONS(1051), - [anon_sym_usize] = ACTIONS(1051), - [anon_sym_f32] = ACTIONS(1051), - [anon_sym_f64] = ACTIONS(1051), - [anon_sym_c_char] = ACTIONS(1051), - [anon_sym_c_schar] = ACTIONS(1051), - [anon_sym_c_uchar] = ACTIONS(1051), - [anon_sym_c_short] = ACTIONS(1051), - [anon_sym_c_ushort] = ACTIONS(1051), - [anon_sym_c_int] = ACTIONS(1051), - [anon_sym_c_uint] = ACTIONS(1051), - [anon_sym_c_long] = ACTIONS(1051), - [anon_sym_c_ulong] = ACTIONS(1051), - [anon_sym_c_longlong] = ACTIONS(1051), - [anon_sym_c_ulonglong] = ACTIONS(1051), - [anon_sym_c_float] = ACTIONS(1051), - [anon_sym_c_double] = ACTIONS(1051), - [anon_sym_c_longdouble] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_defer] = ACTIONS(1051), - [anon_sym_errdefer] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_else] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_expand] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_match] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), - [anon_sym_orelse] = ACTIONS(1051), - [anon_sym_catch] = ACTIONS(1051), - [anon_sym_or] = ACTIONS(1051), - [anon_sym_and] = ACTIONS(1051), - [anon_sym_EQ_EQ] = ACTIONS(1049), - [anon_sym_BANG_EQ] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1049), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_GT_EQ] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_xor] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_LT_LT_PIPE] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_TILDE] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_true] = ACTIONS(1051), - [anon_sym_false] = ACTIONS(1051), - [sym_none] = ACTIONS(1051), - [sym_undefined] = ACTIONS(1051), - [sym_sink] = ACTIONS(1051), - [sym_integer] = ACTIONS(1051), - [sym_float] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_multiline_string] = ACTIONS(1049), - [sym_character] = ACTIONS(1049), + [ts_builtin_sym_end] = ACTIONS(718), + [sym_identifier] = ACTIONS(720), + [anon_sym_import] = ACTIONS(720), + [anon_sym_test] = ACTIONS(720), + [anon_sym_hide] = ACTIONS(720), + [anon_sym_func] = ACTIONS(720), + [anon_sym_c_func] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_struct] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(718), + [anon_sym_void] = ACTIONS(720), + [anon_sym_type] = ACTIONS(720), + [anon_sym_anyopaque] = ACTIONS(720), + [anon_sym_bool] = ACTIONS(720), + [anon_sym_int] = ACTIONS(720), + [anon_sym_uint] = ACTIONS(720), + [anon_sym_float] = ACTIONS(720), + [anon_sym_range] = ACTIONS(720), + [anon_sym_i8] = ACTIONS(720), + [anon_sym_i16] = ACTIONS(720), + [anon_sym_i32] = ACTIONS(720), + [anon_sym_i64] = ACTIONS(720), + [anon_sym_u8] = ACTIONS(720), + [anon_sym_u16] = ACTIONS(720), + [anon_sym_u32] = ACTIONS(720), + [anon_sym_u64] = ACTIONS(720), + [anon_sym_isize] = ACTIONS(720), + [anon_sym_usize] = ACTIONS(720), + [anon_sym_f32] = ACTIONS(720), + [anon_sym_f64] = ACTIONS(720), + [anon_sym_c_char] = ACTIONS(720), + [anon_sym_c_schar] = ACTIONS(720), + [anon_sym_c_uchar] = ACTIONS(720), + [anon_sym_c_short] = ACTIONS(720), + [anon_sym_c_ushort] = ACTIONS(720), + [anon_sym_c_int] = ACTIONS(720), + [anon_sym_c_uint] = ACTIONS(720), + [anon_sym_c_long] = ACTIONS(720), + [anon_sym_c_ulong] = ACTIONS(720), + [anon_sym_c_longlong] = ACTIONS(720), + [anon_sym_c_ulonglong] = ACTIONS(720), + [anon_sym_c_float] = ACTIONS(720), + [anon_sym_c_double] = ACTIONS(720), + [anon_sym_c_longdouble] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(720), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_defer] = ACTIONS(720), + [anon_sym_errdefer] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_else] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_expand] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_match] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(718), + [anon_sym_orelse] = ACTIONS(720), + [anon_sym_catch] = ACTIONS(720), + [anon_sym_or] = ACTIONS(720), + [anon_sym_and] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(718), + [anon_sym_BANG_EQ] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_LT_EQ] = ACTIONS(718), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_xor] = ACTIONS(720), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(718), + [anon_sym_LT_LT_PIPE] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_try] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(718), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_none] = ACTIONS(720), + [sym_undefined] = ACTIONS(720), + [sym_sink] = ACTIONS(720), + [sym_integer] = ACTIONS(720), + [sym_float] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(718), + [sym_multiline_string] = ACTIONS(718), + [sym_character] = ACTIONS(718), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1049), + [sym__newline] = ACTIONS(718), }, [STATE(659)] = { - [ts_builtin_sym_end] = ACTIONS(789), - [sym_identifier] = ACTIONS(791), - [anon_sym_import] = ACTIONS(791), - [anon_sym_test] = ACTIONS(791), - [anon_sym_hide] = ACTIONS(791), - [anon_sym_func] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_struct] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_void] = ACTIONS(791), - [anon_sym_anyopaque] = ACTIONS(791), - [anon_sym_bool] = ACTIONS(791), - [anon_sym_int] = ACTIONS(791), - [anon_sym_uint] = ACTIONS(791), - [anon_sym_float] = ACTIONS(791), - [anon_sym_range] = ACTIONS(791), - [anon_sym_i8] = ACTIONS(791), - [anon_sym_i16] = ACTIONS(791), - [anon_sym_i32] = ACTIONS(791), - [anon_sym_i64] = ACTIONS(791), - [anon_sym_u8] = ACTIONS(791), - [anon_sym_u16] = ACTIONS(791), - [anon_sym_u32] = ACTIONS(791), - [anon_sym_u64] = ACTIONS(791), - [anon_sym_isize] = ACTIONS(791), - [anon_sym_usize] = ACTIONS(791), - [anon_sym_f32] = ACTIONS(791), - [anon_sym_f64] = ACTIONS(791), - [anon_sym_c_char] = ACTIONS(791), - [anon_sym_c_schar] = ACTIONS(791), - [anon_sym_c_uchar] = ACTIONS(791), - [anon_sym_c_short] = ACTIONS(791), - [anon_sym_c_ushort] = ACTIONS(791), - [anon_sym_c_int] = ACTIONS(791), - [anon_sym_c_uint] = ACTIONS(791), - [anon_sym_c_long] = ACTIONS(791), - [anon_sym_c_ulong] = ACTIONS(791), - [anon_sym_c_longlong] = ACTIONS(791), - [anon_sym_c_ulonglong] = ACTIONS(791), - [anon_sym_c_float] = ACTIONS(791), - [anon_sym_c_double] = ACTIONS(791), - [anon_sym_c_longdouble] = ACTIONS(791), - [anon_sym_return] = ACTIONS(791), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_break] = ACTIONS(791), - [anon_sym_continue] = ACTIONS(791), - [anon_sym_defer] = ACTIONS(791), - [anon_sym_errdefer] = ACTIONS(791), - [anon_sym_if] = ACTIONS(791), - [anon_sym_else] = ACTIONS(791), - [anon_sym_while] = ACTIONS(791), - [anon_sym_expand] = ACTIONS(791), - [anon_sym_for] = ACTIONS(791), - [anon_sym_match] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [anon_sym_orelse] = ACTIONS(791), - [anon_sym_catch] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(789), - [anon_sym_LT_LT_PIPE] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_try] = ACTIONS(791), - [anon_sym_DOT] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_true] = ACTIONS(791), - [anon_sym_false] = ACTIONS(791), - [sym_none] = ACTIONS(791), - [sym_undefined] = ACTIONS(791), - [sym_sink] = ACTIONS(791), - [sym_integer] = ACTIONS(791), - [sym_float] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym_multiline_string] = ACTIONS(789), - [sym_character] = ACTIONS(789), + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [anon_sym_import] = ACTIONS(724), + [anon_sym_test] = ACTIONS(724), + [anon_sym_hide] = ACTIONS(724), + [anon_sym_func] = ACTIONS(724), + [anon_sym_c_func] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_struct] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_void] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_anyopaque] = ACTIONS(724), + [anon_sym_bool] = ACTIONS(724), + [anon_sym_int] = ACTIONS(724), + [anon_sym_uint] = ACTIONS(724), + [anon_sym_float] = ACTIONS(724), + [anon_sym_range] = ACTIONS(724), + [anon_sym_i8] = ACTIONS(724), + [anon_sym_i16] = ACTIONS(724), + [anon_sym_i32] = ACTIONS(724), + [anon_sym_i64] = ACTIONS(724), + [anon_sym_u8] = ACTIONS(724), + [anon_sym_u16] = ACTIONS(724), + [anon_sym_u32] = ACTIONS(724), + [anon_sym_u64] = ACTIONS(724), + [anon_sym_isize] = ACTIONS(724), + [anon_sym_usize] = ACTIONS(724), + [anon_sym_f32] = ACTIONS(724), + [anon_sym_f64] = ACTIONS(724), + [anon_sym_c_char] = ACTIONS(724), + [anon_sym_c_schar] = ACTIONS(724), + [anon_sym_c_uchar] = ACTIONS(724), + [anon_sym_c_short] = ACTIONS(724), + [anon_sym_c_ushort] = ACTIONS(724), + [anon_sym_c_int] = ACTIONS(724), + [anon_sym_c_uint] = ACTIONS(724), + [anon_sym_c_long] = ACTIONS(724), + [anon_sym_c_ulong] = ACTIONS(724), + [anon_sym_c_longlong] = ACTIONS(724), + [anon_sym_c_ulonglong] = ACTIONS(724), + [anon_sym_c_float] = ACTIONS(724), + [anon_sym_c_double] = ACTIONS(724), + [anon_sym_c_longdouble] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(722), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_defer] = ACTIONS(724), + [anon_sym_errdefer] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_expand] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_match] = ACTIONS(724), + [anon_sym_DOT_DOT] = ACTIONS(724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(722), + [anon_sym_orelse] = ACTIONS(724), + [anon_sym_catch] = ACTIONS(724), + [anon_sym_or] = ACTIONS(724), + [anon_sym_and] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(722), + [anon_sym_BANG_EQ] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_LT_EQ] = ACTIONS(722), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_EQ] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_xor] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_LT_LT_PIPE] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_try] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(722), + [anon_sym_true] = ACTIONS(724), + [anon_sym_false] = ACTIONS(724), + [sym_none] = ACTIONS(724), + [sym_undefined] = ACTIONS(724), + [sym_sink] = ACTIONS(724), + [sym_integer] = ACTIONS(724), + [sym_float] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym_multiline_string] = ACTIONS(722), + [sym_character] = ACTIONS(722), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(789), + [sym__newline] = ACTIONS(722), }, [STATE(660)] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1055), - [anon_sym_import] = ACTIONS(1055), - [anon_sym_test] = ACTIONS(1055), - [anon_sym_hide] = ACTIONS(1055), - [anon_sym_func] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_struct] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_void] = ACTIONS(1055), - [anon_sym_anyopaque] = ACTIONS(1055), - [anon_sym_bool] = ACTIONS(1055), - [anon_sym_int] = ACTIONS(1055), - [anon_sym_uint] = ACTIONS(1055), - [anon_sym_float] = ACTIONS(1055), - [anon_sym_range] = ACTIONS(1055), - [anon_sym_i8] = ACTIONS(1055), - [anon_sym_i16] = ACTIONS(1055), - [anon_sym_i32] = ACTIONS(1055), - [anon_sym_i64] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1055), - [anon_sym_u16] = ACTIONS(1055), - [anon_sym_u32] = ACTIONS(1055), - [anon_sym_u64] = ACTIONS(1055), - [anon_sym_isize] = ACTIONS(1055), - [anon_sym_usize] = ACTIONS(1055), - [anon_sym_f32] = ACTIONS(1055), - [anon_sym_f64] = ACTIONS(1055), - [anon_sym_c_char] = ACTIONS(1055), - [anon_sym_c_schar] = ACTIONS(1055), - [anon_sym_c_uchar] = ACTIONS(1055), - [anon_sym_c_short] = ACTIONS(1055), - [anon_sym_c_ushort] = ACTIONS(1055), - [anon_sym_c_int] = ACTIONS(1055), - [anon_sym_c_uint] = ACTIONS(1055), - [anon_sym_c_long] = ACTIONS(1055), - [anon_sym_c_ulong] = ACTIONS(1055), - [anon_sym_c_longlong] = ACTIONS(1055), - [anon_sym_c_ulonglong] = ACTIONS(1055), - [anon_sym_c_float] = ACTIONS(1055), - [anon_sym_c_double] = ACTIONS(1055), - [anon_sym_c_longdouble] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_yield] = ACTIONS(1055), - [anon_sym_COLON] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1055), - [anon_sym_defer] = ACTIONS(1055), - [anon_sym_errdefer] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1055), - [anon_sym_else] = ACTIONS(1055), - [anon_sym_while] = ACTIONS(1055), - [anon_sym_expand] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1055), - [anon_sym_match] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), - [anon_sym_orelse] = ACTIONS(1055), - [anon_sym_catch] = ACTIONS(1055), - [anon_sym_or] = ACTIONS(1055), - [anon_sym_and] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(1053), - [anon_sym_BANG_EQ] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1053), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_EQ] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_xor] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_LT_LT_PIPE] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1055), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_true] = ACTIONS(1055), - [anon_sym_false] = ACTIONS(1055), - [sym_none] = ACTIONS(1055), - [sym_undefined] = ACTIONS(1055), - [sym_sink] = ACTIONS(1055), - [sym_integer] = ACTIONS(1055), - [sym_float] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [sym_multiline_string] = ACTIONS(1053), - [sym_character] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_identifier] = ACTIONS(778), + [anon_sym_import] = ACTIONS(778), + [anon_sym_test] = ACTIONS(778), + [anon_sym_hide] = ACTIONS(778), + [anon_sym_func] = ACTIONS(778), + [anon_sym_c_func] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_struct] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_void] = ACTIONS(778), + [anon_sym_type] = ACTIONS(778), + [anon_sym_anyopaque] = ACTIONS(778), + [anon_sym_bool] = ACTIONS(778), + [anon_sym_int] = ACTIONS(778), + [anon_sym_uint] = ACTIONS(778), + [anon_sym_float] = ACTIONS(778), + [anon_sym_range] = ACTIONS(778), + [anon_sym_i8] = ACTIONS(778), + [anon_sym_i16] = ACTIONS(778), + [anon_sym_i32] = ACTIONS(778), + [anon_sym_i64] = ACTIONS(778), + [anon_sym_u8] = ACTIONS(778), + [anon_sym_u16] = ACTIONS(778), + [anon_sym_u32] = ACTIONS(778), + [anon_sym_u64] = ACTIONS(778), + [anon_sym_isize] = ACTIONS(778), + [anon_sym_usize] = ACTIONS(778), + [anon_sym_f32] = ACTIONS(778), + [anon_sym_f64] = ACTIONS(778), + [anon_sym_c_char] = ACTIONS(778), + [anon_sym_c_schar] = ACTIONS(778), + [anon_sym_c_uchar] = ACTIONS(778), + [anon_sym_c_short] = ACTIONS(778), + [anon_sym_c_ushort] = ACTIONS(778), + [anon_sym_c_int] = ACTIONS(778), + [anon_sym_c_uint] = ACTIONS(778), + [anon_sym_c_long] = ACTIONS(778), + [anon_sym_c_ulong] = ACTIONS(778), + [anon_sym_c_longlong] = ACTIONS(778), + [anon_sym_c_ulonglong] = ACTIONS(778), + [anon_sym_c_float] = ACTIONS(778), + [anon_sym_c_double] = ACTIONS(778), + [anon_sym_c_longdouble] = ACTIONS(778), + [anon_sym_return] = ACTIONS(778), + [anon_sym_yield] = ACTIONS(778), + [anon_sym_COLON] = ACTIONS(776), + [anon_sym_break] = ACTIONS(778), + [anon_sym_continue] = ACTIONS(778), + [anon_sym_defer] = ACTIONS(778), + [anon_sym_errdefer] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_else] = ACTIONS(778), + [anon_sym_while] = ACTIONS(778), + [anon_sym_expand] = ACTIONS(778), + [anon_sym_for] = ACTIONS(778), + [anon_sym_match] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(776), + [anon_sym_orelse] = ACTIONS(778), + [anon_sym_catch] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(776), + [anon_sym_BANG_EQ] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(776), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(776), + [anon_sym_xor] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_LT_LT_PIPE] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(776), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_try] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(776), + [anon_sym_true] = ACTIONS(778), + [anon_sym_false] = ACTIONS(778), + [sym_none] = ACTIONS(778), + [sym_undefined] = ACTIONS(778), + [sym_sink] = ACTIONS(778), + [sym_integer] = ACTIONS(778), + [sym_float] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(776), + [sym_multiline_string] = ACTIONS(776), + [sym_character] = ACTIONS(776), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1053), + [sym__newline] = ACTIONS(776), }, [STATE(661)] = { - [ts_builtin_sym_end] = ACTIONS(865), - [sym_identifier] = ACTIONS(867), - [anon_sym_import] = ACTIONS(867), - [anon_sym_test] = ACTIONS(867), - [anon_sym_hide] = ACTIONS(867), - [anon_sym_func] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_void] = ACTIONS(867), - [anon_sym_anyopaque] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_int] = ACTIONS(867), - [anon_sym_uint] = ACTIONS(867), - [anon_sym_float] = ACTIONS(867), - [anon_sym_range] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_c_char] = ACTIONS(867), - [anon_sym_c_schar] = ACTIONS(867), - [anon_sym_c_uchar] = ACTIONS(867), - [anon_sym_c_short] = ACTIONS(867), - [anon_sym_c_ushort] = ACTIONS(867), - [anon_sym_c_int] = ACTIONS(867), - [anon_sym_c_uint] = ACTIONS(867), - [anon_sym_c_long] = ACTIONS(867), - [anon_sym_c_ulong] = ACTIONS(867), - [anon_sym_c_longlong] = ACTIONS(867), - [anon_sym_c_ulonglong] = ACTIONS(867), - [anon_sym_c_float] = ACTIONS(867), - [anon_sym_c_double] = ACTIONS(867), - [anon_sym_c_longdouble] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(865), - [anon_sym_break] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_defer] = ACTIONS(867), - [anon_sym_errdefer] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_else] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [anon_sym_expand] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [anon_sym_orelse] = ACTIONS(867), - [anon_sym_catch] = ACTIONS(867), - [anon_sym_or] = ACTIONS(867), - [anon_sym_and] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(867), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(865), - [anon_sym_LT_LT_PIPE] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_TILDE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(865), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [sym_none] = ACTIONS(867), - [sym_undefined] = ACTIONS(867), - [sym_sink] = ACTIONS(867), - [sym_integer] = ACTIONS(867), - [sym_float] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym_multiline_string] = ACTIONS(865), - [sym_character] = ACTIONS(865), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(865), - }, - [STATE(662)] = { - [ts_builtin_sym_end] = ACTIONS(869), - [sym_identifier] = ACTIONS(871), - [anon_sym_import] = ACTIONS(871), - [anon_sym_test] = ACTIONS(871), - [anon_sym_hide] = ACTIONS(871), - [anon_sym_func] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_void] = ACTIONS(871), - [anon_sym_anyopaque] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_int] = ACTIONS(871), - [anon_sym_uint] = ACTIONS(871), - [anon_sym_float] = ACTIONS(871), - [anon_sym_range] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_c_char] = ACTIONS(871), - [anon_sym_c_schar] = ACTIONS(871), - [anon_sym_c_uchar] = ACTIONS(871), - [anon_sym_c_short] = ACTIONS(871), - [anon_sym_c_ushort] = ACTIONS(871), - [anon_sym_c_int] = ACTIONS(871), - [anon_sym_c_uint] = ACTIONS(871), - [anon_sym_c_long] = ACTIONS(871), - [anon_sym_c_ulong] = ACTIONS(871), - [anon_sym_c_longlong] = ACTIONS(871), - [anon_sym_c_ulonglong] = ACTIONS(871), - [anon_sym_c_float] = ACTIONS(871), - [anon_sym_c_double] = ACTIONS(871), - [anon_sym_c_longdouble] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_yield] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_break] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_defer] = ACTIONS(871), - [anon_sym_errdefer] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_else] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [anon_sym_expand] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_orelse] = ACTIONS(871), - [anon_sym_catch] = ACTIONS(871), - [anon_sym_or] = ACTIONS(871), - [anon_sym_and] = ACTIONS(871), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_xor] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(871), - [anon_sym_GT_GT] = ACTIONS(869), - [anon_sym_LT_LT_PIPE] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_try] = ACTIONS(871), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(869), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [sym_none] = ACTIONS(871), - [sym_undefined] = ACTIONS(871), - [sym_sink] = ACTIONS(871), - [sym_integer] = ACTIONS(871), - [sym_float] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym_multiline_string] = ACTIONS(869), - [sym_character] = ACTIONS(869), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(869), - }, - [STATE(663)] = { - [ts_builtin_sym_end] = ACTIONS(873), - [sym_identifier] = ACTIONS(875), - [anon_sym_import] = ACTIONS(875), - [anon_sym_test] = ACTIONS(875), - [anon_sym_hide] = ACTIONS(875), - [anon_sym_func] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_PIPE] = ACTIONS(873), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_void] = ACTIONS(875), - [anon_sym_anyopaque] = ACTIONS(875), - [anon_sym_bool] = ACTIONS(875), - [anon_sym_int] = ACTIONS(875), - [anon_sym_uint] = ACTIONS(875), - [anon_sym_float] = ACTIONS(875), - [anon_sym_range] = ACTIONS(875), - [anon_sym_i8] = ACTIONS(875), - [anon_sym_i16] = ACTIONS(875), - [anon_sym_i32] = ACTIONS(875), - [anon_sym_i64] = ACTIONS(875), - [anon_sym_u8] = ACTIONS(875), - [anon_sym_u16] = ACTIONS(875), - [anon_sym_u32] = ACTIONS(875), - [anon_sym_u64] = ACTIONS(875), - [anon_sym_isize] = ACTIONS(875), - [anon_sym_usize] = ACTIONS(875), - [anon_sym_f32] = ACTIONS(875), - [anon_sym_f64] = ACTIONS(875), - [anon_sym_c_char] = ACTIONS(875), - [anon_sym_c_schar] = ACTIONS(875), - [anon_sym_c_uchar] = ACTIONS(875), - [anon_sym_c_short] = ACTIONS(875), - [anon_sym_c_ushort] = ACTIONS(875), - [anon_sym_c_int] = ACTIONS(875), - [anon_sym_c_uint] = ACTIONS(875), - [anon_sym_c_long] = ACTIONS(875), - [anon_sym_c_ulong] = ACTIONS(875), - [anon_sym_c_longlong] = ACTIONS(875), - [anon_sym_c_ulonglong] = ACTIONS(875), - [anon_sym_c_float] = ACTIONS(875), - [anon_sym_c_double] = ACTIONS(875), - [anon_sym_c_longdouble] = ACTIONS(875), - [anon_sym_return] = ACTIONS(875), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_COLON] = ACTIONS(873), - [anon_sym_break] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_defer] = ACTIONS(875), - [anon_sym_errdefer] = ACTIONS(875), - [anon_sym_if] = ACTIONS(875), - [anon_sym_else] = ACTIONS(875), - [anon_sym_while] = ACTIONS(875), - [anon_sym_expand] = ACTIONS(875), - [anon_sym_for] = ACTIONS(875), - [anon_sym_match] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [anon_sym_orelse] = ACTIONS(875), - [anon_sym_catch] = ACTIONS(875), - [anon_sym_or] = ACTIONS(875), - [anon_sym_and] = ACTIONS(875), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_AMP] = ACTIONS(873), - [anon_sym_xor] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(873), - [anon_sym_LT_LT_PIPE] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_try] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(873), - [anon_sym_true] = ACTIONS(875), - [anon_sym_false] = ACTIONS(875), - [sym_none] = ACTIONS(875), - [sym_undefined] = ACTIONS(875), - [sym_sink] = ACTIONS(875), - [sym_integer] = ACTIONS(875), - [sym_float] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym_multiline_string] = ACTIONS(873), - [sym_character] = ACTIONS(873), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(873), - }, - [STATE(664)] = { - [ts_builtin_sym_end] = ACTIONS(877), - [sym_identifier] = ACTIONS(879), - [anon_sym_import] = ACTIONS(879), - [anon_sym_test] = ACTIONS(879), - [anon_sym_hide] = ACTIONS(879), - [anon_sym_func] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_void] = ACTIONS(879), - [anon_sym_anyopaque] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_int] = ACTIONS(879), - [anon_sym_uint] = ACTIONS(879), - [anon_sym_float] = ACTIONS(879), - [anon_sym_range] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_c_char] = ACTIONS(879), - [anon_sym_c_schar] = ACTIONS(879), - [anon_sym_c_uchar] = ACTIONS(879), - [anon_sym_c_short] = ACTIONS(879), - [anon_sym_c_ushort] = ACTIONS(879), - [anon_sym_c_int] = ACTIONS(879), - [anon_sym_c_uint] = ACTIONS(879), - [anon_sym_c_long] = ACTIONS(879), - [anon_sym_c_ulong] = ACTIONS(879), - [anon_sym_c_longlong] = ACTIONS(879), - [anon_sym_c_ulonglong] = ACTIONS(879), - [anon_sym_c_float] = ACTIONS(879), - [anon_sym_c_double] = ACTIONS(879), - [anon_sym_c_longdouble] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_yield] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(877), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_defer] = ACTIONS(879), - [anon_sym_errdefer] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_else] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_expand] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(877), - [anon_sym_orelse] = ACTIONS(879), - [anon_sym_catch] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_LT_LT_PIPE] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_try] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [sym_none] = ACTIONS(879), - [sym_undefined] = ACTIONS(879), - [sym_sink] = ACTIONS(879), - [sym_integer] = ACTIONS(879), - [sym_float] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [sym_multiline_string] = ACTIONS(877), - [sym_character] = ACTIONS(877), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(877), - }, - [STATE(665)] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [anon_sym_import] = ACTIONS(623), - [anon_sym_test] = ACTIONS(623), - [anon_sym_hide] = ACTIONS(623), - [anon_sym_func] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_void] = ACTIONS(623), - [anon_sym_anyopaque] = ACTIONS(623), - [anon_sym_bool] = ACTIONS(623), - [anon_sym_int] = ACTIONS(623), - [anon_sym_uint] = ACTIONS(623), - [anon_sym_float] = ACTIONS(623), - [anon_sym_range] = ACTIONS(623), - [anon_sym_i8] = ACTIONS(623), - [anon_sym_i16] = ACTIONS(623), - [anon_sym_i32] = ACTIONS(623), - [anon_sym_i64] = ACTIONS(623), - [anon_sym_u8] = ACTIONS(623), - [anon_sym_u16] = ACTIONS(623), - [anon_sym_u32] = ACTIONS(623), - [anon_sym_u64] = ACTIONS(623), - [anon_sym_isize] = ACTIONS(623), - [anon_sym_usize] = ACTIONS(623), - [anon_sym_f32] = ACTIONS(623), - [anon_sym_f64] = ACTIONS(623), - [anon_sym_c_char] = ACTIONS(623), - [anon_sym_c_schar] = ACTIONS(623), - [anon_sym_c_uchar] = ACTIONS(623), - [anon_sym_c_short] = ACTIONS(623), - [anon_sym_c_ushort] = ACTIONS(623), - [anon_sym_c_int] = ACTIONS(623), - [anon_sym_c_uint] = ACTIONS(623), - [anon_sym_c_long] = ACTIONS(623), - [anon_sym_c_ulong] = ACTIONS(623), - [anon_sym_c_longlong] = ACTIONS(623), - [anon_sym_c_ulonglong] = ACTIONS(623), - [anon_sym_c_float] = ACTIONS(623), - [anon_sym_c_double] = ACTIONS(623), - [anon_sym_c_longdouble] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_errdefer] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_else] = ACTIONS(623), - [anon_sym_while] = ACTIONS(623), - [anon_sym_expand] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_DOT_DOT] = ACTIONS(623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(621), - [anon_sym_orelse] = ACTIONS(623), - [anon_sym_catch] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_and] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_xor] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_LT_LT_PIPE] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_try] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_true] = ACTIONS(623), - [anon_sym_false] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_undefined] = ACTIONS(623), - [sym_sink] = ACTIONS(623), - [sym_integer] = ACTIONS(623), - [sym_float] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(621), - [sym_multiline_string] = ACTIONS(621), - [sym_character] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(621), - }, - [STATE(666)] = { - [ts_builtin_sym_end] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [anon_sym_import] = ACTIONS(795), - [anon_sym_test] = ACTIONS(795), - [anon_sym_hide] = ACTIONS(795), - [anon_sym_func] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_void] = ACTIONS(795), - [anon_sym_anyopaque] = ACTIONS(795), - [anon_sym_bool] = ACTIONS(795), - [anon_sym_int] = ACTIONS(795), - [anon_sym_uint] = ACTIONS(795), - [anon_sym_float] = ACTIONS(795), - [anon_sym_range] = ACTIONS(795), - [anon_sym_i8] = ACTIONS(795), - [anon_sym_i16] = ACTIONS(795), - [anon_sym_i32] = ACTIONS(795), - [anon_sym_i64] = ACTIONS(795), - [anon_sym_u8] = ACTIONS(795), - [anon_sym_u16] = ACTIONS(795), - [anon_sym_u32] = ACTIONS(795), - [anon_sym_u64] = ACTIONS(795), - [anon_sym_isize] = ACTIONS(795), - [anon_sym_usize] = ACTIONS(795), - [anon_sym_f32] = ACTIONS(795), - [anon_sym_f64] = ACTIONS(795), - [anon_sym_c_char] = ACTIONS(795), - [anon_sym_c_schar] = ACTIONS(795), - [anon_sym_c_uchar] = ACTIONS(795), - [anon_sym_c_short] = ACTIONS(795), - [anon_sym_c_ushort] = ACTIONS(795), - [anon_sym_c_int] = ACTIONS(795), - [anon_sym_c_uint] = ACTIONS(795), - [anon_sym_c_long] = ACTIONS(795), - [anon_sym_c_ulong] = ACTIONS(795), - [anon_sym_c_longlong] = ACTIONS(795), - [anon_sym_c_ulonglong] = ACTIONS(795), - [anon_sym_c_float] = ACTIONS(795), - [anon_sym_c_double] = ACTIONS(795), - [anon_sym_c_longdouble] = ACTIONS(795), - [anon_sym_return] = ACTIONS(795), - [anon_sym_yield] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_break] = ACTIONS(795), - [anon_sym_continue] = ACTIONS(795), - [anon_sym_defer] = ACTIONS(795), - [anon_sym_errdefer] = ACTIONS(795), - [anon_sym_if] = ACTIONS(795), - [anon_sym_else] = ACTIONS(795), - [anon_sym_while] = ACTIONS(795), - [anon_sym_expand] = ACTIONS(795), - [anon_sym_for] = ACTIONS(795), - [anon_sym_match] = ACTIONS(795), - [anon_sym_DOT_DOT] = ACTIONS(795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [anon_sym_orelse] = ACTIONS(795), - [anon_sym_catch] = ACTIONS(795), - [anon_sym_or] = ACTIONS(795), - [anon_sym_and] = ACTIONS(795), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(795), - [anon_sym_LT_LT] = ACTIONS(795), - [anon_sym_GT_GT] = ACTIONS(793), - [anon_sym_LT_LT_PIPE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_true] = ACTIONS(795), - [anon_sym_false] = ACTIONS(795), - [sym_none] = ACTIONS(795), - [sym_undefined] = ACTIONS(795), - [sym_sink] = ACTIONS(795), - [sym_integer] = ACTIONS(795), - [sym_float] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym_multiline_string] = ACTIONS(793), - [sym_character] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(793), - }, - [STATE(667)] = { - [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_test] = ACTIONS(258), - [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_struct] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(258), - [anon_sym_anyopaque] = ACTIONS(258), - [anon_sym_bool] = ACTIONS(258), - [anon_sym_int] = ACTIONS(258), - [anon_sym_uint] = ACTIONS(258), - [anon_sym_float] = ACTIONS(258), - [anon_sym_range] = ACTIONS(258), - [anon_sym_i8] = ACTIONS(258), - [anon_sym_i16] = ACTIONS(258), - [anon_sym_i32] = ACTIONS(258), - [anon_sym_i64] = ACTIONS(258), - [anon_sym_u8] = ACTIONS(258), - [anon_sym_u16] = ACTIONS(258), - [anon_sym_u32] = ACTIONS(258), - [anon_sym_u64] = ACTIONS(258), - [anon_sym_isize] = ACTIONS(258), - [anon_sym_usize] = ACTIONS(258), - [anon_sym_f32] = ACTIONS(258), - [anon_sym_f64] = ACTIONS(258), - [anon_sym_c_char] = ACTIONS(258), - [anon_sym_c_schar] = ACTIONS(258), - [anon_sym_c_uchar] = ACTIONS(258), - [anon_sym_c_short] = ACTIONS(258), - [anon_sym_c_ushort] = ACTIONS(258), - [anon_sym_c_int] = ACTIONS(258), - [anon_sym_c_uint] = ACTIONS(258), - [anon_sym_c_long] = ACTIONS(258), - [anon_sym_c_ulong] = ACTIONS(258), - [anon_sym_c_longlong] = ACTIONS(258), - [anon_sym_c_ulonglong] = ACTIONS(258), - [anon_sym_c_float] = ACTIONS(258), - [anon_sym_c_double] = ACTIONS(258), - [anon_sym_c_longdouble] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_defer] = ACTIONS(258), - [anon_sym_errdefer] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_expand] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_match] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_try] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_none] = ACTIONS(258), - [sym_undefined] = ACTIONS(258), - [sym_sink] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_multiline_string] = ACTIONS(253), - [sym_character] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(668)] = { - [ts_builtin_sym_end] = ACTIONS(889), - [sym_identifier] = ACTIONS(891), - [anon_sym_import] = ACTIONS(891), - [anon_sym_test] = ACTIONS(891), - [anon_sym_hide] = ACTIONS(891), - [anon_sym_func] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_void] = ACTIONS(891), - [anon_sym_anyopaque] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_int] = ACTIONS(891), - [anon_sym_uint] = ACTIONS(891), - [anon_sym_float] = ACTIONS(891), - [anon_sym_range] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_c_char] = ACTIONS(891), - [anon_sym_c_schar] = ACTIONS(891), - [anon_sym_c_uchar] = ACTIONS(891), - [anon_sym_c_short] = ACTIONS(891), - [anon_sym_c_ushort] = ACTIONS(891), - [anon_sym_c_int] = ACTIONS(891), - [anon_sym_c_uint] = ACTIONS(891), - [anon_sym_c_long] = ACTIONS(891), - [anon_sym_c_ulong] = ACTIONS(891), - [anon_sym_c_longlong] = ACTIONS(891), - [anon_sym_c_ulonglong] = ACTIONS(891), - [anon_sym_c_float] = ACTIONS(891), - [anon_sym_c_double] = ACTIONS(891), - [anon_sym_c_longdouble] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(891), - [anon_sym_COLON] = ACTIONS(889), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_defer] = ACTIONS(891), - [anon_sym_errdefer] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_else] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_expand] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_orelse] = ACTIONS(891), - [anon_sym_catch] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_LT_LT_PIPE] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(889), - [anon_sym_try] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(891), - [anon_sym_CARET] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [sym_none] = ACTIONS(891), - [sym_undefined] = ACTIONS(891), - [sym_sink] = ACTIONS(891), - [sym_integer] = ACTIONS(891), - [sym_float] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_multiline_string] = ACTIONS(889), - [sym_character] = ACTIONS(889), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(889), - }, - [STATE(669)] = { - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_test] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_func] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_struct] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(893), - [anon_sym_QMARK] = ACTIONS(893), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_void] = ACTIONS(895), - [anon_sym_anyopaque] = ACTIONS(895), - [anon_sym_bool] = ACTIONS(895), - [anon_sym_int] = ACTIONS(895), - [anon_sym_uint] = ACTIONS(895), - [anon_sym_float] = ACTIONS(895), - [anon_sym_range] = ACTIONS(895), - [anon_sym_i8] = ACTIONS(895), - [anon_sym_i16] = ACTIONS(895), - [anon_sym_i32] = ACTIONS(895), - [anon_sym_i64] = ACTIONS(895), - [anon_sym_u8] = ACTIONS(895), - [anon_sym_u16] = ACTIONS(895), - [anon_sym_u32] = ACTIONS(895), - [anon_sym_u64] = ACTIONS(895), - [anon_sym_isize] = ACTIONS(895), - [anon_sym_usize] = ACTIONS(895), - [anon_sym_f32] = ACTIONS(895), - [anon_sym_f64] = ACTIONS(895), - [anon_sym_c_char] = ACTIONS(895), - [anon_sym_c_schar] = ACTIONS(895), - [anon_sym_c_uchar] = ACTIONS(895), - [anon_sym_c_short] = ACTIONS(895), - [anon_sym_c_ushort] = ACTIONS(895), - [anon_sym_c_int] = ACTIONS(895), - [anon_sym_c_uint] = ACTIONS(895), - [anon_sym_c_long] = ACTIONS(895), - [anon_sym_c_ulong] = ACTIONS(895), - [anon_sym_c_longlong] = ACTIONS(895), - [anon_sym_c_ulonglong] = ACTIONS(895), - [anon_sym_c_float] = ACTIONS(895), - [anon_sym_c_double] = ACTIONS(895), - [anon_sym_c_longdouble] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_COLON] = ACTIONS(893), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_defer] = ACTIONS(895), - [anon_sym_errdefer] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_expand] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_orelse] = ACTIONS(895), - [anon_sym_catch] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_LT_LT] = ACTIONS(895), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT_PIPE] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_try] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [sym_none] = ACTIONS(895), - [sym_undefined] = ACTIONS(895), - [sym_sink] = ACTIONS(895), - [sym_integer] = ACTIONS(895), - [sym_float] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [sym_multiline_string] = ACTIONS(893), - [sym_character] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(893), - }, - [STATE(670)] = { - [ts_builtin_sym_end] = ACTIONS(897), - [sym_identifier] = ACTIONS(899), - [anon_sym_import] = ACTIONS(899), - [anon_sym_test] = ACTIONS(899), - [anon_sym_hide] = ACTIONS(899), - [anon_sym_func] = ACTIONS(899), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_struct] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_void] = ACTIONS(899), - [anon_sym_anyopaque] = ACTIONS(899), - [anon_sym_bool] = ACTIONS(899), - [anon_sym_int] = ACTIONS(899), - [anon_sym_uint] = ACTIONS(899), - [anon_sym_float] = ACTIONS(899), - [anon_sym_range] = ACTIONS(899), - [anon_sym_i8] = ACTIONS(899), - [anon_sym_i16] = ACTIONS(899), - [anon_sym_i32] = ACTIONS(899), - [anon_sym_i64] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(899), - [anon_sym_u16] = ACTIONS(899), - [anon_sym_u32] = ACTIONS(899), - [anon_sym_u64] = ACTIONS(899), - [anon_sym_isize] = ACTIONS(899), - [anon_sym_usize] = ACTIONS(899), - [anon_sym_f32] = ACTIONS(899), - [anon_sym_f64] = ACTIONS(899), - [anon_sym_c_char] = ACTIONS(899), - [anon_sym_c_schar] = ACTIONS(899), - [anon_sym_c_uchar] = ACTIONS(899), - [anon_sym_c_short] = ACTIONS(899), - [anon_sym_c_ushort] = ACTIONS(899), - [anon_sym_c_int] = ACTIONS(899), - [anon_sym_c_uint] = ACTIONS(899), - [anon_sym_c_long] = ACTIONS(899), - [anon_sym_c_ulong] = ACTIONS(899), - [anon_sym_c_longlong] = ACTIONS(899), - [anon_sym_c_ulonglong] = ACTIONS(899), - [anon_sym_c_float] = ACTIONS(899), - [anon_sym_c_double] = ACTIONS(899), - [anon_sym_c_longdouble] = ACTIONS(899), - [anon_sym_return] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_break] = ACTIONS(899), - [anon_sym_continue] = ACTIONS(899), - [anon_sym_defer] = ACTIONS(899), - [anon_sym_errdefer] = ACTIONS(899), - [anon_sym_if] = ACTIONS(899), - [anon_sym_else] = ACTIONS(899), - [anon_sym_while] = ACTIONS(899), - [anon_sym_expand] = ACTIONS(899), - [anon_sym_for] = ACTIONS(899), - [anon_sym_match] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(897), - [anon_sym_orelse] = ACTIONS(899), - [anon_sym_catch] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(897), - [anon_sym_BANG_EQ] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(897), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(899), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_LT_LT_PIPE] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_try] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(899), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [sym_none] = ACTIONS(899), - [sym_undefined] = ACTIONS(899), - [sym_sink] = ACTIONS(899), - [sym_integer] = ACTIONS(899), - [sym_float] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(897), - [sym_multiline_string] = ACTIONS(897), - [sym_character] = ACTIONS(897), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(897), - }, - [STATE(671)] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_test] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_func] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_anyopaque] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_int] = ACTIONS(903), - [anon_sym_uint] = ACTIONS(903), - [anon_sym_float] = ACTIONS(903), - [anon_sym_range] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_c_char] = ACTIONS(903), - [anon_sym_c_schar] = ACTIONS(903), - [anon_sym_c_uchar] = ACTIONS(903), - [anon_sym_c_short] = ACTIONS(903), - [anon_sym_c_ushort] = ACTIONS(903), - [anon_sym_c_int] = ACTIONS(903), - [anon_sym_c_uint] = ACTIONS(903), - [anon_sym_c_long] = ACTIONS(903), - [anon_sym_c_ulong] = ACTIONS(903), - [anon_sym_c_longlong] = ACTIONS(903), - [anon_sym_c_ulonglong] = ACTIONS(903), - [anon_sym_c_float] = ACTIONS(903), - [anon_sym_c_double] = ACTIONS(903), - [anon_sym_c_longdouble] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_defer] = ACTIONS(903), - [anon_sym_errdefer] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_expand] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [anon_sym_orelse] = ACTIONS(903), - [anon_sym_catch] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_LT_LT_PIPE] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [sym_none] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [sym_sink] = ACTIONS(903), - [sym_integer] = ACTIONS(903), - [sym_float] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym_multiline_string] = ACTIONS(901), - [sym_character] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(901), - }, - [STATE(672)] = { - [ts_builtin_sym_end] = ACTIONS(905), - [sym_identifier] = ACTIONS(907), - [anon_sym_import] = ACTIONS(907), - [anon_sym_test] = ACTIONS(907), - [anon_sym_hide] = ACTIONS(907), - [anon_sym_func] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_void] = ACTIONS(907), - [anon_sym_anyopaque] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_int] = ACTIONS(907), - [anon_sym_uint] = ACTIONS(907), - [anon_sym_float] = ACTIONS(907), - [anon_sym_range] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_c_char] = ACTIONS(907), - [anon_sym_c_schar] = ACTIONS(907), - [anon_sym_c_uchar] = ACTIONS(907), - [anon_sym_c_short] = ACTIONS(907), - [anon_sym_c_ushort] = ACTIONS(907), - [anon_sym_c_int] = ACTIONS(907), - [anon_sym_c_uint] = ACTIONS(907), - [anon_sym_c_long] = ACTIONS(907), - [anon_sym_c_ulong] = ACTIONS(907), - [anon_sym_c_longlong] = ACTIONS(907), - [anon_sym_c_ulonglong] = ACTIONS(907), - [anon_sym_c_float] = ACTIONS(907), - [anon_sym_c_double] = ACTIONS(907), - [anon_sym_c_longdouble] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_yield] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_break] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_defer] = ACTIONS(907), - [anon_sym_errdefer] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_else] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [anon_sym_expand] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_orelse] = ACTIONS(907), - [anon_sym_catch] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_LT_LT_PIPE] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(905), - [anon_sym_try] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [sym_none] = ACTIONS(907), - [sym_undefined] = ACTIONS(907), - [sym_sink] = ACTIONS(907), - [sym_integer] = ACTIONS(907), - [sym_float] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [sym_multiline_string] = ACTIONS(905), - [sym_character] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(905), - }, - [STATE(673)] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_test] = ACTIONS(631), - [anon_sym_hide] = ACTIONS(631), - [anon_sym_func] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_struct] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(629), - [anon_sym_LBRACK] = ACTIONS(629), - [anon_sym_void] = ACTIONS(631), - [anon_sym_anyopaque] = ACTIONS(631), - [anon_sym_bool] = ACTIONS(631), - [anon_sym_int] = ACTIONS(631), - [anon_sym_uint] = ACTIONS(631), - [anon_sym_float] = ACTIONS(631), - [anon_sym_range] = ACTIONS(631), - [anon_sym_i8] = ACTIONS(631), - [anon_sym_i16] = ACTIONS(631), - [anon_sym_i32] = ACTIONS(631), - [anon_sym_i64] = ACTIONS(631), - [anon_sym_u8] = ACTIONS(631), - [anon_sym_u16] = ACTIONS(631), - [anon_sym_u32] = ACTIONS(631), - [anon_sym_u64] = ACTIONS(631), - [anon_sym_isize] = ACTIONS(631), - [anon_sym_usize] = ACTIONS(631), - [anon_sym_f32] = ACTIONS(631), - [anon_sym_f64] = ACTIONS(631), - [anon_sym_c_char] = ACTIONS(631), - [anon_sym_c_schar] = ACTIONS(631), - [anon_sym_c_uchar] = ACTIONS(631), - [anon_sym_c_short] = ACTIONS(631), - [anon_sym_c_ushort] = ACTIONS(631), - [anon_sym_c_int] = ACTIONS(631), - [anon_sym_c_uint] = ACTIONS(631), - [anon_sym_c_long] = ACTIONS(631), - [anon_sym_c_ulong] = ACTIONS(631), - [anon_sym_c_longlong] = ACTIONS(631), - [anon_sym_c_ulonglong] = ACTIONS(631), - [anon_sym_c_float] = ACTIONS(631), - [anon_sym_c_double] = ACTIONS(631), - [anon_sym_c_longdouble] = ACTIONS(631), - [anon_sym_return] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(629), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_defer] = ACTIONS(631), - [anon_sym_errdefer] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_expand] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_match] = ACTIONS(631), - [anon_sym_DOT_DOT] = ACTIONS(631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_orelse] = ACTIONS(631), - [anon_sym_catch] = ACTIONS(631), - [anon_sym_or] = ACTIONS(631), - [anon_sym_and] = ACTIONS(631), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_xor] = ACTIONS(631), - [anon_sym_LT_LT] = ACTIONS(631), - [anon_sym_GT_GT] = ACTIONS(629), - [anon_sym_LT_LT_PIPE] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_try] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(629), - [anon_sym_true] = ACTIONS(631), - [anon_sym_false] = ACTIONS(631), - [sym_none] = ACTIONS(631), - [sym_undefined] = ACTIONS(631), - [sym_sink] = ACTIONS(631), - [sym_integer] = ACTIONS(631), - [sym_float] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_multiline_string] = ACTIONS(629), - [sym_character] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - }, - [STATE(674)] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_test] = ACTIONS(911), - [anon_sym_hide] = ACTIONS(911), - [anon_sym_func] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_void] = ACTIONS(911), - [anon_sym_anyopaque] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_int] = ACTIONS(911), - [anon_sym_uint] = ACTIONS(911), - [anon_sym_float] = ACTIONS(911), - [anon_sym_range] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_c_char] = ACTIONS(911), - [anon_sym_c_schar] = ACTIONS(911), - [anon_sym_c_uchar] = ACTIONS(911), - [anon_sym_c_short] = ACTIONS(911), - [anon_sym_c_ushort] = ACTIONS(911), - [anon_sym_c_int] = ACTIONS(911), - [anon_sym_c_uint] = ACTIONS(911), - [anon_sym_c_long] = ACTIONS(911), - [anon_sym_c_ulong] = ACTIONS(911), - [anon_sym_c_longlong] = ACTIONS(911), - [anon_sym_c_ulonglong] = ACTIONS(911), - [anon_sym_c_float] = ACTIONS(911), - [anon_sym_c_double] = ACTIONS(911), - [anon_sym_c_longdouble] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_yield] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_defer] = ACTIONS(911), - [anon_sym_errdefer] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_else] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_expand] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_orelse] = ACTIONS(911), - [anon_sym_catch] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(909), - [anon_sym_LT_LT_PIPE] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [sym_none] = ACTIONS(911), - [sym_undefined] = ACTIONS(911), - [sym_sink] = ACTIONS(911), - [sym_integer] = ACTIONS(911), - [sym_float] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_multiline_string] = ACTIONS(909), - [sym_character] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(909), - }, - [STATE(675)] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_test] = ACTIONS(1159), - [anon_sym_hide] = ACTIONS(1159), - [anon_sym_func] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_void] = ACTIONS(1159), - [anon_sym_anyopaque] = ACTIONS(1159), - [anon_sym_bool] = ACTIONS(1159), - [anon_sym_int] = ACTIONS(1159), - [anon_sym_uint] = ACTIONS(1159), - [anon_sym_float] = ACTIONS(1159), - [anon_sym_range] = ACTIONS(1159), - [anon_sym_i8] = ACTIONS(1159), - [anon_sym_i16] = ACTIONS(1159), - [anon_sym_i32] = ACTIONS(1159), - [anon_sym_i64] = ACTIONS(1159), - [anon_sym_u8] = ACTIONS(1159), - [anon_sym_u16] = ACTIONS(1159), - [anon_sym_u32] = ACTIONS(1159), - [anon_sym_u64] = ACTIONS(1159), - [anon_sym_isize] = ACTIONS(1159), - [anon_sym_usize] = ACTIONS(1159), - [anon_sym_f32] = ACTIONS(1159), - [anon_sym_f64] = ACTIONS(1159), - [anon_sym_c_char] = ACTIONS(1159), - [anon_sym_c_schar] = ACTIONS(1159), - [anon_sym_c_uchar] = ACTIONS(1159), - [anon_sym_c_short] = ACTIONS(1159), - [anon_sym_c_ushort] = ACTIONS(1159), - [anon_sym_c_int] = ACTIONS(1159), - [anon_sym_c_uint] = ACTIONS(1159), - [anon_sym_c_long] = ACTIONS(1159), - [anon_sym_c_ulong] = ACTIONS(1159), - [anon_sym_c_longlong] = ACTIONS(1159), - [anon_sym_c_ulonglong] = ACTIONS(1159), - [anon_sym_c_float] = ACTIONS(1159), - [anon_sym_c_double] = ACTIONS(1159), - [anon_sym_c_longdouble] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_yield] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_defer] = ACTIONS(1159), - [anon_sym_errdefer] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_expand] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_DOT_DOT] = ACTIONS(1159), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), - [anon_sym_orelse] = ACTIONS(1159), - [anon_sym_catch] = ACTIONS(1159), - [anon_sym_or] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1157), - [anon_sym_BANG_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1157), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_xor] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1157), - [anon_sym_LT_LT_PIPE] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_try] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [sym_none] = ACTIONS(1159), - [sym_undefined] = ACTIONS(1159), - [sym_sink] = ACTIONS(1159), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_multiline_string] = ACTIONS(1157), - [sym_character] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1157), - }, - [STATE(676)] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1191), - [anon_sym_import] = ACTIONS(1191), - [anon_sym_test] = ACTIONS(1191), - [anon_sym_hide] = ACTIONS(1191), - [anon_sym_func] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_void] = ACTIONS(1191), - [anon_sym_anyopaque] = ACTIONS(1191), - [anon_sym_bool] = ACTIONS(1191), - [anon_sym_int] = ACTIONS(1191), - [anon_sym_uint] = ACTIONS(1191), - [anon_sym_float] = ACTIONS(1191), - [anon_sym_range] = ACTIONS(1191), - [anon_sym_i8] = ACTIONS(1191), - [anon_sym_i16] = ACTIONS(1191), - [anon_sym_i32] = ACTIONS(1191), - [anon_sym_i64] = ACTIONS(1191), - [anon_sym_u8] = ACTIONS(1191), - [anon_sym_u16] = ACTIONS(1191), - [anon_sym_u32] = ACTIONS(1191), - [anon_sym_u64] = ACTIONS(1191), - [anon_sym_isize] = ACTIONS(1191), - [anon_sym_usize] = ACTIONS(1191), - [anon_sym_f32] = ACTIONS(1191), - [anon_sym_f64] = ACTIONS(1191), - [anon_sym_c_char] = ACTIONS(1191), - [anon_sym_c_schar] = ACTIONS(1191), - [anon_sym_c_uchar] = ACTIONS(1191), - [anon_sym_c_short] = ACTIONS(1191), - [anon_sym_c_ushort] = ACTIONS(1191), - [anon_sym_c_int] = ACTIONS(1191), - [anon_sym_c_uint] = ACTIONS(1191), - [anon_sym_c_long] = ACTIONS(1191), - [anon_sym_c_ulong] = ACTIONS(1191), - [anon_sym_c_longlong] = ACTIONS(1191), - [anon_sym_c_ulonglong] = ACTIONS(1191), - [anon_sym_c_float] = ACTIONS(1191), - [anon_sym_c_double] = ACTIONS(1191), - [anon_sym_c_longdouble] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_yield] = ACTIONS(1191), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_defer] = ACTIONS(1191), - [anon_sym_errdefer] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_expand] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1189), - [anon_sym_orelse] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1191), - [anon_sym_or] = ACTIONS(1191), - [anon_sym_and] = ACTIONS(1191), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1191), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT_PIPE] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1191), - [anon_sym_false] = ACTIONS(1191), - [sym_none] = ACTIONS(1191), - [sym_undefined] = ACTIONS(1191), - [sym_sink] = ACTIONS(1191), - [sym_integer] = ACTIONS(1191), - [sym_float] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_multiline_string] = ACTIONS(1189), - [sym_character] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1189), - }, - [STATE(677)] = { - [ts_builtin_sym_end] = ACTIONS(913), - [sym_identifier] = ACTIONS(915), - [anon_sym_import] = ACTIONS(915), - [anon_sym_test] = ACTIONS(915), - [anon_sym_hide] = ACTIONS(915), - [anon_sym_func] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_void] = ACTIONS(915), - [anon_sym_anyopaque] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_int] = ACTIONS(915), - [anon_sym_uint] = ACTIONS(915), - [anon_sym_float] = ACTIONS(915), - [anon_sym_range] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_c_char] = ACTIONS(915), - [anon_sym_c_schar] = ACTIONS(915), - [anon_sym_c_uchar] = ACTIONS(915), - [anon_sym_c_short] = ACTIONS(915), - [anon_sym_c_ushort] = ACTIONS(915), - [anon_sym_c_int] = ACTIONS(915), - [anon_sym_c_uint] = ACTIONS(915), - [anon_sym_c_long] = ACTIONS(915), - [anon_sym_c_ulong] = ACTIONS(915), - [anon_sym_c_longlong] = ACTIONS(915), - [anon_sym_c_ulonglong] = ACTIONS(915), - [anon_sym_c_float] = ACTIONS(915), - [anon_sym_c_double] = ACTIONS(915), - [anon_sym_c_longdouble] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_yield] = ACTIONS(915), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_defer] = ACTIONS(915), - [anon_sym_errdefer] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_else] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_expand] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_orelse] = ACTIONS(915), - [anon_sym_catch] = ACTIONS(915), - [anon_sym_or] = ACTIONS(915), - [anon_sym_and] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_xor] = ACTIONS(915), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(913), - [anon_sym_LT_LT_PIPE] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_try] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [sym_none] = ACTIONS(915), - [sym_undefined] = ACTIONS(915), - [sym_sink] = ACTIONS(915), - [sym_integer] = ACTIONS(915), - [sym_float] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_multiline_string] = ACTIONS(913), - [sym_character] = ACTIONS(913), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(913), - }, - [STATE(678)] = { - [ts_builtin_sym_end] = ACTIONS(805), - [sym_identifier] = ACTIONS(807), - [anon_sym_import] = ACTIONS(807), - [anon_sym_test] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_func] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(805), - [anon_sym_void] = ACTIONS(807), - [anon_sym_anyopaque] = ACTIONS(807), - [anon_sym_bool] = ACTIONS(807), - [anon_sym_int] = ACTIONS(807), - [anon_sym_uint] = ACTIONS(807), - [anon_sym_float] = ACTIONS(807), - [anon_sym_range] = ACTIONS(807), - [anon_sym_i8] = ACTIONS(807), - [anon_sym_i16] = ACTIONS(807), - [anon_sym_i32] = ACTIONS(807), - [anon_sym_i64] = ACTIONS(807), - [anon_sym_u8] = ACTIONS(807), - [anon_sym_u16] = ACTIONS(807), - [anon_sym_u32] = ACTIONS(807), - [anon_sym_u64] = ACTIONS(807), - [anon_sym_isize] = ACTIONS(807), - [anon_sym_usize] = ACTIONS(807), - [anon_sym_f32] = ACTIONS(807), - [anon_sym_f64] = ACTIONS(807), - [anon_sym_c_char] = ACTIONS(807), - [anon_sym_c_schar] = ACTIONS(807), - [anon_sym_c_uchar] = ACTIONS(807), - [anon_sym_c_short] = ACTIONS(807), - [anon_sym_c_ushort] = ACTIONS(807), - [anon_sym_c_int] = ACTIONS(807), - [anon_sym_c_uint] = ACTIONS(807), - [anon_sym_c_long] = ACTIONS(807), - [anon_sym_c_ulong] = ACTIONS(807), - [anon_sym_c_longlong] = ACTIONS(807), - [anon_sym_c_ulonglong] = ACTIONS(807), - [anon_sym_c_float] = ACTIONS(807), - [anon_sym_c_double] = ACTIONS(807), - [anon_sym_c_longdouble] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_yield] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_defer] = ACTIONS(807), - [anon_sym_errdefer] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_expand] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(805), - [anon_sym_orelse] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(805), - [anon_sym_LT_LT_PIPE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_try] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [sym_none] = ACTIONS(807), - [sym_undefined] = ACTIONS(807), - [sym_sink] = ACTIONS(807), - [sym_integer] = ACTIONS(807), - [sym_float] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), - [sym_multiline_string] = ACTIONS(805), - [sym_character] = ACTIONS(805), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - }, - [STATE(679)] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_identifier] = ACTIONS(1195), - [anon_sym_import] = ACTIONS(1195), - [anon_sym_test] = ACTIONS(1195), - [anon_sym_hide] = ACTIONS(1195), - [anon_sym_func] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_void] = ACTIONS(1195), - [anon_sym_anyopaque] = ACTIONS(1195), - [anon_sym_bool] = ACTIONS(1195), - [anon_sym_int] = ACTIONS(1195), - [anon_sym_uint] = ACTIONS(1195), - [anon_sym_float] = ACTIONS(1195), - [anon_sym_range] = ACTIONS(1195), - [anon_sym_i8] = ACTIONS(1195), - [anon_sym_i16] = ACTIONS(1195), - [anon_sym_i32] = ACTIONS(1195), - [anon_sym_i64] = ACTIONS(1195), - [anon_sym_u8] = ACTIONS(1195), - [anon_sym_u16] = ACTIONS(1195), - [anon_sym_u32] = ACTIONS(1195), - [anon_sym_u64] = ACTIONS(1195), - [anon_sym_isize] = ACTIONS(1195), - [anon_sym_usize] = ACTIONS(1195), - [anon_sym_f32] = ACTIONS(1195), - [anon_sym_f64] = ACTIONS(1195), - [anon_sym_c_char] = ACTIONS(1195), - [anon_sym_c_schar] = ACTIONS(1195), - [anon_sym_c_uchar] = ACTIONS(1195), - [anon_sym_c_short] = ACTIONS(1195), - [anon_sym_c_ushort] = ACTIONS(1195), - [anon_sym_c_int] = ACTIONS(1195), - [anon_sym_c_uint] = ACTIONS(1195), - [anon_sym_c_long] = ACTIONS(1195), - [anon_sym_c_ulong] = ACTIONS(1195), - [anon_sym_c_longlong] = ACTIONS(1195), - [anon_sym_c_ulonglong] = ACTIONS(1195), - [anon_sym_c_float] = ACTIONS(1195), - [anon_sym_c_double] = ACTIONS(1195), - [anon_sym_c_longdouble] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(1195), - [anon_sym_COLON] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_defer] = ACTIONS(1195), - [anon_sym_errdefer] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_expand] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1193), - [anon_sym_orelse] = ACTIONS(1195), - [anon_sym_catch] = ACTIONS(1195), - [anon_sym_or] = ACTIONS(1195), - [anon_sym_and] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_LT_LT_PIPE] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [sym_none] = ACTIONS(1195), - [sym_undefined] = ACTIONS(1195), - [sym_sink] = ACTIONS(1195), - [sym_integer] = ACTIONS(1195), - [sym_float] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_multiline_string] = ACTIONS(1193), - [sym_character] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1193), - }, - [STATE(680)] = { - [ts_builtin_sym_end] = ACTIONS(809), - [sym_identifier] = ACTIONS(811), - [anon_sym_import] = ACTIONS(811), - [anon_sym_test] = ACTIONS(811), - [anon_sym_hide] = ACTIONS(811), - [anon_sym_func] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_struct] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_void] = ACTIONS(811), - [anon_sym_anyopaque] = ACTIONS(811), - [anon_sym_bool] = ACTIONS(811), - [anon_sym_int] = ACTIONS(811), - [anon_sym_uint] = ACTIONS(811), - [anon_sym_float] = ACTIONS(811), - [anon_sym_range] = ACTIONS(811), - [anon_sym_i8] = ACTIONS(811), - [anon_sym_i16] = ACTIONS(811), - [anon_sym_i32] = ACTIONS(811), - [anon_sym_i64] = ACTIONS(811), - [anon_sym_u8] = ACTIONS(811), - [anon_sym_u16] = ACTIONS(811), - [anon_sym_u32] = ACTIONS(811), - [anon_sym_u64] = ACTIONS(811), - [anon_sym_isize] = ACTIONS(811), - [anon_sym_usize] = ACTIONS(811), - [anon_sym_f32] = ACTIONS(811), - [anon_sym_f64] = ACTIONS(811), - [anon_sym_c_char] = ACTIONS(811), - [anon_sym_c_schar] = ACTIONS(811), - [anon_sym_c_uchar] = ACTIONS(811), - [anon_sym_c_short] = ACTIONS(811), - [anon_sym_c_ushort] = ACTIONS(811), - [anon_sym_c_int] = ACTIONS(811), - [anon_sym_c_uint] = ACTIONS(811), - [anon_sym_c_long] = ACTIONS(811), - [anon_sym_c_ulong] = ACTIONS(811), - [anon_sym_c_longlong] = ACTIONS(811), - [anon_sym_c_ulonglong] = ACTIONS(811), - [anon_sym_c_float] = ACTIONS(811), - [anon_sym_c_double] = ACTIONS(811), - [anon_sym_c_longdouble] = ACTIONS(811), - [anon_sym_return] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(811), - [anon_sym_defer] = ACTIONS(811), - [anon_sym_errdefer] = ACTIONS(811), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(811), - [anon_sym_while] = ACTIONS(811), - [anon_sym_expand] = ACTIONS(811), - [anon_sym_for] = ACTIONS(811), - [anon_sym_match] = ACTIONS(811), - [anon_sym_DOT_DOT] = ACTIONS(811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(809), - [anon_sym_orelse] = ACTIONS(811), - [anon_sym_catch] = ACTIONS(811), - [anon_sym_or] = ACTIONS(811), - [anon_sym_and] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_xor] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_LT_LT_PIPE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_try] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_true] = ACTIONS(811), - [anon_sym_false] = ACTIONS(811), - [sym_none] = ACTIONS(811), - [sym_undefined] = ACTIONS(811), - [sym_sink] = ACTIONS(811), - [sym_integer] = ACTIONS(811), - [sym_float] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym_multiline_string] = ACTIONS(809), - [sym_character] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), - }, - [STATE(681)] = { - [ts_builtin_sym_end] = ACTIONS(367), - [sym_identifier] = ACTIONS(365), - [anon_sym_import] = ACTIONS(365), - [anon_sym_test] = ACTIONS(365), - [anon_sym_hide] = ACTIONS(365), - [anon_sym_func] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_struct] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(367), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_void] = ACTIONS(365), - [anon_sym_anyopaque] = ACTIONS(365), - [anon_sym_bool] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_uint] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_range] = ACTIONS(365), - [anon_sym_i8] = ACTIONS(365), - [anon_sym_i16] = ACTIONS(365), - [anon_sym_i32] = ACTIONS(365), - [anon_sym_i64] = ACTIONS(365), - [anon_sym_u8] = ACTIONS(365), - [anon_sym_u16] = ACTIONS(365), - [anon_sym_u32] = ACTIONS(365), - [anon_sym_u64] = ACTIONS(365), - [anon_sym_isize] = ACTIONS(365), - [anon_sym_usize] = ACTIONS(365), - [anon_sym_f32] = ACTIONS(365), - [anon_sym_f64] = ACTIONS(365), - [anon_sym_c_char] = ACTIONS(365), - [anon_sym_c_schar] = ACTIONS(365), - [anon_sym_c_uchar] = ACTIONS(365), - [anon_sym_c_short] = ACTIONS(365), - [anon_sym_c_ushort] = ACTIONS(365), - [anon_sym_c_int] = ACTIONS(365), - [anon_sym_c_uint] = ACTIONS(365), - [anon_sym_c_long] = ACTIONS(365), - [anon_sym_c_ulong] = ACTIONS(365), - [anon_sym_c_longlong] = ACTIONS(365), - [anon_sym_c_ulonglong] = ACTIONS(365), - [anon_sym_c_float] = ACTIONS(365), - [anon_sym_c_double] = ACTIONS(365), - [anon_sym_c_longdouble] = ACTIONS(365), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_COLON] = ACTIONS(367), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_defer] = ACTIONS(365), - [anon_sym_errdefer] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_expand] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_match] = ACTIONS(365), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(367), - [anon_sym_orelse] = ACTIONS(365), - [anon_sym_catch] = ACTIONS(365), - [anon_sym_or] = ACTIONS(365), - [anon_sym_and] = ACTIONS(365), - [anon_sym_EQ_EQ] = ACTIONS(367), - [anon_sym_BANG_EQ] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_xor] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_LT_LT_PIPE] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(367), - [anon_sym_SLASH] = ACTIONS(367), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_try] = ACTIONS(365), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [sym_none] = ACTIONS(365), - [sym_undefined] = ACTIONS(365), - [sym_sink] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [sym_multiline_string] = ACTIONS(367), - [sym_character] = ACTIONS(367), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - }, - [STATE(682)] = { - [ts_builtin_sym_end] = ACTIONS(917), - [sym_identifier] = ACTIONS(919), - [anon_sym_import] = ACTIONS(919), - [anon_sym_test] = ACTIONS(919), - [anon_sym_hide] = ACTIONS(919), - [anon_sym_func] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_void] = ACTIONS(919), - [anon_sym_anyopaque] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_int] = ACTIONS(919), - [anon_sym_uint] = ACTIONS(919), - [anon_sym_float] = ACTIONS(919), - [anon_sym_range] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_c_char] = ACTIONS(919), - [anon_sym_c_schar] = ACTIONS(919), - [anon_sym_c_uchar] = ACTIONS(919), - [anon_sym_c_short] = ACTIONS(919), - [anon_sym_c_ushort] = ACTIONS(919), - [anon_sym_c_int] = ACTIONS(919), - [anon_sym_c_uint] = ACTIONS(919), - [anon_sym_c_long] = ACTIONS(919), - [anon_sym_c_ulong] = ACTIONS(919), - [anon_sym_c_longlong] = ACTIONS(919), - [anon_sym_c_ulonglong] = ACTIONS(919), - [anon_sym_c_float] = ACTIONS(919), - [anon_sym_c_double] = ACTIONS(919), - [anon_sym_c_longdouble] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_defer] = ACTIONS(919), - [anon_sym_errdefer] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_else] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_expand] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_orelse] = ACTIONS(919), - [anon_sym_catch] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(917), - [anon_sym_LT_LT_PIPE] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_TILDE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [sym_none] = ACTIONS(919), - [sym_undefined] = ACTIONS(919), - [sym_sink] = ACTIONS(919), - [sym_integer] = ACTIONS(919), - [sym_float] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_multiline_string] = ACTIONS(917), - [sym_character] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(917), - }, - [STATE(683)] = { - [ts_builtin_sym_end] = ACTIONS(921), - [sym_identifier] = ACTIONS(923), - [anon_sym_import] = ACTIONS(923), - [anon_sym_test] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_func] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_void] = ACTIONS(923), - [anon_sym_anyopaque] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_int] = ACTIONS(923), - [anon_sym_uint] = ACTIONS(923), - [anon_sym_float] = ACTIONS(923), - [anon_sym_range] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_c_char] = ACTIONS(923), - [anon_sym_c_schar] = ACTIONS(923), - [anon_sym_c_uchar] = ACTIONS(923), - [anon_sym_c_short] = ACTIONS(923), - [anon_sym_c_ushort] = ACTIONS(923), - [anon_sym_c_int] = ACTIONS(923), - [anon_sym_c_uint] = ACTIONS(923), - [anon_sym_c_long] = ACTIONS(923), - [anon_sym_c_ulong] = ACTIONS(923), - [anon_sym_c_longlong] = ACTIONS(923), - [anon_sym_c_ulonglong] = ACTIONS(923), - [anon_sym_c_float] = ACTIONS(923), - [anon_sym_c_double] = ACTIONS(923), - [anon_sym_c_longdouble] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_yield] = ACTIONS(923), - [anon_sym_COLON] = ACTIONS(921), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_defer] = ACTIONS(923), - [anon_sym_errdefer] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_expand] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_orelse] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(921), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_LT_LT_PIPE] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_TILDE] = ACTIONS(921), - [anon_sym_try] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [sym_none] = ACTIONS(923), - [sym_undefined] = ACTIONS(923), - [sym_sink] = ACTIONS(923), - [sym_integer] = ACTIONS(923), - [sym_float] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(921), - [sym_multiline_string] = ACTIONS(921), - [sym_character] = ACTIONS(921), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(921), - }, - [STATE(684)] = { [ts_builtin_sym_end] = ACTIONS(371), [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(369), [anon_sym_test] = ACTIONS(369), [anon_sym_hide] = ACTIONS(369), [anon_sym_func] = ACTIONS(369), + [anon_sym_c_func] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(369), [anon_sym_struct] = ACTIONS(369), [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(371), [anon_sym_RBRACE] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(371), [anon_sym_DOLLAR] = ACTIONS(371), [anon_sym_PIPE] = ACTIONS(371), [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(371), [anon_sym_void] = ACTIONS(369), + [anon_sym_type] = ACTIONS(369), [anon_sym_anyopaque] = ACTIONS(369), [anon_sym_bool] = ACTIONS(369), [anon_sym_int] = ACTIONS(369), @@ -88729,10416 +88558,11625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(371), }, - [STATE(685)] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_identifier] = ACTIONS(821), - [anon_sym_import] = ACTIONS(821), - [anon_sym_test] = ACTIONS(821), - [anon_sym_hide] = ACTIONS(821), - [anon_sym_func] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_void] = ACTIONS(821), - [anon_sym_anyopaque] = ACTIONS(821), - [anon_sym_bool] = ACTIONS(821), - [anon_sym_int] = ACTIONS(821), - [anon_sym_uint] = ACTIONS(821), - [anon_sym_float] = ACTIONS(821), - [anon_sym_range] = ACTIONS(821), - [anon_sym_i8] = ACTIONS(821), - [anon_sym_i16] = ACTIONS(821), - [anon_sym_i32] = ACTIONS(821), - [anon_sym_i64] = ACTIONS(821), - [anon_sym_u8] = ACTIONS(821), - [anon_sym_u16] = ACTIONS(821), - [anon_sym_u32] = ACTIONS(821), - [anon_sym_u64] = ACTIONS(821), - [anon_sym_isize] = ACTIONS(821), - [anon_sym_usize] = ACTIONS(821), - [anon_sym_f32] = ACTIONS(821), - [anon_sym_f64] = ACTIONS(821), - [anon_sym_c_char] = ACTIONS(821), - [anon_sym_c_schar] = ACTIONS(821), - [anon_sym_c_uchar] = ACTIONS(821), - [anon_sym_c_short] = ACTIONS(821), - [anon_sym_c_ushort] = ACTIONS(821), - [anon_sym_c_int] = ACTIONS(821), - [anon_sym_c_uint] = ACTIONS(821), - [anon_sym_c_long] = ACTIONS(821), - [anon_sym_c_ulong] = ACTIONS(821), - [anon_sym_c_longlong] = ACTIONS(821), - [anon_sym_c_ulonglong] = ACTIONS(821), - [anon_sym_c_float] = ACTIONS(821), - [anon_sym_c_double] = ACTIONS(821), - [anon_sym_c_longdouble] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_yield] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_defer] = ACTIONS(821), - [anon_sym_errdefer] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_else] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_expand] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(819), - [anon_sym_orelse] = ACTIONS(821), - [anon_sym_catch] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_LT_LT_PIPE] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_try] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_undefined] = ACTIONS(821), - [sym_sink] = ACTIONS(821), - [sym_integer] = ACTIONS(821), - [sym_float] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(819), - [sym_multiline_string] = ACTIONS(819), - [sym_character] = ACTIONS(819), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(819), - }, - [STATE(686)] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [anon_sym_import] = ACTIONS(635), - [anon_sym_test] = ACTIONS(635), - [anon_sym_hide] = ACTIONS(635), - [anon_sym_func] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_void] = ACTIONS(635), - [anon_sym_anyopaque] = ACTIONS(635), - [anon_sym_bool] = ACTIONS(635), - [anon_sym_int] = ACTIONS(635), - [anon_sym_uint] = ACTIONS(635), - [anon_sym_float] = ACTIONS(635), - [anon_sym_range] = ACTIONS(635), - [anon_sym_i8] = ACTIONS(635), - [anon_sym_i16] = ACTIONS(635), - [anon_sym_i32] = ACTIONS(635), - [anon_sym_i64] = ACTIONS(635), - [anon_sym_u8] = ACTIONS(635), - [anon_sym_u16] = ACTIONS(635), - [anon_sym_u32] = ACTIONS(635), - [anon_sym_u64] = ACTIONS(635), - [anon_sym_isize] = ACTIONS(635), - [anon_sym_usize] = ACTIONS(635), - [anon_sym_f32] = ACTIONS(635), - [anon_sym_f64] = ACTIONS(635), - [anon_sym_c_char] = ACTIONS(635), - [anon_sym_c_schar] = ACTIONS(635), - [anon_sym_c_uchar] = ACTIONS(635), - [anon_sym_c_short] = ACTIONS(635), - [anon_sym_c_ushort] = ACTIONS(635), - [anon_sym_c_int] = ACTIONS(635), - [anon_sym_c_uint] = ACTIONS(635), - [anon_sym_c_long] = ACTIONS(635), - [anon_sym_c_ulong] = ACTIONS(635), - [anon_sym_c_longlong] = ACTIONS(635), - [anon_sym_c_ulonglong] = ACTIONS(635), - [anon_sym_c_float] = ACTIONS(635), - [anon_sym_c_double] = ACTIONS(635), - [anon_sym_c_longdouble] = ACTIONS(635), - [anon_sym_return] = ACTIONS(635), - [anon_sym_yield] = ACTIONS(635), - [anon_sym_COLON] = ACTIONS(633), - [anon_sym_break] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_defer] = ACTIONS(635), - [anon_sym_errdefer] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_else] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_expand] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_match] = ACTIONS(635), - [anon_sym_DOT_DOT] = ACTIONS(635), - [anon_sym_DOT_DOT_EQ] = ACTIONS(633), - [anon_sym_orelse] = ACTIONS(635), - [anon_sym_catch] = ACTIONS(635), - [anon_sym_or] = ACTIONS(635), - [anon_sym_and] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_xor] = ACTIONS(635), - [anon_sym_LT_LT] = ACTIONS(635), - [anon_sym_GT_GT] = ACTIONS(633), - [anon_sym_LT_LT_PIPE] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_try] = ACTIONS(635), - [anon_sym_DOT] = ACTIONS(635), - [anon_sym_CARET] = ACTIONS(633), - [anon_sym_true] = ACTIONS(635), - [anon_sym_false] = ACTIONS(635), - [sym_none] = ACTIONS(635), - [sym_undefined] = ACTIONS(635), - [sym_sink] = ACTIONS(635), - [sym_integer] = ACTIONS(635), - [sym_float] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_multiline_string] = ACTIONS(633), - [sym_character] = ACTIONS(633), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - }, - [STATE(687)] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_identifier] = ACTIONS(1199), - [anon_sym_import] = ACTIONS(1199), - [anon_sym_test] = ACTIONS(1199), - [anon_sym_hide] = ACTIONS(1199), - [anon_sym_func] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_void] = ACTIONS(1199), - [anon_sym_anyopaque] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_int] = ACTIONS(1199), - [anon_sym_uint] = ACTIONS(1199), - [anon_sym_float] = ACTIONS(1199), - [anon_sym_range] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_c_char] = ACTIONS(1199), - [anon_sym_c_schar] = ACTIONS(1199), - [anon_sym_c_uchar] = ACTIONS(1199), - [anon_sym_c_short] = ACTIONS(1199), - [anon_sym_c_ushort] = ACTIONS(1199), - [anon_sym_c_int] = ACTIONS(1199), - [anon_sym_c_uint] = ACTIONS(1199), - [anon_sym_c_long] = ACTIONS(1199), - [anon_sym_c_ulong] = ACTIONS(1199), - [anon_sym_c_longlong] = ACTIONS(1199), - [anon_sym_c_ulonglong] = ACTIONS(1199), - [anon_sym_c_float] = ACTIONS(1199), - [anon_sym_c_double] = ACTIONS(1199), - [anon_sym_c_longdouble] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(1199), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_defer] = ACTIONS(1199), - [anon_sym_errdefer] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_expand] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), - [anon_sym_orelse] = ACTIONS(1199), - [anon_sym_catch] = ACTIONS(1199), - [anon_sym_or] = ACTIONS(1199), - [anon_sym_and] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1199), - [anon_sym_GT_EQ] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_xor] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1197), - [anon_sym_LT_LT_PIPE] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_try] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), - [sym_none] = ACTIONS(1199), - [sym_undefined] = ACTIONS(1199), - [sym_sink] = ACTIONS(1199), - [sym_integer] = ACTIONS(1199), - [sym_float] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_multiline_string] = ACTIONS(1197), - [sym_character] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1197), - }, - [STATE(688)] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_import] = ACTIONS(639), - [anon_sym_test] = ACTIONS(639), - [anon_sym_hide] = ACTIONS(639), - [anon_sym_func] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(637), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_void] = ACTIONS(639), - [anon_sym_anyopaque] = ACTIONS(639), - [anon_sym_bool] = ACTIONS(639), - [anon_sym_int] = ACTIONS(639), - [anon_sym_uint] = ACTIONS(639), - [anon_sym_float] = ACTIONS(639), - [anon_sym_range] = ACTIONS(639), - [anon_sym_i8] = ACTIONS(639), - [anon_sym_i16] = ACTIONS(639), - [anon_sym_i32] = ACTIONS(639), - [anon_sym_i64] = ACTIONS(639), - [anon_sym_u8] = ACTIONS(639), - [anon_sym_u16] = ACTIONS(639), - [anon_sym_u32] = ACTIONS(639), - [anon_sym_u64] = ACTIONS(639), - [anon_sym_isize] = ACTIONS(639), - [anon_sym_usize] = ACTIONS(639), - [anon_sym_f32] = ACTIONS(639), - [anon_sym_f64] = ACTIONS(639), - [anon_sym_c_char] = ACTIONS(639), - [anon_sym_c_schar] = ACTIONS(639), - [anon_sym_c_uchar] = ACTIONS(639), - [anon_sym_c_short] = ACTIONS(639), - [anon_sym_c_ushort] = ACTIONS(639), - [anon_sym_c_int] = ACTIONS(639), - [anon_sym_c_uint] = ACTIONS(639), - [anon_sym_c_long] = ACTIONS(639), - [anon_sym_c_ulong] = ACTIONS(639), - [anon_sym_c_longlong] = ACTIONS(639), - [anon_sym_c_ulonglong] = ACTIONS(639), - [anon_sym_c_float] = ACTIONS(639), - [anon_sym_c_double] = ACTIONS(639), - [anon_sym_c_longdouble] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(637), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_defer] = ACTIONS(639), - [anon_sym_errdefer] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_expand] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_match] = ACTIONS(639), - [anon_sym_DOT_DOT] = ACTIONS(639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(637), - [anon_sym_orelse] = ACTIONS(639), - [anon_sym_catch] = ACTIONS(639), - [anon_sym_or] = ACTIONS(639), - [anon_sym_and] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_xor] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(637), - [anon_sym_LT_LT_PIPE] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_try] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [sym_none] = ACTIONS(639), - [sym_undefined] = ACTIONS(639), - [sym_sink] = ACTIONS(639), - [sym_integer] = ACTIONS(639), - [sym_float] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_multiline_string] = ACTIONS(637), - [sym_character] = ACTIONS(637), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - }, - [STATE(689)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_test] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(690)] = { - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_import] = ACTIONS(1023), - [anon_sym_test] = ACTIONS(1023), - [anon_sym_hide] = ACTIONS(1023), - [anon_sym_func] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(1021), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_anyopaque] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_int] = ACTIONS(1023), - [anon_sym_uint] = ACTIONS(1023), - [anon_sym_float] = ACTIONS(1023), - [anon_sym_range] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_c_char] = ACTIONS(1023), - [anon_sym_c_schar] = ACTIONS(1023), - [anon_sym_c_uchar] = ACTIONS(1023), - [anon_sym_c_short] = ACTIONS(1023), - [anon_sym_c_ushort] = ACTIONS(1023), - [anon_sym_c_int] = ACTIONS(1023), - [anon_sym_c_uint] = ACTIONS(1023), - [anon_sym_c_long] = ACTIONS(1023), - [anon_sym_c_ulong] = ACTIONS(1023), - [anon_sym_c_longlong] = ACTIONS(1023), - [anon_sym_c_ulonglong] = ACTIONS(1023), - [anon_sym_c_float] = ACTIONS(1023), - [anon_sym_c_double] = ACTIONS(1023), - [anon_sym_c_longdouble] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_yield] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_defer] = ACTIONS(1023), - [anon_sym_errdefer] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_else] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_expand] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_orelse] = ACTIONS(1023), - [anon_sym_catch] = ACTIONS(1023), - [anon_sym_or] = ACTIONS(1023), - [anon_sym_and] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1021), - [anon_sym_BANG_EQ] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1021), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_xor] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_LT_LT_PIPE] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [sym_none] = ACTIONS(1023), - [sym_undefined] = ACTIONS(1023), - [sym_sink] = ACTIONS(1023), - [sym_integer] = ACTIONS(1023), - [sym_float] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym_multiline_string] = ACTIONS(1021), - [sym_character] = ACTIONS(1021), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1021), - }, - [STATE(691)] = { - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = ACTIONS(927), - [anon_sym_test] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_func] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = ACTIONS(927), - [anon_sym_uint] = ACTIONS(927), - [anon_sym_float] = ACTIONS(927), - [anon_sym_range] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_c_char] = ACTIONS(927), - [anon_sym_c_schar] = ACTIONS(927), - [anon_sym_c_uchar] = ACTIONS(927), - [anon_sym_c_short] = ACTIONS(927), - [anon_sym_c_ushort] = ACTIONS(927), - [anon_sym_c_int] = ACTIONS(927), - [anon_sym_c_uint] = ACTIONS(927), - [anon_sym_c_long] = ACTIONS(927), - [anon_sym_c_ulong] = ACTIONS(927), - [anon_sym_c_longlong] = ACTIONS(927), - [anon_sym_c_ulonglong] = ACTIONS(927), - [anon_sym_c_float] = ACTIONS(927), - [anon_sym_c_double] = ACTIONS(927), - [anon_sym_c_longdouble] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_yield] = ACTIONS(927), - [anon_sym_COLON] = ACTIONS(925), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_defer] = ACTIONS(927), - [anon_sym_errdefer] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_else] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_expand] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_orelse] = ACTIONS(927), - [anon_sym_catch] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(925), - [anon_sym_LT_LT_PIPE] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(925), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(925), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [sym_none] = ACTIONS(927), - [sym_undefined] = ACTIONS(927), - [sym_sink] = ACTIONS(927), - [sym_integer] = ACTIONS(927), - [sym_float] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym_multiline_string] = ACTIONS(925), - [sym_character] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), - }, - [STATE(692)] = { - [ts_builtin_sym_end] = ACTIONS(929), - [sym_identifier] = ACTIONS(931), - [anon_sym_import] = ACTIONS(931), - [anon_sym_test] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_func] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(931), - [anon_sym_anyopaque] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_int] = ACTIONS(931), - [anon_sym_uint] = ACTIONS(931), - [anon_sym_float] = ACTIONS(931), - [anon_sym_range] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_c_char] = ACTIONS(931), - [anon_sym_c_schar] = ACTIONS(931), - [anon_sym_c_uchar] = ACTIONS(931), - [anon_sym_c_short] = ACTIONS(931), - [anon_sym_c_ushort] = ACTIONS(931), - [anon_sym_c_int] = ACTIONS(931), - [anon_sym_c_uint] = ACTIONS(931), - [anon_sym_c_long] = ACTIONS(931), - [anon_sym_c_ulong] = ACTIONS(931), - [anon_sym_c_longlong] = ACTIONS(931), - [anon_sym_c_ulonglong] = ACTIONS(931), - [anon_sym_c_float] = ACTIONS(931), - [anon_sym_c_double] = ACTIONS(931), - [anon_sym_c_longdouble] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(931), - [anon_sym_COLON] = ACTIONS(929), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_defer] = ACTIONS(931), - [anon_sym_errdefer] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_expand] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_orelse] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_or] = ACTIONS(931), - [anon_sym_and] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(929), - [anon_sym_xor] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_LT_LT_PIPE] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_try] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [sym_none] = ACTIONS(931), - [sym_undefined] = ACTIONS(931), - [sym_sink] = ACTIONS(931), - [sym_integer] = ACTIONS(931), - [sym_float] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(929), - [sym_multiline_string] = ACTIONS(929), - [sym_character] = ACTIONS(929), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(929), - }, - [STATE(693)] = { - [ts_builtin_sym_end] = ACTIONS(933), - [sym_identifier] = ACTIONS(935), - [anon_sym_import] = ACTIONS(935), - [anon_sym_test] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_func] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_void] = ACTIONS(935), - [anon_sym_anyopaque] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_int] = ACTIONS(935), - [anon_sym_uint] = ACTIONS(935), - [anon_sym_float] = ACTIONS(935), - [anon_sym_range] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_c_char] = ACTIONS(935), - [anon_sym_c_schar] = ACTIONS(935), - [anon_sym_c_uchar] = ACTIONS(935), - [anon_sym_c_short] = ACTIONS(935), - [anon_sym_c_ushort] = ACTIONS(935), - [anon_sym_c_int] = ACTIONS(935), - [anon_sym_c_uint] = ACTIONS(935), - [anon_sym_c_long] = ACTIONS(935), - [anon_sym_c_ulong] = ACTIONS(935), - [anon_sym_c_longlong] = ACTIONS(935), - [anon_sym_c_ulonglong] = ACTIONS(935), - [anon_sym_c_float] = ACTIONS(935), - [anon_sym_c_double] = ACTIONS(935), - [anon_sym_c_longdouble] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_yield] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_defer] = ACTIONS(935), - [anon_sym_errdefer] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_expand] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_orelse] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_or] = ACTIONS(935), - [anon_sym_and] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_xor] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_LT_LT_PIPE] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(933), - [anon_sym_try] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [sym_none] = ACTIONS(935), - [sym_undefined] = ACTIONS(935), - [sym_sink] = ACTIONS(935), - [sym_integer] = ACTIONS(935), - [sym_float] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_multiline_string] = ACTIONS(933), - [sym_character] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(933), - }, - [STATE(694)] = { - [ts_builtin_sym_end] = ACTIONS(937), - [sym_identifier] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_test] = ACTIONS(939), - [anon_sym_hide] = ACTIONS(939), - [anon_sym_func] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_void] = ACTIONS(939), - [anon_sym_anyopaque] = ACTIONS(939), - [anon_sym_bool] = ACTIONS(939), - [anon_sym_int] = ACTIONS(939), - [anon_sym_uint] = ACTIONS(939), - [anon_sym_float] = ACTIONS(939), - [anon_sym_range] = ACTIONS(939), - [anon_sym_i8] = ACTIONS(939), - [anon_sym_i16] = ACTIONS(939), - [anon_sym_i32] = ACTIONS(939), - [anon_sym_i64] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(939), - [anon_sym_u16] = ACTIONS(939), - [anon_sym_u32] = ACTIONS(939), - [anon_sym_u64] = ACTIONS(939), - [anon_sym_isize] = ACTIONS(939), - [anon_sym_usize] = ACTIONS(939), - [anon_sym_f32] = ACTIONS(939), - [anon_sym_f64] = ACTIONS(939), - [anon_sym_c_char] = ACTIONS(939), - [anon_sym_c_schar] = ACTIONS(939), - [anon_sym_c_uchar] = ACTIONS(939), - [anon_sym_c_short] = ACTIONS(939), - [anon_sym_c_ushort] = ACTIONS(939), - [anon_sym_c_int] = ACTIONS(939), - [anon_sym_c_uint] = ACTIONS(939), - [anon_sym_c_long] = ACTIONS(939), - [anon_sym_c_ulong] = ACTIONS(939), - [anon_sym_c_longlong] = ACTIONS(939), - [anon_sym_c_ulonglong] = ACTIONS(939), - [anon_sym_c_float] = ACTIONS(939), - [anon_sym_c_double] = ACTIONS(939), - [anon_sym_c_longdouble] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_defer] = ACTIONS(939), - [anon_sym_errdefer] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_else] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_expand] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_match] = ACTIONS(939), - [anon_sym_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_orelse] = ACTIONS(939), - [anon_sym_catch] = ACTIONS(939), - [anon_sym_or] = ACTIONS(939), - [anon_sym_and] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_xor] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_LT_LT_PIPE] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_true] = ACTIONS(939), - [anon_sym_false] = ACTIONS(939), - [sym_none] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [sym_sink] = ACTIONS(939), - [sym_integer] = ACTIONS(939), - [sym_float] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym_multiline_string] = ACTIONS(937), - [sym_character] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(937), - }, - [STATE(695)] = { - [ts_builtin_sym_end] = ACTIONS(823), - [sym_identifier] = ACTIONS(825), - [anon_sym_import] = ACTIONS(825), - [anon_sym_test] = ACTIONS(825), - [anon_sym_hide] = ACTIONS(825), - [anon_sym_func] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_struct] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_void] = ACTIONS(825), - [anon_sym_anyopaque] = ACTIONS(825), - [anon_sym_bool] = ACTIONS(825), - [anon_sym_int] = ACTIONS(825), - [anon_sym_uint] = ACTIONS(825), - [anon_sym_float] = ACTIONS(825), - [anon_sym_range] = ACTIONS(825), - [anon_sym_i8] = ACTIONS(825), - [anon_sym_i16] = ACTIONS(825), - [anon_sym_i32] = ACTIONS(825), - [anon_sym_i64] = ACTIONS(825), - [anon_sym_u8] = ACTIONS(825), - [anon_sym_u16] = ACTIONS(825), - [anon_sym_u32] = ACTIONS(825), - [anon_sym_u64] = ACTIONS(825), - [anon_sym_isize] = ACTIONS(825), - [anon_sym_usize] = ACTIONS(825), - [anon_sym_f32] = ACTIONS(825), - [anon_sym_f64] = ACTIONS(825), - [anon_sym_c_char] = ACTIONS(825), - [anon_sym_c_schar] = ACTIONS(825), - [anon_sym_c_uchar] = ACTIONS(825), - [anon_sym_c_short] = ACTIONS(825), - [anon_sym_c_ushort] = ACTIONS(825), - [anon_sym_c_int] = ACTIONS(825), - [anon_sym_c_uint] = ACTIONS(825), - [anon_sym_c_long] = ACTIONS(825), - [anon_sym_c_ulong] = ACTIONS(825), - [anon_sym_c_longlong] = ACTIONS(825), - [anon_sym_c_ulonglong] = ACTIONS(825), - [anon_sym_c_float] = ACTIONS(825), - [anon_sym_c_double] = ACTIONS(825), - [anon_sym_c_longdouble] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_defer] = ACTIONS(825), - [anon_sym_errdefer] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_else] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_expand] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_match] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(823), - [anon_sym_orelse] = ACTIONS(825), - [anon_sym_catch] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_LT_LT] = ACTIONS(825), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_LT_LT_PIPE] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_try] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [sym_none] = ACTIONS(825), - [sym_undefined] = ACTIONS(825), - [sym_sink] = ACTIONS(825), - [sym_integer] = ACTIONS(825), - [sym_float] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym_multiline_string] = ACTIONS(823), - [sym_character] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(823), - }, - [STATE(696)] = { - [ts_builtin_sym_end] = ACTIONS(827), - [sym_identifier] = ACTIONS(829), - [anon_sym_import] = ACTIONS(829), - [anon_sym_test] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_func] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_struct] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_void] = ACTIONS(829), - [anon_sym_anyopaque] = ACTIONS(829), - [anon_sym_bool] = ACTIONS(829), - [anon_sym_int] = ACTIONS(829), - [anon_sym_uint] = ACTIONS(829), - [anon_sym_float] = ACTIONS(829), - [anon_sym_range] = ACTIONS(829), - [anon_sym_i8] = ACTIONS(829), - [anon_sym_i16] = ACTIONS(829), - [anon_sym_i32] = ACTIONS(829), - [anon_sym_i64] = ACTIONS(829), - [anon_sym_u8] = ACTIONS(829), - [anon_sym_u16] = ACTIONS(829), - [anon_sym_u32] = ACTIONS(829), - [anon_sym_u64] = ACTIONS(829), - [anon_sym_isize] = ACTIONS(829), - [anon_sym_usize] = ACTIONS(829), - [anon_sym_f32] = ACTIONS(829), - [anon_sym_f64] = ACTIONS(829), - [anon_sym_c_char] = ACTIONS(829), - [anon_sym_c_schar] = ACTIONS(829), - [anon_sym_c_uchar] = ACTIONS(829), - [anon_sym_c_short] = ACTIONS(829), - [anon_sym_c_ushort] = ACTIONS(829), - [anon_sym_c_int] = ACTIONS(829), - [anon_sym_c_uint] = ACTIONS(829), - [anon_sym_c_long] = ACTIONS(829), - [anon_sym_c_ulong] = ACTIONS(829), - [anon_sym_c_longlong] = ACTIONS(829), - [anon_sym_c_ulonglong] = ACTIONS(829), - [anon_sym_c_float] = ACTIONS(829), - [anon_sym_c_double] = ACTIONS(829), - [anon_sym_c_longdouble] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_yield] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_defer] = ACTIONS(829), - [anon_sym_errdefer] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_else] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_expand] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(827), - [anon_sym_orelse] = ACTIONS(829), - [anon_sym_catch] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(827), - [anon_sym_BANG_EQ] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(827), - [anon_sym_LT_LT_PIPE] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(827), - [anon_sym_try] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [sym_none] = ACTIONS(829), - [sym_undefined] = ACTIONS(829), - [sym_sink] = ACTIONS(829), - [sym_integer] = ACTIONS(829), - [sym_float] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(827), - [sym_multiline_string] = ACTIONS(827), - [sym_character] = ACTIONS(827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(827), - }, - [STATE(697)] = { - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_test] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_func] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_struct] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_QMARK] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_anyopaque] = ACTIONS(1059), - [anon_sym_bool] = ACTIONS(1059), - [anon_sym_int] = ACTIONS(1059), - [anon_sym_uint] = ACTIONS(1059), - [anon_sym_float] = ACTIONS(1059), - [anon_sym_range] = ACTIONS(1059), - [anon_sym_i8] = ACTIONS(1059), - [anon_sym_i16] = ACTIONS(1059), - [anon_sym_i32] = ACTIONS(1059), - [anon_sym_i64] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1059), - [anon_sym_u16] = ACTIONS(1059), - [anon_sym_u32] = ACTIONS(1059), - [anon_sym_u64] = ACTIONS(1059), - [anon_sym_isize] = ACTIONS(1059), - [anon_sym_usize] = ACTIONS(1059), - [anon_sym_f32] = ACTIONS(1059), - [anon_sym_f64] = ACTIONS(1059), - [anon_sym_c_char] = ACTIONS(1059), - [anon_sym_c_schar] = ACTIONS(1059), - [anon_sym_c_uchar] = ACTIONS(1059), - [anon_sym_c_short] = ACTIONS(1059), - [anon_sym_c_ushort] = ACTIONS(1059), - [anon_sym_c_int] = ACTIONS(1059), - [anon_sym_c_uint] = ACTIONS(1059), - [anon_sym_c_long] = ACTIONS(1059), - [anon_sym_c_ulong] = ACTIONS(1059), - [anon_sym_c_longlong] = ACTIONS(1059), - [anon_sym_c_ulonglong] = ACTIONS(1059), - [anon_sym_c_float] = ACTIONS(1059), - [anon_sym_c_double] = ACTIONS(1059), - [anon_sym_c_longdouble] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_defer] = ACTIONS(1059), - [anon_sym_errdefer] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_expand] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), - [anon_sym_orelse] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1057), - [anon_sym_BANG_EQ] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT_PIPE] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [sym_none] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [sym_sink] = ACTIONS(1059), - [sym_integer] = ACTIONS(1059), - [sym_float] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [sym_multiline_string] = ACTIONS(1057), - [sym_character] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1057), - }, - [STATE(698)] = { - [ts_builtin_sym_end] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1011), - [anon_sym_import] = ACTIONS(1011), - [anon_sym_test] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_func] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_void] = ACTIONS(1011), - [anon_sym_anyopaque] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_uint] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_range] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_c_char] = ACTIONS(1011), - [anon_sym_c_schar] = ACTIONS(1011), - [anon_sym_c_uchar] = ACTIONS(1011), - [anon_sym_c_short] = ACTIONS(1011), - [anon_sym_c_ushort] = ACTIONS(1011), - [anon_sym_c_int] = ACTIONS(1011), - [anon_sym_c_uint] = ACTIONS(1011), - [anon_sym_c_long] = ACTIONS(1011), - [anon_sym_c_ulong] = ACTIONS(1011), - [anon_sym_c_longlong] = ACTIONS(1011), - [anon_sym_c_ulonglong] = ACTIONS(1011), - [anon_sym_c_float] = ACTIONS(1011), - [anon_sym_c_double] = ACTIONS(1011), - [anon_sym_c_longdouble] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_defer] = ACTIONS(1011), - [anon_sym_errdefer] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_expand] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_orelse] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_or] = ACTIONS(1011), - [anon_sym_and] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_xor] = ACTIONS(1011), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_LT_LT_PIPE] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_SLASH] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [sym_none] = ACTIONS(1011), - [sym_undefined] = ACTIONS(1011), - [sym_sink] = ACTIONS(1011), - [sym_integer] = ACTIONS(1011), - [sym_float] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym_multiline_string] = ACTIONS(1009), - [sym_character] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1009), - }, - [STATE(699)] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_test] = ACTIONS(615), - [anon_sym_hide] = ACTIONS(615), - [anon_sym_func] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_void] = ACTIONS(615), - [anon_sym_anyopaque] = ACTIONS(615), - [anon_sym_bool] = ACTIONS(615), - [anon_sym_int] = ACTIONS(615), - [anon_sym_uint] = ACTIONS(615), - [anon_sym_float] = ACTIONS(615), - [anon_sym_range] = ACTIONS(615), - [anon_sym_i8] = ACTIONS(615), - [anon_sym_i16] = ACTIONS(615), - [anon_sym_i32] = ACTIONS(615), - [anon_sym_i64] = ACTIONS(615), - [anon_sym_u8] = ACTIONS(615), - [anon_sym_u16] = ACTIONS(615), - [anon_sym_u32] = ACTIONS(615), - [anon_sym_u64] = ACTIONS(615), - [anon_sym_isize] = ACTIONS(615), - [anon_sym_usize] = ACTIONS(615), - [anon_sym_f32] = ACTIONS(615), - [anon_sym_f64] = ACTIONS(615), - [anon_sym_c_char] = ACTIONS(615), - [anon_sym_c_schar] = ACTIONS(615), - [anon_sym_c_uchar] = ACTIONS(615), - [anon_sym_c_short] = ACTIONS(615), - [anon_sym_c_ushort] = ACTIONS(615), - [anon_sym_c_int] = ACTIONS(615), - [anon_sym_c_uint] = ACTIONS(615), - [anon_sym_c_long] = ACTIONS(615), - [anon_sym_c_ulong] = ACTIONS(615), - [anon_sym_c_longlong] = ACTIONS(615), - [anon_sym_c_ulonglong] = ACTIONS(615), - [anon_sym_c_float] = ACTIONS(615), - [anon_sym_c_double] = ACTIONS(615), - [anon_sym_c_longdouble] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_errdefer] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_expand] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(613), - [anon_sym_orelse] = ACTIONS(615), - [anon_sym_catch] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_and] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_xor] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_LT_LT_PIPE] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_try] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_true] = ACTIONS(615), - [anon_sym_false] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_undefined] = ACTIONS(615), - [sym_sink] = ACTIONS(615), - [sym_integer] = ACTIONS(615), - [sym_float] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_multiline_string] = ACTIONS(613), - [sym_character] = ACTIONS(613), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - }, - [STATE(700)] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_test] = ACTIONS(643), - [anon_sym_hide] = ACTIONS(643), - [anon_sym_func] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(641), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_void] = ACTIONS(643), - [anon_sym_anyopaque] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_uint] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_range] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_c_char] = ACTIONS(643), - [anon_sym_c_schar] = ACTIONS(643), - [anon_sym_c_uchar] = ACTIONS(643), - [anon_sym_c_short] = ACTIONS(643), - [anon_sym_c_ushort] = ACTIONS(643), - [anon_sym_c_int] = ACTIONS(643), - [anon_sym_c_uint] = ACTIONS(643), - [anon_sym_c_long] = ACTIONS(643), - [anon_sym_c_ulong] = ACTIONS(643), - [anon_sym_c_longlong] = ACTIONS(643), - [anon_sym_c_ulonglong] = ACTIONS(643), - [anon_sym_c_float] = ACTIONS(643), - [anon_sym_c_double] = ACTIONS(643), - [anon_sym_c_longdouble] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_defer] = ACTIONS(643), - [anon_sym_errdefer] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_expand] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(641), - [anon_sym_orelse] = ACTIONS(643), - [anon_sym_catch] = ACTIONS(643), - [anon_sym_or] = ACTIONS(643), - [anon_sym_and] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_xor] = ACTIONS(643), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_LT_LT_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_try] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(641), - [anon_sym_true] = ACTIONS(643), - [anon_sym_false] = ACTIONS(643), - [sym_none] = ACTIONS(643), - [sym_undefined] = ACTIONS(643), - [sym_sink] = ACTIONS(643), - [sym_integer] = ACTIONS(643), - [sym_float] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_multiline_string] = ACTIONS(641), - [sym_character] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(641), - }, - [STATE(701)] = { - [ts_builtin_sym_end] = ACTIONS(1061), - [sym_identifier] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(1063), - [anon_sym_test] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_func] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_anyopaque] = ACTIONS(1063), - [anon_sym_bool] = ACTIONS(1063), - [anon_sym_int] = ACTIONS(1063), - [anon_sym_uint] = ACTIONS(1063), - [anon_sym_float] = ACTIONS(1063), - [anon_sym_range] = ACTIONS(1063), - [anon_sym_i8] = ACTIONS(1063), - [anon_sym_i16] = ACTIONS(1063), - [anon_sym_i32] = ACTIONS(1063), - [anon_sym_i64] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(1063), - [anon_sym_u16] = ACTIONS(1063), - [anon_sym_u32] = ACTIONS(1063), - [anon_sym_u64] = ACTIONS(1063), - [anon_sym_isize] = ACTIONS(1063), - [anon_sym_usize] = ACTIONS(1063), - [anon_sym_f32] = ACTIONS(1063), - [anon_sym_f64] = ACTIONS(1063), - [anon_sym_c_char] = ACTIONS(1063), - [anon_sym_c_schar] = ACTIONS(1063), - [anon_sym_c_uchar] = ACTIONS(1063), - [anon_sym_c_short] = ACTIONS(1063), - [anon_sym_c_ushort] = ACTIONS(1063), - [anon_sym_c_int] = ACTIONS(1063), - [anon_sym_c_uint] = ACTIONS(1063), - [anon_sym_c_long] = ACTIONS(1063), - [anon_sym_c_ulong] = ACTIONS(1063), - [anon_sym_c_longlong] = ACTIONS(1063), - [anon_sym_c_ulonglong] = ACTIONS(1063), - [anon_sym_c_float] = ACTIONS(1063), - [anon_sym_c_double] = ACTIONS(1063), - [anon_sym_c_longdouble] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_defer] = ACTIONS(1063), - [anon_sym_errdefer] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_expand] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), - [anon_sym_orelse] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1061), - [anon_sym_LT_LT_PIPE] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [sym_none] = ACTIONS(1063), - [sym_undefined] = ACTIONS(1063), - [sym_sink] = ACTIONS(1063), - [sym_integer] = ACTIONS(1063), - [sym_float] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym_multiline_string] = ACTIONS(1061), - [sym_character] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1061), - }, - [STATE(702)] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_test] = ACTIONS(643), - [anon_sym_hide] = ACTIONS(643), - [anon_sym_func] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(641), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_void] = ACTIONS(643), - [anon_sym_anyopaque] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_uint] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_range] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_c_char] = ACTIONS(643), - [anon_sym_c_schar] = ACTIONS(643), - [anon_sym_c_uchar] = ACTIONS(643), - [anon_sym_c_short] = ACTIONS(643), - [anon_sym_c_ushort] = ACTIONS(643), - [anon_sym_c_int] = ACTIONS(643), - [anon_sym_c_uint] = ACTIONS(643), - [anon_sym_c_long] = ACTIONS(643), - [anon_sym_c_ulong] = ACTIONS(643), - [anon_sym_c_longlong] = ACTIONS(643), - [anon_sym_c_ulonglong] = ACTIONS(643), - [anon_sym_c_float] = ACTIONS(643), - [anon_sym_c_double] = ACTIONS(643), - [anon_sym_c_longdouble] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_defer] = ACTIONS(643), - [anon_sym_errdefer] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_expand] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(641), - [anon_sym_orelse] = ACTIONS(643), - [anon_sym_catch] = ACTIONS(643), - [anon_sym_or] = ACTIONS(643), - [anon_sym_and] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_xor] = ACTIONS(643), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_LT_LT_PIPE] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_try] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(641), - [anon_sym_true] = ACTIONS(643), - [anon_sym_false] = ACTIONS(643), - [sym_none] = ACTIONS(643), - [sym_undefined] = ACTIONS(643), - [sym_sink] = ACTIONS(643), - [sym_integer] = ACTIONS(643), - [sym_float] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [sym_multiline_string] = ACTIONS(641), - [sym_character] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(641), - }, - [STATE(703)] = { - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_identifier] = ACTIONS(1071), - [anon_sym_import] = ACTIONS(1071), - [anon_sym_test] = ACTIONS(1071), - [anon_sym_hide] = ACTIONS(1071), - [anon_sym_func] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_QMARK] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1071), - [anon_sym_anyopaque] = ACTIONS(1071), - [anon_sym_bool] = ACTIONS(1071), - [anon_sym_int] = ACTIONS(1071), - [anon_sym_uint] = ACTIONS(1071), - [anon_sym_float] = ACTIONS(1071), - [anon_sym_range] = ACTIONS(1071), - [anon_sym_i8] = ACTIONS(1071), - [anon_sym_i16] = ACTIONS(1071), - [anon_sym_i32] = ACTIONS(1071), - [anon_sym_i64] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(1071), - [anon_sym_u16] = ACTIONS(1071), - [anon_sym_u32] = ACTIONS(1071), - [anon_sym_u64] = ACTIONS(1071), - [anon_sym_isize] = ACTIONS(1071), - [anon_sym_usize] = ACTIONS(1071), - [anon_sym_f32] = ACTIONS(1071), - [anon_sym_f64] = ACTIONS(1071), - [anon_sym_c_char] = ACTIONS(1071), - [anon_sym_c_schar] = ACTIONS(1071), - [anon_sym_c_uchar] = ACTIONS(1071), - [anon_sym_c_short] = ACTIONS(1071), - [anon_sym_c_ushort] = ACTIONS(1071), - [anon_sym_c_int] = ACTIONS(1071), - [anon_sym_c_uint] = ACTIONS(1071), - [anon_sym_c_long] = ACTIONS(1071), - [anon_sym_c_ulong] = ACTIONS(1071), - [anon_sym_c_longlong] = ACTIONS(1071), - [anon_sym_c_ulonglong] = ACTIONS(1071), - [anon_sym_c_float] = ACTIONS(1071), - [anon_sym_c_double] = ACTIONS(1071), - [anon_sym_c_longdouble] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1071), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_defer] = ACTIONS(1071), - [anon_sym_errdefer] = ACTIONS(1071), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_else] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_expand] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_match] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1069), - [anon_sym_orelse] = ACTIONS(1071), - [anon_sym_catch] = ACTIONS(1071), - [anon_sym_or] = ACTIONS(1071), - [anon_sym_and] = ACTIONS(1071), - [anon_sym_EQ_EQ] = ACTIONS(1069), - [anon_sym_BANG_EQ] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_xor] = ACTIONS(1071), - [anon_sym_LT_LT] = ACTIONS(1071), - [anon_sym_GT_GT] = ACTIONS(1069), - [anon_sym_LT_LT_PIPE] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_try] = ACTIONS(1071), - [anon_sym_DOT] = ACTIONS(1071), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(1071), - [anon_sym_false] = ACTIONS(1071), - [sym_none] = ACTIONS(1071), - [sym_undefined] = ACTIONS(1071), - [sym_sink] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [sym_multiline_string] = ACTIONS(1069), - [sym_character] = ACTIONS(1069), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1069), - }, - [STATE(704)] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [anon_sym_import] = ACTIONS(647), - [anon_sym_test] = ACTIONS(647), - [anon_sym_hide] = ACTIONS(647), - [anon_sym_func] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_void] = ACTIONS(647), - [anon_sym_anyopaque] = ACTIONS(647), - [anon_sym_bool] = ACTIONS(647), - [anon_sym_int] = ACTIONS(647), - [anon_sym_uint] = ACTIONS(647), - [anon_sym_float] = ACTIONS(647), - [anon_sym_range] = ACTIONS(647), - [anon_sym_i8] = ACTIONS(647), - [anon_sym_i16] = ACTIONS(647), - [anon_sym_i32] = ACTIONS(647), - [anon_sym_i64] = ACTIONS(647), - [anon_sym_u8] = ACTIONS(647), - [anon_sym_u16] = ACTIONS(647), - [anon_sym_u32] = ACTIONS(647), - [anon_sym_u64] = ACTIONS(647), - [anon_sym_isize] = ACTIONS(647), - [anon_sym_usize] = ACTIONS(647), - [anon_sym_f32] = ACTIONS(647), - [anon_sym_f64] = ACTIONS(647), - [anon_sym_c_char] = ACTIONS(647), - [anon_sym_c_schar] = ACTIONS(647), - [anon_sym_c_uchar] = ACTIONS(647), - [anon_sym_c_short] = ACTIONS(647), - [anon_sym_c_ushort] = ACTIONS(647), - [anon_sym_c_int] = ACTIONS(647), - [anon_sym_c_uint] = ACTIONS(647), - [anon_sym_c_long] = ACTIONS(647), - [anon_sym_c_ulong] = ACTIONS(647), - [anon_sym_c_longlong] = ACTIONS(647), - [anon_sym_c_ulonglong] = ACTIONS(647), - [anon_sym_c_float] = ACTIONS(647), - [anon_sym_c_double] = ACTIONS(647), - [anon_sym_c_longdouble] = ACTIONS(647), - [anon_sym_return] = ACTIONS(647), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(645), - [anon_sym_break] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_defer] = ACTIONS(647), - [anon_sym_errdefer] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_expand] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_match] = ACTIONS(647), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_DOT_DOT_EQ] = ACTIONS(645), - [anon_sym_orelse] = ACTIONS(647), - [anon_sym_catch] = ACTIONS(647), - [anon_sym_or] = ACTIONS(647), - [anon_sym_and] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_BANG_EQ] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(645), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_xor] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_LT_LT_PIPE] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_try] = ACTIONS(647), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_true] = ACTIONS(647), - [anon_sym_false] = ACTIONS(647), - [sym_none] = ACTIONS(647), - [sym_undefined] = ACTIONS(647), - [sym_sink] = ACTIONS(647), - [sym_integer] = ACTIONS(647), - [sym_float] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [sym_multiline_string] = ACTIONS(645), - [sym_character] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(645), - }, - [STATE(705)] = { - [ts_builtin_sym_end] = ACTIONS(835), - [sym_identifier] = ACTIONS(837), - [anon_sym_import] = ACTIONS(837), - [anon_sym_test] = ACTIONS(837), - [anon_sym_hide] = ACTIONS(837), - [anon_sym_func] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(837), - [anon_sym_struct] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_void] = ACTIONS(837), - [anon_sym_anyopaque] = ACTIONS(837), - [anon_sym_bool] = ACTIONS(837), - [anon_sym_int] = ACTIONS(837), - [anon_sym_uint] = ACTIONS(837), - [anon_sym_float] = ACTIONS(837), - [anon_sym_range] = ACTIONS(837), - [anon_sym_i8] = ACTIONS(837), - [anon_sym_i16] = ACTIONS(837), - [anon_sym_i32] = ACTIONS(837), - [anon_sym_i64] = ACTIONS(837), - [anon_sym_u8] = ACTIONS(837), - [anon_sym_u16] = ACTIONS(837), - [anon_sym_u32] = ACTIONS(837), - [anon_sym_u64] = ACTIONS(837), - [anon_sym_isize] = ACTIONS(837), - [anon_sym_usize] = ACTIONS(837), - [anon_sym_f32] = ACTIONS(837), - [anon_sym_f64] = ACTIONS(837), - [anon_sym_c_char] = ACTIONS(837), - [anon_sym_c_schar] = ACTIONS(837), - [anon_sym_c_uchar] = ACTIONS(837), - [anon_sym_c_short] = ACTIONS(837), - [anon_sym_c_ushort] = ACTIONS(837), - [anon_sym_c_int] = ACTIONS(837), - [anon_sym_c_uint] = ACTIONS(837), - [anon_sym_c_long] = ACTIONS(837), - [anon_sym_c_ulong] = ACTIONS(837), - [anon_sym_c_longlong] = ACTIONS(837), - [anon_sym_c_ulonglong] = ACTIONS(837), - [anon_sym_c_float] = ACTIONS(837), - [anon_sym_c_double] = ACTIONS(837), - [anon_sym_c_longdouble] = ACTIONS(837), - [anon_sym_return] = ACTIONS(837), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_break] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_defer] = ACTIONS(837), - [anon_sym_errdefer] = ACTIONS(837), - [anon_sym_if] = ACTIONS(837), - [anon_sym_else] = ACTIONS(837), - [anon_sym_while] = ACTIONS(837), - [anon_sym_expand] = ACTIONS(837), - [anon_sym_for] = ACTIONS(837), - [anon_sym_match] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(835), - [anon_sym_orelse] = ACTIONS(837), - [anon_sym_catch] = ACTIONS(837), - [anon_sym_or] = ACTIONS(837), - [anon_sym_and] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(837), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(835), - [anon_sym_try] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_true] = ACTIONS(837), - [anon_sym_false] = ACTIONS(837), - [sym_none] = ACTIONS(837), - [sym_undefined] = ACTIONS(837), - [sym_sink] = ACTIONS(837), - [sym_integer] = ACTIONS(837), - [sym_float] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_multiline_string] = ACTIONS(835), - [sym_character] = ACTIONS(835), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(835), - }, - [STATE(706)] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [anon_sym_import] = ACTIONS(651), - [anon_sym_test] = ACTIONS(651), - [anon_sym_hide] = ACTIONS(651), - [anon_sym_func] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_struct] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(649), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_void] = ACTIONS(651), - [anon_sym_anyopaque] = ACTIONS(651), - [anon_sym_bool] = ACTIONS(651), - [anon_sym_int] = ACTIONS(651), - [anon_sym_uint] = ACTIONS(651), - [anon_sym_float] = ACTIONS(651), - [anon_sym_range] = ACTIONS(651), - [anon_sym_i8] = ACTIONS(651), - [anon_sym_i16] = ACTIONS(651), - [anon_sym_i32] = ACTIONS(651), - [anon_sym_i64] = ACTIONS(651), - [anon_sym_u8] = ACTIONS(651), - [anon_sym_u16] = ACTIONS(651), - [anon_sym_u32] = ACTIONS(651), - [anon_sym_u64] = ACTIONS(651), - [anon_sym_isize] = ACTIONS(651), - [anon_sym_usize] = ACTIONS(651), - [anon_sym_f32] = ACTIONS(651), - [anon_sym_f64] = ACTIONS(651), - [anon_sym_c_char] = ACTIONS(651), - [anon_sym_c_schar] = ACTIONS(651), - [anon_sym_c_uchar] = ACTIONS(651), - [anon_sym_c_short] = ACTIONS(651), - [anon_sym_c_ushort] = ACTIONS(651), - [anon_sym_c_int] = ACTIONS(651), - [anon_sym_c_uint] = ACTIONS(651), - [anon_sym_c_long] = ACTIONS(651), - [anon_sym_c_ulong] = ACTIONS(651), - [anon_sym_c_longlong] = ACTIONS(651), - [anon_sym_c_ulonglong] = ACTIONS(651), - [anon_sym_c_float] = ACTIONS(651), - [anon_sym_c_double] = ACTIONS(651), - [anon_sym_c_longdouble] = ACTIONS(651), - [anon_sym_return] = ACTIONS(651), - [anon_sym_yield] = ACTIONS(651), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_break] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(651), - [anon_sym_defer] = ACTIONS(651), - [anon_sym_errdefer] = ACTIONS(651), - [anon_sym_if] = ACTIONS(651), - [anon_sym_else] = ACTIONS(651), - [anon_sym_while] = ACTIONS(651), - [anon_sym_expand] = ACTIONS(651), - [anon_sym_for] = ACTIONS(651), - [anon_sym_match] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(649), - [anon_sym_orelse] = ACTIONS(651), - [anon_sym_catch] = ACTIONS(651), - [anon_sym_or] = ACTIONS(651), - [anon_sym_and] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_BANG_EQ] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(649), - [anon_sym_xor] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(649), - [anon_sym_LT_LT_PIPE] = ACTIONS(649), - [anon_sym_PLUS] = ACTIONS(649), - [anon_sym_SLASH] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_try] = ACTIONS(651), - [anon_sym_DOT] = ACTIONS(651), - [anon_sym_CARET] = ACTIONS(649), - [anon_sym_true] = ACTIONS(651), - [anon_sym_false] = ACTIONS(651), - [sym_none] = ACTIONS(651), - [sym_undefined] = ACTIONS(651), - [sym_sink] = ACTIONS(651), - [sym_integer] = ACTIONS(651), - [sym_float] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [sym_multiline_string] = ACTIONS(649), - [sym_character] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(649), - }, - [STATE(707)] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_test] = ACTIONS(508), - [anon_sym_hide] = ACTIONS(508), - [anon_sym_func] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_void] = ACTIONS(508), - [anon_sym_anyopaque] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_int] = ACTIONS(508), - [anon_sym_uint] = ACTIONS(508), - [anon_sym_float] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_c_char] = ACTIONS(508), - [anon_sym_c_schar] = ACTIONS(508), - [anon_sym_c_uchar] = ACTIONS(508), - [anon_sym_c_short] = ACTIONS(508), - [anon_sym_c_ushort] = ACTIONS(508), - [anon_sym_c_int] = ACTIONS(508), - [anon_sym_c_uint] = ACTIONS(508), - [anon_sym_c_long] = ACTIONS(508), - [anon_sym_c_ulong] = ACTIONS(508), - [anon_sym_c_longlong] = ACTIONS(508), - [anon_sym_c_ulonglong] = ACTIONS(508), - [anon_sym_c_float] = ACTIONS(508), - [anon_sym_c_double] = ACTIONS(508), - [anon_sym_c_longdouble] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_defer] = ACTIONS(508), - [anon_sym_errdefer] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_expand] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_orelse] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_or] = ACTIONS(508), - [anon_sym_and] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_xor] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LT_LT_PIPE] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_try] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [sym_none] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [sym_sink] = ACTIONS(508), - [sym_integer] = ACTIONS(508), - [sym_float] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(506), - [sym_multiline_string] = ACTIONS(506), - [sym_character] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(506), - }, - [STATE(708)] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_test] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_func] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_struct] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_void] = ACTIONS(949), - [anon_sym_anyopaque] = ACTIONS(949), - [anon_sym_bool] = ACTIONS(949), - [anon_sym_int] = ACTIONS(949), - [anon_sym_uint] = ACTIONS(949), - [anon_sym_float] = ACTIONS(949), - [anon_sym_range] = ACTIONS(949), - [anon_sym_i8] = ACTIONS(949), - [anon_sym_i16] = ACTIONS(949), - [anon_sym_i32] = ACTIONS(949), - [anon_sym_i64] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(949), - [anon_sym_u16] = ACTIONS(949), - [anon_sym_u32] = ACTIONS(949), - [anon_sym_u64] = ACTIONS(949), - [anon_sym_isize] = ACTIONS(949), - [anon_sym_usize] = ACTIONS(949), - [anon_sym_f32] = ACTIONS(949), - [anon_sym_f64] = ACTIONS(949), - [anon_sym_c_char] = ACTIONS(949), - [anon_sym_c_schar] = ACTIONS(949), - [anon_sym_c_uchar] = ACTIONS(949), - [anon_sym_c_short] = ACTIONS(949), - [anon_sym_c_ushort] = ACTIONS(949), - [anon_sym_c_int] = ACTIONS(949), - [anon_sym_c_uint] = ACTIONS(949), - [anon_sym_c_long] = ACTIONS(949), - [anon_sym_c_ulong] = ACTIONS(949), - [anon_sym_c_longlong] = ACTIONS(949), - [anon_sym_c_ulonglong] = ACTIONS(949), - [anon_sym_c_float] = ACTIONS(949), - [anon_sym_c_double] = ACTIONS(949), - [anon_sym_c_longdouble] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_defer] = ACTIONS(949), - [anon_sym_errdefer] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_expand] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_orelse] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_or] = ACTIONS(949), - [anon_sym_and] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_xor] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_LT_LT_PIPE] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_true] = ACTIONS(949), - [anon_sym_false] = ACTIONS(949), - [sym_none] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [sym_sink] = ACTIONS(949), - [sym_integer] = ACTIONS(949), - [sym_float] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_multiline_string] = ACTIONS(947), - [sym_character] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(947), - }, - [STATE(709)] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_test] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_func] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_anyopaque] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_int] = ACTIONS(953), - [anon_sym_uint] = ACTIONS(953), - [anon_sym_float] = ACTIONS(953), - [anon_sym_range] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_c_char] = ACTIONS(953), - [anon_sym_c_schar] = ACTIONS(953), - [anon_sym_c_uchar] = ACTIONS(953), - [anon_sym_c_short] = ACTIONS(953), - [anon_sym_c_ushort] = ACTIONS(953), - [anon_sym_c_int] = ACTIONS(953), - [anon_sym_c_uint] = ACTIONS(953), - [anon_sym_c_long] = ACTIONS(953), - [anon_sym_c_ulong] = ACTIONS(953), - [anon_sym_c_longlong] = ACTIONS(953), - [anon_sym_c_ulonglong] = ACTIONS(953), - [anon_sym_c_float] = ACTIONS(953), - [anon_sym_c_double] = ACTIONS(953), - [anon_sym_c_longdouble] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_defer] = ACTIONS(953), - [anon_sym_errdefer] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_expand] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_orelse] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_or] = ACTIONS(953), - [anon_sym_and] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_xor] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_LT_LT_PIPE] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [sym_none] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [sym_sink] = ACTIONS(953), - [sym_integer] = ACTIONS(953), - [sym_float] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym_multiline_string] = ACTIONS(951), - [sym_character] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(951), - }, - [STATE(710)] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_test] = ACTIONS(957), - [anon_sym_hide] = ACTIONS(957), - [anon_sym_func] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_void] = ACTIONS(957), - [anon_sym_anyopaque] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_int] = ACTIONS(957), - [anon_sym_uint] = ACTIONS(957), - [anon_sym_float] = ACTIONS(957), - [anon_sym_range] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_c_char] = ACTIONS(957), - [anon_sym_c_schar] = ACTIONS(957), - [anon_sym_c_uchar] = ACTIONS(957), - [anon_sym_c_short] = ACTIONS(957), - [anon_sym_c_ushort] = ACTIONS(957), - [anon_sym_c_int] = ACTIONS(957), - [anon_sym_c_uint] = ACTIONS(957), - [anon_sym_c_long] = ACTIONS(957), - [anon_sym_c_ulong] = ACTIONS(957), - [anon_sym_c_longlong] = ACTIONS(957), - [anon_sym_c_ulonglong] = ACTIONS(957), - [anon_sym_c_float] = ACTIONS(957), - [anon_sym_c_double] = ACTIONS(957), - [anon_sym_c_longdouble] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_defer] = ACTIONS(957), - [anon_sym_errdefer] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_expand] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_orelse] = ACTIONS(957), - [anon_sym_catch] = ACTIONS(957), - [anon_sym_or] = ACTIONS(957), - [anon_sym_and] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_xor] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_LT_LT_PIPE] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [sym_none] = ACTIONS(957), - [sym_undefined] = ACTIONS(957), - [sym_sink] = ACTIONS(957), - [sym_integer] = ACTIONS(957), - [sym_float] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym_multiline_string] = ACTIONS(955), - [sym_character] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(955), - }, - [STATE(711)] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_test] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_func] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_void] = ACTIONS(961), - [anon_sym_anyopaque] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_int] = ACTIONS(961), - [anon_sym_uint] = ACTIONS(961), - [anon_sym_float] = ACTIONS(961), - [anon_sym_range] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_c_char] = ACTIONS(961), - [anon_sym_c_schar] = ACTIONS(961), - [anon_sym_c_uchar] = ACTIONS(961), - [anon_sym_c_short] = ACTIONS(961), - [anon_sym_c_ushort] = ACTIONS(961), - [anon_sym_c_int] = ACTIONS(961), - [anon_sym_c_uint] = ACTIONS(961), - [anon_sym_c_long] = ACTIONS(961), - [anon_sym_c_ulong] = ACTIONS(961), - [anon_sym_c_longlong] = ACTIONS(961), - [anon_sym_c_ulonglong] = ACTIONS(961), - [anon_sym_c_float] = ACTIONS(961), - [anon_sym_c_double] = ACTIONS(961), - [anon_sym_c_longdouble] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_defer] = ACTIONS(961), - [anon_sym_errdefer] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_expand] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_orelse] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_LT_LT_PIPE] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [sym_none] = ACTIONS(961), - [sym_undefined] = ACTIONS(961), - [sym_sink] = ACTIONS(961), - [sym_integer] = ACTIONS(961), - [sym_float] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym_multiline_string] = ACTIONS(959), - [sym_character] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(959), - }, - [STATE(712)] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_identifier] = ACTIONS(965), - [anon_sym_import] = ACTIONS(965), - [anon_sym_test] = ACTIONS(965), - [anon_sym_hide] = ACTIONS(965), - [anon_sym_func] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_void] = ACTIONS(965), - [anon_sym_anyopaque] = ACTIONS(965), - [anon_sym_bool] = ACTIONS(965), - [anon_sym_int] = ACTIONS(965), - [anon_sym_uint] = ACTIONS(965), - [anon_sym_float] = ACTIONS(965), - [anon_sym_range] = ACTIONS(965), - [anon_sym_i8] = ACTIONS(965), - [anon_sym_i16] = ACTIONS(965), - [anon_sym_i32] = ACTIONS(965), - [anon_sym_i64] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(965), - [anon_sym_u16] = ACTIONS(965), - [anon_sym_u32] = ACTIONS(965), - [anon_sym_u64] = ACTIONS(965), - [anon_sym_isize] = ACTIONS(965), - [anon_sym_usize] = ACTIONS(965), - [anon_sym_f32] = ACTIONS(965), - [anon_sym_f64] = ACTIONS(965), - [anon_sym_c_char] = ACTIONS(965), - [anon_sym_c_schar] = ACTIONS(965), - [anon_sym_c_uchar] = ACTIONS(965), - [anon_sym_c_short] = ACTIONS(965), - [anon_sym_c_ushort] = ACTIONS(965), - [anon_sym_c_int] = ACTIONS(965), - [anon_sym_c_uint] = ACTIONS(965), - [anon_sym_c_long] = ACTIONS(965), - [anon_sym_c_ulong] = ACTIONS(965), - [anon_sym_c_longlong] = ACTIONS(965), - [anon_sym_c_ulonglong] = ACTIONS(965), - [anon_sym_c_float] = ACTIONS(965), - [anon_sym_c_double] = ACTIONS(965), - [anon_sym_c_longdouble] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_break] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_defer] = ACTIONS(965), - [anon_sym_errdefer] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_else] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_expand] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_match] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_orelse] = ACTIONS(965), - [anon_sym_catch] = ACTIONS(965), - [anon_sym_or] = ACTIONS(965), - [anon_sym_and] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_xor] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_LT_LT_PIPE] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_true] = ACTIONS(965), - [anon_sym_false] = ACTIONS(965), - [sym_none] = ACTIONS(965), - [sym_undefined] = ACTIONS(965), - [sym_sink] = ACTIONS(965), - [sym_integer] = ACTIONS(965), - [sym_float] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_multiline_string] = ACTIONS(963), - [sym_character] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(963), - }, - [STATE(713)] = { - [ts_builtin_sym_end] = ACTIONS(967), - [sym_identifier] = ACTIONS(969), - [anon_sym_import] = ACTIONS(969), - [anon_sym_test] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_func] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_void] = ACTIONS(969), - [anon_sym_anyopaque] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(969), - [anon_sym_int] = ACTIONS(969), - [anon_sym_uint] = ACTIONS(969), - [anon_sym_float] = ACTIONS(969), - [anon_sym_range] = ACTIONS(969), - [anon_sym_i8] = ACTIONS(969), - [anon_sym_i16] = ACTIONS(969), - [anon_sym_i32] = ACTIONS(969), - [anon_sym_i64] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(969), - [anon_sym_u16] = ACTIONS(969), - [anon_sym_u32] = ACTIONS(969), - [anon_sym_u64] = ACTIONS(969), - [anon_sym_isize] = ACTIONS(969), - [anon_sym_usize] = ACTIONS(969), - [anon_sym_f32] = ACTIONS(969), - [anon_sym_f64] = ACTIONS(969), - [anon_sym_c_char] = ACTIONS(969), - [anon_sym_c_schar] = ACTIONS(969), - [anon_sym_c_uchar] = ACTIONS(969), - [anon_sym_c_short] = ACTIONS(969), - [anon_sym_c_ushort] = ACTIONS(969), - [anon_sym_c_int] = ACTIONS(969), - [anon_sym_c_uint] = ACTIONS(969), - [anon_sym_c_long] = ACTIONS(969), - [anon_sym_c_ulong] = ACTIONS(969), - [anon_sym_c_longlong] = ACTIONS(969), - [anon_sym_c_ulonglong] = ACTIONS(969), - [anon_sym_c_float] = ACTIONS(969), - [anon_sym_c_double] = ACTIONS(969), - [anon_sym_c_longdouble] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_yield] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_defer] = ACTIONS(969), - [anon_sym_errdefer] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_expand] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_orelse] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_or] = ACTIONS(969), - [anon_sym_and] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_LT_LT_PIPE] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_try] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [sym_none] = ACTIONS(969), - [sym_undefined] = ACTIONS(969), - [sym_sink] = ACTIONS(969), - [sym_integer] = ACTIONS(969), - [sym_float] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym_multiline_string] = ACTIONS(967), - [sym_character] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(967), - }, - [STATE(714)] = { - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1007), - [anon_sym_import] = ACTIONS(1007), - [anon_sym_test] = ACTIONS(1007), - [anon_sym_hide] = ACTIONS(1007), - [anon_sym_func] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1007), - [anon_sym_anyopaque] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_int] = ACTIONS(1007), - [anon_sym_uint] = ACTIONS(1007), - [anon_sym_float] = ACTIONS(1007), - [anon_sym_range] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_c_char] = ACTIONS(1007), - [anon_sym_c_schar] = ACTIONS(1007), - [anon_sym_c_uchar] = ACTIONS(1007), - [anon_sym_c_short] = ACTIONS(1007), - [anon_sym_c_ushort] = ACTIONS(1007), - [anon_sym_c_int] = ACTIONS(1007), - [anon_sym_c_uint] = ACTIONS(1007), - [anon_sym_c_long] = ACTIONS(1007), - [anon_sym_c_ulong] = ACTIONS(1007), - [anon_sym_c_longlong] = ACTIONS(1007), - [anon_sym_c_ulonglong] = ACTIONS(1007), - [anon_sym_c_float] = ACTIONS(1007), - [anon_sym_c_double] = ACTIONS(1007), - [anon_sym_c_longdouble] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1007), - [anon_sym_COLON] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_defer] = ACTIONS(1007), - [anon_sym_errdefer] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_else] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [anon_sym_expand] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_orelse] = ACTIONS(1007), - [anon_sym_catch] = ACTIONS(1007), - [anon_sym_or] = ACTIONS(1007), - [anon_sym_and] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_LT_LT_PIPE] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [sym_none] = ACTIONS(1007), - [sym_undefined] = ACTIONS(1007), - [sym_sink] = ACTIONS(1007), - [sym_integer] = ACTIONS(1007), - [sym_float] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym_multiline_string] = ACTIONS(1005), - [sym_character] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1005), - }, - [STATE(715)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_test] = ACTIONS(1083), - [anon_sym_hide] = ACTIONS(1083), - [anon_sym_func] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_void] = ACTIONS(1083), - [anon_sym_anyopaque] = ACTIONS(1083), - [anon_sym_bool] = ACTIONS(1083), - [anon_sym_int] = ACTIONS(1083), - [anon_sym_uint] = ACTIONS(1083), - [anon_sym_float] = ACTIONS(1083), - [anon_sym_range] = ACTIONS(1083), - [anon_sym_i8] = ACTIONS(1083), - [anon_sym_i16] = ACTIONS(1083), - [anon_sym_i32] = ACTIONS(1083), - [anon_sym_i64] = ACTIONS(1083), - [anon_sym_u8] = ACTIONS(1083), - [anon_sym_u16] = ACTIONS(1083), - [anon_sym_u32] = ACTIONS(1083), - [anon_sym_u64] = ACTIONS(1083), - [anon_sym_isize] = ACTIONS(1083), - [anon_sym_usize] = ACTIONS(1083), - [anon_sym_f32] = ACTIONS(1083), - [anon_sym_f64] = ACTIONS(1083), - [anon_sym_c_char] = ACTIONS(1083), - [anon_sym_c_schar] = ACTIONS(1083), - [anon_sym_c_uchar] = ACTIONS(1083), - [anon_sym_c_short] = ACTIONS(1083), - [anon_sym_c_ushort] = ACTIONS(1083), - [anon_sym_c_int] = ACTIONS(1083), - [anon_sym_c_uint] = ACTIONS(1083), - [anon_sym_c_long] = ACTIONS(1083), - [anon_sym_c_ulong] = ACTIONS(1083), - [anon_sym_c_longlong] = ACTIONS(1083), - [anon_sym_c_ulonglong] = ACTIONS(1083), - [anon_sym_c_float] = ACTIONS(1083), - [anon_sym_c_double] = ACTIONS(1083), - [anon_sym_c_longdouble] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(1083), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_defer] = ACTIONS(1083), - [anon_sym_errdefer] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_expand] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_match] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), - [anon_sym_orelse] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_or] = ACTIONS(1083), - [anon_sym_and] = ACTIONS(1083), - [anon_sym_EQ_EQ] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_xor] = ACTIONS(1083), - [anon_sym_LT_LT] = ACTIONS(1083), - [anon_sym_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT_PIPE] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [sym_none] = ACTIONS(1083), - [sym_undefined] = ACTIONS(1083), - [sym_sink] = ACTIONS(1083), - [sym_integer] = ACTIONS(1083), - [sym_float] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [sym_multiline_string] = ACTIONS(1081), - [sym_character] = ACTIONS(1081), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1081), - }, - [STATE(716)] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(1087), - [anon_sym_test] = ACTIONS(1087), - [anon_sym_hide] = ACTIONS(1087), - [anon_sym_func] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_anyopaque] = ACTIONS(1087), - [anon_sym_bool] = ACTIONS(1087), - [anon_sym_int] = ACTIONS(1087), - [anon_sym_uint] = ACTIONS(1087), - [anon_sym_float] = ACTIONS(1087), - [anon_sym_range] = ACTIONS(1087), - [anon_sym_i8] = ACTIONS(1087), - [anon_sym_i16] = ACTIONS(1087), - [anon_sym_i32] = ACTIONS(1087), - [anon_sym_i64] = ACTIONS(1087), - [anon_sym_u8] = ACTIONS(1087), - [anon_sym_u16] = ACTIONS(1087), - [anon_sym_u32] = ACTIONS(1087), - [anon_sym_u64] = ACTIONS(1087), - [anon_sym_isize] = ACTIONS(1087), - [anon_sym_usize] = ACTIONS(1087), - [anon_sym_f32] = ACTIONS(1087), - [anon_sym_f64] = ACTIONS(1087), - [anon_sym_c_char] = ACTIONS(1087), - [anon_sym_c_schar] = ACTIONS(1087), - [anon_sym_c_uchar] = ACTIONS(1087), - [anon_sym_c_short] = ACTIONS(1087), - [anon_sym_c_ushort] = ACTIONS(1087), - [anon_sym_c_int] = ACTIONS(1087), - [anon_sym_c_uint] = ACTIONS(1087), - [anon_sym_c_long] = ACTIONS(1087), - [anon_sym_c_ulong] = ACTIONS(1087), - [anon_sym_c_longlong] = ACTIONS(1087), - [anon_sym_c_ulonglong] = ACTIONS(1087), - [anon_sym_c_float] = ACTIONS(1087), - [anon_sym_c_double] = ACTIONS(1087), - [anon_sym_c_longdouble] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1087), - [anon_sym_COLON] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_defer] = ACTIONS(1087), - [anon_sym_errdefer] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_expand] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_match] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), - [anon_sym_orelse] = ACTIONS(1087), - [anon_sym_catch] = ACTIONS(1087), - [anon_sym_or] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1087), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_xor] = ACTIONS(1087), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT_PIPE] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1087), - [anon_sym_false] = ACTIONS(1087), - [sym_none] = ACTIONS(1087), - [sym_undefined] = ACTIONS(1087), - [sym_sink] = ACTIONS(1087), - [sym_integer] = ACTIONS(1087), - [sym_float] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [sym_multiline_string] = ACTIONS(1085), - [sym_character] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1085), - }, - [STATE(717)] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_import] = ACTIONS(1091), - [anon_sym_test] = ACTIONS(1091), - [anon_sym_hide] = ACTIONS(1091), - [anon_sym_func] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1091), - [anon_sym_anyopaque] = ACTIONS(1091), - [anon_sym_bool] = ACTIONS(1091), - [anon_sym_int] = ACTIONS(1091), - [anon_sym_uint] = ACTIONS(1091), - [anon_sym_float] = ACTIONS(1091), - [anon_sym_range] = ACTIONS(1091), - [anon_sym_i8] = ACTIONS(1091), - [anon_sym_i16] = ACTIONS(1091), - [anon_sym_i32] = ACTIONS(1091), - [anon_sym_i64] = ACTIONS(1091), - [anon_sym_u8] = ACTIONS(1091), - [anon_sym_u16] = ACTIONS(1091), - [anon_sym_u32] = ACTIONS(1091), - [anon_sym_u64] = ACTIONS(1091), - [anon_sym_isize] = ACTIONS(1091), - [anon_sym_usize] = ACTIONS(1091), - [anon_sym_f32] = ACTIONS(1091), - [anon_sym_f64] = ACTIONS(1091), - [anon_sym_c_char] = ACTIONS(1091), - [anon_sym_c_schar] = ACTIONS(1091), - [anon_sym_c_uchar] = ACTIONS(1091), - [anon_sym_c_short] = ACTIONS(1091), - [anon_sym_c_ushort] = ACTIONS(1091), - [anon_sym_c_int] = ACTIONS(1091), - [anon_sym_c_uint] = ACTIONS(1091), - [anon_sym_c_long] = ACTIONS(1091), - [anon_sym_c_ulong] = ACTIONS(1091), - [anon_sym_c_longlong] = ACTIONS(1091), - [anon_sym_c_ulonglong] = ACTIONS(1091), - [anon_sym_c_float] = ACTIONS(1091), - [anon_sym_c_double] = ACTIONS(1091), - [anon_sym_c_longdouble] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_COLON] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_defer] = ACTIONS(1091), - [anon_sym_errdefer] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_else] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_expand] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_match] = ACTIONS(1091), - [anon_sym_DOT_DOT] = ACTIONS(1091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), - [anon_sym_orelse] = ACTIONS(1091), - [anon_sym_catch] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(1091), - [anon_sym_and] = ACTIONS(1091), - [anon_sym_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_LT_LT_PIPE] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1091), - [anon_sym_DOT] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1091), - [anon_sym_false] = ACTIONS(1091), - [sym_none] = ACTIONS(1091), - [sym_undefined] = ACTIONS(1091), - [sym_sink] = ACTIONS(1091), - [sym_integer] = ACTIONS(1091), - [sym_float] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [sym_multiline_string] = ACTIONS(1089), - [sym_character] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1089), - }, - [STATE(718)] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_test] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_func] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_struct] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_anyopaque] = ACTIONS(1015), - [anon_sym_bool] = ACTIONS(1015), - [anon_sym_int] = ACTIONS(1015), - [anon_sym_uint] = ACTIONS(1015), - [anon_sym_float] = ACTIONS(1015), - [anon_sym_range] = ACTIONS(1015), - [anon_sym_i8] = ACTIONS(1015), - [anon_sym_i16] = ACTIONS(1015), - [anon_sym_i32] = ACTIONS(1015), - [anon_sym_i64] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1015), - [anon_sym_u16] = ACTIONS(1015), - [anon_sym_u32] = ACTIONS(1015), - [anon_sym_u64] = ACTIONS(1015), - [anon_sym_isize] = ACTIONS(1015), - [anon_sym_usize] = ACTIONS(1015), - [anon_sym_f32] = ACTIONS(1015), - [anon_sym_f64] = ACTIONS(1015), - [anon_sym_c_char] = ACTIONS(1015), - [anon_sym_c_schar] = ACTIONS(1015), - [anon_sym_c_uchar] = ACTIONS(1015), - [anon_sym_c_short] = ACTIONS(1015), - [anon_sym_c_ushort] = ACTIONS(1015), - [anon_sym_c_int] = ACTIONS(1015), - [anon_sym_c_uint] = ACTIONS(1015), - [anon_sym_c_long] = ACTIONS(1015), - [anon_sym_c_ulong] = ACTIONS(1015), - [anon_sym_c_longlong] = ACTIONS(1015), - [anon_sym_c_ulonglong] = ACTIONS(1015), - [anon_sym_c_float] = ACTIONS(1015), - [anon_sym_c_double] = ACTIONS(1015), - [anon_sym_c_longdouble] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_defer] = ACTIONS(1015), - [anon_sym_errdefer] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_expand] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_orelse] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_LT_LT_PIPE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [sym_none] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [sym_sink] = ACTIONS(1015), - [sym_integer] = ACTIONS(1015), - [sym_float] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_multiline_string] = ACTIONS(1013), - [sym_character] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1013), - }, - [STATE(719)] = { - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(286), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_struct] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_void] = ACTIONS(286), - [anon_sym_anyopaque] = ACTIONS(286), - [anon_sym_bool] = ACTIONS(286), - [anon_sym_int] = ACTIONS(286), - [anon_sym_uint] = ACTIONS(286), - [anon_sym_float] = ACTIONS(286), - [anon_sym_range] = ACTIONS(286), - [anon_sym_i8] = ACTIONS(286), - [anon_sym_i16] = ACTIONS(286), - [anon_sym_i32] = ACTIONS(286), - [anon_sym_i64] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(286), - [anon_sym_u16] = ACTIONS(286), - [anon_sym_u32] = ACTIONS(286), - [anon_sym_u64] = ACTIONS(286), - [anon_sym_isize] = ACTIONS(286), - [anon_sym_usize] = ACTIONS(286), - [anon_sym_f32] = ACTIONS(286), - [anon_sym_f64] = ACTIONS(286), - [anon_sym_c_char] = ACTIONS(286), - [anon_sym_c_schar] = ACTIONS(286), - [anon_sym_c_uchar] = ACTIONS(286), - [anon_sym_c_short] = ACTIONS(286), - [anon_sym_c_ushort] = ACTIONS(286), - [anon_sym_c_int] = ACTIONS(286), - [anon_sym_c_uint] = ACTIONS(286), - [anon_sym_c_long] = ACTIONS(286), - [anon_sym_c_ulong] = ACTIONS(286), - [anon_sym_c_longlong] = ACTIONS(286), - [anon_sym_c_ulonglong] = ACTIONS(286), - [anon_sym_c_float] = ACTIONS(286), - [anon_sym_c_double] = ACTIONS(286), - [anon_sym_c_longdouble] = ACTIONS(286), - [anon_sym_return] = ACTIONS(286), - [anon_sym_yield] = ACTIONS(286), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_break] = ACTIONS(286), - [anon_sym_continue] = ACTIONS(286), - [anon_sym_defer] = ACTIONS(286), - [anon_sym_errdefer] = ACTIONS(286), - [anon_sym_if] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_while] = ACTIONS(286), - [anon_sym_expand] = ACTIONS(286), - [anon_sym_for] = ACTIONS(286), - [anon_sym_match] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_LT_LT_PIPE] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_SLASH] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(281), - [anon_sym_try] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [sym_none] = ACTIONS(286), - [sym_undefined] = ACTIONS(286), - [sym_sink] = ACTIONS(286), - [sym_integer] = ACTIONS(286), - [sym_float] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [sym_multiline_string] = ACTIONS(281), - [sym_character] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(720)] = { - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(657), - [anon_sym_import] = ACTIONS(657), - [anon_sym_test] = ACTIONS(657), - [anon_sym_hide] = ACTIONS(657), - [anon_sym_func] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_struct] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(655), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_void] = ACTIONS(657), - [anon_sym_anyopaque] = ACTIONS(657), - [anon_sym_bool] = ACTIONS(657), - [anon_sym_int] = ACTIONS(657), - [anon_sym_uint] = ACTIONS(657), - [anon_sym_float] = ACTIONS(657), - [anon_sym_range] = ACTIONS(657), - [anon_sym_i8] = ACTIONS(657), - [anon_sym_i16] = ACTIONS(657), - [anon_sym_i32] = ACTIONS(657), - [anon_sym_i64] = ACTIONS(657), - [anon_sym_u8] = ACTIONS(657), - [anon_sym_u16] = ACTIONS(657), - [anon_sym_u32] = ACTIONS(657), - [anon_sym_u64] = ACTIONS(657), - [anon_sym_isize] = ACTIONS(657), - [anon_sym_usize] = ACTIONS(657), - [anon_sym_f32] = ACTIONS(657), - [anon_sym_f64] = ACTIONS(657), - [anon_sym_c_char] = ACTIONS(657), - [anon_sym_c_schar] = ACTIONS(657), - [anon_sym_c_uchar] = ACTIONS(657), - [anon_sym_c_short] = ACTIONS(657), - [anon_sym_c_ushort] = ACTIONS(657), - [anon_sym_c_int] = ACTIONS(657), - [anon_sym_c_uint] = ACTIONS(657), - [anon_sym_c_long] = ACTIONS(657), - [anon_sym_c_ulong] = ACTIONS(657), - [anon_sym_c_longlong] = ACTIONS(657), - [anon_sym_c_ulonglong] = ACTIONS(657), - [anon_sym_c_float] = ACTIONS(657), - [anon_sym_c_double] = ACTIONS(657), - [anon_sym_c_longdouble] = ACTIONS(657), - [anon_sym_return] = ACTIONS(657), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_break] = ACTIONS(657), - [anon_sym_continue] = ACTIONS(657), - [anon_sym_defer] = ACTIONS(657), - [anon_sym_errdefer] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_else] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_expand] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_match] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(655), - [anon_sym_orelse] = ACTIONS(657), - [anon_sym_catch] = ACTIONS(657), - [anon_sym_or] = ACTIONS(657), - [anon_sym_and] = ACTIONS(657), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_xor] = ACTIONS(657), - [anon_sym_LT_LT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(655), - [anon_sym_LT_LT_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_try] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(657), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_true] = ACTIONS(657), - [anon_sym_false] = ACTIONS(657), - [sym_none] = ACTIONS(657), - [sym_undefined] = ACTIONS(657), - [sym_sink] = ACTIONS(657), - [sym_integer] = ACTIONS(657), - [sym_float] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_multiline_string] = ACTIONS(655), - [sym_character] = ACTIONS(655), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - }, - [STATE(721)] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_identifier] = ACTIONS(977), - [anon_sym_import] = ACTIONS(977), - [anon_sym_test] = ACTIONS(977), - [anon_sym_hide] = ACTIONS(977), - [anon_sym_func] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_void] = ACTIONS(977), - [anon_sym_anyopaque] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_int] = ACTIONS(977), - [anon_sym_uint] = ACTIONS(977), - [anon_sym_float] = ACTIONS(977), - [anon_sym_range] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_c_char] = ACTIONS(977), - [anon_sym_c_schar] = ACTIONS(977), - [anon_sym_c_uchar] = ACTIONS(977), - [anon_sym_c_short] = ACTIONS(977), - [anon_sym_c_ushort] = ACTIONS(977), - [anon_sym_c_int] = ACTIONS(977), - [anon_sym_c_uint] = ACTIONS(977), - [anon_sym_c_long] = ACTIONS(977), - [anon_sym_c_ulong] = ACTIONS(977), - [anon_sym_c_longlong] = ACTIONS(977), - [anon_sym_c_ulonglong] = ACTIONS(977), - [anon_sym_c_float] = ACTIONS(977), - [anon_sym_c_double] = ACTIONS(977), - [anon_sym_c_longdouble] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_break] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_defer] = ACTIONS(977), - [anon_sym_errdefer] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_else] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [anon_sym_expand] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_orelse] = ACTIONS(977), - [anon_sym_catch] = ACTIONS(977), - [anon_sym_or] = ACTIONS(977), - [anon_sym_and] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_LT_LT_PIPE] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [sym_none] = ACTIONS(977), - [sym_undefined] = ACTIONS(977), - [sym_sink] = ACTIONS(977), - [sym_integer] = ACTIONS(977), - [sym_float] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym_multiline_string] = ACTIONS(975), - [sym_character] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(975), - }, - [STATE(722)] = { - [ts_builtin_sym_end] = ACTIONS(979), - [sym_identifier] = ACTIONS(981), - [anon_sym_import] = ACTIONS(981), - [anon_sym_test] = ACTIONS(981), - [anon_sym_hide] = ACTIONS(981), - [anon_sym_func] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_void] = ACTIONS(981), - [anon_sym_anyopaque] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_int] = ACTIONS(981), - [anon_sym_uint] = ACTIONS(981), - [anon_sym_float] = ACTIONS(981), - [anon_sym_range] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_c_char] = ACTIONS(981), - [anon_sym_c_schar] = ACTIONS(981), - [anon_sym_c_uchar] = ACTIONS(981), - [anon_sym_c_short] = ACTIONS(981), - [anon_sym_c_ushort] = ACTIONS(981), - [anon_sym_c_int] = ACTIONS(981), - [anon_sym_c_uint] = ACTIONS(981), - [anon_sym_c_long] = ACTIONS(981), - [anon_sym_c_ulong] = ACTIONS(981), - [anon_sym_c_longlong] = ACTIONS(981), - [anon_sym_c_ulonglong] = ACTIONS(981), - [anon_sym_c_float] = ACTIONS(981), - [anon_sym_c_double] = ACTIONS(981), - [anon_sym_c_longdouble] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(981), - [anon_sym_COLON] = ACTIONS(979), - [anon_sym_break] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_defer] = ACTIONS(981), - [anon_sym_errdefer] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_else] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [anon_sym_expand] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_orelse] = ACTIONS(981), - [anon_sym_catch] = ACTIONS(981), - [anon_sym_or] = ACTIONS(981), - [anon_sym_and] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_LT_LT_PIPE] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_try] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [sym_none] = ACTIONS(981), - [sym_undefined] = ACTIONS(981), - [sym_sink] = ACTIONS(981), - [sym_integer] = ACTIONS(981), - [sym_float] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym_multiline_string] = ACTIONS(979), - [sym_character] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(979), - }, - [STATE(723)] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_import] = ACTIONS(985), - [anon_sym_test] = ACTIONS(985), - [anon_sym_hide] = ACTIONS(985), - [anon_sym_func] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_void] = ACTIONS(985), - [anon_sym_anyopaque] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_int] = ACTIONS(985), - [anon_sym_uint] = ACTIONS(985), - [anon_sym_float] = ACTIONS(985), - [anon_sym_range] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_c_char] = ACTIONS(985), - [anon_sym_c_schar] = ACTIONS(985), - [anon_sym_c_uchar] = ACTIONS(985), - [anon_sym_c_short] = ACTIONS(985), - [anon_sym_c_ushort] = ACTIONS(985), - [anon_sym_c_int] = ACTIONS(985), - [anon_sym_c_uint] = ACTIONS(985), - [anon_sym_c_long] = ACTIONS(985), - [anon_sym_c_ulong] = ACTIONS(985), - [anon_sym_c_longlong] = ACTIONS(985), - [anon_sym_c_ulonglong] = ACTIONS(985), - [anon_sym_c_float] = ACTIONS(985), - [anon_sym_c_double] = ACTIONS(985), - [anon_sym_c_longdouble] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(983), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_defer] = ACTIONS(985), - [anon_sym_errdefer] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_else] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_expand] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_orelse] = ACTIONS(985), - [anon_sym_catch] = ACTIONS(985), - [anon_sym_or] = ACTIONS(985), - [anon_sym_and] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_xor] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(983), - [anon_sym_LT_LT_PIPE] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_try] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [sym_none] = ACTIONS(985), - [sym_undefined] = ACTIONS(985), - [sym_sink] = ACTIONS(985), - [sym_integer] = ACTIONS(985), - [sym_float] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(983), - [sym_multiline_string] = ACTIONS(983), - [sym_character] = ACTIONS(983), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(983), - }, - [STATE(724)] = { - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym_import] = ACTIONS(661), - [anon_sym_test] = ACTIONS(661), - [anon_sym_hide] = ACTIONS(661), - [anon_sym_func] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_RBRACE] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_QMARK] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_void] = ACTIONS(661), - [anon_sym_anyopaque] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_int] = ACTIONS(661), - [anon_sym_uint] = ACTIONS(661), - [anon_sym_float] = ACTIONS(661), - [anon_sym_range] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_c_char] = ACTIONS(661), - [anon_sym_c_schar] = ACTIONS(661), - [anon_sym_c_uchar] = ACTIONS(661), - [anon_sym_c_short] = ACTIONS(661), - [anon_sym_c_ushort] = ACTIONS(661), - [anon_sym_c_int] = ACTIONS(661), - [anon_sym_c_uint] = ACTIONS(661), - [anon_sym_c_long] = ACTIONS(661), - [anon_sym_c_ulong] = ACTIONS(661), - [anon_sym_c_longlong] = ACTIONS(661), - [anon_sym_c_ulonglong] = ACTIONS(661), - [anon_sym_c_float] = ACTIONS(661), - [anon_sym_c_double] = ACTIONS(661), - [anon_sym_c_longdouble] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_COLON] = ACTIONS(659), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_defer] = ACTIONS(661), - [anon_sym_errdefer] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_expand] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(659), - [anon_sym_orelse] = ACTIONS(661), - [anon_sym_catch] = ACTIONS(661), - [anon_sym_or] = ACTIONS(661), - [anon_sym_and] = ACTIONS(661), - [anon_sym_EQ_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_xor] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(659), - [anon_sym_LT_LT_PIPE] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_SLASH] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_try] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_true] = ACTIONS(661), - [anon_sym_false] = ACTIONS(661), - [sym_none] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [sym_sink] = ACTIONS(661), - [sym_integer] = ACTIONS(661), - [sym_float] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(659), - [sym_multiline_string] = ACTIONS(659), - [sym_character] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(659), - }, - [STATE(725)] = { - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_identifier] = ACTIONS(1031), - [anon_sym_import] = ACTIONS(1031), - [anon_sym_test] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_func] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_struct] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_void] = ACTIONS(1031), - [anon_sym_anyopaque] = ACTIONS(1031), - [anon_sym_bool] = ACTIONS(1031), - [anon_sym_int] = ACTIONS(1031), - [anon_sym_uint] = ACTIONS(1031), - [anon_sym_float] = ACTIONS(1031), - [anon_sym_range] = ACTIONS(1031), - [anon_sym_i8] = ACTIONS(1031), - [anon_sym_i16] = ACTIONS(1031), - [anon_sym_i32] = ACTIONS(1031), - [anon_sym_i64] = ACTIONS(1031), - [anon_sym_u8] = ACTIONS(1031), - [anon_sym_u16] = ACTIONS(1031), - [anon_sym_u32] = ACTIONS(1031), - [anon_sym_u64] = ACTIONS(1031), - [anon_sym_isize] = ACTIONS(1031), - [anon_sym_usize] = ACTIONS(1031), - [anon_sym_f32] = ACTIONS(1031), - [anon_sym_f64] = ACTIONS(1031), - [anon_sym_c_char] = ACTIONS(1031), - [anon_sym_c_schar] = ACTIONS(1031), - [anon_sym_c_uchar] = ACTIONS(1031), - [anon_sym_c_short] = ACTIONS(1031), - [anon_sym_c_ushort] = ACTIONS(1031), - [anon_sym_c_int] = ACTIONS(1031), - [anon_sym_c_uint] = ACTIONS(1031), - [anon_sym_c_long] = ACTIONS(1031), - [anon_sym_c_ulong] = ACTIONS(1031), - [anon_sym_c_longlong] = ACTIONS(1031), - [anon_sym_c_ulonglong] = ACTIONS(1031), - [anon_sym_c_float] = ACTIONS(1031), - [anon_sym_c_double] = ACTIONS(1031), - [anon_sym_c_longdouble] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_defer] = ACTIONS(1031), - [anon_sym_errdefer] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_expand] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_orelse] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_or] = ACTIONS(1031), - [anon_sym_and] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_xor] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_LT_LT_PIPE] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [sym_none] = ACTIONS(1031), - [sym_undefined] = ACTIONS(1031), - [sym_sink] = ACTIONS(1031), - [sym_integer] = ACTIONS(1031), - [sym_float] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym_multiline_string] = ACTIONS(1029), - [sym_character] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1029), - }, - [STATE(726)] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_test] = ACTIONS(1095), - [anon_sym_hide] = ACTIONS(1095), - [anon_sym_func] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_anyopaque] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_int] = ACTIONS(1095), - [anon_sym_uint] = ACTIONS(1095), - [anon_sym_float] = ACTIONS(1095), - [anon_sym_range] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_c_char] = ACTIONS(1095), - [anon_sym_c_schar] = ACTIONS(1095), - [anon_sym_c_uchar] = ACTIONS(1095), - [anon_sym_c_short] = ACTIONS(1095), - [anon_sym_c_ushort] = ACTIONS(1095), - [anon_sym_c_int] = ACTIONS(1095), - [anon_sym_c_uint] = ACTIONS(1095), - [anon_sym_c_long] = ACTIONS(1095), - [anon_sym_c_ulong] = ACTIONS(1095), - [anon_sym_c_longlong] = ACTIONS(1095), - [anon_sym_c_ulonglong] = ACTIONS(1095), - [anon_sym_c_float] = ACTIONS(1095), - [anon_sym_c_double] = ACTIONS(1095), - [anon_sym_c_longdouble] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_defer] = ACTIONS(1095), - [anon_sym_errdefer] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_expand] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), - [anon_sym_orelse] = ACTIONS(1095), - [anon_sym_catch] = ACTIONS(1095), - [anon_sym_or] = ACTIONS(1095), - [anon_sym_and] = ACTIONS(1095), - [anon_sym_EQ_EQ] = ACTIONS(1093), - [anon_sym_BANG_EQ] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_LT_EQ] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_EQ] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_xor] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_LT_LT_PIPE] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [sym_none] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [sym_sink] = ACTIONS(1095), - [sym_integer] = ACTIONS(1095), - [sym_float] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [sym_multiline_string] = ACTIONS(1093), - [sym_character] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1093), - }, - [STATE(727)] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_test] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_func] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_void] = ACTIONS(757), - [anon_sym_anyopaque] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_int] = ACTIONS(757), - [anon_sym_uint] = ACTIONS(757), - [anon_sym_float] = ACTIONS(757), - [anon_sym_range] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_c_char] = ACTIONS(757), - [anon_sym_c_schar] = ACTIONS(757), - [anon_sym_c_uchar] = ACTIONS(757), - [anon_sym_c_short] = ACTIONS(757), - [anon_sym_c_ushort] = ACTIONS(757), - [anon_sym_c_int] = ACTIONS(757), - [anon_sym_c_uint] = ACTIONS(757), - [anon_sym_c_long] = ACTIONS(757), - [anon_sym_c_ulong] = ACTIONS(757), - [anon_sym_c_longlong] = ACTIONS(757), - [anon_sym_c_ulonglong] = ACTIONS(757), - [anon_sym_c_float] = ACTIONS(757), - [anon_sym_c_double] = ACTIONS(757), - [anon_sym_c_longdouble] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(755), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_defer] = ACTIONS(757), - [anon_sym_errdefer] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_expand] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_orelse] = ACTIONS(757), - [anon_sym_catch] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(755), - [anon_sym_LT_LT_PIPE] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_try] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(755), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_undefined] = ACTIONS(757), - [sym_sink] = ACTIONS(757), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_multiline_string] = ACTIONS(755), - [sym_character] = ACTIONS(755), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), - }, - [STATE(728)] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(761), - [anon_sym_import] = ACTIONS(761), - [anon_sym_test] = ACTIONS(761), - [anon_sym_hide] = ACTIONS(761), - [anon_sym_func] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_struct] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_void] = ACTIONS(761), - [anon_sym_anyopaque] = ACTIONS(761), - [anon_sym_bool] = ACTIONS(761), - [anon_sym_int] = ACTIONS(761), - [anon_sym_uint] = ACTIONS(761), - [anon_sym_float] = ACTIONS(761), - [anon_sym_range] = ACTIONS(761), - [anon_sym_i8] = ACTIONS(761), - [anon_sym_i16] = ACTIONS(761), - [anon_sym_i32] = ACTIONS(761), - [anon_sym_i64] = ACTIONS(761), - [anon_sym_u8] = ACTIONS(761), - [anon_sym_u16] = ACTIONS(761), - [anon_sym_u32] = ACTIONS(761), - [anon_sym_u64] = ACTIONS(761), - [anon_sym_isize] = ACTIONS(761), - [anon_sym_usize] = ACTIONS(761), - [anon_sym_f32] = ACTIONS(761), - [anon_sym_f64] = ACTIONS(761), - [anon_sym_c_char] = ACTIONS(761), - [anon_sym_c_schar] = ACTIONS(761), - [anon_sym_c_uchar] = ACTIONS(761), - [anon_sym_c_short] = ACTIONS(761), - [anon_sym_c_ushort] = ACTIONS(761), - [anon_sym_c_int] = ACTIONS(761), - [anon_sym_c_uint] = ACTIONS(761), - [anon_sym_c_long] = ACTIONS(761), - [anon_sym_c_ulong] = ACTIONS(761), - [anon_sym_c_longlong] = ACTIONS(761), - [anon_sym_c_ulonglong] = ACTIONS(761), - [anon_sym_c_float] = ACTIONS(761), - [anon_sym_c_double] = ACTIONS(761), - [anon_sym_c_longdouble] = ACTIONS(761), - [anon_sym_return] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_COLON] = ACTIONS(759), - [anon_sym_break] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(761), - [anon_sym_defer] = ACTIONS(761), - [anon_sym_errdefer] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_expand] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_match] = ACTIONS(761), - [anon_sym_DOT_DOT] = ACTIONS(761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_orelse] = ACTIONS(761), - [anon_sym_catch] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_LT_LT] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(759), - [anon_sym_LT_LT_PIPE] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_try] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_true] = ACTIONS(761), - [anon_sym_false] = ACTIONS(761), - [sym_none] = ACTIONS(761), - [sym_undefined] = ACTIONS(761), - [sym_sink] = ACTIONS(761), - [sym_integer] = ACTIONS(761), - [sym_float] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_multiline_string] = ACTIONS(759), - [sym_character] = ACTIONS(759), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - }, - [STATE(729)] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(611), - [anon_sym_import] = ACTIONS(611), - [anon_sym_test] = ACTIONS(611), - [anon_sym_hide] = ACTIONS(611), - [anon_sym_func] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_void] = ACTIONS(611), - [anon_sym_anyopaque] = ACTIONS(611), - [anon_sym_bool] = ACTIONS(611), - [anon_sym_int] = ACTIONS(611), - [anon_sym_uint] = ACTIONS(611), - [anon_sym_float] = ACTIONS(611), - [anon_sym_range] = ACTIONS(611), - [anon_sym_i8] = ACTIONS(611), - [anon_sym_i16] = ACTIONS(611), - [anon_sym_i32] = ACTIONS(611), - [anon_sym_i64] = ACTIONS(611), - [anon_sym_u8] = ACTIONS(611), - [anon_sym_u16] = ACTIONS(611), - [anon_sym_u32] = ACTIONS(611), - [anon_sym_u64] = ACTIONS(611), - [anon_sym_isize] = ACTIONS(611), - [anon_sym_usize] = ACTIONS(611), - [anon_sym_f32] = ACTIONS(611), - [anon_sym_f64] = ACTIONS(611), - [anon_sym_c_char] = ACTIONS(611), - [anon_sym_c_schar] = ACTIONS(611), - [anon_sym_c_uchar] = ACTIONS(611), - [anon_sym_c_short] = ACTIONS(611), - [anon_sym_c_ushort] = ACTIONS(611), - [anon_sym_c_int] = ACTIONS(611), - [anon_sym_c_uint] = ACTIONS(611), - [anon_sym_c_long] = ACTIONS(611), - [anon_sym_c_ulong] = ACTIONS(611), - [anon_sym_c_longlong] = ACTIONS(611), - [anon_sym_c_ulonglong] = ACTIONS(611), - [anon_sym_c_float] = ACTIONS(611), - [anon_sym_c_double] = ACTIONS(611), - [anon_sym_c_longdouble] = ACTIONS(611), - [anon_sym_return] = ACTIONS(611), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_COLON] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_defer] = ACTIONS(611), - [anon_sym_errdefer] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_else] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_expand] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_match] = ACTIONS(611), - [anon_sym_DOT_DOT] = ACTIONS(611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_orelse] = ACTIONS(611), - [anon_sym_catch] = ACTIONS(611), - [anon_sym_or] = ACTIONS(611), - [anon_sym_and] = ACTIONS(611), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_xor] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_LT_LT_PIPE] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_try] = ACTIONS(611), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_true] = ACTIONS(611), - [anon_sym_false] = ACTIONS(611), - [sym_none] = ACTIONS(611), - [sym_undefined] = ACTIONS(611), - [sym_sink] = ACTIONS(611), - [sym_integer] = ACTIONS(611), - [sym_float] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(609), - [sym_multiline_string] = ACTIONS(609), - [sym_character] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(609), - }, - [STATE(730)] = { - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [anon_sym_import] = ACTIONS(1099), - [anon_sym_test] = ACTIONS(1099), - [anon_sym_hide] = ACTIONS(1099), - [anon_sym_func] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_void] = ACTIONS(1099), - [anon_sym_anyopaque] = ACTIONS(1099), - [anon_sym_bool] = ACTIONS(1099), - [anon_sym_int] = ACTIONS(1099), - [anon_sym_uint] = ACTIONS(1099), - [anon_sym_float] = ACTIONS(1099), - [anon_sym_range] = ACTIONS(1099), - [anon_sym_i8] = ACTIONS(1099), - [anon_sym_i16] = ACTIONS(1099), - [anon_sym_i32] = ACTIONS(1099), - [anon_sym_i64] = ACTIONS(1099), - [anon_sym_u8] = ACTIONS(1099), - [anon_sym_u16] = ACTIONS(1099), - [anon_sym_u32] = ACTIONS(1099), - [anon_sym_u64] = ACTIONS(1099), - [anon_sym_isize] = ACTIONS(1099), - [anon_sym_usize] = ACTIONS(1099), - [anon_sym_f32] = ACTIONS(1099), - [anon_sym_f64] = ACTIONS(1099), - [anon_sym_c_char] = ACTIONS(1099), - [anon_sym_c_schar] = ACTIONS(1099), - [anon_sym_c_uchar] = ACTIONS(1099), - [anon_sym_c_short] = ACTIONS(1099), - [anon_sym_c_ushort] = ACTIONS(1099), - [anon_sym_c_int] = ACTIONS(1099), - [anon_sym_c_uint] = ACTIONS(1099), - [anon_sym_c_long] = ACTIONS(1099), - [anon_sym_c_ulong] = ACTIONS(1099), - [anon_sym_c_longlong] = ACTIONS(1099), - [anon_sym_c_ulonglong] = ACTIONS(1099), - [anon_sym_c_float] = ACTIONS(1099), - [anon_sym_c_double] = ACTIONS(1099), - [anon_sym_c_longdouble] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_yield] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_defer] = ACTIONS(1099), - [anon_sym_errdefer] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_else] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_expand] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_DOT_DOT] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), - [anon_sym_orelse] = ACTIONS(1099), - [anon_sym_catch] = ACTIONS(1099), - [anon_sym_or] = ACTIONS(1099), - [anon_sym_and] = ACTIONS(1099), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_xor] = ACTIONS(1099), - [anon_sym_LT_LT] = ACTIONS(1099), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_LT_LT_PIPE] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1099), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [sym_none] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1099), - [sym_sink] = ACTIONS(1099), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1097), - [sym_multiline_string] = ACTIONS(1097), - [sym_character] = ACTIONS(1097), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1097), - }, - [STATE(731)] = { - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(385), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(390), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_LT_LT_PIPE] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(732)] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_test] = ACTIONS(1121), - [anon_sym_hide] = ACTIONS(1121), - [anon_sym_func] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_struct] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_void] = ACTIONS(1121), - [anon_sym_anyopaque] = ACTIONS(1121), - [anon_sym_bool] = ACTIONS(1121), - [anon_sym_int] = ACTIONS(1121), - [anon_sym_uint] = ACTIONS(1121), - [anon_sym_float] = ACTIONS(1121), - [anon_sym_range] = ACTIONS(1121), - [anon_sym_i8] = ACTIONS(1121), - [anon_sym_i16] = ACTIONS(1121), - [anon_sym_i32] = ACTIONS(1121), - [anon_sym_i64] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1121), - [anon_sym_u16] = ACTIONS(1121), - [anon_sym_u32] = ACTIONS(1121), - [anon_sym_u64] = ACTIONS(1121), - [anon_sym_isize] = ACTIONS(1121), - [anon_sym_usize] = ACTIONS(1121), - [anon_sym_f32] = ACTIONS(1121), - [anon_sym_f64] = ACTIONS(1121), - [anon_sym_c_char] = ACTIONS(1121), - [anon_sym_c_schar] = ACTIONS(1121), - [anon_sym_c_uchar] = ACTIONS(1121), - [anon_sym_c_short] = ACTIONS(1121), - [anon_sym_c_ushort] = ACTIONS(1121), - [anon_sym_c_int] = ACTIONS(1121), - [anon_sym_c_uint] = ACTIONS(1121), - [anon_sym_c_long] = ACTIONS(1121), - [anon_sym_c_ulong] = ACTIONS(1121), - [anon_sym_c_longlong] = ACTIONS(1121), - [anon_sym_c_ulonglong] = ACTIONS(1121), - [anon_sym_c_float] = ACTIONS(1121), - [anon_sym_c_double] = ACTIONS(1121), - [anon_sym_c_longdouble] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_defer] = ACTIONS(1121), - [anon_sym_errdefer] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_expand] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), - [anon_sym_orelse] = ACTIONS(1121), - [anon_sym_catch] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_xor] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1121), - [anon_sym_GT_GT] = ACTIONS(1119), - [anon_sym_LT_LT_PIPE] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1121), - [anon_sym_false] = ACTIONS(1121), - [sym_none] = ACTIONS(1121), - [sym_undefined] = ACTIONS(1121), - [sym_sink] = ACTIONS(1121), - [sym_integer] = ACTIONS(1121), - [sym_float] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_multiline_string] = ACTIONS(1119), - [sym_character] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1119), - }, - [STATE(733)] = { - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1035), - [anon_sym_import] = ACTIONS(1035), - [anon_sym_test] = ACTIONS(1035), - [anon_sym_hide] = ACTIONS(1035), - [anon_sym_func] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_anyopaque] = ACTIONS(1035), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_uint] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_range] = ACTIONS(1035), - [anon_sym_i8] = ACTIONS(1035), - [anon_sym_i16] = ACTIONS(1035), - [anon_sym_i32] = ACTIONS(1035), - [anon_sym_i64] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1035), - [anon_sym_u16] = ACTIONS(1035), - [anon_sym_u32] = ACTIONS(1035), - [anon_sym_u64] = ACTIONS(1035), - [anon_sym_isize] = ACTIONS(1035), - [anon_sym_usize] = ACTIONS(1035), - [anon_sym_f32] = ACTIONS(1035), - [anon_sym_f64] = ACTIONS(1035), - [anon_sym_c_char] = ACTIONS(1035), - [anon_sym_c_schar] = ACTIONS(1035), - [anon_sym_c_uchar] = ACTIONS(1035), - [anon_sym_c_short] = ACTIONS(1035), - [anon_sym_c_ushort] = ACTIONS(1035), - [anon_sym_c_int] = ACTIONS(1035), - [anon_sym_c_uint] = ACTIONS(1035), - [anon_sym_c_long] = ACTIONS(1035), - [anon_sym_c_ulong] = ACTIONS(1035), - [anon_sym_c_longlong] = ACTIONS(1035), - [anon_sym_c_ulonglong] = ACTIONS(1035), - [anon_sym_c_float] = ACTIONS(1035), - [anon_sym_c_double] = ACTIONS(1035), - [anon_sym_c_longdouble] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_yield] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_defer] = ACTIONS(1035), - [anon_sym_errdefer] = ACTIONS(1035), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_else] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [anon_sym_expand] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_match] = ACTIONS(1035), - [anon_sym_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_orelse] = ACTIONS(1035), - [anon_sym_catch] = ACTIONS(1035), - [anon_sym_or] = ACTIONS(1035), - [anon_sym_and] = ACTIONS(1035), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1035), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_LT_LT_PIPE] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1035), - [anon_sym_false] = ACTIONS(1035), - [sym_none] = ACTIONS(1035), - [sym_undefined] = ACTIONS(1035), - [sym_sink] = ACTIONS(1035), - [sym_integer] = ACTIONS(1035), - [sym_float] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym_multiline_string] = ACTIONS(1033), - [sym_character] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1033), - }, - [STATE(734)] = { - [ts_builtin_sym_end] = ACTIONS(773), - [sym_identifier] = ACTIONS(775), - [anon_sym_import] = ACTIONS(775), - [anon_sym_test] = ACTIONS(775), - [anon_sym_hide] = ACTIONS(775), - [anon_sym_func] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_void] = ACTIONS(775), - [anon_sym_anyopaque] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_int] = ACTIONS(775), - [anon_sym_uint] = ACTIONS(775), - [anon_sym_float] = ACTIONS(775), - [anon_sym_range] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_c_char] = ACTIONS(775), - [anon_sym_c_schar] = ACTIONS(775), - [anon_sym_c_uchar] = ACTIONS(775), - [anon_sym_c_short] = ACTIONS(775), - [anon_sym_c_ushort] = ACTIONS(775), - [anon_sym_c_int] = ACTIONS(775), - [anon_sym_c_uint] = ACTIONS(775), - [anon_sym_c_long] = ACTIONS(775), - [anon_sym_c_ulong] = ACTIONS(775), - [anon_sym_c_longlong] = ACTIONS(775), - [anon_sym_c_ulonglong] = ACTIONS(775), - [anon_sym_c_float] = ACTIONS(775), - [anon_sym_c_double] = ACTIONS(775), - [anon_sym_c_longdouble] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_yield] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_break] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_defer] = ACTIONS(775), - [anon_sym_errdefer] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_else] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [anon_sym_expand] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_orelse] = ACTIONS(775), - [anon_sym_catch] = ACTIONS(775), - [anon_sym_or] = ACTIONS(775), - [anon_sym_and] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_LT_LT_PIPE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_try] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(773), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [sym_none] = ACTIONS(775), - [sym_undefined] = ACTIONS(775), - [sym_sink] = ACTIONS(775), - [sym_integer] = ACTIONS(775), - [sym_float] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [sym_multiline_string] = ACTIONS(773), - [sym_character] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(773), - }, - [STATE(735)] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_identifier] = ACTIONS(779), - [anon_sym_import] = ACTIONS(779), - [anon_sym_test] = ACTIONS(779), - [anon_sym_hide] = ACTIONS(779), - [anon_sym_func] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_void] = ACTIONS(779), - [anon_sym_anyopaque] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_int] = ACTIONS(779), - [anon_sym_uint] = ACTIONS(779), - [anon_sym_float] = ACTIONS(779), - [anon_sym_range] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_c_char] = ACTIONS(779), - [anon_sym_c_schar] = ACTIONS(779), - [anon_sym_c_uchar] = ACTIONS(779), - [anon_sym_c_short] = ACTIONS(779), - [anon_sym_c_ushort] = ACTIONS(779), - [anon_sym_c_int] = ACTIONS(779), - [anon_sym_c_uint] = ACTIONS(779), - [anon_sym_c_long] = ACTIONS(779), - [anon_sym_c_ulong] = ACTIONS(779), - [anon_sym_c_longlong] = ACTIONS(779), - [anon_sym_c_ulonglong] = ACTIONS(779), - [anon_sym_c_float] = ACTIONS(779), - [anon_sym_c_double] = ACTIONS(779), - [anon_sym_c_longdouble] = ACTIONS(779), - [anon_sym_return] = ACTIONS(779), - [anon_sym_yield] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_break] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_defer] = ACTIONS(779), - [anon_sym_errdefer] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_expand] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_orelse] = ACTIONS(779), - [anon_sym_catch] = ACTIONS(779), - [anon_sym_or] = ACTIONS(779), - [anon_sym_and] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(779), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_LT_LT_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_try] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), - [sym_undefined] = ACTIONS(779), - [sym_sink] = ACTIONS(779), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_multiline_string] = ACTIONS(777), - [sym_character] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - }, - [STATE(736)] = { - [ts_builtin_sym_end] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [anon_sym_import] = ACTIONS(783), - [anon_sym_test] = ACTIONS(783), - [anon_sym_hide] = ACTIONS(783), - [anon_sym_func] = ACTIONS(783), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_void] = ACTIONS(783), - [anon_sym_anyopaque] = ACTIONS(783), - [anon_sym_bool] = ACTIONS(783), - [anon_sym_int] = ACTIONS(783), - [anon_sym_uint] = ACTIONS(783), - [anon_sym_float] = ACTIONS(783), - [anon_sym_range] = ACTIONS(783), - [anon_sym_i8] = ACTIONS(783), - [anon_sym_i16] = ACTIONS(783), - [anon_sym_i32] = ACTIONS(783), - [anon_sym_i64] = ACTIONS(783), - [anon_sym_u8] = ACTIONS(783), - [anon_sym_u16] = ACTIONS(783), - [anon_sym_u32] = ACTIONS(783), - [anon_sym_u64] = ACTIONS(783), - [anon_sym_isize] = ACTIONS(783), - [anon_sym_usize] = ACTIONS(783), - [anon_sym_f32] = ACTIONS(783), - [anon_sym_f64] = ACTIONS(783), - [anon_sym_c_char] = ACTIONS(783), - [anon_sym_c_schar] = ACTIONS(783), - [anon_sym_c_uchar] = ACTIONS(783), - [anon_sym_c_short] = ACTIONS(783), - [anon_sym_c_ushort] = ACTIONS(783), - [anon_sym_c_int] = ACTIONS(783), - [anon_sym_c_uint] = ACTIONS(783), - [anon_sym_c_long] = ACTIONS(783), - [anon_sym_c_ulong] = ACTIONS(783), - [anon_sym_c_longlong] = ACTIONS(783), - [anon_sym_c_ulonglong] = ACTIONS(783), - [anon_sym_c_float] = ACTIONS(783), - [anon_sym_c_double] = ACTIONS(783), - [anon_sym_c_longdouble] = ACTIONS(783), - [anon_sym_return] = ACTIONS(783), - [anon_sym_yield] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_break] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(783), - [anon_sym_defer] = ACTIONS(783), - [anon_sym_errdefer] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_else] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_expand] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(783), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_orelse] = ACTIONS(783), - [anon_sym_catch] = ACTIONS(783), - [anon_sym_or] = ACTIONS(783), - [anon_sym_and] = ACTIONS(783), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_xor] = ACTIONS(783), - [anon_sym_LT_LT] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(781), - [anon_sym_LT_LT_PIPE] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_try] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_true] = ACTIONS(783), - [anon_sym_false] = ACTIONS(783), - [sym_none] = ACTIONS(783), - [sym_undefined] = ACTIONS(783), - [sym_sink] = ACTIONS(783), - [sym_integer] = ACTIONS(783), - [sym_float] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_multiline_string] = ACTIONS(781), - [sym_character] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - }, - [STATE(737)] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_identifier] = ACTIONS(847), - [anon_sym_import] = ACTIONS(847), - [anon_sym_test] = ACTIONS(847), - [anon_sym_hide] = ACTIONS(847), - [anon_sym_func] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_void] = ACTIONS(847), - [anon_sym_anyopaque] = ACTIONS(847), - [anon_sym_bool] = ACTIONS(847), - [anon_sym_int] = ACTIONS(847), - [anon_sym_uint] = ACTIONS(847), - [anon_sym_float] = ACTIONS(847), - [anon_sym_range] = ACTIONS(847), - [anon_sym_i8] = ACTIONS(847), - [anon_sym_i16] = ACTIONS(847), - [anon_sym_i32] = ACTIONS(847), - [anon_sym_i64] = ACTIONS(847), - [anon_sym_u8] = ACTIONS(847), - [anon_sym_u16] = ACTIONS(847), - [anon_sym_u32] = ACTIONS(847), - [anon_sym_u64] = ACTIONS(847), - [anon_sym_isize] = ACTIONS(847), - [anon_sym_usize] = ACTIONS(847), - [anon_sym_f32] = ACTIONS(847), - [anon_sym_f64] = ACTIONS(847), - [anon_sym_c_char] = ACTIONS(847), - [anon_sym_c_schar] = ACTIONS(847), - [anon_sym_c_uchar] = ACTIONS(847), - [anon_sym_c_short] = ACTIONS(847), - [anon_sym_c_ushort] = ACTIONS(847), - [anon_sym_c_int] = ACTIONS(847), - [anon_sym_c_uint] = ACTIONS(847), - [anon_sym_c_long] = ACTIONS(847), - [anon_sym_c_ulong] = ACTIONS(847), - [anon_sym_c_longlong] = ACTIONS(847), - [anon_sym_c_ulonglong] = ACTIONS(847), - [anon_sym_c_float] = ACTIONS(847), - [anon_sym_c_double] = ACTIONS(847), - [anon_sym_c_longdouble] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_yield] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_break] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_defer] = ACTIONS(847), - [anon_sym_errdefer] = ACTIONS(847), - [anon_sym_if] = ACTIONS(847), - [anon_sym_else] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [anon_sym_expand] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(845), - [anon_sym_orelse] = ACTIONS(847), - [anon_sym_catch] = ACTIONS(847), - [anon_sym_or] = ACTIONS(847), - [anon_sym_and] = ACTIONS(847), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_xor] = ACTIONS(847), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_LT_LT_PIPE] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_try] = ACTIONS(847), - [anon_sym_DOT] = ACTIONS(847), - [anon_sym_CARET] = ACTIONS(845), - [anon_sym_true] = ACTIONS(847), - [anon_sym_false] = ACTIONS(847), - [sym_none] = ACTIONS(847), - [sym_undefined] = ACTIONS(847), - [sym_sink] = ACTIONS(847), - [sym_integer] = ACTIONS(847), - [sym_float] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [sym_multiline_string] = ACTIONS(845), - [sym_character] = ACTIONS(845), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(845), - }, - [STATE(738)] = { - [ts_builtin_sym_end] = ACTIONS(849), - [sym_identifier] = ACTIONS(851), - [anon_sym_import] = ACTIONS(851), - [anon_sym_test] = ACTIONS(851), - [anon_sym_hide] = ACTIONS(851), - [anon_sym_func] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_void] = ACTIONS(851), - [anon_sym_anyopaque] = ACTIONS(851), - [anon_sym_bool] = ACTIONS(851), - [anon_sym_int] = ACTIONS(851), - [anon_sym_uint] = ACTIONS(851), - [anon_sym_float] = ACTIONS(851), - [anon_sym_range] = ACTIONS(851), - [anon_sym_i8] = ACTIONS(851), - [anon_sym_i16] = ACTIONS(851), - [anon_sym_i32] = ACTIONS(851), - [anon_sym_i64] = ACTIONS(851), - [anon_sym_u8] = ACTIONS(851), - [anon_sym_u16] = ACTIONS(851), - [anon_sym_u32] = ACTIONS(851), - [anon_sym_u64] = ACTIONS(851), - [anon_sym_isize] = ACTIONS(851), - [anon_sym_usize] = ACTIONS(851), - [anon_sym_f32] = ACTIONS(851), - [anon_sym_f64] = ACTIONS(851), - [anon_sym_c_char] = ACTIONS(851), - [anon_sym_c_schar] = ACTIONS(851), - [anon_sym_c_uchar] = ACTIONS(851), - [anon_sym_c_short] = ACTIONS(851), - [anon_sym_c_ushort] = ACTIONS(851), - [anon_sym_c_int] = ACTIONS(851), - [anon_sym_c_uint] = ACTIONS(851), - [anon_sym_c_long] = ACTIONS(851), - [anon_sym_c_ulong] = ACTIONS(851), - [anon_sym_c_longlong] = ACTIONS(851), - [anon_sym_c_ulonglong] = ACTIONS(851), - [anon_sym_c_float] = ACTIONS(851), - [anon_sym_c_double] = ACTIONS(851), - [anon_sym_c_longdouble] = ACTIONS(851), - [anon_sym_return] = ACTIONS(851), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_break] = ACTIONS(851), - [anon_sym_continue] = ACTIONS(851), - [anon_sym_defer] = ACTIONS(851), - [anon_sym_errdefer] = ACTIONS(851), - [anon_sym_if] = ACTIONS(851), - [anon_sym_else] = ACTIONS(851), - [anon_sym_while] = ACTIONS(851), - [anon_sym_expand] = ACTIONS(851), - [anon_sym_for] = ACTIONS(851), - [anon_sym_match] = ACTIONS(851), - [anon_sym_DOT_DOT] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(849), - [anon_sym_orelse] = ACTIONS(851), - [anon_sym_catch] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_LT_LT_PIPE] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_try] = ACTIONS(851), - [anon_sym_DOT] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_true] = ACTIONS(851), - [anon_sym_false] = ACTIONS(851), - [sym_none] = ACTIONS(851), - [sym_undefined] = ACTIONS(851), - [sym_sink] = ACTIONS(851), - [sym_integer] = ACTIONS(851), - [sym_float] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym_multiline_string] = ACTIONS(849), - [sym_character] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(849), - }, - [STATE(739)] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_test] = ACTIONS(991), - [anon_sym_hide] = ACTIONS(991), - [anon_sym_func] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_void] = ACTIONS(991), - [anon_sym_anyopaque] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_int] = ACTIONS(991), - [anon_sym_uint] = ACTIONS(991), - [anon_sym_float] = ACTIONS(991), - [anon_sym_range] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_c_char] = ACTIONS(991), - [anon_sym_c_schar] = ACTIONS(991), - [anon_sym_c_uchar] = ACTIONS(991), - [anon_sym_c_short] = ACTIONS(991), - [anon_sym_c_ushort] = ACTIONS(991), - [anon_sym_c_int] = ACTIONS(991), - [anon_sym_c_uint] = ACTIONS(991), - [anon_sym_c_long] = ACTIONS(991), - [anon_sym_c_ulong] = ACTIONS(991), - [anon_sym_c_longlong] = ACTIONS(991), - [anon_sym_c_ulonglong] = ACTIONS(991), - [anon_sym_c_float] = ACTIONS(991), - [anon_sym_c_double] = ACTIONS(991), - [anon_sym_c_longdouble] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_defer] = ACTIONS(991), - [anon_sym_errdefer] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_expand] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(989), - [anon_sym_orelse] = ACTIONS(991), - [anon_sym_catch] = ACTIONS(991), - [anon_sym_or] = ACTIONS(991), - [anon_sym_and] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_LT_LT_PIPE] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_try] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [sym_none] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [sym_sink] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [sym_float] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym_multiline_string] = ACTIONS(989), - [sym_character] = ACTIONS(989), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(989), - }, - [STATE(740)] = { - [ts_builtin_sym_end] = ACTIONS(993), - [sym_identifier] = ACTIONS(995), - [anon_sym_import] = ACTIONS(995), - [anon_sym_test] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_func] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_void] = ACTIONS(995), - [anon_sym_anyopaque] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_int] = ACTIONS(995), - [anon_sym_uint] = ACTIONS(995), - [anon_sym_float] = ACTIONS(995), - [anon_sym_range] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_c_char] = ACTIONS(995), - [anon_sym_c_schar] = ACTIONS(995), - [anon_sym_c_uchar] = ACTIONS(995), - [anon_sym_c_short] = ACTIONS(995), - [anon_sym_c_ushort] = ACTIONS(995), - [anon_sym_c_int] = ACTIONS(995), - [anon_sym_c_uint] = ACTIONS(995), - [anon_sym_c_long] = ACTIONS(995), - [anon_sym_c_ulong] = ACTIONS(995), - [anon_sym_c_longlong] = ACTIONS(995), - [anon_sym_c_ulonglong] = ACTIONS(995), - [anon_sym_c_float] = ACTIONS(995), - [anon_sym_c_double] = ACTIONS(995), - [anon_sym_c_longdouble] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_yield] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_defer] = ACTIONS(995), - [anon_sym_errdefer] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_expand] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_orelse] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_LT_LT_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_try] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [sym_none] = ACTIONS(995), - [sym_undefined] = ACTIONS(995), - [sym_sink] = ACTIONS(995), - [sym_integer] = ACTIONS(995), - [sym_float] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym_multiline_string] = ACTIONS(993), - [sym_character] = ACTIONS(993), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(993), - }, - [STATE(741)] = { - [ts_builtin_sym_end] = ACTIONS(997), - [sym_identifier] = ACTIONS(999), - [anon_sym_import] = ACTIONS(999), - [anon_sym_test] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_func] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_struct] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_void] = ACTIONS(999), - [anon_sym_anyopaque] = ACTIONS(999), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_int] = ACTIONS(999), - [anon_sym_uint] = ACTIONS(999), - [anon_sym_float] = ACTIONS(999), - [anon_sym_range] = ACTIONS(999), - [anon_sym_i8] = ACTIONS(999), - [anon_sym_i16] = ACTIONS(999), - [anon_sym_i32] = ACTIONS(999), - [anon_sym_i64] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(999), - [anon_sym_u16] = ACTIONS(999), - [anon_sym_u32] = ACTIONS(999), - [anon_sym_u64] = ACTIONS(999), - [anon_sym_isize] = ACTIONS(999), - [anon_sym_usize] = ACTIONS(999), - [anon_sym_f32] = ACTIONS(999), - [anon_sym_f64] = ACTIONS(999), - [anon_sym_c_char] = ACTIONS(999), - [anon_sym_c_schar] = ACTIONS(999), - [anon_sym_c_uchar] = ACTIONS(999), - [anon_sym_c_short] = ACTIONS(999), - [anon_sym_c_ushort] = ACTIONS(999), - [anon_sym_c_int] = ACTIONS(999), - [anon_sym_c_uint] = ACTIONS(999), - [anon_sym_c_long] = ACTIONS(999), - [anon_sym_c_ulong] = ACTIONS(999), - [anon_sym_c_longlong] = ACTIONS(999), - [anon_sym_c_ulonglong] = ACTIONS(999), - [anon_sym_c_float] = ACTIONS(999), - [anon_sym_c_double] = ACTIONS(999), - [anon_sym_c_longdouble] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_yield] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_defer] = ACTIONS(999), - [anon_sym_errdefer] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_expand] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_orelse] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_LT_LT_PIPE] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(997), - [anon_sym_try] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [sym_none] = ACTIONS(999), - [sym_undefined] = ACTIONS(999), - [sym_sink] = ACTIONS(999), - [sym_integer] = ACTIONS(999), - [sym_float] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym_multiline_string] = ACTIONS(997), - [sym_character] = ACTIONS(997), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(997), - }, - [STATE(742)] = { - [ts_builtin_sym_end] = ACTIONS(1037), - [sym_identifier] = ACTIONS(1039), - [anon_sym_import] = ACTIONS(1039), - [anon_sym_test] = ACTIONS(1039), - [anon_sym_hide] = ACTIONS(1039), - [anon_sym_func] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_LBRACK] = ACTIONS(1037), - [anon_sym_void] = ACTIONS(1039), - [anon_sym_anyopaque] = ACTIONS(1039), - [anon_sym_bool] = ACTIONS(1039), - [anon_sym_int] = ACTIONS(1039), - [anon_sym_uint] = ACTIONS(1039), - [anon_sym_float] = ACTIONS(1039), - [anon_sym_range] = ACTIONS(1039), - [anon_sym_i8] = ACTIONS(1039), - [anon_sym_i16] = ACTIONS(1039), - [anon_sym_i32] = ACTIONS(1039), - [anon_sym_i64] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1039), - [anon_sym_u16] = ACTIONS(1039), - [anon_sym_u32] = ACTIONS(1039), - [anon_sym_u64] = ACTIONS(1039), - [anon_sym_isize] = ACTIONS(1039), - [anon_sym_usize] = ACTIONS(1039), - [anon_sym_f32] = ACTIONS(1039), - [anon_sym_f64] = ACTIONS(1039), - [anon_sym_c_char] = ACTIONS(1039), - [anon_sym_c_schar] = ACTIONS(1039), - [anon_sym_c_uchar] = ACTIONS(1039), - [anon_sym_c_short] = ACTIONS(1039), - [anon_sym_c_ushort] = ACTIONS(1039), - [anon_sym_c_int] = ACTIONS(1039), - [anon_sym_c_uint] = ACTIONS(1039), - [anon_sym_c_long] = ACTIONS(1039), - [anon_sym_c_ulong] = ACTIONS(1039), - [anon_sym_c_longlong] = ACTIONS(1039), - [anon_sym_c_ulonglong] = ACTIONS(1039), - [anon_sym_c_float] = ACTIONS(1039), - [anon_sym_c_double] = ACTIONS(1039), - [anon_sym_c_longdouble] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_yield] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_defer] = ACTIONS(1039), - [anon_sym_errdefer] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [anon_sym_expand] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_match] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), - [anon_sym_orelse] = ACTIONS(1039), - [anon_sym_catch] = ACTIONS(1039), - [anon_sym_or] = ACTIONS(1039), - [anon_sym_and] = ACTIONS(1039), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_BANG_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_EQ] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_xor] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_LT_LT_PIPE] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1039), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_true] = ACTIONS(1039), - [anon_sym_false] = ACTIONS(1039), - [sym_none] = ACTIONS(1039), - [sym_undefined] = ACTIONS(1039), - [sym_sink] = ACTIONS(1039), - [sym_integer] = ACTIONS(1039), - [sym_float] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [sym_multiline_string] = ACTIONS(1037), - [sym_character] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1037), - }, - [STATE(743)] = { - [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(855), - [anon_sym_import] = ACTIONS(855), - [anon_sym_test] = ACTIONS(855), - [anon_sym_hide] = ACTIONS(855), - [anon_sym_func] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_void] = ACTIONS(855), - [anon_sym_anyopaque] = ACTIONS(855), - [anon_sym_bool] = ACTIONS(855), - [anon_sym_int] = ACTIONS(855), - [anon_sym_uint] = ACTIONS(855), - [anon_sym_float] = ACTIONS(855), - [anon_sym_range] = ACTIONS(855), - [anon_sym_i8] = ACTIONS(855), - [anon_sym_i16] = ACTIONS(855), - [anon_sym_i32] = ACTIONS(855), - [anon_sym_i64] = ACTIONS(855), - [anon_sym_u8] = ACTIONS(855), - [anon_sym_u16] = ACTIONS(855), - [anon_sym_u32] = ACTIONS(855), - [anon_sym_u64] = ACTIONS(855), - [anon_sym_isize] = ACTIONS(855), - [anon_sym_usize] = ACTIONS(855), - [anon_sym_f32] = ACTIONS(855), - [anon_sym_f64] = ACTIONS(855), - [anon_sym_c_char] = ACTIONS(855), - [anon_sym_c_schar] = ACTIONS(855), - [anon_sym_c_uchar] = ACTIONS(855), - [anon_sym_c_short] = ACTIONS(855), - [anon_sym_c_ushort] = ACTIONS(855), - [anon_sym_c_int] = ACTIONS(855), - [anon_sym_c_uint] = ACTIONS(855), - [anon_sym_c_long] = ACTIONS(855), - [anon_sym_c_ulong] = ACTIONS(855), - [anon_sym_c_longlong] = ACTIONS(855), - [anon_sym_c_ulonglong] = ACTIONS(855), - [anon_sym_c_float] = ACTIONS(855), - [anon_sym_c_double] = ACTIONS(855), - [anon_sym_c_longdouble] = ACTIONS(855), - [anon_sym_return] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_break] = ACTIONS(855), - [anon_sym_continue] = ACTIONS(855), - [anon_sym_defer] = ACTIONS(855), - [anon_sym_errdefer] = ACTIONS(855), - [anon_sym_if] = ACTIONS(855), - [anon_sym_else] = ACTIONS(855), - [anon_sym_while] = ACTIONS(855), - [anon_sym_expand] = ACTIONS(855), - [anon_sym_for] = ACTIONS(855), - [anon_sym_match] = ACTIONS(855), - [anon_sym_DOT_DOT] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [anon_sym_orelse] = ACTIONS(855), - [anon_sym_catch] = ACTIONS(855), - [anon_sym_or] = ACTIONS(855), - [anon_sym_and] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - [anon_sym_xor] = ACTIONS(855), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_LT_LT_PIPE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_try] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_true] = ACTIONS(855), - [anon_sym_false] = ACTIONS(855), - [sym_none] = ACTIONS(855), - [sym_undefined] = ACTIONS(855), - [sym_sink] = ACTIONS(855), - [sym_integer] = ACTIONS(855), - [sym_float] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym_multiline_string] = ACTIONS(853), - [sym_character] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(853), - }, - [STATE(744)] = { - [ts_builtin_sym_end] = ACTIONS(857), - [sym_identifier] = ACTIONS(859), - [anon_sym_import] = ACTIONS(859), - [anon_sym_test] = ACTIONS(859), - [anon_sym_hide] = ACTIONS(859), - [anon_sym_func] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_void] = ACTIONS(859), - [anon_sym_anyopaque] = ACTIONS(859), - [anon_sym_bool] = ACTIONS(859), - [anon_sym_int] = ACTIONS(859), - [anon_sym_uint] = ACTIONS(859), - [anon_sym_float] = ACTIONS(859), - [anon_sym_range] = ACTIONS(859), - [anon_sym_i8] = ACTIONS(859), - [anon_sym_i16] = ACTIONS(859), - [anon_sym_i32] = ACTIONS(859), - [anon_sym_i64] = ACTIONS(859), - [anon_sym_u8] = ACTIONS(859), - [anon_sym_u16] = ACTIONS(859), - [anon_sym_u32] = ACTIONS(859), - [anon_sym_u64] = ACTIONS(859), - [anon_sym_isize] = ACTIONS(859), - [anon_sym_usize] = ACTIONS(859), - [anon_sym_f32] = ACTIONS(859), - [anon_sym_f64] = ACTIONS(859), - [anon_sym_c_char] = ACTIONS(859), - [anon_sym_c_schar] = ACTIONS(859), - [anon_sym_c_uchar] = ACTIONS(859), - [anon_sym_c_short] = ACTIONS(859), - [anon_sym_c_ushort] = ACTIONS(859), - [anon_sym_c_int] = ACTIONS(859), - [anon_sym_c_uint] = ACTIONS(859), - [anon_sym_c_long] = ACTIONS(859), - [anon_sym_c_ulong] = ACTIONS(859), - [anon_sym_c_longlong] = ACTIONS(859), - [anon_sym_c_ulonglong] = ACTIONS(859), - [anon_sym_c_float] = ACTIONS(859), - [anon_sym_c_double] = ACTIONS(859), - [anon_sym_c_longdouble] = ACTIONS(859), - [anon_sym_return] = ACTIONS(859), - [anon_sym_yield] = ACTIONS(859), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_break] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [anon_sym_defer] = ACTIONS(859), - [anon_sym_errdefer] = ACTIONS(859), - [anon_sym_if] = ACTIONS(859), - [anon_sym_else] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_expand] = ACTIONS(859), - [anon_sym_for] = ACTIONS(859), - [anon_sym_match] = ACTIONS(859), - [anon_sym_DOT_DOT] = ACTIONS(859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(857), - [anon_sym_orelse] = ACTIONS(859), - [anon_sym_catch] = ACTIONS(859), - [anon_sym_or] = ACTIONS(859), - [anon_sym_and] = ACTIONS(859), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_xor] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(859), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_LT_LT_PIPE] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_try] = ACTIONS(859), - [anon_sym_DOT] = ACTIONS(859), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_true] = ACTIONS(859), - [anon_sym_false] = ACTIONS(859), - [sym_none] = ACTIONS(859), - [sym_undefined] = ACTIONS(859), - [sym_sink] = ACTIONS(859), - [sym_integer] = ACTIONS(859), - [sym_float] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_multiline_string] = ACTIONS(857), - [sym_character] = ACTIONS(857), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), - }, - [STATE(745)] = { - [ts_builtin_sym_end] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(1003), - [anon_sym_test] = ACTIONS(1003), - [anon_sym_hide] = ACTIONS(1003), - [anon_sym_func] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1003), - [anon_sym_anyopaque] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_int] = ACTIONS(1003), - [anon_sym_uint] = ACTIONS(1003), - [anon_sym_float] = ACTIONS(1003), - [anon_sym_range] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_c_char] = ACTIONS(1003), - [anon_sym_c_schar] = ACTIONS(1003), - [anon_sym_c_uchar] = ACTIONS(1003), - [anon_sym_c_short] = ACTIONS(1003), - [anon_sym_c_ushort] = ACTIONS(1003), - [anon_sym_c_int] = ACTIONS(1003), - [anon_sym_c_uint] = ACTIONS(1003), - [anon_sym_c_long] = ACTIONS(1003), - [anon_sym_c_ulong] = ACTIONS(1003), - [anon_sym_c_longlong] = ACTIONS(1003), - [anon_sym_c_ulonglong] = ACTIONS(1003), - [anon_sym_c_float] = ACTIONS(1003), - [anon_sym_c_double] = ACTIONS(1003), - [anon_sym_c_longdouble] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_defer] = ACTIONS(1003), - [anon_sym_errdefer] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_else] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [anon_sym_expand] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_orelse] = ACTIONS(1003), - [anon_sym_catch] = ACTIONS(1003), - [anon_sym_or] = ACTIONS(1003), - [anon_sym_and] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_LT_LT_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [sym_none] = ACTIONS(1003), - [sym_undefined] = ACTIONS(1003), - [sym_sink] = ACTIONS(1003), - [sym_integer] = ACTIONS(1003), - [sym_float] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym_multiline_string] = ACTIONS(1001), - [sym_character] = ACTIONS(1001), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1001), - }, - [STATE(746)] = { - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(361), - [anon_sym_import] = ACTIONS(361), - [anon_sym_test] = ACTIONS(361), - [anon_sym_hide] = ACTIONS(361), - [anon_sym_func] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(363), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(361), - [anon_sym_anyopaque] = ACTIONS(361), - [anon_sym_bool] = ACTIONS(361), - [anon_sym_int] = ACTIONS(361), - [anon_sym_uint] = ACTIONS(361), - [anon_sym_float] = ACTIONS(361), - [anon_sym_range] = ACTIONS(361), - [anon_sym_i8] = ACTIONS(361), - [anon_sym_i16] = ACTIONS(361), - [anon_sym_i32] = ACTIONS(361), - [anon_sym_i64] = ACTIONS(361), - [anon_sym_u8] = ACTIONS(361), - [anon_sym_u16] = ACTIONS(361), - [anon_sym_u32] = ACTIONS(361), - [anon_sym_u64] = ACTIONS(361), - [anon_sym_isize] = ACTIONS(361), - [anon_sym_usize] = ACTIONS(361), - [anon_sym_f32] = ACTIONS(361), - [anon_sym_f64] = ACTIONS(361), - [anon_sym_c_char] = ACTIONS(361), - [anon_sym_c_schar] = ACTIONS(361), - [anon_sym_c_uchar] = ACTIONS(361), - [anon_sym_c_short] = ACTIONS(361), - [anon_sym_c_ushort] = ACTIONS(361), - [anon_sym_c_int] = ACTIONS(361), - [anon_sym_c_uint] = ACTIONS(361), - [anon_sym_c_long] = ACTIONS(361), - [anon_sym_c_ulong] = ACTIONS(361), - [anon_sym_c_longlong] = ACTIONS(361), - [anon_sym_c_ulonglong] = ACTIONS(361), - [anon_sym_c_float] = ACTIONS(361), - [anon_sym_c_double] = ACTIONS(361), - [anon_sym_c_longdouble] = ACTIONS(361), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_COLON] = ACTIONS(363), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_errdefer] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_else] = ACTIONS(361), - [anon_sym_while] = ACTIONS(361), - [anon_sym_expand] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_match] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_orelse] = ACTIONS(361), - [anon_sym_catch] = ACTIONS(361), - [anon_sym_or] = ACTIONS(361), - [anon_sym_and] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(361), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(361), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_xor] = ACTIONS(361), - [anon_sym_LT_LT] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(363), - [anon_sym_SLASH] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_try] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [sym_none] = ACTIONS(361), - [sym_undefined] = ACTIONS(361), - [sym_sink] = ACTIONS(361), - [sym_integer] = ACTIONS(361), - [sym_float] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_multiline_string] = ACTIONS(363), - [sym_character] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - }, - [STATE(747)] = { - [ts_builtin_sym_end] = ACTIONS(359), - [sym_identifier] = ACTIONS(357), - [anon_sym_import] = ACTIONS(357), - [anon_sym_test] = ACTIONS(357), - [anon_sym_hide] = ACTIONS(357), - [anon_sym_func] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_struct] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_void] = ACTIONS(357), - [anon_sym_anyopaque] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_uint] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_range] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_c_char] = ACTIONS(357), - [anon_sym_c_schar] = ACTIONS(357), - [anon_sym_c_uchar] = ACTIONS(357), - [anon_sym_c_short] = ACTIONS(357), - [anon_sym_c_ushort] = ACTIONS(357), - [anon_sym_c_int] = ACTIONS(357), - [anon_sym_c_uint] = ACTIONS(357), - [anon_sym_c_long] = ACTIONS(357), - [anon_sym_c_ulong] = ACTIONS(357), - [anon_sym_c_longlong] = ACTIONS(357), - [anon_sym_c_ulonglong] = ACTIONS(357), - [anon_sym_c_float] = ACTIONS(357), - [anon_sym_c_double] = ACTIONS(357), - [anon_sym_c_longdouble] = ACTIONS(357), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(357), - [anon_sym_errdefer] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), - [anon_sym_else] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [anon_sym_expand] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_match] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), - [anon_sym_orelse] = ACTIONS(357), - [anon_sym_catch] = ACTIONS(357), - [anon_sym_or] = ACTIONS(357), - [anon_sym_and] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_xor] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_LT_LT_PIPE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_try] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [sym_none] = ACTIONS(357), - [sym_undefined] = ACTIONS(357), - [sym_sink] = ACTIONS(357), - [sym_integer] = ACTIONS(357), - [sym_float] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym_multiline_string] = ACTIONS(359), - [sym_character] = ACTIONS(359), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - }, - [STATE(748)] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(1043), - [anon_sym_import] = ACTIONS(1043), - [anon_sym_test] = ACTIONS(1043), - [anon_sym_hide] = ACTIONS(1043), - [anon_sym_func] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_void] = ACTIONS(1043), - [anon_sym_anyopaque] = ACTIONS(1043), - [anon_sym_bool] = ACTIONS(1043), - [anon_sym_int] = ACTIONS(1043), - [anon_sym_uint] = ACTIONS(1043), - [anon_sym_float] = ACTIONS(1043), - [anon_sym_range] = ACTIONS(1043), - [anon_sym_i8] = ACTIONS(1043), - [anon_sym_i16] = ACTIONS(1043), - [anon_sym_i32] = ACTIONS(1043), - [anon_sym_i64] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1043), - [anon_sym_u16] = ACTIONS(1043), - [anon_sym_u32] = ACTIONS(1043), - [anon_sym_u64] = ACTIONS(1043), - [anon_sym_isize] = ACTIONS(1043), - [anon_sym_usize] = ACTIONS(1043), - [anon_sym_f32] = ACTIONS(1043), - [anon_sym_f64] = ACTIONS(1043), - [anon_sym_c_char] = ACTIONS(1043), - [anon_sym_c_schar] = ACTIONS(1043), - [anon_sym_c_uchar] = ACTIONS(1043), - [anon_sym_c_short] = ACTIONS(1043), - [anon_sym_c_ushort] = ACTIONS(1043), - [anon_sym_c_int] = ACTIONS(1043), - [anon_sym_c_uint] = ACTIONS(1043), - [anon_sym_c_long] = ACTIONS(1043), - [anon_sym_c_ulong] = ACTIONS(1043), - [anon_sym_c_longlong] = ACTIONS(1043), - [anon_sym_c_ulonglong] = ACTIONS(1043), - [anon_sym_c_float] = ACTIONS(1043), - [anon_sym_c_double] = ACTIONS(1043), - [anon_sym_c_longdouble] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_defer] = ACTIONS(1043), - [anon_sym_errdefer] = ACTIONS(1043), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_expand] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_match] = ACTIONS(1043), - [anon_sym_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), - [anon_sym_orelse] = ACTIONS(1043), - [anon_sym_catch] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_and] = ACTIONS(1043), - [anon_sym_EQ_EQ] = ACTIONS(1041), - [anon_sym_BANG_EQ] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1043), - [anon_sym_GT_EQ] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_xor] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1043), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_LT_LT_PIPE] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(1043), - [anon_sym_false] = ACTIONS(1043), - [sym_none] = ACTIONS(1043), - [sym_undefined] = ACTIONS(1043), - [sym_sink] = ACTIONS(1043), - [sym_integer] = ACTIONS(1043), - [sym_float] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [sym_multiline_string] = ACTIONS(1041), - [sym_character] = ACTIONS(1041), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1041), - }, - [STATE(749)] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_identifier] = ACTIONS(833), - [anon_sym_import] = ACTIONS(833), - [anon_sym_test] = ACTIONS(833), - [anon_sym_hide] = ACTIONS(833), - [anon_sym_func] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(833), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(831), - [anon_sym_PIPE] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(831), - [anon_sym_void] = ACTIONS(833), - [anon_sym_anyopaque] = ACTIONS(833), - [anon_sym_bool] = ACTIONS(833), - [anon_sym_int] = ACTIONS(833), - [anon_sym_uint] = ACTIONS(833), - [anon_sym_float] = ACTIONS(833), - [anon_sym_range] = ACTIONS(833), - [anon_sym_i8] = ACTIONS(833), - [anon_sym_i16] = ACTIONS(833), - [anon_sym_i32] = ACTIONS(833), - [anon_sym_i64] = ACTIONS(833), - [anon_sym_u8] = ACTIONS(833), - [anon_sym_u16] = ACTIONS(833), - [anon_sym_u32] = ACTIONS(833), - [anon_sym_u64] = ACTIONS(833), - [anon_sym_isize] = ACTIONS(833), - [anon_sym_usize] = ACTIONS(833), - [anon_sym_f32] = ACTIONS(833), - [anon_sym_f64] = ACTIONS(833), - [anon_sym_c_char] = ACTIONS(833), - [anon_sym_c_schar] = ACTIONS(833), - [anon_sym_c_uchar] = ACTIONS(833), - [anon_sym_c_short] = ACTIONS(833), - [anon_sym_c_ushort] = ACTIONS(833), - [anon_sym_c_int] = ACTIONS(833), - [anon_sym_c_uint] = ACTIONS(833), - [anon_sym_c_long] = ACTIONS(833), - [anon_sym_c_ulong] = ACTIONS(833), - [anon_sym_c_longlong] = ACTIONS(833), - [anon_sym_c_ulonglong] = ACTIONS(833), - [anon_sym_c_float] = ACTIONS(833), - [anon_sym_c_double] = ACTIONS(833), - [anon_sym_c_longdouble] = ACTIONS(833), - [anon_sym_return] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_break] = ACTIONS(833), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_defer] = ACTIONS(833), - [anon_sym_errdefer] = ACTIONS(833), - [anon_sym_if] = ACTIONS(833), - [anon_sym_else] = ACTIONS(833), - [anon_sym_while] = ACTIONS(833), - [anon_sym_expand] = ACTIONS(833), - [anon_sym_for] = ACTIONS(833), - [anon_sym_match] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(831), - [anon_sym_orelse] = ACTIONS(833), - [anon_sym_catch] = ACTIONS(833), - [anon_sym_or] = ACTIONS(833), - [anon_sym_and] = ACTIONS(833), - [anon_sym_EQ_EQ] = ACTIONS(831), - [anon_sym_BANG_EQ] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(831), - [anon_sym_GT] = ACTIONS(833), - [anon_sym_GT_EQ] = ACTIONS(831), - [anon_sym_AMP] = ACTIONS(831), - [anon_sym_xor] = ACTIONS(833), - [anon_sym_LT_LT] = ACTIONS(833), - [anon_sym_GT_GT] = ACTIONS(831), - [anon_sym_LT_LT_PIPE] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(831), - [anon_sym_try] = ACTIONS(833), - [anon_sym_DOT] = ACTIONS(833), - [anon_sym_CARET] = ACTIONS(831), - [anon_sym_true] = ACTIONS(833), - [anon_sym_false] = ACTIONS(833), - [sym_none] = ACTIONS(833), - [sym_undefined] = ACTIONS(833), - [sym_sink] = ACTIONS(833), - [sym_integer] = ACTIONS(833), - [sym_float] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(831), - [sym_multiline_string] = ACTIONS(831), - [sym_character] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(831), - }, - [STATE(750)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_test] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(751)] = { - [sym_argument_list] = STATE(99), - [sym_identifier] = ACTIONS(1593), - [anon_sym_func] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_anyopaque] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_range] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_c_char] = ACTIONS(1593), - [anon_sym_c_schar] = ACTIONS(1593), - [anon_sym_c_uchar] = ACTIONS(1593), - [anon_sym_c_short] = ACTIONS(1593), - [anon_sym_c_ushort] = ACTIONS(1593), - [anon_sym_c_int] = ACTIONS(1593), - [anon_sym_c_uint] = ACTIONS(1593), - [anon_sym_c_long] = ACTIONS(1593), - [anon_sym_c_ulong] = ACTIONS(1593), - [anon_sym_c_longlong] = ACTIONS(1593), - [anon_sym_c_ulonglong] = ACTIONS(1593), - [anon_sym_c_float] = ACTIONS(1593), - [anon_sym_c_double] = ACTIONS(1593), - [anon_sym_c_longdouble] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_AMP_EQ] = ACTIONS(1736), - [anon_sym_PIPE_EQ] = ACTIONS(1736), - [anon_sym_xor_EQ] = ACTIONS(1736), - [anon_sym_LT_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_GT_EQ] = ACTIONS(1736), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_expand] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), - [anon_sym_orelse] = ACTIONS(553), - [anon_sym_catch] = ACTIONS(555), - [anon_sym_or] = ACTIONS(465), - [anon_sym_and] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_xor] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT_PIPE] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_none] = ACTIONS(1593), - [sym_undefined] = ACTIONS(1593), - [sym_sink] = ACTIONS(1593), - [sym_integer] = ACTIONS(1593), - [sym_float] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_multiline_string] = ACTIONS(1597), - [sym_character] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1597), - }, - [STATE(752)] = { - [sym_type] = STATE(3342), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), + [STATE(662)] = { + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_test] = ACTIONS(836), + [anon_sym_hide] = ACTIONS(836), + [anon_sym_func] = ACTIONS(836), + [anon_sym_c_func] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_struct] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_QMARK] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_void] = ACTIONS(836), + [anon_sym_type] = ACTIONS(836), + [anon_sym_anyopaque] = ACTIONS(836), + [anon_sym_bool] = ACTIONS(836), + [anon_sym_int] = ACTIONS(836), + [anon_sym_uint] = ACTIONS(836), + [anon_sym_float] = ACTIONS(836), + [anon_sym_range] = ACTIONS(836), + [anon_sym_i8] = ACTIONS(836), + [anon_sym_i16] = ACTIONS(836), + [anon_sym_i32] = ACTIONS(836), + [anon_sym_i64] = ACTIONS(836), + [anon_sym_u8] = ACTIONS(836), + [anon_sym_u16] = ACTIONS(836), + [anon_sym_u32] = ACTIONS(836), + [anon_sym_u64] = ACTIONS(836), + [anon_sym_isize] = ACTIONS(836), + [anon_sym_usize] = ACTIONS(836), + [anon_sym_f32] = ACTIONS(836), + [anon_sym_f64] = ACTIONS(836), + [anon_sym_c_char] = ACTIONS(836), + [anon_sym_c_schar] = ACTIONS(836), + [anon_sym_c_uchar] = ACTIONS(836), + [anon_sym_c_short] = ACTIONS(836), + [anon_sym_c_ushort] = ACTIONS(836), + [anon_sym_c_int] = ACTIONS(836), + [anon_sym_c_uint] = ACTIONS(836), + [anon_sym_c_long] = ACTIONS(836), + [anon_sym_c_ulong] = ACTIONS(836), + [anon_sym_c_longlong] = ACTIONS(836), + [anon_sym_c_ulonglong] = ACTIONS(836), + [anon_sym_c_float] = ACTIONS(836), + [anon_sym_c_double] = ACTIONS(836), + [anon_sym_c_longdouble] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_defer] = ACTIONS(836), + [anon_sym_errdefer] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_expand] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_match] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [anon_sym_orelse] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_or] = ACTIONS(836), + [anon_sym_and] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), + [anon_sym_xor] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_LT_LT_PIPE] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [sym_none] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [sym_sink] = ACTIONS(836), + [sym_integer] = ACTIONS(836), + [sym_float] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_multiline_string] = ACTIONS(834), + [sym_character] = ACTIONS(834), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(834), + }, + [STATE(663)] = { + [ts_builtin_sym_end] = ACTIONS(738), + [sym_identifier] = ACTIONS(740), + [anon_sym_import] = ACTIONS(740), + [anon_sym_test] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_func] = ACTIONS(740), + [anon_sym_c_func] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(738), + [anon_sym_void] = ACTIONS(740), + [anon_sym_type] = ACTIONS(740), + [anon_sym_anyopaque] = ACTIONS(740), + [anon_sym_bool] = ACTIONS(740), + [anon_sym_int] = ACTIONS(740), + [anon_sym_uint] = ACTIONS(740), + [anon_sym_float] = ACTIONS(740), + [anon_sym_range] = ACTIONS(740), + [anon_sym_i8] = ACTIONS(740), + [anon_sym_i16] = ACTIONS(740), + [anon_sym_i32] = ACTIONS(740), + [anon_sym_i64] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(740), + [anon_sym_u16] = ACTIONS(740), + [anon_sym_u32] = ACTIONS(740), + [anon_sym_u64] = ACTIONS(740), + [anon_sym_isize] = ACTIONS(740), + [anon_sym_usize] = ACTIONS(740), + [anon_sym_f32] = ACTIONS(740), + [anon_sym_f64] = ACTIONS(740), + [anon_sym_c_char] = ACTIONS(740), + [anon_sym_c_schar] = ACTIONS(740), + [anon_sym_c_uchar] = ACTIONS(740), + [anon_sym_c_short] = ACTIONS(740), + [anon_sym_c_ushort] = ACTIONS(740), + [anon_sym_c_int] = ACTIONS(740), + [anon_sym_c_uint] = ACTIONS(740), + [anon_sym_c_long] = ACTIONS(740), + [anon_sym_c_ulong] = ACTIONS(740), + [anon_sym_c_longlong] = ACTIONS(740), + [anon_sym_c_ulonglong] = ACTIONS(740), + [anon_sym_c_float] = ACTIONS(740), + [anon_sym_c_double] = ACTIONS(740), + [anon_sym_c_longdouble] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_defer] = ACTIONS(740), + [anon_sym_errdefer] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_else] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_expand] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(738), + [anon_sym_orelse] = ACTIONS(740), + [anon_sym_catch] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(738), + [anon_sym_BANG_EQ] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(740), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_LT_LT_PIPE] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_try] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [sym_none] = ACTIONS(740), + [sym_undefined] = ACTIONS(740), + [sym_sink] = ACTIONS(740), + [sym_integer] = ACTIONS(740), + [sym_float] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_multiline_string] = ACTIONS(738), + [sym_character] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(738), + }, + [STATE(664)] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), + [anon_sym_import] = ACTIONS(964), + [anon_sym_test] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_func] = ACTIONS(964), + [anon_sym_c_func] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_void] = ACTIONS(964), + [anon_sym_type] = ACTIONS(964), + [anon_sym_anyopaque] = ACTIONS(964), + [anon_sym_bool] = ACTIONS(964), + [anon_sym_int] = ACTIONS(964), + [anon_sym_uint] = ACTIONS(964), + [anon_sym_float] = ACTIONS(964), + [anon_sym_range] = ACTIONS(964), + [anon_sym_i8] = ACTIONS(964), + [anon_sym_i16] = ACTIONS(964), + [anon_sym_i32] = ACTIONS(964), + [anon_sym_i64] = ACTIONS(964), + [anon_sym_u8] = ACTIONS(964), + [anon_sym_u16] = ACTIONS(964), + [anon_sym_u32] = ACTIONS(964), + [anon_sym_u64] = ACTIONS(964), + [anon_sym_isize] = ACTIONS(964), + [anon_sym_usize] = ACTIONS(964), + [anon_sym_f32] = ACTIONS(964), + [anon_sym_f64] = ACTIONS(964), + [anon_sym_c_char] = ACTIONS(964), + [anon_sym_c_schar] = ACTIONS(964), + [anon_sym_c_uchar] = ACTIONS(964), + [anon_sym_c_short] = ACTIONS(964), + [anon_sym_c_ushort] = ACTIONS(964), + [anon_sym_c_int] = ACTIONS(964), + [anon_sym_c_uint] = ACTIONS(964), + [anon_sym_c_long] = ACTIONS(964), + [anon_sym_c_ulong] = ACTIONS(964), + [anon_sym_c_longlong] = ACTIONS(964), + [anon_sym_c_ulonglong] = ACTIONS(964), + [anon_sym_c_float] = ACTIONS(964), + [anon_sym_c_double] = ACTIONS(964), + [anon_sym_c_longdouble] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_yield] = ACTIONS(964), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_defer] = ACTIONS(964), + [anon_sym_errdefer] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_expand] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_orelse] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_LT_LT_PIPE] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [sym_none] = ACTIONS(964), + [sym_undefined] = ACTIONS(964), + [sym_sink] = ACTIONS(964), + [sym_integer] = ACTIONS(964), + [sym_float] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_multiline_string] = ACTIONS(962), + [sym_character] = ACTIONS(962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(962), + }, + [STATE(665)] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_import] = ACTIONS(1116), + [anon_sym_test] = ACTIONS(1116), + [anon_sym_hide] = ACTIONS(1116), + [anon_sym_func] = ACTIONS(1116), + [anon_sym_c_func] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_COMMA] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_QMARK] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_void] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_anyopaque] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_int] = ACTIONS(1116), + [anon_sym_uint] = ACTIONS(1116), + [anon_sym_float] = ACTIONS(1116), + [anon_sym_range] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_c_char] = ACTIONS(1116), + [anon_sym_c_schar] = ACTIONS(1116), + [anon_sym_c_uchar] = ACTIONS(1116), + [anon_sym_c_short] = ACTIONS(1116), + [anon_sym_c_ushort] = ACTIONS(1116), + [anon_sym_c_int] = ACTIONS(1116), + [anon_sym_c_uint] = ACTIONS(1116), + [anon_sym_c_long] = ACTIONS(1116), + [anon_sym_c_ulong] = ACTIONS(1116), + [anon_sym_c_longlong] = ACTIONS(1116), + [anon_sym_c_ulonglong] = ACTIONS(1116), + [anon_sym_c_float] = ACTIONS(1116), + [anon_sym_c_double] = ACTIONS(1116), + [anon_sym_c_longdouble] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1116), + [anon_sym_COLON] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_defer] = ACTIONS(1116), + [anon_sym_errdefer] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_expand] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_DOT_DOT] = ACTIONS(1116), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1114), + [anon_sym_orelse] = ACTIONS(1116), + [anon_sym_catch] = ACTIONS(1116), + [anon_sym_or] = ACTIONS(1116), + [anon_sym_and] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1114), + [anon_sym_BANG_EQ] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_xor] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1114), + [anon_sym_LT_LT_PIPE] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_SLASH] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_none] = ACTIONS(1116), + [sym_undefined] = ACTIONS(1116), + [sym_sink] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_multiline_string] = ACTIONS(1114), + [sym_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1114), + }, + [STATE(666)] = { + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(1122), + [anon_sym_test] = ACTIONS(1122), + [anon_sym_hide] = ACTIONS(1122), + [anon_sym_func] = ACTIONS(1122), + [anon_sym_c_func] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1122), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_anyopaque] = ACTIONS(1122), + [anon_sym_bool] = ACTIONS(1122), + [anon_sym_int] = ACTIONS(1122), + [anon_sym_uint] = ACTIONS(1122), + [anon_sym_float] = ACTIONS(1122), + [anon_sym_range] = ACTIONS(1122), + [anon_sym_i8] = ACTIONS(1122), + [anon_sym_i16] = ACTIONS(1122), + [anon_sym_i32] = ACTIONS(1122), + [anon_sym_i64] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1122), + [anon_sym_u16] = ACTIONS(1122), + [anon_sym_u32] = ACTIONS(1122), + [anon_sym_u64] = ACTIONS(1122), + [anon_sym_isize] = ACTIONS(1122), + [anon_sym_usize] = ACTIONS(1122), + [anon_sym_f32] = ACTIONS(1122), + [anon_sym_f64] = ACTIONS(1122), + [anon_sym_c_char] = ACTIONS(1122), + [anon_sym_c_schar] = ACTIONS(1122), + [anon_sym_c_uchar] = ACTIONS(1122), + [anon_sym_c_short] = ACTIONS(1122), + [anon_sym_c_ushort] = ACTIONS(1122), + [anon_sym_c_int] = ACTIONS(1122), + [anon_sym_c_uint] = ACTIONS(1122), + [anon_sym_c_long] = ACTIONS(1122), + [anon_sym_c_ulong] = ACTIONS(1122), + [anon_sym_c_longlong] = ACTIONS(1122), + [anon_sym_c_ulonglong] = ACTIONS(1122), + [anon_sym_c_float] = ACTIONS(1122), + [anon_sym_c_double] = ACTIONS(1122), + [anon_sym_c_longdouble] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_defer] = ACTIONS(1122), + [anon_sym_errdefer] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_expand] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_match] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1120), + [anon_sym_orelse] = ACTIONS(1122), + [anon_sym_catch] = ACTIONS(1122), + [anon_sym_or] = ACTIONS(1122), + [anon_sym_and] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_xor] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_LT_LT_PIPE] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_try] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_CARET] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1122), + [anon_sym_false] = ACTIONS(1122), + [sym_none] = ACTIONS(1122), + [sym_undefined] = ACTIONS(1122), + [sym_sink] = ACTIONS(1122), + [sym_integer] = ACTIONS(1122), + [sym_float] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_multiline_string] = ACTIONS(1120), + [sym_character] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1120), + }, + [STATE(667)] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(968), + [anon_sym_import] = ACTIONS(968), + [anon_sym_test] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_func] = ACTIONS(968), + [anon_sym_c_func] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_void] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_anyopaque] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_int] = ACTIONS(968), + [anon_sym_uint] = ACTIONS(968), + [anon_sym_float] = ACTIONS(968), + [anon_sym_range] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_c_char] = ACTIONS(968), + [anon_sym_c_schar] = ACTIONS(968), + [anon_sym_c_uchar] = ACTIONS(968), + [anon_sym_c_short] = ACTIONS(968), + [anon_sym_c_ushort] = ACTIONS(968), + [anon_sym_c_int] = ACTIONS(968), + [anon_sym_c_uint] = ACTIONS(968), + [anon_sym_c_long] = ACTIONS(968), + [anon_sym_c_ulong] = ACTIONS(968), + [anon_sym_c_longlong] = ACTIONS(968), + [anon_sym_c_ulonglong] = ACTIONS(968), + [anon_sym_c_float] = ACTIONS(968), + [anon_sym_c_double] = ACTIONS(968), + [anon_sym_c_longdouble] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_defer] = ACTIONS(968), + [anon_sym_errdefer] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_expand] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_orelse] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_LT_LT_PIPE] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [sym_none] = ACTIONS(968), + [sym_undefined] = ACTIONS(968), + [sym_sink] = ACTIONS(968), + [sym_integer] = ACTIONS(968), + [sym_float] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_multiline_string] = ACTIONS(966), + [sym_character] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(966), + }, + [STATE(668)] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(972), + [anon_sym_import] = ACTIONS(972), + [anon_sym_test] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_func] = ACTIONS(972), + [anon_sym_c_func] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_void] = ACTIONS(972), + [anon_sym_type] = ACTIONS(972), + [anon_sym_anyopaque] = ACTIONS(972), + [anon_sym_bool] = ACTIONS(972), + [anon_sym_int] = ACTIONS(972), + [anon_sym_uint] = ACTIONS(972), + [anon_sym_float] = ACTIONS(972), + [anon_sym_range] = ACTIONS(972), + [anon_sym_i8] = ACTIONS(972), + [anon_sym_i16] = ACTIONS(972), + [anon_sym_i32] = ACTIONS(972), + [anon_sym_i64] = ACTIONS(972), + [anon_sym_u8] = ACTIONS(972), + [anon_sym_u16] = ACTIONS(972), + [anon_sym_u32] = ACTIONS(972), + [anon_sym_u64] = ACTIONS(972), + [anon_sym_isize] = ACTIONS(972), + [anon_sym_usize] = ACTIONS(972), + [anon_sym_f32] = ACTIONS(972), + [anon_sym_f64] = ACTIONS(972), + [anon_sym_c_char] = ACTIONS(972), + [anon_sym_c_schar] = ACTIONS(972), + [anon_sym_c_uchar] = ACTIONS(972), + [anon_sym_c_short] = ACTIONS(972), + [anon_sym_c_ushort] = ACTIONS(972), + [anon_sym_c_int] = ACTIONS(972), + [anon_sym_c_uint] = ACTIONS(972), + [anon_sym_c_long] = ACTIONS(972), + [anon_sym_c_ulong] = ACTIONS(972), + [anon_sym_c_longlong] = ACTIONS(972), + [anon_sym_c_ulonglong] = ACTIONS(972), + [anon_sym_c_float] = ACTIONS(972), + [anon_sym_c_double] = ACTIONS(972), + [anon_sym_c_longdouble] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_COLON] = ACTIONS(970), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_defer] = ACTIONS(972), + [anon_sym_errdefer] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_expand] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_orelse] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(970), + [anon_sym_LT_LT_PIPE] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [sym_none] = ACTIONS(972), + [sym_undefined] = ACTIONS(972), + [sym_sink] = ACTIONS(972), + [sym_integer] = ACTIONS(972), + [sym_float] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_multiline_string] = ACTIONS(970), + [sym_character] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(970), + }, + [STATE(669)] = { + [ts_builtin_sym_end] = ACTIONS(788), + [sym_identifier] = ACTIONS(790), + [anon_sym_import] = ACTIONS(790), + [anon_sym_test] = ACTIONS(790), + [anon_sym_hide] = ACTIONS(790), + [anon_sym_func] = ACTIONS(790), + [anon_sym_c_func] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_struct] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_void] = ACTIONS(790), + [anon_sym_type] = ACTIONS(790), + [anon_sym_anyopaque] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_int] = ACTIONS(790), + [anon_sym_uint] = ACTIONS(790), + [anon_sym_float] = ACTIONS(790), + [anon_sym_range] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_c_char] = ACTIONS(790), + [anon_sym_c_schar] = ACTIONS(790), + [anon_sym_c_uchar] = ACTIONS(790), + [anon_sym_c_short] = ACTIONS(790), + [anon_sym_c_ushort] = ACTIONS(790), + [anon_sym_c_int] = ACTIONS(790), + [anon_sym_c_uint] = ACTIONS(790), + [anon_sym_c_long] = ACTIONS(790), + [anon_sym_c_ulong] = ACTIONS(790), + [anon_sym_c_longlong] = ACTIONS(790), + [anon_sym_c_ulonglong] = ACTIONS(790), + [anon_sym_c_float] = ACTIONS(790), + [anon_sym_c_double] = ACTIONS(790), + [anon_sym_c_longdouble] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_COLON] = ACTIONS(788), + [anon_sym_break] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_defer] = ACTIONS(790), + [anon_sym_errdefer] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_else] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_expand] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_match] = ACTIONS(790), + [anon_sym_DOT_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_orelse] = ACTIONS(790), + [anon_sym_catch] = ACTIONS(790), + [anon_sym_or] = ACTIONS(790), + [anon_sym_and] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(788), + [anon_sym_xor] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_LT_LT_PIPE] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(788), + [anon_sym_true] = ACTIONS(790), + [anon_sym_false] = ACTIONS(790), + [sym_none] = ACTIONS(790), + [sym_undefined] = ACTIONS(790), + [sym_sink] = ACTIONS(790), + [sym_integer] = ACTIONS(790), + [sym_float] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_multiline_string] = ACTIONS(788), + [sym_character] = ACTIONS(788), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(788), + }, + [STATE(670)] = { + [ts_builtin_sym_end] = ACTIONS(383), + [sym_identifier] = ACTIONS(381), + [anon_sym_import] = ACTIONS(381), + [anon_sym_test] = ACTIONS(381), + [anon_sym_hide] = ACTIONS(381), [anon_sym_func] = ACTIONS(381), [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_struct] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_AT] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_void] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), + [anon_sym_anyopaque] = ACTIONS(381), + [anon_sym_bool] = ACTIONS(381), + [anon_sym_int] = ACTIONS(381), + [anon_sym_uint] = ACTIONS(381), + [anon_sym_float] = ACTIONS(381), + [anon_sym_range] = ACTIONS(381), + [anon_sym_i8] = ACTIONS(381), + [anon_sym_i16] = ACTIONS(381), + [anon_sym_i32] = ACTIONS(381), + [anon_sym_i64] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(381), + [anon_sym_u16] = ACTIONS(381), + [anon_sym_u32] = ACTIONS(381), + [anon_sym_u64] = ACTIONS(381), + [anon_sym_isize] = ACTIONS(381), + [anon_sym_usize] = ACTIONS(381), + [anon_sym_f32] = ACTIONS(381), + [anon_sym_f64] = ACTIONS(381), + [anon_sym_c_char] = ACTIONS(381), + [anon_sym_c_schar] = ACTIONS(381), + [anon_sym_c_uchar] = ACTIONS(381), + [anon_sym_c_short] = ACTIONS(381), + [anon_sym_c_ushort] = ACTIONS(381), + [anon_sym_c_int] = ACTIONS(381), + [anon_sym_c_uint] = ACTIONS(381), + [anon_sym_c_long] = ACTIONS(381), + [anon_sym_c_ulong] = ACTIONS(381), + [anon_sym_c_longlong] = ACTIONS(381), + [anon_sym_c_ulonglong] = ACTIONS(381), + [anon_sym_c_float] = ACTIONS(381), + [anon_sym_c_double] = ACTIONS(381), + [anon_sym_c_longdouble] = ACTIONS(381), + [anon_sym_return] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(383), + [anon_sym_break] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_defer] = ACTIONS(381), + [anon_sym_errdefer] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(381), + [anon_sym_while] = ACTIONS(381), + [anon_sym_expand] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_match] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_orelse] = ACTIONS(381), + [anon_sym_catch] = ACTIONS(381), + [anon_sym_or] = ACTIONS(381), + [anon_sym_and] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_xor] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_LT_LT_PIPE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_try] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_true] = ACTIONS(381), + [anon_sym_false] = ACTIONS(381), + [sym_none] = ACTIONS(381), + [sym_undefined] = ACTIONS(381), + [sym_sink] = ACTIONS(381), + [sym_integer] = ACTIONS(381), + [sym_float] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_multiline_string] = ACTIONS(383), + [sym_character] = ACTIONS(383), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(383), + }, + [STATE(671)] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [anon_sym_import] = ACTIONS(976), + [anon_sym_test] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_func] = ACTIONS(976), + [anon_sym_c_func] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_void] = ACTIONS(976), + [anon_sym_type] = ACTIONS(976), + [anon_sym_anyopaque] = ACTIONS(976), + [anon_sym_bool] = ACTIONS(976), + [anon_sym_int] = ACTIONS(976), + [anon_sym_uint] = ACTIONS(976), + [anon_sym_float] = ACTIONS(976), + [anon_sym_range] = ACTIONS(976), + [anon_sym_i8] = ACTIONS(976), + [anon_sym_i16] = ACTIONS(976), + [anon_sym_i32] = ACTIONS(976), + [anon_sym_i64] = ACTIONS(976), + [anon_sym_u8] = ACTIONS(976), + [anon_sym_u16] = ACTIONS(976), + [anon_sym_u32] = ACTIONS(976), + [anon_sym_u64] = ACTIONS(976), + [anon_sym_isize] = ACTIONS(976), + [anon_sym_usize] = ACTIONS(976), + [anon_sym_f32] = ACTIONS(976), + [anon_sym_f64] = ACTIONS(976), + [anon_sym_c_char] = ACTIONS(976), + [anon_sym_c_schar] = ACTIONS(976), + [anon_sym_c_uchar] = ACTIONS(976), + [anon_sym_c_short] = ACTIONS(976), + [anon_sym_c_ushort] = ACTIONS(976), + [anon_sym_c_int] = ACTIONS(976), + [anon_sym_c_uint] = ACTIONS(976), + [anon_sym_c_long] = ACTIONS(976), + [anon_sym_c_ulong] = ACTIONS(976), + [anon_sym_c_longlong] = ACTIONS(976), + [anon_sym_c_ulonglong] = ACTIONS(976), + [anon_sym_c_float] = ACTIONS(976), + [anon_sym_c_double] = ACTIONS(976), + [anon_sym_c_longdouble] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(976), + [anon_sym_COLON] = ACTIONS(974), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_defer] = ACTIONS(976), + [anon_sym_errdefer] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_expand] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_orelse] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_or] = ACTIONS(976), + [anon_sym_and] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_xor] = ACTIONS(976), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_LT_LT_PIPE] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(974), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [sym_none] = ACTIONS(976), + [sym_undefined] = ACTIONS(976), + [sym_sink] = ACTIONS(976), + [sym_integer] = ACTIONS(976), + [sym_float] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_multiline_string] = ACTIONS(974), + [sym_character] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(974), + }, + [STATE(672)] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(980), + [anon_sym_import] = ACTIONS(980), + [anon_sym_test] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_func] = ACTIONS(980), + [anon_sym_c_func] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_void] = ACTIONS(980), + [anon_sym_type] = ACTIONS(980), + [anon_sym_anyopaque] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_int] = ACTIONS(980), + [anon_sym_uint] = ACTIONS(980), + [anon_sym_float] = ACTIONS(980), + [anon_sym_range] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_c_char] = ACTIONS(980), + [anon_sym_c_schar] = ACTIONS(980), + [anon_sym_c_uchar] = ACTIONS(980), + [anon_sym_c_short] = ACTIONS(980), + [anon_sym_c_ushort] = ACTIONS(980), + [anon_sym_c_int] = ACTIONS(980), + [anon_sym_c_uint] = ACTIONS(980), + [anon_sym_c_long] = ACTIONS(980), + [anon_sym_c_ulong] = ACTIONS(980), + [anon_sym_c_longlong] = ACTIONS(980), + [anon_sym_c_ulonglong] = ACTIONS(980), + [anon_sym_c_float] = ACTIONS(980), + [anon_sym_c_double] = ACTIONS(980), + [anon_sym_c_longdouble] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(980), + [anon_sym_COLON] = ACTIONS(978), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_defer] = ACTIONS(980), + [anon_sym_errdefer] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_expand] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_orelse] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(978), + [anon_sym_BANG_EQ] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(978), + [anon_sym_LT_LT_PIPE] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_SLASH] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(978), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [sym_none] = ACTIONS(980), + [sym_undefined] = ACTIONS(980), + [sym_sink] = ACTIONS(980), + [sym_integer] = ACTIONS(980), + [sym_float] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_multiline_string] = ACTIONS(978), + [sym_character] = ACTIONS(978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(978), + }, + [STATE(673)] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [anon_sym_import] = ACTIONS(984), + [anon_sym_test] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_func] = ACTIONS(984), + [anon_sym_c_func] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_AT] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_void] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_anyopaque] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_int] = ACTIONS(984), + [anon_sym_uint] = ACTIONS(984), + [anon_sym_float] = ACTIONS(984), + [anon_sym_range] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_c_char] = ACTIONS(984), + [anon_sym_c_schar] = ACTIONS(984), + [anon_sym_c_uchar] = ACTIONS(984), + [anon_sym_c_short] = ACTIONS(984), + [anon_sym_c_ushort] = ACTIONS(984), + [anon_sym_c_int] = ACTIONS(984), + [anon_sym_c_uint] = ACTIONS(984), + [anon_sym_c_long] = ACTIONS(984), + [anon_sym_c_ulong] = ACTIONS(984), + [anon_sym_c_longlong] = ACTIONS(984), + [anon_sym_c_ulonglong] = ACTIONS(984), + [anon_sym_c_float] = ACTIONS(984), + [anon_sym_c_double] = ACTIONS(984), + [anon_sym_c_longdouble] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(984), + [anon_sym_COLON] = ACTIONS(982), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_defer] = ACTIONS(984), + [anon_sym_errdefer] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_expand] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_orelse] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_LT_LT_PIPE] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [sym_none] = ACTIONS(984), + [sym_undefined] = ACTIONS(984), + [sym_sink] = ACTIONS(984), + [sym_integer] = ACTIONS(984), + [sym_float] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_multiline_string] = ACTIONS(982), + [sym_character] = ACTIONS(982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(982), + }, + [STATE(674)] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [anon_sym_import] = ACTIONS(988), + [anon_sym_test] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_func] = ACTIONS(988), + [anon_sym_c_func] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_void] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_anyopaque] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_int] = ACTIONS(988), + [anon_sym_uint] = ACTIONS(988), + [anon_sym_float] = ACTIONS(988), + [anon_sym_range] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_c_char] = ACTIONS(988), + [anon_sym_c_schar] = ACTIONS(988), + [anon_sym_c_uchar] = ACTIONS(988), + [anon_sym_c_short] = ACTIONS(988), + [anon_sym_c_ushort] = ACTIONS(988), + [anon_sym_c_int] = ACTIONS(988), + [anon_sym_c_uint] = ACTIONS(988), + [anon_sym_c_long] = ACTIONS(988), + [anon_sym_c_ulong] = ACTIONS(988), + [anon_sym_c_longlong] = ACTIONS(988), + [anon_sym_c_ulonglong] = ACTIONS(988), + [anon_sym_c_float] = ACTIONS(988), + [anon_sym_c_double] = ACTIONS(988), + [anon_sym_c_longdouble] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_COLON] = ACTIONS(986), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_defer] = ACTIONS(988), + [anon_sym_errdefer] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_expand] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_orelse] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(986), + [anon_sym_LT_LT_PIPE] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [sym_none] = ACTIONS(988), + [sym_undefined] = ACTIONS(988), + [sym_sink] = ACTIONS(988), + [sym_integer] = ACTIONS(988), + [sym_float] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_multiline_string] = ACTIONS(986), + [sym_character] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(986), + }, + [STATE(675)] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [anon_sym_import] = ACTIONS(992), + [anon_sym_test] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_func] = ACTIONS(992), + [anon_sym_c_func] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_QMARK] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_void] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_anyopaque] = ACTIONS(992), + [anon_sym_bool] = ACTIONS(992), + [anon_sym_int] = ACTIONS(992), + [anon_sym_uint] = ACTIONS(992), + [anon_sym_float] = ACTIONS(992), + [anon_sym_range] = ACTIONS(992), + [anon_sym_i8] = ACTIONS(992), + [anon_sym_i16] = ACTIONS(992), + [anon_sym_i32] = ACTIONS(992), + [anon_sym_i64] = ACTIONS(992), + [anon_sym_u8] = ACTIONS(992), + [anon_sym_u16] = ACTIONS(992), + [anon_sym_u32] = ACTIONS(992), + [anon_sym_u64] = ACTIONS(992), + [anon_sym_isize] = ACTIONS(992), + [anon_sym_usize] = ACTIONS(992), + [anon_sym_f32] = ACTIONS(992), + [anon_sym_f64] = ACTIONS(992), + [anon_sym_c_char] = ACTIONS(992), + [anon_sym_c_schar] = ACTIONS(992), + [anon_sym_c_uchar] = ACTIONS(992), + [anon_sym_c_short] = ACTIONS(992), + [anon_sym_c_ushort] = ACTIONS(992), + [anon_sym_c_int] = ACTIONS(992), + [anon_sym_c_uint] = ACTIONS(992), + [anon_sym_c_long] = ACTIONS(992), + [anon_sym_c_ulong] = ACTIONS(992), + [anon_sym_c_longlong] = ACTIONS(992), + [anon_sym_c_ulonglong] = ACTIONS(992), + [anon_sym_c_float] = ACTIONS(992), + [anon_sym_c_double] = ACTIONS(992), + [anon_sym_c_longdouble] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(992), + [anon_sym_COLON] = ACTIONS(990), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_defer] = ACTIONS(992), + [anon_sym_errdefer] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_expand] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_orelse] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(990), + [anon_sym_BANG_EQ] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_LT_LT_PIPE] = ACTIONS(990), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_SLASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [sym_none] = ACTIONS(992), + [sym_undefined] = ACTIONS(992), + [sym_sink] = ACTIONS(992), + [sym_integer] = ACTIONS(992), + [sym_float] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_multiline_string] = ACTIONS(990), + [sym_character] = ACTIONS(990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(990), + }, + [STATE(676)] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_test] = ACTIONS(996), + [anon_sym_hide] = ACTIONS(996), + [anon_sym_func] = ACTIONS(996), + [anon_sym_c_func] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_void] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_anyopaque] = ACTIONS(996), + [anon_sym_bool] = ACTIONS(996), + [anon_sym_int] = ACTIONS(996), + [anon_sym_uint] = ACTIONS(996), + [anon_sym_float] = ACTIONS(996), + [anon_sym_range] = ACTIONS(996), + [anon_sym_i8] = ACTIONS(996), + [anon_sym_i16] = ACTIONS(996), + [anon_sym_i32] = ACTIONS(996), + [anon_sym_i64] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(996), + [anon_sym_u16] = ACTIONS(996), + [anon_sym_u32] = ACTIONS(996), + [anon_sym_u64] = ACTIONS(996), + [anon_sym_isize] = ACTIONS(996), + [anon_sym_usize] = ACTIONS(996), + [anon_sym_f32] = ACTIONS(996), + [anon_sym_f64] = ACTIONS(996), + [anon_sym_c_char] = ACTIONS(996), + [anon_sym_c_schar] = ACTIONS(996), + [anon_sym_c_uchar] = ACTIONS(996), + [anon_sym_c_short] = ACTIONS(996), + [anon_sym_c_ushort] = ACTIONS(996), + [anon_sym_c_int] = ACTIONS(996), + [anon_sym_c_uint] = ACTIONS(996), + [anon_sym_c_long] = ACTIONS(996), + [anon_sym_c_ulong] = ACTIONS(996), + [anon_sym_c_longlong] = ACTIONS(996), + [anon_sym_c_ulonglong] = ACTIONS(996), + [anon_sym_c_float] = ACTIONS(996), + [anon_sym_c_double] = ACTIONS(996), + [anon_sym_c_longdouble] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(996), + [anon_sym_COLON] = ACTIONS(994), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_defer] = ACTIONS(996), + [anon_sym_errdefer] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_expand] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_orelse] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_LT_LT_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [sym_none] = ACTIONS(996), + [sym_undefined] = ACTIONS(996), + [sym_sink] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [sym_float] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_multiline_string] = ACTIONS(994), + [sym_character] = ACTIONS(994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(994), + }, + [STATE(677)] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(1000), + [anon_sym_test] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_func] = ACTIONS(1000), + [anon_sym_c_func] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1000), + [anon_sym_type] = ACTIONS(1000), + [anon_sym_anyopaque] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(1000), + [anon_sym_uint] = ACTIONS(1000), + [anon_sym_float] = ACTIONS(1000), + [anon_sym_range] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_c_char] = ACTIONS(1000), + [anon_sym_c_schar] = ACTIONS(1000), + [anon_sym_c_uchar] = ACTIONS(1000), + [anon_sym_c_short] = ACTIONS(1000), + [anon_sym_c_ushort] = ACTIONS(1000), + [anon_sym_c_int] = ACTIONS(1000), + [anon_sym_c_uint] = ACTIONS(1000), + [anon_sym_c_long] = ACTIONS(1000), + [anon_sym_c_ulong] = ACTIONS(1000), + [anon_sym_c_longlong] = ACTIONS(1000), + [anon_sym_c_ulonglong] = ACTIONS(1000), + [anon_sym_c_float] = ACTIONS(1000), + [anon_sym_c_double] = ACTIONS(1000), + [anon_sym_c_longdouble] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_COLON] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_defer] = ACTIONS(1000), + [anon_sym_errdefer] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_expand] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_orelse] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_or] = ACTIONS(1000), + [anon_sym_and] = ACTIONS(1000), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_LT_LT_PIPE] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [sym_none] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1000), + [sym_sink] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_multiline_string] = ACTIONS(998), + [sym_character] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(998), + }, + [STATE(678)] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(1004), + [anon_sym_test] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_func] = ACTIONS(1004), + [anon_sym_c_func] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_AT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_void] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(1004), + [anon_sym_anyopaque] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_int] = ACTIONS(1004), + [anon_sym_uint] = ACTIONS(1004), + [anon_sym_float] = ACTIONS(1004), + [anon_sym_range] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_c_char] = ACTIONS(1004), + [anon_sym_c_schar] = ACTIONS(1004), + [anon_sym_c_uchar] = ACTIONS(1004), + [anon_sym_c_short] = ACTIONS(1004), + [anon_sym_c_ushort] = ACTIONS(1004), + [anon_sym_c_int] = ACTIONS(1004), + [anon_sym_c_uint] = ACTIONS(1004), + [anon_sym_c_long] = ACTIONS(1004), + [anon_sym_c_ulong] = ACTIONS(1004), + [anon_sym_c_longlong] = ACTIONS(1004), + [anon_sym_c_ulonglong] = ACTIONS(1004), + [anon_sym_c_float] = ACTIONS(1004), + [anon_sym_c_double] = ACTIONS(1004), + [anon_sym_c_longdouble] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_COLON] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_defer] = ACTIONS(1004), + [anon_sym_errdefer] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_expand] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_orelse] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_LT_LT_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [sym_none] = ACTIONS(1004), + [sym_undefined] = ACTIONS(1004), + [sym_sink] = ACTIONS(1004), + [sym_integer] = ACTIONS(1004), + [sym_float] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_multiline_string] = ACTIONS(1002), + [sym_character] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1002), + }, + [STATE(679)] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [anon_sym_import] = ACTIONS(794), + [anon_sym_test] = ACTIONS(794), + [anon_sym_hide] = ACTIONS(794), + [anon_sym_func] = ACTIONS(794), + [anon_sym_c_func] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_void] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_anyopaque] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_int] = ACTIONS(794), + [anon_sym_uint] = ACTIONS(794), + [anon_sym_float] = ACTIONS(794), + [anon_sym_range] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_c_char] = ACTIONS(794), + [anon_sym_c_schar] = ACTIONS(794), + [anon_sym_c_uchar] = ACTIONS(794), + [anon_sym_c_short] = ACTIONS(794), + [anon_sym_c_ushort] = ACTIONS(794), + [anon_sym_c_int] = ACTIONS(794), + [anon_sym_c_uint] = ACTIONS(794), + [anon_sym_c_long] = ACTIONS(794), + [anon_sym_c_ulong] = ACTIONS(794), + [anon_sym_c_longlong] = ACTIONS(794), + [anon_sym_c_ulonglong] = ACTIONS(794), + [anon_sym_c_float] = ACTIONS(794), + [anon_sym_c_double] = ACTIONS(794), + [anon_sym_c_longdouble] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_defer] = ACTIONS(794), + [anon_sym_errdefer] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_expand] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_match] = ACTIONS(794), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(792), + [anon_sym_orelse] = ACTIONS(794), + [anon_sym_catch] = ACTIONS(794), + [anon_sym_or] = ACTIONS(794), + [anon_sym_and] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_xor] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_LT_LT_PIPE] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [sym_none] = ACTIONS(794), + [sym_undefined] = ACTIONS(794), + [sym_sink] = ACTIONS(794), + [sym_integer] = ACTIONS(794), + [sym_float] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [sym_multiline_string] = ACTIONS(792), + [sym_character] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(792), + }, + [STATE(680)] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_test] = ACTIONS(1146), + [anon_sym_hide] = ACTIONS(1146), + [anon_sym_func] = ACTIONS(1146), + [anon_sym_c_func] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_void] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_anyopaque] = ACTIONS(1146), + [anon_sym_bool] = ACTIONS(1146), + [anon_sym_int] = ACTIONS(1146), + [anon_sym_uint] = ACTIONS(1146), + [anon_sym_float] = ACTIONS(1146), + [anon_sym_range] = ACTIONS(1146), + [anon_sym_i8] = ACTIONS(1146), + [anon_sym_i16] = ACTIONS(1146), + [anon_sym_i32] = ACTIONS(1146), + [anon_sym_i64] = ACTIONS(1146), + [anon_sym_u8] = ACTIONS(1146), + [anon_sym_u16] = ACTIONS(1146), + [anon_sym_u32] = ACTIONS(1146), + [anon_sym_u64] = ACTIONS(1146), + [anon_sym_isize] = ACTIONS(1146), + [anon_sym_usize] = ACTIONS(1146), + [anon_sym_f32] = ACTIONS(1146), + [anon_sym_f64] = ACTIONS(1146), + [anon_sym_c_char] = ACTIONS(1146), + [anon_sym_c_schar] = ACTIONS(1146), + [anon_sym_c_uchar] = ACTIONS(1146), + [anon_sym_c_short] = ACTIONS(1146), + [anon_sym_c_ushort] = ACTIONS(1146), + [anon_sym_c_int] = ACTIONS(1146), + [anon_sym_c_uint] = ACTIONS(1146), + [anon_sym_c_long] = ACTIONS(1146), + [anon_sym_c_ulong] = ACTIONS(1146), + [anon_sym_c_longlong] = ACTIONS(1146), + [anon_sym_c_ulonglong] = ACTIONS(1146), + [anon_sym_c_float] = ACTIONS(1146), + [anon_sym_c_double] = ACTIONS(1146), + [anon_sym_c_longdouble] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_COLON] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_defer] = ACTIONS(1146), + [anon_sym_errdefer] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_expand] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_DOT_DOT] = ACTIONS(1146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1144), + [anon_sym_orelse] = ACTIONS(1146), + [anon_sym_catch] = ACTIONS(1146), + [anon_sym_or] = ACTIONS(1146), + [anon_sym_and] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1144), + [anon_sym_BANG_EQ] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_EQ] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_GT_EQ] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_xor] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_LT_LT_PIPE] = ACTIONS(1144), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [sym_none] = ACTIONS(1146), + [sym_undefined] = ACTIONS(1146), + [sym_sink] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [sym_float] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_multiline_string] = ACTIONS(1144), + [sym_character] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1144), + }, + [STATE(681)] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_test] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_func] = ACTIONS(1008), + [anon_sym_c_func] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_AT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_anyopaque] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_uint] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_range] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_c_char] = ACTIONS(1008), + [anon_sym_c_schar] = ACTIONS(1008), + [anon_sym_c_uchar] = ACTIONS(1008), + [anon_sym_c_short] = ACTIONS(1008), + [anon_sym_c_ushort] = ACTIONS(1008), + [anon_sym_c_int] = ACTIONS(1008), + [anon_sym_c_uint] = ACTIONS(1008), + [anon_sym_c_long] = ACTIONS(1008), + [anon_sym_c_ulong] = ACTIONS(1008), + [anon_sym_c_longlong] = ACTIONS(1008), + [anon_sym_c_ulonglong] = ACTIONS(1008), + [anon_sym_c_float] = ACTIONS(1008), + [anon_sym_c_double] = ACTIONS(1008), + [anon_sym_c_longdouble] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_defer] = ACTIONS(1008), + [anon_sym_errdefer] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_expand] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_orelse] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1006), + [anon_sym_LT_LT_PIPE] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [sym_none] = ACTIONS(1008), + [sym_undefined] = ACTIONS(1008), + [sym_sink] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [sym_float] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_multiline_string] = ACTIONS(1006), + [sym_character] = ACTIONS(1006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1006), + }, + [STATE(682)] = { + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_test] = ACTIONS(668), + [anon_sym_hide] = ACTIONS(668), + [anon_sym_func] = ACTIONS(668), + [anon_sym_c_func] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_struct] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_DOLLAR] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_void] = ACTIONS(668), + [anon_sym_type] = ACTIONS(668), + [anon_sym_anyopaque] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_uint] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_range] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_c_char] = ACTIONS(668), + [anon_sym_c_schar] = ACTIONS(668), + [anon_sym_c_uchar] = ACTIONS(668), + [anon_sym_c_short] = ACTIONS(668), + [anon_sym_c_ushort] = ACTIONS(668), + [anon_sym_c_int] = ACTIONS(668), + [anon_sym_c_uint] = ACTIONS(668), + [anon_sym_c_long] = ACTIONS(668), + [anon_sym_c_ulong] = ACTIONS(668), + [anon_sym_c_longlong] = ACTIONS(668), + [anon_sym_c_ulonglong] = ACTIONS(668), + [anon_sym_c_float] = ACTIONS(668), + [anon_sym_c_double] = ACTIONS(668), + [anon_sym_c_longdouble] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_defer] = ACTIONS(668), + [anon_sym_errdefer] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_expand] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_match] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(666), + [anon_sym_orelse] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_xor] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_LT_LT_PIPE] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_true] = ACTIONS(668), + [anon_sym_false] = ACTIONS(668), + [sym_none] = ACTIONS(668), + [sym_undefined] = ACTIONS(668), + [sym_sink] = ACTIONS(668), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_multiline_string] = ACTIONS(666), + [sym_character] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(666), + }, + [STATE(683)] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [anon_sym_import] = ACTIONS(1016), + [anon_sym_test] = ACTIONS(1016), + [anon_sym_hide] = ACTIONS(1016), + [anon_sym_func] = ACTIONS(1016), + [anon_sym_c_func] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_void] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(1016), + [anon_sym_anyopaque] = ACTIONS(1016), + [anon_sym_bool] = ACTIONS(1016), + [anon_sym_int] = ACTIONS(1016), + [anon_sym_uint] = ACTIONS(1016), + [anon_sym_float] = ACTIONS(1016), + [anon_sym_range] = ACTIONS(1016), + [anon_sym_i8] = ACTIONS(1016), + [anon_sym_i16] = ACTIONS(1016), + [anon_sym_i32] = ACTIONS(1016), + [anon_sym_i64] = ACTIONS(1016), + [anon_sym_u8] = ACTIONS(1016), + [anon_sym_u16] = ACTIONS(1016), + [anon_sym_u32] = ACTIONS(1016), + [anon_sym_u64] = ACTIONS(1016), + [anon_sym_isize] = ACTIONS(1016), + [anon_sym_usize] = ACTIONS(1016), + [anon_sym_f32] = ACTIONS(1016), + [anon_sym_f64] = ACTIONS(1016), + [anon_sym_c_char] = ACTIONS(1016), + [anon_sym_c_schar] = ACTIONS(1016), + [anon_sym_c_uchar] = ACTIONS(1016), + [anon_sym_c_short] = ACTIONS(1016), + [anon_sym_c_ushort] = ACTIONS(1016), + [anon_sym_c_int] = ACTIONS(1016), + [anon_sym_c_uint] = ACTIONS(1016), + [anon_sym_c_long] = ACTIONS(1016), + [anon_sym_c_ulong] = ACTIONS(1016), + [anon_sym_c_longlong] = ACTIONS(1016), + [anon_sym_c_ulonglong] = ACTIONS(1016), + [anon_sym_c_float] = ACTIONS(1016), + [anon_sym_c_double] = ACTIONS(1016), + [anon_sym_c_longdouble] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1016), + [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_defer] = ACTIONS(1016), + [anon_sym_errdefer] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_expand] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_orelse] = ACTIONS(1016), + [anon_sym_catch] = ACTIONS(1016), + [anon_sym_or] = ACTIONS(1016), + [anon_sym_and] = ACTIONS(1016), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1016), + [anon_sym_LT_LT] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_LT_LT_PIPE] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1016), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [sym_none] = ACTIONS(1016), + [sym_undefined] = ACTIONS(1016), + [sym_sink] = ACTIONS(1016), + [sym_integer] = ACTIONS(1016), + [sym_float] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_multiline_string] = ACTIONS(1014), + [sym_character] = ACTIONS(1014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1014), + }, + [STATE(684)] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_test] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_func] = ACTIONS(1020), + [anon_sym_c_func] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_QMARK] = ACTIONS(1018), + [anon_sym_AT] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_anyopaque] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_int] = ACTIONS(1020), + [anon_sym_uint] = ACTIONS(1020), + [anon_sym_float] = ACTIONS(1020), + [anon_sym_range] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_c_char] = ACTIONS(1020), + [anon_sym_c_schar] = ACTIONS(1020), + [anon_sym_c_uchar] = ACTIONS(1020), + [anon_sym_c_short] = ACTIONS(1020), + [anon_sym_c_ushort] = ACTIONS(1020), + [anon_sym_c_int] = ACTIONS(1020), + [anon_sym_c_uint] = ACTIONS(1020), + [anon_sym_c_long] = ACTIONS(1020), + [anon_sym_c_ulong] = ACTIONS(1020), + [anon_sym_c_longlong] = ACTIONS(1020), + [anon_sym_c_ulonglong] = ACTIONS(1020), + [anon_sym_c_float] = ACTIONS(1020), + [anon_sym_c_double] = ACTIONS(1020), + [anon_sym_c_longdouble] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_yield] = ACTIONS(1020), + [anon_sym_COLON] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_defer] = ACTIONS(1020), + [anon_sym_errdefer] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_expand] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [anon_sym_orelse] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1018), + [anon_sym_LT_LT_PIPE] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [sym_none] = ACTIONS(1020), + [sym_undefined] = ACTIONS(1020), + [sym_sink] = ACTIONS(1020), + [sym_integer] = ACTIONS(1020), + [sym_float] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_multiline_string] = ACTIONS(1018), + [sym_character] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1018), + }, + [STATE(685)] = { + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [anon_sym_import] = ACTIONS(628), + [anon_sym_test] = ACTIONS(628), + [anon_sym_hide] = ACTIONS(628), + [anon_sym_func] = ACTIONS(628), + [anon_sym_c_func] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_void] = ACTIONS(628), + [anon_sym_type] = ACTIONS(628), + [anon_sym_anyopaque] = ACTIONS(628), + [anon_sym_bool] = ACTIONS(628), + [anon_sym_int] = ACTIONS(628), + [anon_sym_uint] = ACTIONS(628), + [anon_sym_float] = ACTIONS(628), + [anon_sym_range] = ACTIONS(628), + [anon_sym_i8] = ACTIONS(628), + [anon_sym_i16] = ACTIONS(628), + [anon_sym_i32] = ACTIONS(628), + [anon_sym_i64] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(628), + [anon_sym_u16] = ACTIONS(628), + [anon_sym_u32] = ACTIONS(628), + [anon_sym_u64] = ACTIONS(628), + [anon_sym_isize] = ACTIONS(628), + [anon_sym_usize] = ACTIONS(628), + [anon_sym_f32] = ACTIONS(628), + [anon_sym_f64] = ACTIONS(628), + [anon_sym_c_char] = ACTIONS(628), + [anon_sym_c_schar] = ACTIONS(628), + [anon_sym_c_uchar] = ACTIONS(628), + [anon_sym_c_short] = ACTIONS(628), + [anon_sym_c_ushort] = ACTIONS(628), + [anon_sym_c_int] = ACTIONS(628), + [anon_sym_c_uint] = ACTIONS(628), + [anon_sym_c_long] = ACTIONS(628), + [anon_sym_c_ulong] = ACTIONS(628), + [anon_sym_c_longlong] = ACTIONS(628), + [anon_sym_c_ulonglong] = ACTIONS(628), + [anon_sym_c_float] = ACTIONS(628), + [anon_sym_c_double] = ACTIONS(628), + [anon_sym_c_longdouble] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_defer] = ACTIONS(628), + [anon_sym_errdefer] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_expand] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_match] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(626), + [anon_sym_orelse] = ACTIONS(628), + [anon_sym_catch] = ACTIONS(628), + [anon_sym_or] = ACTIONS(628), + [anon_sym_and] = ACTIONS(628), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_xor] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(628), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_LT_LT_PIPE] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_try] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(628), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_true] = ACTIONS(628), + [anon_sym_false] = ACTIONS(628), + [sym_none] = ACTIONS(628), + [sym_undefined] = ACTIONS(628), + [sym_sink] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_multiline_string] = ACTIONS(626), + [sym_character] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(626), + }, + [STATE(686)] = { + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(840), + [anon_sym_import] = ACTIONS(840), + [anon_sym_test] = ACTIONS(840), + [anon_sym_hide] = ACTIONS(840), + [anon_sym_func] = ACTIONS(840), + [anon_sym_c_func] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_struct] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_void] = ACTIONS(840), + [anon_sym_type] = ACTIONS(840), + [anon_sym_anyopaque] = ACTIONS(840), + [anon_sym_bool] = ACTIONS(840), + [anon_sym_int] = ACTIONS(840), + [anon_sym_uint] = ACTIONS(840), + [anon_sym_float] = ACTIONS(840), + [anon_sym_range] = ACTIONS(840), + [anon_sym_i8] = ACTIONS(840), + [anon_sym_i16] = ACTIONS(840), + [anon_sym_i32] = ACTIONS(840), + [anon_sym_i64] = ACTIONS(840), + [anon_sym_u8] = ACTIONS(840), + [anon_sym_u16] = ACTIONS(840), + [anon_sym_u32] = ACTIONS(840), + [anon_sym_u64] = ACTIONS(840), + [anon_sym_isize] = ACTIONS(840), + [anon_sym_usize] = ACTIONS(840), + [anon_sym_f32] = ACTIONS(840), + [anon_sym_f64] = ACTIONS(840), + [anon_sym_c_char] = ACTIONS(840), + [anon_sym_c_schar] = ACTIONS(840), + [anon_sym_c_uchar] = ACTIONS(840), + [anon_sym_c_short] = ACTIONS(840), + [anon_sym_c_ushort] = ACTIONS(840), + [anon_sym_c_int] = ACTIONS(840), + [anon_sym_c_uint] = ACTIONS(840), + [anon_sym_c_long] = ACTIONS(840), + [anon_sym_c_ulong] = ACTIONS(840), + [anon_sym_c_longlong] = ACTIONS(840), + [anon_sym_c_ulonglong] = ACTIONS(840), + [anon_sym_c_float] = ACTIONS(840), + [anon_sym_c_double] = ACTIONS(840), + [anon_sym_c_longdouble] = ACTIONS(840), + [anon_sym_return] = ACTIONS(840), + [anon_sym_yield] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(838), + [anon_sym_break] = ACTIONS(840), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_defer] = ACTIONS(840), + [anon_sym_errdefer] = ACTIONS(840), + [anon_sym_if] = ACTIONS(840), + [anon_sym_else] = ACTIONS(840), + [anon_sym_while] = ACTIONS(840), + [anon_sym_expand] = ACTIONS(840), + [anon_sym_for] = ACTIONS(840), + [anon_sym_match] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [anon_sym_orelse] = ACTIONS(840), + [anon_sym_catch] = ACTIONS(840), + [anon_sym_or] = ACTIONS(840), + [anon_sym_and] = ACTIONS(840), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_xor] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(840), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_LT_LT_PIPE] = ACTIONS(838), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_true] = ACTIONS(840), + [anon_sym_false] = ACTIONS(840), + [sym_none] = ACTIONS(840), + [sym_undefined] = ACTIONS(840), + [sym_sink] = ACTIONS(840), + [sym_integer] = ACTIONS(840), + [sym_float] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_multiline_string] = ACTIONS(838), + [sym_character] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(838), + }, + [STATE(687)] = { + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_test] = ACTIONS(844), + [anon_sym_hide] = ACTIONS(844), + [anon_sym_func] = ACTIONS(844), + [anon_sym_c_func] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_struct] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_void] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_anyopaque] = ACTIONS(844), + [anon_sym_bool] = ACTIONS(844), + [anon_sym_int] = ACTIONS(844), + [anon_sym_uint] = ACTIONS(844), + [anon_sym_float] = ACTIONS(844), + [anon_sym_range] = ACTIONS(844), + [anon_sym_i8] = ACTIONS(844), + [anon_sym_i16] = ACTIONS(844), + [anon_sym_i32] = ACTIONS(844), + [anon_sym_i64] = ACTIONS(844), + [anon_sym_u8] = ACTIONS(844), + [anon_sym_u16] = ACTIONS(844), + [anon_sym_u32] = ACTIONS(844), + [anon_sym_u64] = ACTIONS(844), + [anon_sym_isize] = ACTIONS(844), + [anon_sym_usize] = ACTIONS(844), + [anon_sym_f32] = ACTIONS(844), + [anon_sym_f64] = ACTIONS(844), + [anon_sym_c_char] = ACTIONS(844), + [anon_sym_c_schar] = ACTIONS(844), + [anon_sym_c_uchar] = ACTIONS(844), + [anon_sym_c_short] = ACTIONS(844), + [anon_sym_c_ushort] = ACTIONS(844), + [anon_sym_c_int] = ACTIONS(844), + [anon_sym_c_uint] = ACTIONS(844), + [anon_sym_c_long] = ACTIONS(844), + [anon_sym_c_ulong] = ACTIONS(844), + [anon_sym_c_longlong] = ACTIONS(844), + [anon_sym_c_ulonglong] = ACTIONS(844), + [anon_sym_c_float] = ACTIONS(844), + [anon_sym_c_double] = ACTIONS(844), + [anon_sym_c_longdouble] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_defer] = ACTIONS(844), + [anon_sym_errdefer] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_expand] = ACTIONS(844), + [anon_sym_for] = ACTIONS(844), + [anon_sym_match] = ACTIONS(844), + [anon_sym_DOT_DOT] = ACTIONS(844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [anon_sym_orelse] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_or] = ACTIONS(844), + [anon_sym_and] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_xor] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_LT_LT_PIPE] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [sym_none] = ACTIONS(844), + [sym_undefined] = ACTIONS(844), + [sym_sink] = ACTIONS(844), + [sym_integer] = ACTIONS(844), + [sym_float] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym_multiline_string] = ACTIONS(842), + [sym_character] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(842), + }, + [STATE(688)] = { + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_test] = ACTIONS(746), + [anon_sym_hide] = ACTIONS(746), + [anon_sym_func] = ACTIONS(746), + [anon_sym_c_func] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_struct] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_void] = ACTIONS(746), + [anon_sym_type] = ACTIONS(746), + [anon_sym_anyopaque] = ACTIONS(746), + [anon_sym_bool] = ACTIONS(746), + [anon_sym_int] = ACTIONS(746), + [anon_sym_uint] = ACTIONS(746), + [anon_sym_float] = ACTIONS(746), + [anon_sym_range] = ACTIONS(746), + [anon_sym_i8] = ACTIONS(746), + [anon_sym_i16] = ACTIONS(746), + [anon_sym_i32] = ACTIONS(746), + [anon_sym_i64] = ACTIONS(746), + [anon_sym_u8] = ACTIONS(746), + [anon_sym_u16] = ACTIONS(746), + [anon_sym_u32] = ACTIONS(746), + [anon_sym_u64] = ACTIONS(746), + [anon_sym_isize] = ACTIONS(746), + [anon_sym_usize] = ACTIONS(746), + [anon_sym_f32] = ACTIONS(746), + [anon_sym_f64] = ACTIONS(746), + [anon_sym_c_char] = ACTIONS(746), + [anon_sym_c_schar] = ACTIONS(746), + [anon_sym_c_uchar] = ACTIONS(746), + [anon_sym_c_short] = ACTIONS(746), + [anon_sym_c_ushort] = ACTIONS(746), + [anon_sym_c_int] = ACTIONS(746), + [anon_sym_c_uint] = ACTIONS(746), + [anon_sym_c_long] = ACTIONS(746), + [anon_sym_c_ulong] = ACTIONS(746), + [anon_sym_c_longlong] = ACTIONS(746), + [anon_sym_c_ulonglong] = ACTIONS(746), + [anon_sym_c_float] = ACTIONS(746), + [anon_sym_c_double] = ACTIONS(746), + [anon_sym_c_longdouble] = ACTIONS(746), + [anon_sym_return] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(746), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_break] = ACTIONS(746), + [anon_sym_continue] = ACTIONS(746), + [anon_sym_defer] = ACTIONS(746), + [anon_sym_errdefer] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_else] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_expand] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_match] = ACTIONS(746), + [anon_sym_DOT_DOT] = ACTIONS(746), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [anon_sym_orelse] = ACTIONS(746), + [anon_sym_catch] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(746), + [anon_sym_LT_LT] = ACTIONS(746), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_LT_LT_PIPE] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_try] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_true] = ACTIONS(746), + [anon_sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_sink] = ACTIONS(746), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym_multiline_string] = ACTIONS(744), + [sym_character] = ACTIONS(744), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(744), + }, + [STATE(689)] = { + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_test] = ACTIONS(750), + [anon_sym_hide] = ACTIONS(750), + [anon_sym_func] = ACTIONS(750), + [anon_sym_c_func] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_struct] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_void] = ACTIONS(750), + [anon_sym_type] = ACTIONS(750), + [anon_sym_anyopaque] = ACTIONS(750), + [anon_sym_bool] = ACTIONS(750), + [anon_sym_int] = ACTIONS(750), + [anon_sym_uint] = ACTIONS(750), + [anon_sym_float] = ACTIONS(750), + [anon_sym_range] = ACTIONS(750), + [anon_sym_i8] = ACTIONS(750), + [anon_sym_i16] = ACTIONS(750), + [anon_sym_i32] = ACTIONS(750), + [anon_sym_i64] = ACTIONS(750), + [anon_sym_u8] = ACTIONS(750), + [anon_sym_u16] = ACTIONS(750), + [anon_sym_u32] = ACTIONS(750), + [anon_sym_u64] = ACTIONS(750), + [anon_sym_isize] = ACTIONS(750), + [anon_sym_usize] = ACTIONS(750), + [anon_sym_f32] = ACTIONS(750), + [anon_sym_f64] = ACTIONS(750), + [anon_sym_c_char] = ACTIONS(750), + [anon_sym_c_schar] = ACTIONS(750), + [anon_sym_c_uchar] = ACTIONS(750), + [anon_sym_c_short] = ACTIONS(750), + [anon_sym_c_ushort] = ACTIONS(750), + [anon_sym_c_int] = ACTIONS(750), + [anon_sym_c_uint] = ACTIONS(750), + [anon_sym_c_long] = ACTIONS(750), + [anon_sym_c_ulong] = ACTIONS(750), + [anon_sym_c_longlong] = ACTIONS(750), + [anon_sym_c_ulonglong] = ACTIONS(750), + [anon_sym_c_float] = ACTIONS(750), + [anon_sym_c_double] = ACTIONS(750), + [anon_sym_c_longdouble] = ACTIONS(750), + [anon_sym_return] = ACTIONS(750), + [anon_sym_yield] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(748), + [anon_sym_break] = ACTIONS(750), + [anon_sym_continue] = ACTIONS(750), + [anon_sym_defer] = ACTIONS(750), + [anon_sym_errdefer] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_else] = ACTIONS(750), + [anon_sym_while] = ACTIONS(750), + [anon_sym_expand] = ACTIONS(750), + [anon_sym_for] = ACTIONS(750), + [anon_sym_match] = ACTIONS(750), + [anon_sym_DOT_DOT] = ACTIONS(750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [anon_sym_orelse] = ACTIONS(750), + [anon_sym_catch] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(748), + [anon_sym_LT_LT_PIPE] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_try] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), + [sym_sink] = ACTIONS(750), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_multiline_string] = ACTIONS(748), + [sym_character] = ACTIONS(748), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(748), + }, + [STATE(690)] = { + [ts_builtin_sym_end] = ACTIONS(756), + [sym_identifier] = ACTIONS(758), + [anon_sym_import] = ACTIONS(758), + [anon_sym_test] = ACTIONS(758), + [anon_sym_hide] = ACTIONS(758), + [anon_sym_func] = ACTIONS(758), + [anon_sym_c_func] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_void] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_anyopaque] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_int] = ACTIONS(758), + [anon_sym_uint] = ACTIONS(758), + [anon_sym_float] = ACTIONS(758), + [anon_sym_range] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_c_char] = ACTIONS(758), + [anon_sym_c_schar] = ACTIONS(758), + [anon_sym_c_uchar] = ACTIONS(758), + [anon_sym_c_short] = ACTIONS(758), + [anon_sym_c_ushort] = ACTIONS(758), + [anon_sym_c_int] = ACTIONS(758), + [anon_sym_c_uint] = ACTIONS(758), + [anon_sym_c_long] = ACTIONS(758), + [anon_sym_c_ulong] = ACTIONS(758), + [anon_sym_c_longlong] = ACTIONS(758), + [anon_sym_c_ulonglong] = ACTIONS(758), + [anon_sym_c_float] = ACTIONS(758), + [anon_sym_c_double] = ACTIONS(758), + [anon_sym_c_longdouble] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(756), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_defer] = ACTIONS(758), + [anon_sym_errdefer] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_else] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_expand] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [anon_sym_orelse] = ACTIONS(758), + [anon_sym_catch] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_LT_LT_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_try] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_none] = ACTIONS(758), + [sym_undefined] = ACTIONS(758), + [sym_sink] = ACTIONS(758), + [sym_integer] = ACTIONS(758), + [sym_float] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_multiline_string] = ACTIONS(756), + [sym_character] = ACTIONS(756), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(756), + }, + [STATE(691)] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1024), + [anon_sym_import] = ACTIONS(1024), + [anon_sym_test] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_func] = ACTIONS(1024), + [anon_sym_c_func] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_anyopaque] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_int] = ACTIONS(1024), + [anon_sym_uint] = ACTIONS(1024), + [anon_sym_float] = ACTIONS(1024), + [anon_sym_range] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_c_char] = ACTIONS(1024), + [anon_sym_c_schar] = ACTIONS(1024), + [anon_sym_c_uchar] = ACTIONS(1024), + [anon_sym_c_short] = ACTIONS(1024), + [anon_sym_c_ushort] = ACTIONS(1024), + [anon_sym_c_int] = ACTIONS(1024), + [anon_sym_c_uint] = ACTIONS(1024), + [anon_sym_c_long] = ACTIONS(1024), + [anon_sym_c_ulong] = ACTIONS(1024), + [anon_sym_c_longlong] = ACTIONS(1024), + [anon_sym_c_ulonglong] = ACTIONS(1024), + [anon_sym_c_float] = ACTIONS(1024), + [anon_sym_c_double] = ACTIONS(1024), + [anon_sym_c_longdouble] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_defer] = ACTIONS(1024), + [anon_sym_errdefer] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_expand] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1022), + [anon_sym_LT_LT_PIPE] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [sym_none] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1024), + [sym_sink] = ACTIONS(1024), + [sym_integer] = ACTIONS(1024), + [sym_float] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_multiline_string] = ACTIONS(1022), + [sym_character] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1022), + }, + [STATE(692)] = { + [ts_builtin_sym_end] = ACTIONS(760), + [sym_identifier] = ACTIONS(762), + [anon_sym_import] = ACTIONS(762), + [anon_sym_test] = ACTIONS(762), + [anon_sym_hide] = ACTIONS(762), + [anon_sym_func] = ACTIONS(762), + [anon_sym_c_func] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_void] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_anyopaque] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_int] = ACTIONS(762), + [anon_sym_uint] = ACTIONS(762), + [anon_sym_float] = ACTIONS(762), + [anon_sym_range] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_c_char] = ACTIONS(762), + [anon_sym_c_schar] = ACTIONS(762), + [anon_sym_c_uchar] = ACTIONS(762), + [anon_sym_c_short] = ACTIONS(762), + [anon_sym_c_ushort] = ACTIONS(762), + [anon_sym_c_int] = ACTIONS(762), + [anon_sym_c_uint] = ACTIONS(762), + [anon_sym_c_long] = ACTIONS(762), + [anon_sym_c_ulong] = ACTIONS(762), + [anon_sym_c_longlong] = ACTIONS(762), + [anon_sym_c_ulonglong] = ACTIONS(762), + [anon_sym_c_float] = ACTIONS(762), + [anon_sym_c_double] = ACTIONS(762), + [anon_sym_c_longdouble] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_yield] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_break] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_defer] = ACTIONS(762), + [anon_sym_errdefer] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_else] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_expand] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_orelse] = ACTIONS(762), + [anon_sym_catch] = ACTIONS(762), + [anon_sym_or] = ACTIONS(762), + [anon_sym_and] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(762), + [anon_sym_LT_LT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_LT_LT_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_try] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [sym_none] = ACTIONS(762), + [sym_undefined] = ACTIONS(762), + [sym_sink] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_multiline_string] = ACTIONS(760), + [sym_character] = ACTIONS(760), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(760), + }, + [STATE(693)] = { + [ts_builtin_sym_end] = ACTIONS(846), + [sym_identifier] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_test] = ACTIONS(848), + [anon_sym_hide] = ACTIONS(848), + [anon_sym_func] = ACTIONS(848), + [anon_sym_c_func] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_struct] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_void] = ACTIONS(848), + [anon_sym_type] = ACTIONS(848), + [anon_sym_anyopaque] = ACTIONS(848), + [anon_sym_bool] = ACTIONS(848), + [anon_sym_int] = ACTIONS(848), + [anon_sym_uint] = ACTIONS(848), + [anon_sym_float] = ACTIONS(848), + [anon_sym_range] = ACTIONS(848), + [anon_sym_i8] = ACTIONS(848), + [anon_sym_i16] = ACTIONS(848), + [anon_sym_i32] = ACTIONS(848), + [anon_sym_i64] = ACTIONS(848), + [anon_sym_u8] = ACTIONS(848), + [anon_sym_u16] = ACTIONS(848), + [anon_sym_u32] = ACTIONS(848), + [anon_sym_u64] = ACTIONS(848), + [anon_sym_isize] = ACTIONS(848), + [anon_sym_usize] = ACTIONS(848), + [anon_sym_f32] = ACTIONS(848), + [anon_sym_f64] = ACTIONS(848), + [anon_sym_c_char] = ACTIONS(848), + [anon_sym_c_schar] = ACTIONS(848), + [anon_sym_c_uchar] = ACTIONS(848), + [anon_sym_c_short] = ACTIONS(848), + [anon_sym_c_ushort] = ACTIONS(848), + [anon_sym_c_int] = ACTIONS(848), + [anon_sym_c_uint] = ACTIONS(848), + [anon_sym_c_long] = ACTIONS(848), + [anon_sym_c_ulong] = ACTIONS(848), + [anon_sym_c_longlong] = ACTIONS(848), + [anon_sym_c_ulonglong] = ACTIONS(848), + [anon_sym_c_float] = ACTIONS(848), + [anon_sym_c_double] = ACTIONS(848), + [anon_sym_c_longdouble] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_COLON] = ACTIONS(846), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_defer] = ACTIONS(848), + [anon_sym_errdefer] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_expand] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_match] = ACTIONS(848), + [anon_sym_DOT_DOT] = ACTIONS(848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [anon_sym_orelse] = ACTIONS(848), + [anon_sym_catch] = ACTIONS(848), + [anon_sym_or] = ACTIONS(848), + [anon_sym_and] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(846), + [anon_sym_LT_LT_PIPE] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_TILDE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [sym_none] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [sym_sink] = ACTIONS(848), + [sym_integer] = ACTIONS(848), + [sym_float] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym_multiline_string] = ACTIONS(846), + [sym_character] = ACTIONS(846), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(846), + }, + [STATE(694)] = { + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1178), + [anon_sym_import] = ACTIONS(1178), + [anon_sym_test] = ACTIONS(1178), + [anon_sym_hide] = ACTIONS(1178), + [anon_sym_func] = ACTIONS(1178), + [anon_sym_c_func] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_COMMA] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_void] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_anyopaque] = ACTIONS(1178), + [anon_sym_bool] = ACTIONS(1178), + [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), + [anon_sym_float] = ACTIONS(1178), + [anon_sym_range] = ACTIONS(1178), + [anon_sym_i8] = ACTIONS(1178), + [anon_sym_i16] = ACTIONS(1178), + [anon_sym_i32] = ACTIONS(1178), + [anon_sym_i64] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1178), + [anon_sym_u16] = ACTIONS(1178), + [anon_sym_u32] = ACTIONS(1178), + [anon_sym_u64] = ACTIONS(1178), + [anon_sym_isize] = ACTIONS(1178), + [anon_sym_usize] = ACTIONS(1178), + [anon_sym_f32] = ACTIONS(1178), + [anon_sym_f64] = ACTIONS(1178), + [anon_sym_c_char] = ACTIONS(1178), + [anon_sym_c_schar] = ACTIONS(1178), + [anon_sym_c_uchar] = ACTIONS(1178), + [anon_sym_c_short] = ACTIONS(1178), + [anon_sym_c_ushort] = ACTIONS(1178), + [anon_sym_c_int] = ACTIONS(1178), + [anon_sym_c_uint] = ACTIONS(1178), + [anon_sym_c_long] = ACTIONS(1178), + [anon_sym_c_ulong] = ACTIONS(1178), + [anon_sym_c_longlong] = ACTIONS(1178), + [anon_sym_c_ulonglong] = ACTIONS(1178), + [anon_sym_c_float] = ACTIONS(1178), + [anon_sym_c_double] = ACTIONS(1178), + [anon_sym_c_longdouble] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(1178), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_defer] = ACTIONS(1178), + [anon_sym_errdefer] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_expand] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), + [anon_sym_orelse] = ACTIONS(1178), + [anon_sym_catch] = ACTIONS(1178), + [anon_sym_or] = ACTIONS(1178), + [anon_sym_and] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1176), + [anon_sym_BANG_EQ] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1176), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_xor] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_LT_LT_PIPE] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1178), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1178), + [anon_sym_false] = ACTIONS(1178), + [sym_none] = ACTIONS(1178), + [sym_undefined] = ACTIONS(1178), + [sym_sink] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [sym_float] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [sym_multiline_string] = ACTIONS(1176), + [sym_character] = ACTIONS(1176), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1176), + }, + [STATE(695)] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_import] = ACTIONS(1032), + [anon_sym_test] = ACTIONS(1032), + [anon_sym_hide] = ACTIONS(1032), + [anon_sym_func] = ACTIONS(1032), + [anon_sym_c_func] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1032), + [anon_sym_anyopaque] = ACTIONS(1032), + [anon_sym_bool] = ACTIONS(1032), + [anon_sym_int] = ACTIONS(1032), + [anon_sym_uint] = ACTIONS(1032), + [anon_sym_float] = ACTIONS(1032), + [anon_sym_range] = ACTIONS(1032), + [anon_sym_i8] = ACTIONS(1032), + [anon_sym_i16] = ACTIONS(1032), + [anon_sym_i32] = ACTIONS(1032), + [anon_sym_i64] = ACTIONS(1032), + [anon_sym_u8] = ACTIONS(1032), + [anon_sym_u16] = ACTIONS(1032), + [anon_sym_u32] = ACTIONS(1032), + [anon_sym_u64] = ACTIONS(1032), + [anon_sym_isize] = ACTIONS(1032), + [anon_sym_usize] = ACTIONS(1032), + [anon_sym_f32] = ACTIONS(1032), + [anon_sym_f64] = ACTIONS(1032), + [anon_sym_c_char] = ACTIONS(1032), + [anon_sym_c_schar] = ACTIONS(1032), + [anon_sym_c_uchar] = ACTIONS(1032), + [anon_sym_c_short] = ACTIONS(1032), + [anon_sym_c_ushort] = ACTIONS(1032), + [anon_sym_c_int] = ACTIONS(1032), + [anon_sym_c_uint] = ACTIONS(1032), + [anon_sym_c_long] = ACTIONS(1032), + [anon_sym_c_ulong] = ACTIONS(1032), + [anon_sym_c_longlong] = ACTIONS(1032), + [anon_sym_c_ulonglong] = ACTIONS(1032), + [anon_sym_c_float] = ACTIONS(1032), + [anon_sym_c_double] = ACTIONS(1032), + [anon_sym_c_longdouble] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_defer] = ACTIONS(1032), + [anon_sym_errdefer] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_expand] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_orelse] = ACTIONS(1032), + [anon_sym_catch] = ACTIONS(1032), + [anon_sym_or] = ACTIONS(1032), + [anon_sym_and] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1030), + [anon_sym_BANG_EQ] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_xor] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1030), + [anon_sym_LT_LT_PIPE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [sym_none] = ACTIONS(1032), + [sym_undefined] = ACTIONS(1032), + [sym_sink] = ACTIONS(1032), + [sym_integer] = ACTIONS(1032), + [sym_float] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_multiline_string] = ACTIONS(1030), + [sym_character] = ACTIONS(1030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1030), + }, + [STATE(696)] = { + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_test] = ACTIONS(766), + [anon_sym_hide] = ACTIONS(766), + [anon_sym_func] = ACTIONS(766), + [anon_sym_c_func] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_void] = ACTIONS(766), + [anon_sym_type] = ACTIONS(766), + [anon_sym_anyopaque] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_int] = ACTIONS(766), + [anon_sym_uint] = ACTIONS(766), + [anon_sym_float] = ACTIONS(766), + [anon_sym_range] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_c_char] = ACTIONS(766), + [anon_sym_c_schar] = ACTIONS(766), + [anon_sym_c_uchar] = ACTIONS(766), + [anon_sym_c_short] = ACTIONS(766), + [anon_sym_c_ushort] = ACTIONS(766), + [anon_sym_c_int] = ACTIONS(766), + [anon_sym_c_uint] = ACTIONS(766), + [anon_sym_c_long] = ACTIONS(766), + [anon_sym_c_ulong] = ACTIONS(766), + [anon_sym_c_longlong] = ACTIONS(766), + [anon_sym_c_ulonglong] = ACTIONS(766), + [anon_sym_c_float] = ACTIONS(766), + [anon_sym_c_double] = ACTIONS(766), + [anon_sym_c_longdouble] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_yield] = ACTIONS(766), + [anon_sym_COLON] = ACTIONS(764), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_defer] = ACTIONS(766), + [anon_sym_errdefer] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_expand] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_match] = ACTIONS(766), + [anon_sym_DOT_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_orelse] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_or] = ACTIONS(766), + [anon_sym_and] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_xor] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(766), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_LT_LT_PIPE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [sym_none] = ACTIONS(766), + [sym_undefined] = ACTIONS(766), + [sym_sink] = ACTIONS(766), + [sym_integer] = ACTIONS(766), + [sym_float] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_multiline_string] = ACTIONS(764), + [sym_character] = ACTIONS(764), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(764), + }, + [STATE(697)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_defer] = ACTIONS(1777), + [anon_sym_errdefer] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1771), + }, + [STATE(698)] = { + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_test] = ACTIONS(852), + [anon_sym_hide] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_c_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_void] = ACTIONS(852), + [anon_sym_type] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_uint] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_expand] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_xor] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_LT_LT_PIPE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_multiline_string] = ACTIONS(850), + [sym_character] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(850), + }, + [STATE(699)] = { + [ts_builtin_sym_end] = ACTIONS(702), + [sym_identifier] = ACTIONS(704), + [anon_sym_import] = ACTIONS(704), + [anon_sym_test] = ACTIONS(704), + [anon_sym_hide] = ACTIONS(704), + [anon_sym_func] = ACTIONS(704), + [anon_sym_c_func] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(702), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_void] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_anyopaque] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_int] = ACTIONS(704), + [anon_sym_uint] = ACTIONS(704), + [anon_sym_float] = ACTIONS(704), + [anon_sym_range] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_c_char] = ACTIONS(704), + [anon_sym_c_schar] = ACTIONS(704), + [anon_sym_c_uchar] = ACTIONS(704), + [anon_sym_c_short] = ACTIONS(704), + [anon_sym_c_ushort] = ACTIONS(704), + [anon_sym_c_int] = ACTIONS(704), + [anon_sym_c_uint] = ACTIONS(704), + [anon_sym_c_long] = ACTIONS(704), + [anon_sym_c_ulong] = ACTIONS(704), + [anon_sym_c_longlong] = ACTIONS(704), + [anon_sym_c_ulonglong] = ACTIONS(704), + [anon_sym_c_float] = ACTIONS(704), + [anon_sym_c_double] = ACTIONS(704), + [anon_sym_c_longdouble] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_yield] = ACTIONS(704), + [anon_sym_COLON] = ACTIONS(702), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_defer] = ACTIONS(704), + [anon_sym_errdefer] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_expand] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(702), + [anon_sym_orelse] = ACTIONS(704), + [anon_sym_catch] = ACTIONS(704), + [anon_sym_or] = ACTIONS(704), + [anon_sym_and] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(702), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(702), + [anon_sym_xor] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(702), + [anon_sym_LT_LT_PIPE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_try] = ACTIONS(704), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym_true] = ACTIONS(704), + [anon_sym_false] = ACTIONS(704), + [sym_none] = ACTIONS(704), + [sym_undefined] = ACTIONS(704), + [sym_sink] = ACTIONS(704), + [sym_integer] = ACTIONS(704), + [sym_float] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(702), + [sym_multiline_string] = ACTIONS(702), + [sym_character] = ACTIONS(702), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(702), + }, + [STATE(700)] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_c_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(701)] = { + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(258), + [anon_sym_c_func] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(253), + [anon_sym_AT] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_void] = ACTIONS(258), + [anon_sym_type] = ACTIONS(258), + [anon_sym_anyopaque] = ACTIONS(258), + [anon_sym_bool] = ACTIONS(258), + [anon_sym_int] = ACTIONS(258), + [anon_sym_uint] = ACTIONS(258), + [anon_sym_float] = ACTIONS(258), + [anon_sym_range] = ACTIONS(258), + [anon_sym_i8] = ACTIONS(258), + [anon_sym_i16] = ACTIONS(258), + [anon_sym_i32] = ACTIONS(258), + [anon_sym_i64] = ACTIONS(258), + [anon_sym_u8] = ACTIONS(258), + [anon_sym_u16] = ACTIONS(258), + [anon_sym_u32] = ACTIONS(258), + [anon_sym_u64] = ACTIONS(258), + [anon_sym_isize] = ACTIONS(258), + [anon_sym_usize] = ACTIONS(258), + [anon_sym_f32] = ACTIONS(258), + [anon_sym_f64] = ACTIONS(258), + [anon_sym_c_char] = ACTIONS(258), + [anon_sym_c_schar] = ACTIONS(258), + [anon_sym_c_uchar] = ACTIONS(258), + [anon_sym_c_short] = ACTIONS(258), + [anon_sym_c_ushort] = ACTIONS(258), + [anon_sym_c_int] = ACTIONS(258), + [anon_sym_c_uint] = ACTIONS(258), + [anon_sym_c_long] = ACTIONS(258), + [anon_sym_c_ulong] = ACTIONS(258), + [anon_sym_c_longlong] = ACTIONS(258), + [anon_sym_c_ulonglong] = ACTIONS(258), + [anon_sym_c_float] = ACTIONS(258), + [anon_sym_c_double] = ACTIONS(258), + [anon_sym_c_longdouble] = ACTIONS(258), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(702)] = { + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_test] = ACTIONS(798), + [anon_sym_hide] = ACTIONS(798), + [anon_sym_func] = ACTIONS(798), + [anon_sym_c_func] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_struct] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_void] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_anyopaque] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_uint] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_range] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_c_char] = ACTIONS(798), + [anon_sym_c_schar] = ACTIONS(798), + [anon_sym_c_uchar] = ACTIONS(798), + [anon_sym_c_short] = ACTIONS(798), + [anon_sym_c_ushort] = ACTIONS(798), + [anon_sym_c_int] = ACTIONS(798), + [anon_sym_c_uint] = ACTIONS(798), + [anon_sym_c_long] = ACTIONS(798), + [anon_sym_c_ulong] = ACTIONS(798), + [anon_sym_c_longlong] = ACTIONS(798), + [anon_sym_c_ulonglong] = ACTIONS(798), + [anon_sym_c_float] = ACTIONS(798), + [anon_sym_c_double] = ACTIONS(798), + [anon_sym_c_longdouble] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_COLON] = ACTIONS(796), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_defer] = ACTIONS(798), + [anon_sym_errdefer] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_expand] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_match] = ACTIONS(798), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_orelse] = ACTIONS(798), + [anon_sym_catch] = ACTIONS(798), + [anon_sym_or] = ACTIONS(798), + [anon_sym_and] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_xor] = ACTIONS(798), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_LT_LT_PIPE] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_try] = ACTIONS(798), + [anon_sym_DOT] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(796), + [anon_sym_true] = ACTIONS(798), + [anon_sym_false] = ACTIONS(798), + [sym_none] = ACTIONS(798), + [sym_undefined] = ACTIONS(798), + [sym_sink] = ACTIONS(798), + [sym_integer] = ACTIONS(798), + [sym_float] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [sym_multiline_string] = ACTIONS(796), + [sym_character] = ACTIONS(796), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(796), + }, + [STATE(703)] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_test] = ACTIONS(802), + [anon_sym_hide] = ACTIONS(802), + [anon_sym_func] = ACTIONS(802), + [anon_sym_c_func] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_struct] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_void] = ACTIONS(802), + [anon_sym_type] = ACTIONS(802), + [anon_sym_anyopaque] = ACTIONS(802), + [anon_sym_bool] = ACTIONS(802), + [anon_sym_int] = ACTIONS(802), + [anon_sym_uint] = ACTIONS(802), + [anon_sym_float] = ACTIONS(802), + [anon_sym_range] = ACTIONS(802), + [anon_sym_i8] = ACTIONS(802), + [anon_sym_i16] = ACTIONS(802), + [anon_sym_i32] = ACTIONS(802), + [anon_sym_i64] = ACTIONS(802), + [anon_sym_u8] = ACTIONS(802), + [anon_sym_u16] = ACTIONS(802), + [anon_sym_u32] = ACTIONS(802), + [anon_sym_u64] = ACTIONS(802), + [anon_sym_isize] = ACTIONS(802), + [anon_sym_usize] = ACTIONS(802), + [anon_sym_f32] = ACTIONS(802), + [anon_sym_f64] = ACTIONS(802), + [anon_sym_c_char] = ACTIONS(802), + [anon_sym_c_schar] = ACTIONS(802), + [anon_sym_c_uchar] = ACTIONS(802), + [anon_sym_c_short] = ACTIONS(802), + [anon_sym_c_ushort] = ACTIONS(802), + [anon_sym_c_int] = ACTIONS(802), + [anon_sym_c_uint] = ACTIONS(802), + [anon_sym_c_long] = ACTIONS(802), + [anon_sym_c_ulong] = ACTIONS(802), + [anon_sym_c_longlong] = ACTIONS(802), + [anon_sym_c_ulonglong] = ACTIONS(802), + [anon_sym_c_float] = ACTIONS(802), + [anon_sym_c_double] = ACTIONS(802), + [anon_sym_c_longdouble] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_break] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_defer] = ACTIONS(802), + [anon_sym_errdefer] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_expand] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_match] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(800), + [anon_sym_orelse] = ACTIONS(802), + [anon_sym_catch] = ACTIONS(802), + [anon_sym_or] = ACTIONS(802), + [anon_sym_and] = ACTIONS(802), + [anon_sym_EQ_EQ] = ACTIONS(800), + [anon_sym_BANG_EQ] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_LT_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(802), + [anon_sym_GT_EQ] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_xor] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(802), + [anon_sym_GT_GT] = ACTIONS(800), + [anon_sym_LT_LT_PIPE] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_try] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(802), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [sym_none] = ACTIONS(802), + [sym_undefined] = ACTIONS(802), + [sym_sink] = ACTIONS(802), + [sym_integer] = ACTIONS(802), + [sym_float] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(800), + [sym_multiline_string] = ACTIONS(800), + [sym_character] = ACTIONS(800), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(800), + }, + [STATE(704)] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1036), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_test] = ACTIONS(1036), + [anon_sym_hide] = ACTIONS(1036), + [anon_sym_func] = ACTIONS(1036), + [anon_sym_c_func] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1034), + [anon_sym_void] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1036), + [anon_sym_anyopaque] = ACTIONS(1036), + [anon_sym_bool] = ACTIONS(1036), + [anon_sym_int] = ACTIONS(1036), + [anon_sym_uint] = ACTIONS(1036), + [anon_sym_float] = ACTIONS(1036), + [anon_sym_range] = ACTIONS(1036), + [anon_sym_i8] = ACTIONS(1036), + [anon_sym_i16] = ACTIONS(1036), + [anon_sym_i32] = ACTIONS(1036), + [anon_sym_i64] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1036), + [anon_sym_u16] = ACTIONS(1036), + [anon_sym_u32] = ACTIONS(1036), + [anon_sym_u64] = ACTIONS(1036), + [anon_sym_isize] = ACTIONS(1036), + [anon_sym_usize] = ACTIONS(1036), + [anon_sym_f32] = ACTIONS(1036), + [anon_sym_f64] = ACTIONS(1036), + [anon_sym_c_char] = ACTIONS(1036), + [anon_sym_c_schar] = ACTIONS(1036), + [anon_sym_c_uchar] = ACTIONS(1036), + [anon_sym_c_short] = ACTIONS(1036), + [anon_sym_c_ushort] = ACTIONS(1036), + [anon_sym_c_int] = ACTIONS(1036), + [anon_sym_c_uint] = ACTIONS(1036), + [anon_sym_c_long] = ACTIONS(1036), + [anon_sym_c_ulong] = ACTIONS(1036), + [anon_sym_c_longlong] = ACTIONS(1036), + [anon_sym_c_ulonglong] = ACTIONS(1036), + [anon_sym_c_float] = ACTIONS(1036), + [anon_sym_c_double] = ACTIONS(1036), + [anon_sym_c_longdouble] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_defer] = ACTIONS(1036), + [anon_sym_errdefer] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_expand] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_orelse] = ACTIONS(1036), + [anon_sym_catch] = ACTIONS(1036), + [anon_sym_or] = ACTIONS(1036), + [anon_sym_and] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_GT_EQ] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_xor] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_LT_LT_PIPE] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [sym_none] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1036), + [sym_sink] = ACTIONS(1036), + [sym_integer] = ACTIONS(1036), + [sym_float] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_multiline_string] = ACTIONS(1034), + [sym_character] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1034), + }, + [STATE(705)] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1040), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_test] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_func] = ACTIONS(1040), + [anon_sym_c_func] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_void] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(1040), + [anon_sym_anyopaque] = ACTIONS(1040), + [anon_sym_bool] = ACTIONS(1040), + [anon_sym_int] = ACTIONS(1040), + [anon_sym_uint] = ACTIONS(1040), + [anon_sym_float] = ACTIONS(1040), + [anon_sym_range] = ACTIONS(1040), + [anon_sym_i8] = ACTIONS(1040), + [anon_sym_i16] = ACTIONS(1040), + [anon_sym_i32] = ACTIONS(1040), + [anon_sym_i64] = ACTIONS(1040), + [anon_sym_u8] = ACTIONS(1040), + [anon_sym_u16] = ACTIONS(1040), + [anon_sym_u32] = ACTIONS(1040), + [anon_sym_u64] = ACTIONS(1040), + [anon_sym_isize] = ACTIONS(1040), + [anon_sym_usize] = ACTIONS(1040), + [anon_sym_f32] = ACTIONS(1040), + [anon_sym_f64] = ACTIONS(1040), + [anon_sym_c_char] = ACTIONS(1040), + [anon_sym_c_schar] = ACTIONS(1040), + [anon_sym_c_uchar] = ACTIONS(1040), + [anon_sym_c_short] = ACTIONS(1040), + [anon_sym_c_ushort] = ACTIONS(1040), + [anon_sym_c_int] = ACTIONS(1040), + [anon_sym_c_uint] = ACTIONS(1040), + [anon_sym_c_long] = ACTIONS(1040), + [anon_sym_c_ulong] = ACTIONS(1040), + [anon_sym_c_longlong] = ACTIONS(1040), + [anon_sym_c_ulonglong] = ACTIONS(1040), + [anon_sym_c_float] = ACTIONS(1040), + [anon_sym_c_double] = ACTIONS(1040), + [anon_sym_c_longdouble] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_defer] = ACTIONS(1040), + [anon_sym_errdefer] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_expand] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_orelse] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_or] = ACTIONS(1040), + [anon_sym_and] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_xor] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1038), + [anon_sym_LT_LT_PIPE] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [sym_none] = ACTIONS(1040), + [sym_undefined] = ACTIONS(1040), + [sym_sink] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [sym_float] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_multiline_string] = ACTIONS(1038), + [sym_character] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1038), + }, + [STATE(706)] = { + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(806), + [anon_sym_import] = ACTIONS(806), + [anon_sym_test] = ACTIONS(806), + [anon_sym_hide] = ACTIONS(806), + [anon_sym_func] = ACTIONS(806), + [anon_sym_c_func] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), + [anon_sym_DOLLAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_AT] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_void] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_anyopaque] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_uint] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_range] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_c_char] = ACTIONS(806), + [anon_sym_c_schar] = ACTIONS(806), + [anon_sym_c_uchar] = ACTIONS(806), + [anon_sym_c_short] = ACTIONS(806), + [anon_sym_c_ushort] = ACTIONS(806), + [anon_sym_c_int] = ACTIONS(806), + [anon_sym_c_uint] = ACTIONS(806), + [anon_sym_c_long] = ACTIONS(806), + [anon_sym_c_ulong] = ACTIONS(806), + [anon_sym_c_longlong] = ACTIONS(806), + [anon_sym_c_ulonglong] = ACTIONS(806), + [anon_sym_c_float] = ACTIONS(806), + [anon_sym_c_double] = ACTIONS(806), + [anon_sym_c_longdouble] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(804), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_defer] = ACTIONS(806), + [anon_sym_errdefer] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_expand] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_match] = ACTIONS(806), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(804), + [anon_sym_orelse] = ACTIONS(806), + [anon_sym_catch] = ACTIONS(806), + [anon_sym_or] = ACTIONS(806), + [anon_sym_and] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(804), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_LT_EQ] = ACTIONS(804), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_GT_EQ] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_xor] = ACTIONS(806), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(804), + [anon_sym_LT_LT_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_SLASH] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_try] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(804), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [sym_none] = ACTIONS(806), + [sym_undefined] = ACTIONS(806), + [sym_sink] = ACTIONS(806), + [sym_integer] = ACTIONS(806), + [sym_float] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(804), + [sym_multiline_string] = ACTIONS(804), + [sym_character] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(804), + }, + [STATE(707)] = { + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [anon_sym_import] = ACTIONS(810), + [anon_sym_test] = ACTIONS(810), + [anon_sym_hide] = ACTIONS(810), + [anon_sym_func] = ACTIONS(810), + [anon_sym_c_func] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_struct] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_void] = ACTIONS(810), + [anon_sym_type] = ACTIONS(810), + [anon_sym_anyopaque] = ACTIONS(810), + [anon_sym_bool] = ACTIONS(810), + [anon_sym_int] = ACTIONS(810), + [anon_sym_uint] = ACTIONS(810), + [anon_sym_float] = ACTIONS(810), + [anon_sym_range] = ACTIONS(810), + [anon_sym_i8] = ACTIONS(810), + [anon_sym_i16] = ACTIONS(810), + [anon_sym_i32] = ACTIONS(810), + [anon_sym_i64] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(810), + [anon_sym_u16] = ACTIONS(810), + [anon_sym_u32] = ACTIONS(810), + [anon_sym_u64] = ACTIONS(810), + [anon_sym_isize] = ACTIONS(810), + [anon_sym_usize] = ACTIONS(810), + [anon_sym_f32] = ACTIONS(810), + [anon_sym_f64] = ACTIONS(810), + [anon_sym_c_char] = ACTIONS(810), + [anon_sym_c_schar] = ACTIONS(810), + [anon_sym_c_uchar] = ACTIONS(810), + [anon_sym_c_short] = ACTIONS(810), + [anon_sym_c_ushort] = ACTIONS(810), + [anon_sym_c_int] = ACTIONS(810), + [anon_sym_c_uint] = ACTIONS(810), + [anon_sym_c_long] = ACTIONS(810), + [anon_sym_c_ulong] = ACTIONS(810), + [anon_sym_c_longlong] = ACTIONS(810), + [anon_sym_c_ulonglong] = ACTIONS(810), + [anon_sym_c_float] = ACTIONS(810), + [anon_sym_c_double] = ACTIONS(810), + [anon_sym_c_longdouble] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_COLON] = ACTIONS(808), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_defer] = ACTIONS(810), + [anon_sym_errdefer] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_else] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_expand] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_match] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_orelse] = ACTIONS(810), + [anon_sym_catch] = ACTIONS(810), + [anon_sym_or] = ACTIONS(810), + [anon_sym_and] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_xor] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_LT_LT_PIPE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_try] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym_true] = ACTIONS(810), + [anon_sym_false] = ACTIONS(810), + [sym_none] = ACTIONS(810), + [sym_undefined] = ACTIONS(810), + [sym_sink] = ACTIONS(810), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(808), + [sym_multiline_string] = ACTIONS(808), + [sym_character] = ACTIONS(808), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(808), + }, + [STATE(708)] = { + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1044), + [anon_sym_test] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_func] = ACTIONS(1044), + [anon_sym_c_func] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_void] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_anyopaque] = ACTIONS(1044), + [anon_sym_bool] = ACTIONS(1044), + [anon_sym_int] = ACTIONS(1044), + [anon_sym_uint] = ACTIONS(1044), + [anon_sym_float] = ACTIONS(1044), + [anon_sym_range] = ACTIONS(1044), + [anon_sym_i8] = ACTIONS(1044), + [anon_sym_i16] = ACTIONS(1044), + [anon_sym_i32] = ACTIONS(1044), + [anon_sym_i64] = ACTIONS(1044), + [anon_sym_u8] = ACTIONS(1044), + [anon_sym_u16] = ACTIONS(1044), + [anon_sym_u32] = ACTIONS(1044), + [anon_sym_u64] = ACTIONS(1044), + [anon_sym_isize] = ACTIONS(1044), + [anon_sym_usize] = ACTIONS(1044), + [anon_sym_f32] = ACTIONS(1044), + [anon_sym_f64] = ACTIONS(1044), + [anon_sym_c_char] = ACTIONS(1044), + [anon_sym_c_schar] = ACTIONS(1044), + [anon_sym_c_uchar] = ACTIONS(1044), + [anon_sym_c_short] = ACTIONS(1044), + [anon_sym_c_ushort] = ACTIONS(1044), + [anon_sym_c_int] = ACTIONS(1044), + [anon_sym_c_uint] = ACTIONS(1044), + [anon_sym_c_long] = ACTIONS(1044), + [anon_sym_c_ulong] = ACTIONS(1044), + [anon_sym_c_longlong] = ACTIONS(1044), + [anon_sym_c_ulonglong] = ACTIONS(1044), + [anon_sym_c_float] = ACTIONS(1044), + [anon_sym_c_double] = ACTIONS(1044), + [anon_sym_c_longdouble] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_yield] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_defer] = ACTIONS(1044), + [anon_sym_errdefer] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_expand] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_orelse] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_or] = ACTIONS(1044), + [anon_sym_and] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_xor] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_LT_LT_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [sym_none] = ACTIONS(1044), + [sym_undefined] = ACTIONS(1044), + [sym_sink] = ACTIONS(1044), + [sym_integer] = ACTIONS(1044), + [sym_float] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_multiline_string] = ACTIONS(1042), + [sym_character] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1042), + }, + [STATE(709)] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_test] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_func] = ACTIONS(1048), + [anon_sym_c_func] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_void] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_anyopaque] = ACTIONS(1048), + [anon_sym_bool] = ACTIONS(1048), + [anon_sym_int] = ACTIONS(1048), + [anon_sym_uint] = ACTIONS(1048), + [anon_sym_float] = ACTIONS(1048), + [anon_sym_range] = ACTIONS(1048), + [anon_sym_i8] = ACTIONS(1048), + [anon_sym_i16] = ACTIONS(1048), + [anon_sym_i32] = ACTIONS(1048), + [anon_sym_i64] = ACTIONS(1048), + [anon_sym_u8] = ACTIONS(1048), + [anon_sym_u16] = ACTIONS(1048), + [anon_sym_u32] = ACTIONS(1048), + [anon_sym_u64] = ACTIONS(1048), + [anon_sym_isize] = ACTIONS(1048), + [anon_sym_usize] = ACTIONS(1048), + [anon_sym_f32] = ACTIONS(1048), + [anon_sym_f64] = ACTIONS(1048), + [anon_sym_c_char] = ACTIONS(1048), + [anon_sym_c_schar] = ACTIONS(1048), + [anon_sym_c_uchar] = ACTIONS(1048), + [anon_sym_c_short] = ACTIONS(1048), + [anon_sym_c_ushort] = ACTIONS(1048), + [anon_sym_c_int] = ACTIONS(1048), + [anon_sym_c_uint] = ACTIONS(1048), + [anon_sym_c_long] = ACTIONS(1048), + [anon_sym_c_ulong] = ACTIONS(1048), + [anon_sym_c_longlong] = ACTIONS(1048), + [anon_sym_c_ulonglong] = ACTIONS(1048), + [anon_sym_c_float] = ACTIONS(1048), + [anon_sym_c_double] = ACTIONS(1048), + [anon_sym_c_longdouble] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_defer] = ACTIONS(1048), + [anon_sym_errdefer] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_expand] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_orelse] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_or] = ACTIONS(1048), + [anon_sym_and] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_xor] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1046), + [anon_sym_LT_LT_PIPE] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [sym_none] = ACTIONS(1048), + [sym_undefined] = ACTIONS(1048), + [sym_sink] = ACTIONS(1048), + [sym_integer] = ACTIONS(1048), + [sym_float] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_multiline_string] = ACTIONS(1046), + [sym_character] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1046), + }, + [STATE(710)] = { + [ts_builtin_sym_end] = ACTIONS(862), + [sym_identifier] = ACTIONS(864), + [anon_sym_import] = ACTIONS(864), + [anon_sym_test] = ACTIONS(864), + [anon_sym_hide] = ACTIONS(864), + [anon_sym_func] = ACTIONS(864), + [anon_sym_c_func] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_struct] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_DOLLAR] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_QMARK] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_void] = ACTIONS(864), + [anon_sym_type] = ACTIONS(864), + [anon_sym_anyopaque] = ACTIONS(864), + [anon_sym_bool] = ACTIONS(864), + [anon_sym_int] = ACTIONS(864), + [anon_sym_uint] = ACTIONS(864), + [anon_sym_float] = ACTIONS(864), + [anon_sym_range] = ACTIONS(864), + [anon_sym_i8] = ACTIONS(864), + [anon_sym_i16] = ACTIONS(864), + [anon_sym_i32] = ACTIONS(864), + [anon_sym_i64] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(864), + [anon_sym_u16] = ACTIONS(864), + [anon_sym_u32] = ACTIONS(864), + [anon_sym_u64] = ACTIONS(864), + [anon_sym_isize] = ACTIONS(864), + [anon_sym_usize] = ACTIONS(864), + [anon_sym_f32] = ACTIONS(864), + [anon_sym_f64] = ACTIONS(864), + [anon_sym_c_char] = ACTIONS(864), + [anon_sym_c_schar] = ACTIONS(864), + [anon_sym_c_uchar] = ACTIONS(864), + [anon_sym_c_short] = ACTIONS(864), + [anon_sym_c_ushort] = ACTIONS(864), + [anon_sym_c_int] = ACTIONS(864), + [anon_sym_c_uint] = ACTIONS(864), + [anon_sym_c_long] = ACTIONS(864), + [anon_sym_c_ulong] = ACTIONS(864), + [anon_sym_c_longlong] = ACTIONS(864), + [anon_sym_c_ulonglong] = ACTIONS(864), + [anon_sym_c_float] = ACTIONS(864), + [anon_sym_c_double] = ACTIONS(864), + [anon_sym_c_longdouble] = ACTIONS(864), + [anon_sym_return] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_break] = ACTIONS(864), + [anon_sym_continue] = ACTIONS(864), + [anon_sym_defer] = ACTIONS(864), + [anon_sym_errdefer] = ACTIONS(864), + [anon_sym_if] = ACTIONS(864), + [anon_sym_else] = ACTIONS(864), + [anon_sym_while] = ACTIONS(864), + [anon_sym_expand] = ACTIONS(864), + [anon_sym_for] = ACTIONS(864), + [anon_sym_match] = ACTIONS(864), + [anon_sym_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(862), + [anon_sym_orelse] = ACTIONS(864), + [anon_sym_catch] = ACTIONS(864), + [anon_sym_or] = ACTIONS(864), + [anon_sym_and] = ACTIONS(864), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(864), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(864), + [anon_sym_GT_GT] = ACTIONS(862), + [anon_sym_LT_LT_PIPE] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_SLASH] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_try] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(864), + [anon_sym_CARET] = ACTIONS(862), + [anon_sym_true] = ACTIONS(864), + [anon_sym_false] = ACTIONS(864), + [sym_none] = ACTIONS(864), + [sym_undefined] = ACTIONS(864), + [sym_sink] = ACTIONS(864), + [sym_integer] = ACTIONS(864), + [sym_float] = ACTIONS(862), + [anon_sym_DQUOTE] = ACTIONS(862), + [sym_multiline_string] = ACTIONS(862), + [sym_character] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(862), + }, + [STATE(711)] = { + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_test] = ACTIONS(770), + [anon_sym_hide] = ACTIONS(770), + [anon_sym_func] = ACTIONS(770), + [anon_sym_c_func] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_struct] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_void] = ACTIONS(770), + [anon_sym_type] = ACTIONS(770), + [anon_sym_anyopaque] = ACTIONS(770), + [anon_sym_bool] = ACTIONS(770), + [anon_sym_int] = ACTIONS(770), + [anon_sym_uint] = ACTIONS(770), + [anon_sym_float] = ACTIONS(770), + [anon_sym_range] = ACTIONS(770), + [anon_sym_i8] = ACTIONS(770), + [anon_sym_i16] = ACTIONS(770), + [anon_sym_i32] = ACTIONS(770), + [anon_sym_i64] = ACTIONS(770), + [anon_sym_u8] = ACTIONS(770), + [anon_sym_u16] = ACTIONS(770), + [anon_sym_u32] = ACTIONS(770), + [anon_sym_u64] = ACTIONS(770), + [anon_sym_isize] = ACTIONS(770), + [anon_sym_usize] = ACTIONS(770), + [anon_sym_f32] = ACTIONS(770), + [anon_sym_f64] = ACTIONS(770), + [anon_sym_c_char] = ACTIONS(770), + [anon_sym_c_schar] = ACTIONS(770), + [anon_sym_c_uchar] = ACTIONS(770), + [anon_sym_c_short] = ACTIONS(770), + [anon_sym_c_ushort] = ACTIONS(770), + [anon_sym_c_int] = ACTIONS(770), + [anon_sym_c_uint] = ACTIONS(770), + [anon_sym_c_long] = ACTIONS(770), + [anon_sym_c_ulong] = ACTIONS(770), + [anon_sym_c_longlong] = ACTIONS(770), + [anon_sym_c_ulonglong] = ACTIONS(770), + [anon_sym_c_float] = ACTIONS(770), + [anon_sym_c_double] = ACTIONS(770), + [anon_sym_c_longdouble] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_yield] = ACTIONS(770), + [anon_sym_COLON] = ACTIONS(768), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_defer] = ACTIONS(770), + [anon_sym_errdefer] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_expand] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_match] = ACTIONS(770), + [anon_sym_DOT_DOT] = ACTIONS(770), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [anon_sym_orelse] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_or] = ACTIONS(770), + [anon_sym_and] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(768), + [anon_sym_xor] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_LT_LT_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_true] = ACTIONS(770), + [anon_sym_false] = ACTIONS(770), + [sym_none] = ACTIONS(770), + [sym_undefined] = ACTIONS(770), + [sym_sink] = ACTIONS(770), + [sym_integer] = ACTIONS(770), + [sym_float] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_multiline_string] = ACTIONS(768), + [sym_character] = ACTIONS(768), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(768), + }, + [STATE(712)] = { + [ts_builtin_sym_end] = ACTIONS(870), + [sym_identifier] = ACTIONS(872), + [anon_sym_import] = ACTIONS(872), + [anon_sym_test] = ACTIONS(872), + [anon_sym_hide] = ACTIONS(872), + [anon_sym_func] = ACTIONS(872), + [anon_sym_c_func] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_struct] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_COMMA] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(870), + [anon_sym_AT] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(870), + [anon_sym_void] = ACTIONS(872), + [anon_sym_type] = ACTIONS(872), + [anon_sym_anyopaque] = ACTIONS(872), + [anon_sym_bool] = ACTIONS(872), + [anon_sym_int] = ACTIONS(872), + [anon_sym_uint] = ACTIONS(872), + [anon_sym_float] = ACTIONS(872), + [anon_sym_range] = ACTIONS(872), + [anon_sym_i8] = ACTIONS(872), + [anon_sym_i16] = ACTIONS(872), + [anon_sym_i32] = ACTIONS(872), + [anon_sym_i64] = ACTIONS(872), + [anon_sym_u8] = ACTIONS(872), + [anon_sym_u16] = ACTIONS(872), + [anon_sym_u32] = ACTIONS(872), + [anon_sym_u64] = ACTIONS(872), + [anon_sym_isize] = ACTIONS(872), + [anon_sym_usize] = ACTIONS(872), + [anon_sym_f32] = ACTIONS(872), + [anon_sym_f64] = ACTIONS(872), + [anon_sym_c_char] = ACTIONS(872), + [anon_sym_c_schar] = ACTIONS(872), + [anon_sym_c_uchar] = ACTIONS(872), + [anon_sym_c_short] = ACTIONS(872), + [anon_sym_c_ushort] = ACTIONS(872), + [anon_sym_c_int] = ACTIONS(872), + [anon_sym_c_uint] = ACTIONS(872), + [anon_sym_c_long] = ACTIONS(872), + [anon_sym_c_ulong] = ACTIONS(872), + [anon_sym_c_longlong] = ACTIONS(872), + [anon_sym_c_ulonglong] = ACTIONS(872), + [anon_sym_c_float] = ACTIONS(872), + [anon_sym_c_double] = ACTIONS(872), + [anon_sym_c_longdouble] = ACTIONS(872), + [anon_sym_return] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(872), + [anon_sym_defer] = ACTIONS(872), + [anon_sym_errdefer] = ACTIONS(872), + [anon_sym_if] = ACTIONS(872), + [anon_sym_else] = ACTIONS(872), + [anon_sym_while] = ACTIONS(872), + [anon_sym_expand] = ACTIONS(872), + [anon_sym_for] = ACTIONS(872), + [anon_sym_match] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(870), + [anon_sym_orelse] = ACTIONS(872), + [anon_sym_catch] = ACTIONS(872), + [anon_sym_or] = ACTIONS(872), + [anon_sym_and] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(870), + [anon_sym_BANG_EQ] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_GT_EQ] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + [anon_sym_xor] = ACTIONS(872), + [anon_sym_LT_LT] = ACTIONS(872), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_LT_LT_PIPE] = ACTIONS(870), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_TILDE] = ACTIONS(870), + [anon_sym_try] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_true] = ACTIONS(872), + [anon_sym_false] = ACTIONS(872), + [sym_none] = ACTIONS(872), + [sym_undefined] = ACTIONS(872), + [sym_sink] = ACTIONS(872), + [sym_integer] = ACTIONS(872), + [sym_float] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(870), + [sym_multiline_string] = ACTIONS(870), + [sym_character] = ACTIONS(870), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(870), + }, + [STATE(713)] = { + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [anon_sym_import] = ACTIONS(876), + [anon_sym_test] = ACTIONS(876), + [anon_sym_hide] = ACTIONS(876), + [anon_sym_func] = ACTIONS(876), + [anon_sym_c_func] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_struct] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_void] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_anyopaque] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_int] = ACTIONS(876), + [anon_sym_uint] = ACTIONS(876), + [anon_sym_float] = ACTIONS(876), + [anon_sym_range] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_c_char] = ACTIONS(876), + [anon_sym_c_schar] = ACTIONS(876), + [anon_sym_c_uchar] = ACTIONS(876), + [anon_sym_c_short] = ACTIONS(876), + [anon_sym_c_ushort] = ACTIONS(876), + [anon_sym_c_int] = ACTIONS(876), + [anon_sym_c_uint] = ACTIONS(876), + [anon_sym_c_long] = ACTIONS(876), + [anon_sym_c_ulong] = ACTIONS(876), + [anon_sym_c_longlong] = ACTIONS(876), + [anon_sym_c_ulonglong] = ACTIONS(876), + [anon_sym_c_float] = ACTIONS(876), + [anon_sym_c_double] = ACTIONS(876), + [anon_sym_c_longdouble] = ACTIONS(876), + [anon_sym_return] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_defer] = ACTIONS(876), + [anon_sym_errdefer] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_while] = ACTIONS(876), + [anon_sym_expand] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_match] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(874), + [anon_sym_orelse] = ACTIONS(876), + [anon_sym_catch] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_LT_LT_PIPE] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_try] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_true] = ACTIONS(876), + [anon_sym_false] = ACTIONS(876), + [sym_none] = ACTIONS(876), + [sym_undefined] = ACTIONS(876), + [sym_sink] = ACTIONS(876), + [sym_integer] = ACTIONS(876), + [sym_float] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym_multiline_string] = ACTIONS(874), + [sym_character] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(874), + }, + [STATE(714)] = { + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(880), + [anon_sym_test] = ACTIONS(880), + [anon_sym_hide] = ACTIONS(880), + [anon_sym_func] = ACTIONS(880), + [anon_sym_c_func] = ACTIONS(880), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_void] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_anyopaque] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_int] = ACTIONS(880), + [anon_sym_uint] = ACTIONS(880), + [anon_sym_float] = ACTIONS(880), + [anon_sym_range] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_c_char] = ACTIONS(880), + [anon_sym_c_schar] = ACTIONS(880), + [anon_sym_c_uchar] = ACTIONS(880), + [anon_sym_c_short] = ACTIONS(880), + [anon_sym_c_ushort] = ACTIONS(880), + [anon_sym_c_int] = ACTIONS(880), + [anon_sym_c_uint] = ACTIONS(880), + [anon_sym_c_long] = ACTIONS(880), + [anon_sym_c_ulong] = ACTIONS(880), + [anon_sym_c_longlong] = ACTIONS(880), + [anon_sym_c_ulonglong] = ACTIONS(880), + [anon_sym_c_float] = ACTIONS(880), + [anon_sym_c_double] = ACTIONS(880), + [anon_sym_c_longdouble] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_defer] = ACTIONS(880), + [anon_sym_errdefer] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_expand] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(878), + [anon_sym_orelse] = ACTIONS(880), + [anon_sym_catch] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_LT_LT_PIPE] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [anon_sym_try] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [sym_none] = ACTIONS(880), + [sym_undefined] = ACTIONS(880), + [sym_sink] = ACTIONS(880), + [sym_integer] = ACTIONS(880), + [sym_float] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [sym_multiline_string] = ACTIONS(878), + [sym_character] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(878), + }, + [STATE(715)] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_identifier] = ACTIONS(884), + [anon_sym_import] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_hide] = ACTIONS(884), + [anon_sym_func] = ACTIONS(884), + [anon_sym_c_func] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_struct] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_AT] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_void] = ACTIONS(884), + [anon_sym_type] = ACTIONS(884), + [anon_sym_anyopaque] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_int] = ACTIONS(884), + [anon_sym_uint] = ACTIONS(884), + [anon_sym_float] = ACTIONS(884), + [anon_sym_range] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_c_char] = ACTIONS(884), + [anon_sym_c_schar] = ACTIONS(884), + [anon_sym_c_uchar] = ACTIONS(884), + [anon_sym_c_short] = ACTIONS(884), + [anon_sym_c_ushort] = ACTIONS(884), + [anon_sym_c_int] = ACTIONS(884), + [anon_sym_c_uint] = ACTIONS(884), + [anon_sym_c_long] = ACTIONS(884), + [anon_sym_c_ulong] = ACTIONS(884), + [anon_sym_c_longlong] = ACTIONS(884), + [anon_sym_c_ulonglong] = ACTIONS(884), + [anon_sym_c_float] = ACTIONS(884), + [anon_sym_c_double] = ACTIONS(884), + [anon_sym_c_longdouble] = ACTIONS(884), + [anon_sym_return] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_break] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(884), + [anon_sym_defer] = ACTIONS(884), + [anon_sym_errdefer] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_else] = ACTIONS(884), + [anon_sym_while] = ACTIONS(884), + [anon_sym_expand] = ACTIONS(884), + [anon_sym_for] = ACTIONS(884), + [anon_sym_match] = ACTIONS(884), + [anon_sym_DOT_DOT] = ACTIONS(884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(882), + [anon_sym_orelse] = ACTIONS(884), + [anon_sym_catch] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_LT_LT_PIPE] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(882), + [anon_sym_try] = ACTIONS(884), + [anon_sym_DOT] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_true] = ACTIONS(884), + [anon_sym_false] = ACTIONS(884), + [sym_none] = ACTIONS(884), + [sym_undefined] = ACTIONS(884), + [sym_sink] = ACTIONS(884), + [sym_integer] = ACTIONS(884), + [sym_float] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym_multiline_string] = ACTIONS(882), + [sym_character] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(882), + }, + [STATE(716)] = { + [ts_builtin_sym_end] = ACTIONS(886), + [sym_identifier] = ACTIONS(888), + [anon_sym_import] = ACTIONS(888), + [anon_sym_test] = ACTIONS(888), + [anon_sym_hide] = ACTIONS(888), + [anon_sym_func] = ACTIONS(888), + [anon_sym_c_func] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_COMMA] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_void] = ACTIONS(888), + [anon_sym_type] = ACTIONS(888), + [anon_sym_anyopaque] = ACTIONS(888), + [anon_sym_bool] = ACTIONS(888), + [anon_sym_int] = ACTIONS(888), + [anon_sym_uint] = ACTIONS(888), + [anon_sym_float] = ACTIONS(888), + [anon_sym_range] = ACTIONS(888), + [anon_sym_i8] = ACTIONS(888), + [anon_sym_i16] = ACTIONS(888), + [anon_sym_i32] = ACTIONS(888), + [anon_sym_i64] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(888), + [anon_sym_u16] = ACTIONS(888), + [anon_sym_u32] = ACTIONS(888), + [anon_sym_u64] = ACTIONS(888), + [anon_sym_isize] = ACTIONS(888), + [anon_sym_usize] = ACTIONS(888), + [anon_sym_f32] = ACTIONS(888), + [anon_sym_f64] = ACTIONS(888), + [anon_sym_c_char] = ACTIONS(888), + [anon_sym_c_schar] = ACTIONS(888), + [anon_sym_c_uchar] = ACTIONS(888), + [anon_sym_c_short] = ACTIONS(888), + [anon_sym_c_ushort] = ACTIONS(888), + [anon_sym_c_int] = ACTIONS(888), + [anon_sym_c_uint] = ACTIONS(888), + [anon_sym_c_long] = ACTIONS(888), + [anon_sym_c_ulong] = ACTIONS(888), + [anon_sym_c_longlong] = ACTIONS(888), + [anon_sym_c_ulonglong] = ACTIONS(888), + [anon_sym_c_float] = ACTIONS(888), + [anon_sym_c_double] = ACTIONS(888), + [anon_sym_c_longdouble] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_yield] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(886), + [anon_sym_break] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_defer] = ACTIONS(888), + [anon_sym_errdefer] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_else] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_expand] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_match] = ACTIONS(888), + [anon_sym_DOT_DOT] = ACTIONS(888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(886), + [anon_sym_orelse] = ACTIONS(888), + [anon_sym_catch] = ACTIONS(888), + [anon_sym_or] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_xor] = ACTIONS(888), + [anon_sym_LT_LT] = ACTIONS(888), + [anon_sym_GT_GT] = ACTIONS(886), + [anon_sym_LT_LT_PIPE] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(886), + [anon_sym_try] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_CARET] = ACTIONS(886), + [anon_sym_true] = ACTIONS(888), + [anon_sym_false] = ACTIONS(888), + [sym_none] = ACTIONS(888), + [sym_undefined] = ACTIONS(888), + [sym_sink] = ACTIONS(888), + [sym_integer] = ACTIONS(888), + [sym_float] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [sym_multiline_string] = ACTIONS(886), + [sym_character] = ACTIONS(886), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(886), + }, + [STATE(717)] = { + [ts_builtin_sym_end] = ACTIONS(379), + [sym_identifier] = ACTIONS(377), + [anon_sym_import] = ACTIONS(377), + [anon_sym_test] = ACTIONS(377), + [anon_sym_hide] = ACTIONS(377), + [anon_sym_func] = ACTIONS(377), + [anon_sym_c_func] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_AT] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_void] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_anyopaque] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_int] = ACTIONS(377), + [anon_sym_uint] = ACTIONS(377), + [anon_sym_float] = ACTIONS(377), + [anon_sym_range] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_c_char] = ACTIONS(377), + [anon_sym_c_schar] = ACTIONS(377), + [anon_sym_c_uchar] = ACTIONS(377), + [anon_sym_c_short] = ACTIONS(377), + [anon_sym_c_ushort] = ACTIONS(377), + [anon_sym_c_int] = ACTIONS(377), + [anon_sym_c_uint] = ACTIONS(377), + [anon_sym_c_long] = ACTIONS(377), + [anon_sym_c_ulong] = ACTIONS(377), + [anon_sym_c_longlong] = ACTIONS(377), + [anon_sym_c_ulonglong] = ACTIONS(377), + [anon_sym_c_float] = ACTIONS(377), + [anon_sym_c_double] = ACTIONS(377), + [anon_sym_c_longdouble] = ACTIONS(377), + [anon_sym_return] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(377), + [anon_sym_COLON] = ACTIONS(379), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_defer] = ACTIONS(377), + [anon_sym_errdefer] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(377), + [anon_sym_while] = ACTIONS(377), + [anon_sym_expand] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_orelse] = ACTIONS(377), + [anon_sym_catch] = ACTIONS(377), + [anon_sym_or] = ACTIONS(377), + [anon_sym_and] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_xor] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_LT_LT_PIPE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_try] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_none] = ACTIONS(377), + [sym_undefined] = ACTIONS(377), + [sym_sink] = ACTIONS(377), + [sym_integer] = ACTIONS(377), + [sym_float] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [sym_multiline_string] = ACTIONS(379), + [sym_character] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + }, + [STATE(718)] = { + [ts_builtin_sym_end] = ACTIONS(890), + [sym_identifier] = ACTIONS(892), + [anon_sym_import] = ACTIONS(892), + [anon_sym_test] = ACTIONS(892), + [anon_sym_hide] = ACTIONS(892), + [anon_sym_func] = ACTIONS(892), + [anon_sym_c_func] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_QMARK] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_void] = ACTIONS(892), + [anon_sym_type] = ACTIONS(892), + [anon_sym_anyopaque] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_int] = ACTIONS(892), + [anon_sym_uint] = ACTIONS(892), + [anon_sym_float] = ACTIONS(892), + [anon_sym_range] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_c_char] = ACTIONS(892), + [anon_sym_c_schar] = ACTIONS(892), + [anon_sym_c_uchar] = ACTIONS(892), + [anon_sym_c_short] = ACTIONS(892), + [anon_sym_c_ushort] = ACTIONS(892), + [anon_sym_c_int] = ACTIONS(892), + [anon_sym_c_uint] = ACTIONS(892), + [anon_sym_c_long] = ACTIONS(892), + [anon_sym_c_ulong] = ACTIONS(892), + [anon_sym_c_longlong] = ACTIONS(892), + [anon_sym_c_ulonglong] = ACTIONS(892), + [anon_sym_c_float] = ACTIONS(892), + [anon_sym_c_double] = ACTIONS(892), + [anon_sym_c_longdouble] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(892), + [anon_sym_COLON] = ACTIONS(890), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_defer] = ACTIONS(892), + [anon_sym_errdefer] = ACTIONS(892), + [anon_sym_if] = ACTIONS(892), + [anon_sym_else] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [anon_sym_expand] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(890), + [anon_sym_orelse] = ACTIONS(892), + [anon_sym_catch] = ACTIONS(892), + [anon_sym_or] = ACTIONS(892), + [anon_sym_and] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(890), + [anon_sym_BANG_EQ] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_xor] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(890), + [anon_sym_LT_LT_PIPE] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_try] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(892), + [anon_sym_CARET] = ACTIONS(890), + [anon_sym_true] = ACTIONS(892), + [anon_sym_false] = ACTIONS(892), + [sym_none] = ACTIONS(892), + [sym_undefined] = ACTIONS(892), + [sym_sink] = ACTIONS(892), + [sym_integer] = ACTIONS(892), + [sym_float] = ACTIONS(890), + [anon_sym_DQUOTE] = ACTIONS(890), + [sym_multiline_string] = ACTIONS(890), + [sym_character] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(890), + }, + [STATE(719)] = { + [ts_builtin_sym_end] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [anon_sym_import] = ACTIONS(896), + [anon_sym_test] = ACTIONS(896), + [anon_sym_hide] = ACTIONS(896), + [anon_sym_func] = ACTIONS(896), + [anon_sym_c_func] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(894), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_void] = ACTIONS(896), + [anon_sym_type] = ACTIONS(896), + [anon_sym_anyopaque] = ACTIONS(896), + [anon_sym_bool] = ACTIONS(896), + [anon_sym_int] = ACTIONS(896), + [anon_sym_uint] = ACTIONS(896), + [anon_sym_float] = ACTIONS(896), + [anon_sym_range] = ACTIONS(896), + [anon_sym_i8] = ACTIONS(896), + [anon_sym_i16] = ACTIONS(896), + [anon_sym_i32] = ACTIONS(896), + [anon_sym_i64] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(896), + [anon_sym_u16] = ACTIONS(896), + [anon_sym_u32] = ACTIONS(896), + [anon_sym_u64] = ACTIONS(896), + [anon_sym_isize] = ACTIONS(896), + [anon_sym_usize] = ACTIONS(896), + [anon_sym_f32] = ACTIONS(896), + [anon_sym_f64] = ACTIONS(896), + [anon_sym_c_char] = ACTIONS(896), + [anon_sym_c_schar] = ACTIONS(896), + [anon_sym_c_uchar] = ACTIONS(896), + [anon_sym_c_short] = ACTIONS(896), + [anon_sym_c_ushort] = ACTIONS(896), + [anon_sym_c_int] = ACTIONS(896), + [anon_sym_c_uint] = ACTIONS(896), + [anon_sym_c_long] = ACTIONS(896), + [anon_sym_c_ulong] = ACTIONS(896), + [anon_sym_c_longlong] = ACTIONS(896), + [anon_sym_c_ulonglong] = ACTIONS(896), + [anon_sym_c_float] = ACTIONS(896), + [anon_sym_c_double] = ACTIONS(896), + [anon_sym_c_longdouble] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_defer] = ACTIONS(896), + [anon_sym_errdefer] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_expand] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_match] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(894), + [anon_sym_orelse] = ACTIONS(896), + [anon_sym_catch] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_LT_LT_PIPE] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_try] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), + [sym_none] = ACTIONS(896), + [sym_undefined] = ACTIONS(896), + [sym_sink] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym_multiline_string] = ACTIONS(894), + [sym_character] = ACTIONS(894), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(894), + }, + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(289), + [anon_sym_c_func] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_void] = ACTIONS(289), + [anon_sym_type] = ACTIONS(289), + [anon_sym_anyopaque] = ACTIONS(289), + [anon_sym_bool] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_uint] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_range] = ACTIONS(289), + [anon_sym_i8] = ACTIONS(289), + [anon_sym_i16] = ACTIONS(289), + [anon_sym_i32] = ACTIONS(289), + [anon_sym_i64] = ACTIONS(289), + [anon_sym_u8] = ACTIONS(289), + [anon_sym_u16] = ACTIONS(289), + [anon_sym_u32] = ACTIONS(289), + [anon_sym_u64] = ACTIONS(289), + [anon_sym_isize] = ACTIONS(289), + [anon_sym_usize] = ACTIONS(289), + [anon_sym_f32] = ACTIONS(289), + [anon_sym_f64] = ACTIONS(289), + [anon_sym_c_char] = ACTIONS(289), + [anon_sym_c_schar] = ACTIONS(289), + [anon_sym_c_uchar] = ACTIONS(289), + [anon_sym_c_short] = ACTIONS(289), + [anon_sym_c_ushort] = ACTIONS(289), + [anon_sym_c_int] = ACTIONS(289), + [anon_sym_c_uint] = ACTIONS(289), + [anon_sym_c_long] = ACTIONS(289), + [anon_sym_c_ulong] = ACTIONS(289), + [anon_sym_c_longlong] = ACTIONS(289), + [anon_sym_c_ulonglong] = ACTIONS(289), + [anon_sym_c_float] = ACTIONS(289), + [anon_sym_c_double] = ACTIONS(289), + [anon_sym_c_longdouble] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_defer] = ACTIONS(289), + [anon_sym_errdefer] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_expand] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_try] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [sym_none] = ACTIONS(289), + [sym_undefined] = ACTIONS(289), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(289), + [sym_float] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_multiline_string] = ACTIONS(284), + [sym_character] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(721)] = { + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1056), + [anon_sym_import] = ACTIONS(1056), + [anon_sym_test] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_func] = ACTIONS(1056), + [anon_sym_c_func] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_void] = ACTIONS(1056), + [anon_sym_type] = ACTIONS(1056), + [anon_sym_anyopaque] = ACTIONS(1056), + [anon_sym_bool] = ACTIONS(1056), + [anon_sym_int] = ACTIONS(1056), + [anon_sym_uint] = ACTIONS(1056), + [anon_sym_float] = ACTIONS(1056), + [anon_sym_range] = ACTIONS(1056), + [anon_sym_i8] = ACTIONS(1056), + [anon_sym_i16] = ACTIONS(1056), + [anon_sym_i32] = ACTIONS(1056), + [anon_sym_i64] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1056), + [anon_sym_u16] = ACTIONS(1056), + [anon_sym_u32] = ACTIONS(1056), + [anon_sym_u64] = ACTIONS(1056), + [anon_sym_isize] = ACTIONS(1056), + [anon_sym_usize] = ACTIONS(1056), + [anon_sym_f32] = ACTIONS(1056), + [anon_sym_f64] = ACTIONS(1056), + [anon_sym_c_char] = ACTIONS(1056), + [anon_sym_c_schar] = ACTIONS(1056), + [anon_sym_c_uchar] = ACTIONS(1056), + [anon_sym_c_short] = ACTIONS(1056), + [anon_sym_c_ushort] = ACTIONS(1056), + [anon_sym_c_int] = ACTIONS(1056), + [anon_sym_c_uint] = ACTIONS(1056), + [anon_sym_c_long] = ACTIONS(1056), + [anon_sym_c_ulong] = ACTIONS(1056), + [anon_sym_c_longlong] = ACTIONS(1056), + [anon_sym_c_ulonglong] = ACTIONS(1056), + [anon_sym_c_float] = ACTIONS(1056), + [anon_sym_c_double] = ACTIONS(1056), + [anon_sym_c_longdouble] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_defer] = ACTIONS(1056), + [anon_sym_errdefer] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_expand] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_orelse] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_or] = ACTIONS(1056), + [anon_sym_and] = ACTIONS(1056), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_LT_LT_PIPE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [sym_none] = ACTIONS(1056), + [sym_undefined] = ACTIONS(1056), + [sym_sink] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_multiline_string] = ACTIONS(1054), + [sym_character] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1054), + }, + [STATE(722)] = { + [ts_builtin_sym_end] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(1062), + [anon_sym_test] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_func] = ACTIONS(1062), + [anon_sym_c_func] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_void] = ACTIONS(1062), + [anon_sym_type] = ACTIONS(1062), + [anon_sym_anyopaque] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_int] = ACTIONS(1062), + [anon_sym_uint] = ACTIONS(1062), + [anon_sym_float] = ACTIONS(1062), + [anon_sym_range] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_c_char] = ACTIONS(1062), + [anon_sym_c_schar] = ACTIONS(1062), + [anon_sym_c_uchar] = ACTIONS(1062), + [anon_sym_c_short] = ACTIONS(1062), + [anon_sym_c_ushort] = ACTIONS(1062), + [anon_sym_c_int] = ACTIONS(1062), + [anon_sym_c_uint] = ACTIONS(1062), + [anon_sym_c_long] = ACTIONS(1062), + [anon_sym_c_ulong] = ACTIONS(1062), + [anon_sym_c_longlong] = ACTIONS(1062), + [anon_sym_c_ulonglong] = ACTIONS(1062), + [anon_sym_c_float] = ACTIONS(1062), + [anon_sym_c_double] = ACTIONS(1062), + [anon_sym_c_longdouble] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_yield] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_defer] = ACTIONS(1062), + [anon_sym_errdefer] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_expand] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_orelse] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_or] = ACTIONS(1062), + [anon_sym_and] = ACTIONS(1062), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_xor] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(1062), + [anon_sym_GT_GT] = ACTIONS(1060), + [anon_sym_LT_LT_PIPE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [sym_none] = ACTIONS(1062), + [sym_undefined] = ACTIONS(1062), + [sym_sink] = ACTIONS(1062), + [sym_integer] = ACTIONS(1062), + [sym_float] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym_multiline_string] = ACTIONS(1060), + [sym_character] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1060), + }, + [STATE(723)] = { + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1066), + [anon_sym_import] = ACTIONS(1066), + [anon_sym_test] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_func] = ACTIONS(1066), + [anon_sym_c_func] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_QMARK] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_void] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_anyopaque] = ACTIONS(1066), + [anon_sym_bool] = ACTIONS(1066), + [anon_sym_int] = ACTIONS(1066), + [anon_sym_uint] = ACTIONS(1066), + [anon_sym_float] = ACTIONS(1066), + [anon_sym_range] = ACTIONS(1066), + [anon_sym_i8] = ACTIONS(1066), + [anon_sym_i16] = ACTIONS(1066), + [anon_sym_i32] = ACTIONS(1066), + [anon_sym_i64] = ACTIONS(1066), + [anon_sym_u8] = ACTIONS(1066), + [anon_sym_u16] = ACTIONS(1066), + [anon_sym_u32] = ACTIONS(1066), + [anon_sym_u64] = ACTIONS(1066), + [anon_sym_isize] = ACTIONS(1066), + [anon_sym_usize] = ACTIONS(1066), + [anon_sym_f32] = ACTIONS(1066), + [anon_sym_f64] = ACTIONS(1066), + [anon_sym_c_char] = ACTIONS(1066), + [anon_sym_c_schar] = ACTIONS(1066), + [anon_sym_c_uchar] = ACTIONS(1066), + [anon_sym_c_short] = ACTIONS(1066), + [anon_sym_c_ushort] = ACTIONS(1066), + [anon_sym_c_int] = ACTIONS(1066), + [anon_sym_c_uint] = ACTIONS(1066), + [anon_sym_c_long] = ACTIONS(1066), + [anon_sym_c_ulong] = ACTIONS(1066), + [anon_sym_c_longlong] = ACTIONS(1066), + [anon_sym_c_ulonglong] = ACTIONS(1066), + [anon_sym_c_float] = ACTIONS(1066), + [anon_sym_c_double] = ACTIONS(1066), + [anon_sym_c_longdouble] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_yield] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_defer] = ACTIONS(1066), + [anon_sym_errdefer] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_expand] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_orelse] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_or] = ACTIONS(1066), + [anon_sym_and] = ACTIONS(1066), + [anon_sym_EQ_EQ] = ACTIONS(1064), + [anon_sym_BANG_EQ] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1064), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_xor] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1064), + [anon_sym_LT_LT_PIPE] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [sym_none] = ACTIONS(1066), + [sym_undefined] = ACTIONS(1066), + [sym_sink] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [sym_float] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_multiline_string] = ACTIONS(1064), + [sym_character] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1064), + }, + [STATE(724)] = { + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1070), + [anon_sym_import] = ACTIONS(1070), + [anon_sym_test] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_func] = ACTIONS(1070), + [anon_sym_c_func] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_struct] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_void] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_anyopaque] = ACTIONS(1070), + [anon_sym_bool] = ACTIONS(1070), + [anon_sym_int] = ACTIONS(1070), + [anon_sym_uint] = ACTIONS(1070), + [anon_sym_float] = ACTIONS(1070), + [anon_sym_range] = ACTIONS(1070), + [anon_sym_i8] = ACTIONS(1070), + [anon_sym_i16] = ACTIONS(1070), + [anon_sym_i32] = ACTIONS(1070), + [anon_sym_i64] = ACTIONS(1070), + [anon_sym_u8] = ACTIONS(1070), + [anon_sym_u16] = ACTIONS(1070), + [anon_sym_u32] = ACTIONS(1070), + [anon_sym_u64] = ACTIONS(1070), + [anon_sym_isize] = ACTIONS(1070), + [anon_sym_usize] = ACTIONS(1070), + [anon_sym_f32] = ACTIONS(1070), + [anon_sym_f64] = ACTIONS(1070), + [anon_sym_c_char] = ACTIONS(1070), + [anon_sym_c_schar] = ACTIONS(1070), + [anon_sym_c_uchar] = ACTIONS(1070), + [anon_sym_c_short] = ACTIONS(1070), + [anon_sym_c_ushort] = ACTIONS(1070), + [anon_sym_c_int] = ACTIONS(1070), + [anon_sym_c_uint] = ACTIONS(1070), + [anon_sym_c_long] = ACTIONS(1070), + [anon_sym_c_ulong] = ACTIONS(1070), + [anon_sym_c_longlong] = ACTIONS(1070), + [anon_sym_c_ulonglong] = ACTIONS(1070), + [anon_sym_c_float] = ACTIONS(1070), + [anon_sym_c_double] = ACTIONS(1070), + [anon_sym_c_longdouble] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_yield] = ACTIONS(1070), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_defer] = ACTIONS(1070), + [anon_sym_errdefer] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_expand] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_orelse] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_LT_LT] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_LT_LT_PIPE] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [sym_none] = ACTIONS(1070), + [sym_undefined] = ACTIONS(1070), + [sym_sink] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [sym_float] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_multiline_string] = ACTIONS(1068), + [sym_character] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1068), + }, + [STATE(725)] = { + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(900), + [anon_sym_import] = ACTIONS(900), + [anon_sym_test] = ACTIONS(900), + [anon_sym_hide] = ACTIONS(900), + [anon_sym_func] = ACTIONS(900), + [anon_sym_c_func] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_void] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_anyopaque] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_int] = ACTIONS(900), + [anon_sym_uint] = ACTIONS(900), + [anon_sym_float] = ACTIONS(900), + [anon_sym_range] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_c_char] = ACTIONS(900), + [anon_sym_c_schar] = ACTIONS(900), + [anon_sym_c_uchar] = ACTIONS(900), + [anon_sym_c_short] = ACTIONS(900), + [anon_sym_c_ushort] = ACTIONS(900), + [anon_sym_c_int] = ACTIONS(900), + [anon_sym_c_uint] = ACTIONS(900), + [anon_sym_c_long] = ACTIONS(900), + [anon_sym_c_ulong] = ACTIONS(900), + [anon_sym_c_longlong] = ACTIONS(900), + [anon_sym_c_ulonglong] = ACTIONS(900), + [anon_sym_c_float] = ACTIONS(900), + [anon_sym_c_double] = ACTIONS(900), + [anon_sym_c_longdouble] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_yield] = ACTIONS(900), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_defer] = ACTIONS(900), + [anon_sym_errdefer] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_expand] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_DOT_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(898), + [anon_sym_orelse] = ACTIONS(900), + [anon_sym_catch] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_LT_LT] = ACTIONS(900), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_LT_LT_PIPE] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_try] = ACTIONS(900), + [anon_sym_DOT] = ACTIONS(900), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [sym_none] = ACTIONS(900), + [sym_undefined] = ACTIONS(900), + [sym_sink] = ACTIONS(900), + [sym_integer] = ACTIONS(900), + [sym_float] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_multiline_string] = ACTIONS(898), + [sym_character] = ACTIONS(898), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(898), + }, + [STATE(726)] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_test] = ACTIONS(774), + [anon_sym_hide] = ACTIONS(774), + [anon_sym_func] = ACTIONS(774), + [anon_sym_c_func] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_void] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_anyopaque] = ACTIONS(774), + [anon_sym_bool] = ACTIONS(774), + [anon_sym_int] = ACTIONS(774), + [anon_sym_uint] = ACTIONS(774), + [anon_sym_float] = ACTIONS(774), + [anon_sym_range] = ACTIONS(774), + [anon_sym_i8] = ACTIONS(774), + [anon_sym_i16] = ACTIONS(774), + [anon_sym_i32] = ACTIONS(774), + [anon_sym_i64] = ACTIONS(774), + [anon_sym_u8] = ACTIONS(774), + [anon_sym_u16] = ACTIONS(774), + [anon_sym_u32] = ACTIONS(774), + [anon_sym_u64] = ACTIONS(774), + [anon_sym_isize] = ACTIONS(774), + [anon_sym_usize] = ACTIONS(774), + [anon_sym_f32] = ACTIONS(774), + [anon_sym_f64] = ACTIONS(774), + [anon_sym_c_char] = ACTIONS(774), + [anon_sym_c_schar] = ACTIONS(774), + [anon_sym_c_uchar] = ACTIONS(774), + [anon_sym_c_short] = ACTIONS(774), + [anon_sym_c_ushort] = ACTIONS(774), + [anon_sym_c_int] = ACTIONS(774), + [anon_sym_c_uint] = ACTIONS(774), + [anon_sym_c_long] = ACTIONS(774), + [anon_sym_c_ulong] = ACTIONS(774), + [anon_sym_c_longlong] = ACTIONS(774), + [anon_sym_c_ulonglong] = ACTIONS(774), + [anon_sym_c_float] = ACTIONS(774), + [anon_sym_c_double] = ACTIONS(774), + [anon_sym_c_longdouble] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_yield] = ACTIONS(774), + [anon_sym_COLON] = ACTIONS(772), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_defer] = ACTIONS(774), + [anon_sym_errdefer] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_expand] = ACTIONS(774), + [anon_sym_for] = ACTIONS(774), + [anon_sym_match] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [anon_sym_orelse] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_or] = ACTIONS(774), + [anon_sym_and] = ACTIONS(774), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_LT_LT_PIPE] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_true] = ACTIONS(774), + [anon_sym_false] = ACTIONS(774), + [sym_none] = ACTIONS(774), + [sym_undefined] = ACTIONS(774), + [sym_sink] = ACTIONS(774), + [sym_integer] = ACTIONS(774), + [sym_float] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_multiline_string] = ACTIONS(772), + [sym_character] = ACTIONS(772), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(772), + }, + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [anon_sym_import] = ACTIONS(904), + [anon_sym_test] = ACTIONS(904), + [anon_sym_hide] = ACTIONS(904), + [anon_sym_func] = ACTIONS(904), + [anon_sym_c_func] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [anon_sym_QMARK] = ACTIONS(902), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_void] = ACTIONS(904), + [anon_sym_type] = ACTIONS(904), + [anon_sym_anyopaque] = ACTIONS(904), + [anon_sym_bool] = ACTIONS(904), + [anon_sym_int] = ACTIONS(904), + [anon_sym_uint] = ACTIONS(904), + [anon_sym_float] = ACTIONS(904), + [anon_sym_range] = ACTIONS(904), + [anon_sym_i8] = ACTIONS(904), + [anon_sym_i16] = ACTIONS(904), + [anon_sym_i32] = ACTIONS(904), + [anon_sym_i64] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(904), + [anon_sym_u16] = ACTIONS(904), + [anon_sym_u32] = ACTIONS(904), + [anon_sym_u64] = ACTIONS(904), + [anon_sym_isize] = ACTIONS(904), + [anon_sym_usize] = ACTIONS(904), + [anon_sym_f32] = ACTIONS(904), + [anon_sym_f64] = ACTIONS(904), + [anon_sym_c_char] = ACTIONS(904), + [anon_sym_c_schar] = ACTIONS(904), + [anon_sym_c_uchar] = ACTIONS(904), + [anon_sym_c_short] = ACTIONS(904), + [anon_sym_c_ushort] = ACTIONS(904), + [anon_sym_c_int] = ACTIONS(904), + [anon_sym_c_uint] = ACTIONS(904), + [anon_sym_c_long] = ACTIONS(904), + [anon_sym_c_ulong] = ACTIONS(904), + [anon_sym_c_longlong] = ACTIONS(904), + [anon_sym_c_ulonglong] = ACTIONS(904), + [anon_sym_c_float] = ACTIONS(904), + [anon_sym_c_double] = ACTIONS(904), + [anon_sym_c_longdouble] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(904), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_defer] = ACTIONS(904), + [anon_sym_errdefer] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_expand] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_match] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(902), + [anon_sym_orelse] = ACTIONS(904), + [anon_sym_catch] = ACTIONS(904), + [anon_sym_or] = ACTIONS(904), + [anon_sym_and] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(904), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_LT_LT_PIPE] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_try] = ACTIONS(904), + [anon_sym_DOT] = ACTIONS(904), + [anon_sym_CARET] = ACTIONS(902), + [anon_sym_true] = ACTIONS(904), + [anon_sym_false] = ACTIONS(904), + [sym_none] = ACTIONS(904), + [sym_undefined] = ACTIONS(904), + [sym_sink] = ACTIONS(904), + [sym_integer] = ACTIONS(904), + [sym_float] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_multiline_string] = ACTIONS(902), + [sym_character] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(902), + }, + [STATE(728)] = { + [ts_builtin_sym_end] = ACTIONS(726), + [sym_identifier] = ACTIONS(728), + [anon_sym_import] = ACTIONS(728), + [anon_sym_test] = ACTIONS(728), + [anon_sym_hide] = ACTIONS(728), + [anon_sym_func] = ACTIONS(728), + [anon_sym_c_func] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_void] = ACTIONS(728), + [anon_sym_type] = ACTIONS(728), + [anon_sym_anyopaque] = ACTIONS(728), + [anon_sym_bool] = ACTIONS(728), + [anon_sym_int] = ACTIONS(728), + [anon_sym_uint] = ACTIONS(728), + [anon_sym_float] = ACTIONS(728), + [anon_sym_range] = ACTIONS(728), + [anon_sym_i8] = ACTIONS(728), + [anon_sym_i16] = ACTIONS(728), + [anon_sym_i32] = ACTIONS(728), + [anon_sym_i64] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(728), + [anon_sym_u16] = ACTIONS(728), + [anon_sym_u32] = ACTIONS(728), + [anon_sym_u64] = ACTIONS(728), + [anon_sym_isize] = ACTIONS(728), + [anon_sym_usize] = ACTIONS(728), + [anon_sym_f32] = ACTIONS(728), + [anon_sym_f64] = ACTIONS(728), + [anon_sym_c_char] = ACTIONS(728), + [anon_sym_c_schar] = ACTIONS(728), + [anon_sym_c_uchar] = ACTIONS(728), + [anon_sym_c_short] = ACTIONS(728), + [anon_sym_c_ushort] = ACTIONS(728), + [anon_sym_c_int] = ACTIONS(728), + [anon_sym_c_uint] = ACTIONS(728), + [anon_sym_c_long] = ACTIONS(728), + [anon_sym_c_ulong] = ACTIONS(728), + [anon_sym_c_longlong] = ACTIONS(728), + [anon_sym_c_ulonglong] = ACTIONS(728), + [anon_sym_c_float] = ACTIONS(728), + [anon_sym_c_double] = ACTIONS(728), + [anon_sym_c_longdouble] = ACTIONS(728), + [anon_sym_return] = ACTIONS(728), + [anon_sym_yield] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_defer] = ACTIONS(728), + [anon_sym_errdefer] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_expand] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_match] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(726), + [anon_sym_orelse] = ACTIONS(728), + [anon_sym_catch] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_xor] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_LT_LT_PIPE] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_try] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [sym_none] = ACTIONS(728), + [sym_undefined] = ACTIONS(728), + [sym_sink] = ACTIONS(728), + [sym_integer] = ACTIONS(728), + [sym_float] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_multiline_string] = ACTIONS(726), + [sym_character] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(726), + }, + [STATE(729)] = { + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [anon_sym_import] = ACTIONS(908), + [anon_sym_test] = ACTIONS(908), + [anon_sym_hide] = ACTIONS(908), + [anon_sym_func] = ACTIONS(908), + [anon_sym_c_func] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_void] = ACTIONS(908), + [anon_sym_type] = ACTIONS(908), + [anon_sym_anyopaque] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_int] = ACTIONS(908), + [anon_sym_uint] = ACTIONS(908), + [anon_sym_float] = ACTIONS(908), + [anon_sym_range] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_c_char] = ACTIONS(908), + [anon_sym_c_schar] = ACTIONS(908), + [anon_sym_c_uchar] = ACTIONS(908), + [anon_sym_c_short] = ACTIONS(908), + [anon_sym_c_ushort] = ACTIONS(908), + [anon_sym_c_int] = ACTIONS(908), + [anon_sym_c_uint] = ACTIONS(908), + [anon_sym_c_long] = ACTIONS(908), + [anon_sym_c_ulong] = ACTIONS(908), + [anon_sym_c_longlong] = ACTIONS(908), + [anon_sym_c_ulonglong] = ACTIONS(908), + [anon_sym_c_float] = ACTIONS(908), + [anon_sym_c_double] = ACTIONS(908), + [anon_sym_c_longdouble] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(906), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_defer] = ACTIONS(908), + [anon_sym_errdefer] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_expand] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_match] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(906), + [anon_sym_orelse] = ACTIONS(908), + [anon_sym_catch] = ACTIONS(908), + [anon_sym_or] = ACTIONS(908), + [anon_sym_and] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(908), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_LT_LT_PIPE] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_try] = ACTIONS(908), + [anon_sym_DOT] = ACTIONS(908), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_true] = ACTIONS(908), + [anon_sym_false] = ACTIONS(908), + [sym_none] = ACTIONS(908), + [sym_undefined] = ACTIONS(908), + [sym_sink] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [sym_float] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_multiline_string] = ACTIONS(906), + [sym_character] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(906), + }, + [STATE(730)] = { + [ts_builtin_sym_end] = ACTIONS(910), + [sym_identifier] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_test] = ACTIONS(912), + [anon_sym_hide] = ACTIONS(912), + [anon_sym_func] = ACTIONS(912), + [anon_sym_c_func] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_DOLLAR] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_QMARK] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_void] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_anyopaque] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_uint] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_range] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_c_char] = ACTIONS(912), + [anon_sym_c_schar] = ACTIONS(912), + [anon_sym_c_uchar] = ACTIONS(912), + [anon_sym_c_short] = ACTIONS(912), + [anon_sym_c_ushort] = ACTIONS(912), + [anon_sym_c_int] = ACTIONS(912), + [anon_sym_c_uint] = ACTIONS(912), + [anon_sym_c_long] = ACTIONS(912), + [anon_sym_c_ulong] = ACTIONS(912), + [anon_sym_c_longlong] = ACTIONS(912), + [anon_sym_c_ulonglong] = ACTIONS(912), + [anon_sym_c_float] = ACTIONS(912), + [anon_sym_c_double] = ACTIONS(912), + [anon_sym_c_longdouble] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_COLON] = ACTIONS(910), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_defer] = ACTIONS(912), + [anon_sym_errdefer] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_expand] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_match] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(910), + [anon_sym_orelse] = ACTIONS(912), + [anon_sym_catch] = ACTIONS(912), + [anon_sym_or] = ACTIONS(912), + [anon_sym_and] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_xor] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(912), + [anon_sym_GT_GT] = ACTIONS(910), + [anon_sym_LT_LT_PIPE] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_SLASH] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_try] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_true] = ACTIONS(912), + [anon_sym_false] = ACTIONS(912), + [sym_none] = ACTIONS(912), + [sym_undefined] = ACTIONS(912), + [sym_sink] = ACTIONS(912), + [sym_integer] = ACTIONS(912), + [sym_float] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_multiline_string] = ACTIONS(910), + [sym_character] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(910), + }, + [STATE(731)] = { + [ts_builtin_sym_end] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1074), + [anon_sym_import] = ACTIONS(1074), + [anon_sym_test] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_func] = ACTIONS(1074), + [anon_sym_c_func] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_QMARK] = ACTIONS(1072), + [anon_sym_AT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_void] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_anyopaque] = ACTIONS(1074), + [anon_sym_bool] = ACTIONS(1074), + [anon_sym_int] = ACTIONS(1074), + [anon_sym_uint] = ACTIONS(1074), + [anon_sym_float] = ACTIONS(1074), + [anon_sym_range] = ACTIONS(1074), + [anon_sym_i8] = ACTIONS(1074), + [anon_sym_i16] = ACTIONS(1074), + [anon_sym_i32] = ACTIONS(1074), + [anon_sym_i64] = ACTIONS(1074), + [anon_sym_u8] = ACTIONS(1074), + [anon_sym_u16] = ACTIONS(1074), + [anon_sym_u32] = ACTIONS(1074), + [anon_sym_u64] = ACTIONS(1074), + [anon_sym_isize] = ACTIONS(1074), + [anon_sym_usize] = ACTIONS(1074), + [anon_sym_f32] = ACTIONS(1074), + [anon_sym_f64] = ACTIONS(1074), + [anon_sym_c_char] = ACTIONS(1074), + [anon_sym_c_schar] = ACTIONS(1074), + [anon_sym_c_uchar] = ACTIONS(1074), + [anon_sym_c_short] = ACTIONS(1074), + [anon_sym_c_ushort] = ACTIONS(1074), + [anon_sym_c_int] = ACTIONS(1074), + [anon_sym_c_uint] = ACTIONS(1074), + [anon_sym_c_long] = ACTIONS(1074), + [anon_sym_c_ulong] = ACTIONS(1074), + [anon_sym_c_longlong] = ACTIONS(1074), + [anon_sym_c_ulonglong] = ACTIONS(1074), + [anon_sym_c_float] = ACTIONS(1074), + [anon_sym_c_double] = ACTIONS(1074), + [anon_sym_c_longdouble] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1074), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_defer] = ACTIONS(1074), + [anon_sym_errdefer] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_expand] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_orelse] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_or] = ACTIONS(1074), + [anon_sym_and] = ACTIONS(1074), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1072), + [anon_sym_xor] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1074), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_LT_LT_PIPE] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [sym_none] = ACTIONS(1074), + [sym_undefined] = ACTIONS(1074), + [sym_sink] = ACTIONS(1074), + [sym_integer] = ACTIONS(1074), + [sym_float] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_multiline_string] = ACTIONS(1072), + [sym_character] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1072), + }, + [STATE(732)] = { + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_test] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_func] = ACTIONS(1078), + [anon_sym_c_func] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1078), + [anon_sym_type] = ACTIONS(1078), + [anon_sym_anyopaque] = ACTIONS(1078), + [anon_sym_bool] = ACTIONS(1078), + [anon_sym_int] = ACTIONS(1078), + [anon_sym_uint] = ACTIONS(1078), + [anon_sym_float] = ACTIONS(1078), + [anon_sym_range] = ACTIONS(1078), + [anon_sym_i8] = ACTIONS(1078), + [anon_sym_i16] = ACTIONS(1078), + [anon_sym_i32] = ACTIONS(1078), + [anon_sym_i64] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1078), + [anon_sym_u16] = ACTIONS(1078), + [anon_sym_u32] = ACTIONS(1078), + [anon_sym_u64] = ACTIONS(1078), + [anon_sym_isize] = ACTIONS(1078), + [anon_sym_usize] = ACTIONS(1078), + [anon_sym_f32] = ACTIONS(1078), + [anon_sym_f64] = ACTIONS(1078), + [anon_sym_c_char] = ACTIONS(1078), + [anon_sym_c_schar] = ACTIONS(1078), + [anon_sym_c_uchar] = ACTIONS(1078), + [anon_sym_c_short] = ACTIONS(1078), + [anon_sym_c_ushort] = ACTIONS(1078), + [anon_sym_c_int] = ACTIONS(1078), + [anon_sym_c_uint] = ACTIONS(1078), + [anon_sym_c_long] = ACTIONS(1078), + [anon_sym_c_ulong] = ACTIONS(1078), + [anon_sym_c_longlong] = ACTIONS(1078), + [anon_sym_c_ulonglong] = ACTIONS(1078), + [anon_sym_c_float] = ACTIONS(1078), + [anon_sym_c_double] = ACTIONS(1078), + [anon_sym_c_longdouble] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_defer] = ACTIONS(1078), + [anon_sym_errdefer] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_expand] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_orelse] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_or] = ACTIONS(1078), + [anon_sym_and] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT_PIPE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [sym_none] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1078), + [sym_sink] = ACTIONS(1078), + [sym_integer] = ACTIONS(1078), + [sym_float] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_multiline_string] = ACTIONS(1076), + [sym_character] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1076), + }, + [STATE(733)] = { + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_import] = ACTIONS(1086), + [anon_sym_test] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_func] = ACTIONS(1086), + [anon_sym_c_func] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_type] = ACTIONS(1086), + [anon_sym_anyopaque] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_int] = ACTIONS(1086), + [anon_sym_uint] = ACTIONS(1086), + [anon_sym_float] = ACTIONS(1086), + [anon_sym_range] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_c_char] = ACTIONS(1086), + [anon_sym_c_schar] = ACTIONS(1086), + [anon_sym_c_uchar] = ACTIONS(1086), + [anon_sym_c_short] = ACTIONS(1086), + [anon_sym_c_ushort] = ACTIONS(1086), + [anon_sym_c_int] = ACTIONS(1086), + [anon_sym_c_uint] = ACTIONS(1086), + [anon_sym_c_long] = ACTIONS(1086), + [anon_sym_c_ulong] = ACTIONS(1086), + [anon_sym_c_longlong] = ACTIONS(1086), + [anon_sym_c_ulonglong] = ACTIONS(1086), + [anon_sym_c_float] = ACTIONS(1086), + [anon_sym_c_double] = ACTIONS(1086), + [anon_sym_c_longdouble] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_COLON] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_defer] = ACTIONS(1086), + [anon_sym_errdefer] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_expand] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1084), + [anon_sym_orelse] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_LT_LT_PIPE] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [sym_none] = ACTIONS(1086), + [sym_undefined] = ACTIONS(1086), + [sym_sink] = ACTIONS(1086), + [sym_integer] = ACTIONS(1086), + [sym_float] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_multiline_string] = ACTIONS(1084), + [sym_character] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1084), + }, + [STATE(734)] = { + [ts_builtin_sym_end] = ACTIONS(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_import] = ACTIONS(539), + [anon_sym_test] = ACTIONS(539), + [anon_sym_hide] = ACTIONS(539), + [anon_sym_func] = ACTIONS(539), + [anon_sym_c_func] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_void] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_anyopaque] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_int] = ACTIONS(539), + [anon_sym_uint] = ACTIONS(539), + [anon_sym_float] = ACTIONS(539), + [anon_sym_range] = ACTIONS(539), + [anon_sym_i8] = ACTIONS(539), + [anon_sym_i16] = ACTIONS(539), + [anon_sym_i32] = ACTIONS(539), + [anon_sym_i64] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(539), + [anon_sym_u16] = ACTIONS(539), + [anon_sym_u32] = ACTIONS(539), + [anon_sym_u64] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_c_char] = ACTIONS(539), + [anon_sym_c_schar] = ACTIONS(539), + [anon_sym_c_uchar] = ACTIONS(539), + [anon_sym_c_short] = ACTIONS(539), + [anon_sym_c_ushort] = ACTIONS(539), + [anon_sym_c_int] = ACTIONS(539), + [anon_sym_c_uint] = ACTIONS(539), + [anon_sym_c_long] = ACTIONS(539), + [anon_sym_c_ulong] = ACTIONS(539), + [anon_sym_c_longlong] = ACTIONS(539), + [anon_sym_c_ulonglong] = ACTIONS(539), + [anon_sym_c_float] = ACTIONS(539), + [anon_sym_c_double] = ACTIONS(539), + [anon_sym_c_longdouble] = ACTIONS(539), + [anon_sym_return] = ACTIONS(539), + [anon_sym_yield] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(537), + [anon_sym_break] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_defer] = ACTIONS(539), + [anon_sym_errdefer] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_else] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [anon_sym_expand] = ACTIONS(539), + [anon_sym_for] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_orelse] = ACTIONS(539), + [anon_sym_catch] = ACTIONS(539), + [anon_sym_or] = ACTIONS(539), + [anon_sym_and] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_xor] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_LT_LT_PIPE] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_try] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [sym_none] = ACTIONS(539), + [sym_undefined] = ACTIONS(539), + [sym_sink] = ACTIONS(539), + [sym_integer] = ACTIONS(539), + [sym_float] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(537), + [sym_multiline_string] = ACTIONS(537), + [sym_character] = ACTIONS(537), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(537), + }, + [STATE(735)] = { + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [anon_sym_import] = ACTIONS(732), + [anon_sym_test] = ACTIONS(732), + [anon_sym_hide] = ACTIONS(732), + [anon_sym_func] = ACTIONS(732), + [anon_sym_c_func] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_struct] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_QMARK] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_void] = ACTIONS(732), + [anon_sym_type] = ACTIONS(732), + [anon_sym_anyopaque] = ACTIONS(732), + [anon_sym_bool] = ACTIONS(732), + [anon_sym_int] = ACTIONS(732), + [anon_sym_uint] = ACTIONS(732), + [anon_sym_float] = ACTIONS(732), + [anon_sym_range] = ACTIONS(732), + [anon_sym_i8] = ACTIONS(732), + [anon_sym_i16] = ACTIONS(732), + [anon_sym_i32] = ACTIONS(732), + [anon_sym_i64] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(732), + [anon_sym_u16] = ACTIONS(732), + [anon_sym_u32] = ACTIONS(732), + [anon_sym_u64] = ACTIONS(732), + [anon_sym_isize] = ACTIONS(732), + [anon_sym_usize] = ACTIONS(732), + [anon_sym_f32] = ACTIONS(732), + [anon_sym_f64] = ACTIONS(732), + [anon_sym_c_char] = ACTIONS(732), + [anon_sym_c_schar] = ACTIONS(732), + [anon_sym_c_uchar] = ACTIONS(732), + [anon_sym_c_short] = ACTIONS(732), + [anon_sym_c_ushort] = ACTIONS(732), + [anon_sym_c_int] = ACTIONS(732), + [anon_sym_c_uint] = ACTIONS(732), + [anon_sym_c_long] = ACTIONS(732), + [anon_sym_c_ulong] = ACTIONS(732), + [anon_sym_c_longlong] = ACTIONS(732), + [anon_sym_c_ulonglong] = ACTIONS(732), + [anon_sym_c_float] = ACTIONS(732), + [anon_sym_c_double] = ACTIONS(732), + [anon_sym_c_longdouble] = ACTIONS(732), + [anon_sym_return] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_defer] = ACTIONS(732), + [anon_sym_errdefer] = ACTIONS(732), + [anon_sym_if] = ACTIONS(732), + [anon_sym_else] = ACTIONS(732), + [anon_sym_while] = ACTIONS(732), + [anon_sym_expand] = ACTIONS(732), + [anon_sym_for] = ACTIONS(732), + [anon_sym_match] = ACTIONS(732), + [anon_sym_DOT_DOT] = ACTIONS(732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [anon_sym_orelse] = ACTIONS(732), + [anon_sym_catch] = ACTIONS(732), + [anon_sym_or] = ACTIONS(732), + [anon_sym_and] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_LT_LT_PIPE] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_try] = ACTIONS(732), + [anon_sym_DOT] = ACTIONS(732), + [anon_sym_CARET] = ACTIONS(730), + [anon_sym_true] = ACTIONS(732), + [anon_sym_false] = ACTIONS(732), + [sym_none] = ACTIONS(732), + [sym_undefined] = ACTIONS(732), + [sym_sink] = ACTIONS(732), + [sym_integer] = ACTIONS(732), + [sym_float] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym_multiline_string] = ACTIONS(730), + [sym_character] = ACTIONS(730), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(730), + }, + [STATE(736)] = { + [ts_builtin_sym_end] = ACTIONS(706), + [sym_identifier] = ACTIONS(708), + [anon_sym_import] = ACTIONS(708), + [anon_sym_test] = ACTIONS(708), + [anon_sym_hide] = ACTIONS(708), + [anon_sym_func] = ACTIONS(708), + [anon_sym_c_func] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_void] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_anyopaque] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_int] = ACTIONS(708), + [anon_sym_uint] = ACTIONS(708), + [anon_sym_float] = ACTIONS(708), + [anon_sym_range] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_c_char] = ACTIONS(708), + [anon_sym_c_schar] = ACTIONS(708), + [anon_sym_c_uchar] = ACTIONS(708), + [anon_sym_c_short] = ACTIONS(708), + [anon_sym_c_ushort] = ACTIONS(708), + [anon_sym_c_int] = ACTIONS(708), + [anon_sym_c_uint] = ACTIONS(708), + [anon_sym_c_long] = ACTIONS(708), + [anon_sym_c_ulong] = ACTIONS(708), + [anon_sym_c_longlong] = ACTIONS(708), + [anon_sym_c_ulonglong] = ACTIONS(708), + [anon_sym_c_float] = ACTIONS(708), + [anon_sym_c_double] = ACTIONS(708), + [anon_sym_c_longdouble] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(708), + [anon_sym_COLON] = ACTIONS(706), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_defer] = ACTIONS(708), + [anon_sym_errdefer] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_expand] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(706), + [anon_sym_orelse] = ACTIONS(708), + [anon_sym_catch] = ACTIONS(708), + [anon_sym_or] = ACTIONS(708), + [anon_sym_and] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_xor] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_LT_LT_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_try] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_none] = ACTIONS(708), + [sym_undefined] = ACTIONS(708), + [sym_sink] = ACTIONS(708), + [sym_integer] = ACTIONS(708), + [sym_float] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [sym_multiline_string] = ACTIONS(706), + [sym_character] = ACTIONS(706), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(706), + }, + [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_test] = ACTIONS(668), + [anon_sym_hide] = ACTIONS(668), + [anon_sym_func] = ACTIONS(668), + [anon_sym_c_func] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_struct] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_DOLLAR] = ACTIONS(666), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_void] = ACTIONS(668), + [anon_sym_type] = ACTIONS(668), + [anon_sym_anyopaque] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_uint] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_range] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_c_char] = ACTIONS(668), + [anon_sym_c_schar] = ACTIONS(668), + [anon_sym_c_uchar] = ACTIONS(668), + [anon_sym_c_short] = ACTIONS(668), + [anon_sym_c_ushort] = ACTIONS(668), + [anon_sym_c_int] = ACTIONS(668), + [anon_sym_c_uint] = ACTIONS(668), + [anon_sym_c_long] = ACTIONS(668), + [anon_sym_c_ulong] = ACTIONS(668), + [anon_sym_c_longlong] = ACTIONS(668), + [anon_sym_c_ulonglong] = ACTIONS(668), + [anon_sym_c_float] = ACTIONS(668), + [anon_sym_c_double] = ACTIONS(668), + [anon_sym_c_longdouble] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_defer] = ACTIONS(668), + [anon_sym_errdefer] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_expand] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_match] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(666), + [anon_sym_orelse] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_xor] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_LT_LT_PIPE] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_true] = ACTIONS(668), + [anon_sym_false] = ACTIONS(668), + [sym_none] = ACTIONS(668), + [sym_undefined] = ACTIONS(668), + [sym_sink] = ACTIONS(668), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_multiline_string] = ACTIONS(666), + [sym_character] = ACTIONS(666), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(666), + }, + [STATE(738)] = { + [ts_builtin_sym_end] = ACTIONS(784), + [sym_identifier] = ACTIONS(786), + [anon_sym_import] = ACTIONS(786), + [anon_sym_test] = ACTIONS(786), + [anon_sym_hide] = ACTIONS(786), + [anon_sym_func] = ACTIONS(786), + [anon_sym_c_func] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_struct] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_void] = ACTIONS(786), + [anon_sym_type] = ACTIONS(786), + [anon_sym_anyopaque] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_int] = ACTIONS(786), + [anon_sym_uint] = ACTIONS(786), + [anon_sym_float] = ACTIONS(786), + [anon_sym_range] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_c_char] = ACTIONS(786), + [anon_sym_c_schar] = ACTIONS(786), + [anon_sym_c_uchar] = ACTIONS(786), + [anon_sym_c_short] = ACTIONS(786), + [anon_sym_c_ushort] = ACTIONS(786), + [anon_sym_c_int] = ACTIONS(786), + [anon_sym_c_uint] = ACTIONS(786), + [anon_sym_c_long] = ACTIONS(786), + [anon_sym_c_ulong] = ACTIONS(786), + [anon_sym_c_longlong] = ACTIONS(786), + [anon_sym_c_ulonglong] = ACTIONS(786), + [anon_sym_c_float] = ACTIONS(786), + [anon_sym_c_double] = ACTIONS(786), + [anon_sym_c_longdouble] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym_break] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_defer] = ACTIONS(786), + [anon_sym_errdefer] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_else] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [anon_sym_expand] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_match] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [anon_sym_orelse] = ACTIONS(786), + [anon_sym_catch] = ACTIONS(786), + [anon_sym_or] = ACTIONS(786), + [anon_sym_and] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(786), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_TILDE] = ACTIONS(784), + [anon_sym_try] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_sink] = ACTIONS(786), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_multiline_string] = ACTIONS(784), + [sym_character] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(784), + }, + [STATE(739)] = { + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_test] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_func] = ACTIONS(922), + [anon_sym_c_func] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_QMARK] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_void] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_anyopaque] = ACTIONS(922), + [anon_sym_bool] = ACTIONS(922), + [anon_sym_int] = ACTIONS(922), + [anon_sym_uint] = ACTIONS(922), + [anon_sym_float] = ACTIONS(922), + [anon_sym_range] = ACTIONS(922), + [anon_sym_i8] = ACTIONS(922), + [anon_sym_i16] = ACTIONS(922), + [anon_sym_i32] = ACTIONS(922), + [anon_sym_i64] = ACTIONS(922), + [anon_sym_u8] = ACTIONS(922), + [anon_sym_u16] = ACTIONS(922), + [anon_sym_u32] = ACTIONS(922), + [anon_sym_u64] = ACTIONS(922), + [anon_sym_isize] = ACTIONS(922), + [anon_sym_usize] = ACTIONS(922), + [anon_sym_f32] = ACTIONS(922), + [anon_sym_f64] = ACTIONS(922), + [anon_sym_c_char] = ACTIONS(922), + [anon_sym_c_schar] = ACTIONS(922), + [anon_sym_c_uchar] = ACTIONS(922), + [anon_sym_c_short] = ACTIONS(922), + [anon_sym_c_ushort] = ACTIONS(922), + [anon_sym_c_int] = ACTIONS(922), + [anon_sym_c_uint] = ACTIONS(922), + [anon_sym_c_long] = ACTIONS(922), + [anon_sym_c_ulong] = ACTIONS(922), + [anon_sym_c_longlong] = ACTIONS(922), + [anon_sym_c_ulonglong] = ACTIONS(922), + [anon_sym_c_float] = ACTIONS(922), + [anon_sym_c_double] = ACTIONS(922), + [anon_sym_c_longdouble] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_yield] = ACTIONS(922), + [anon_sym_COLON] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_defer] = ACTIONS(922), + [anon_sym_errdefer] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_expand] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_orelse] = ACTIONS(922), + [anon_sym_catch] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(920), + [anon_sym_LT_LT_PIPE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [sym_none] = ACTIONS(922), + [sym_undefined] = ACTIONS(922), + [sym_sink] = ACTIONS(922), + [sym_integer] = ACTIONS(922), + [sym_float] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_multiline_string] = ACTIONS(920), + [sym_character] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(920), + }, + [STATE(740)] = { + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_test] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_func] = ACTIONS(926), + [anon_sym_c_func] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_DOLLAR] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(924), + [anon_sym_QMARK] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_void] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_anyopaque] = ACTIONS(926), + [anon_sym_bool] = ACTIONS(926), + [anon_sym_int] = ACTIONS(926), + [anon_sym_uint] = ACTIONS(926), + [anon_sym_float] = ACTIONS(926), + [anon_sym_range] = ACTIONS(926), + [anon_sym_i8] = ACTIONS(926), + [anon_sym_i16] = ACTIONS(926), + [anon_sym_i32] = ACTIONS(926), + [anon_sym_i64] = ACTIONS(926), + [anon_sym_u8] = ACTIONS(926), + [anon_sym_u16] = ACTIONS(926), + [anon_sym_u32] = ACTIONS(926), + [anon_sym_u64] = ACTIONS(926), + [anon_sym_isize] = ACTIONS(926), + [anon_sym_usize] = ACTIONS(926), + [anon_sym_f32] = ACTIONS(926), + [anon_sym_f64] = ACTIONS(926), + [anon_sym_c_char] = ACTIONS(926), + [anon_sym_c_schar] = ACTIONS(926), + [anon_sym_c_uchar] = ACTIONS(926), + [anon_sym_c_short] = ACTIONS(926), + [anon_sym_c_ushort] = ACTIONS(926), + [anon_sym_c_int] = ACTIONS(926), + [anon_sym_c_uint] = ACTIONS(926), + [anon_sym_c_long] = ACTIONS(926), + [anon_sym_c_ulong] = ACTIONS(926), + [anon_sym_c_longlong] = ACTIONS(926), + [anon_sym_c_ulonglong] = ACTIONS(926), + [anon_sym_c_float] = ACTIONS(926), + [anon_sym_c_double] = ACTIONS(926), + [anon_sym_c_longdouble] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_yield] = ACTIONS(926), + [anon_sym_COLON] = ACTIONS(924), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_defer] = ACTIONS(926), + [anon_sym_errdefer] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_expand] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(924), + [anon_sym_orelse] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(926), + [anon_sym_GT_GT] = ACTIONS(924), + [anon_sym_LT_LT_PIPE] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [sym_none] = ACTIONS(926), + [sym_undefined] = ACTIONS(926), + [sym_sink] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_multiline_string] = ACTIONS(924), + [sym_character] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(924), + }, + [STATE(741)] = { + [ts_builtin_sym_end] = ACTIONS(710), + [sym_identifier] = ACTIONS(712), + [anon_sym_import] = ACTIONS(712), + [anon_sym_test] = ACTIONS(712), + [anon_sym_hide] = ACTIONS(712), + [anon_sym_func] = ACTIONS(712), + [anon_sym_c_func] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_void] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_anyopaque] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_int] = ACTIONS(712), + [anon_sym_uint] = ACTIONS(712), + [anon_sym_float] = ACTIONS(712), + [anon_sym_range] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_c_char] = ACTIONS(712), + [anon_sym_c_schar] = ACTIONS(712), + [anon_sym_c_uchar] = ACTIONS(712), + [anon_sym_c_short] = ACTIONS(712), + [anon_sym_c_ushort] = ACTIONS(712), + [anon_sym_c_int] = ACTIONS(712), + [anon_sym_c_uint] = ACTIONS(712), + [anon_sym_c_long] = ACTIONS(712), + [anon_sym_c_ulong] = ACTIONS(712), + [anon_sym_c_longlong] = ACTIONS(712), + [anon_sym_c_ulonglong] = ACTIONS(712), + [anon_sym_c_float] = ACTIONS(712), + [anon_sym_c_double] = ACTIONS(712), + [anon_sym_c_longdouble] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_yield] = ACTIONS(712), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_defer] = ACTIONS(712), + [anon_sym_errdefer] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_else] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_expand] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_orelse] = ACTIONS(712), + [anon_sym_catch] = ACTIONS(712), + [anon_sym_or] = ACTIONS(712), + [anon_sym_and] = ACTIONS(712), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(710), + [anon_sym_xor] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_LT_LT_PIPE] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_try] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_true] = ACTIONS(712), + [anon_sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), + [sym_undefined] = ACTIONS(712), + [sym_sink] = ACTIONS(712), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(710), + [sym_multiline_string] = ACTIONS(710), + [sym_character] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(710), + }, + [STATE(742)] = { + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [anon_sym_import] = ACTIONS(930), + [anon_sym_test] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_func] = ACTIONS(930), + [anon_sym_c_func] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(928), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_void] = ACTIONS(930), + [anon_sym_type] = ACTIONS(930), + [anon_sym_anyopaque] = ACTIONS(930), + [anon_sym_bool] = ACTIONS(930), + [anon_sym_int] = ACTIONS(930), + [anon_sym_uint] = ACTIONS(930), + [anon_sym_float] = ACTIONS(930), + [anon_sym_range] = ACTIONS(930), + [anon_sym_i8] = ACTIONS(930), + [anon_sym_i16] = ACTIONS(930), + [anon_sym_i32] = ACTIONS(930), + [anon_sym_i64] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(930), + [anon_sym_u16] = ACTIONS(930), + [anon_sym_u32] = ACTIONS(930), + [anon_sym_u64] = ACTIONS(930), + [anon_sym_isize] = ACTIONS(930), + [anon_sym_usize] = ACTIONS(930), + [anon_sym_f32] = ACTIONS(930), + [anon_sym_f64] = ACTIONS(930), + [anon_sym_c_char] = ACTIONS(930), + [anon_sym_c_schar] = ACTIONS(930), + [anon_sym_c_uchar] = ACTIONS(930), + [anon_sym_c_short] = ACTIONS(930), + [anon_sym_c_ushort] = ACTIONS(930), + [anon_sym_c_int] = ACTIONS(930), + [anon_sym_c_uint] = ACTIONS(930), + [anon_sym_c_long] = ACTIONS(930), + [anon_sym_c_ulong] = ACTIONS(930), + [anon_sym_c_longlong] = ACTIONS(930), + [anon_sym_c_ulonglong] = ACTIONS(930), + [anon_sym_c_float] = ACTIONS(930), + [anon_sym_c_double] = ACTIONS(930), + [anon_sym_c_longdouble] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_yield] = ACTIONS(930), + [anon_sym_COLON] = ACTIONS(928), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_defer] = ACTIONS(930), + [anon_sym_errdefer] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_expand] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(928), + [anon_sym_orelse] = ACTIONS(930), + [anon_sym_catch] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_LT_LT] = ACTIONS(930), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_LT_LT_PIPE] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [sym_none] = ACTIONS(930), + [sym_undefined] = ACTIONS(930), + [sym_sink] = ACTIONS(930), + [sym_integer] = ACTIONS(930), + [sym_float] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_multiline_string] = ACTIONS(928), + [sym_character] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(928), + }, + [STATE(743)] = { + [ts_builtin_sym_end] = ACTIONS(932), + [sym_identifier] = ACTIONS(934), + [anon_sym_import] = ACTIONS(934), + [anon_sym_test] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_func] = ACTIONS(934), + [anon_sym_c_func] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(932), + [anon_sym_QMARK] = ACTIONS(932), + [anon_sym_AT] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_void] = ACTIONS(934), + [anon_sym_type] = ACTIONS(934), + [anon_sym_anyopaque] = ACTIONS(934), + [anon_sym_bool] = ACTIONS(934), + [anon_sym_int] = ACTIONS(934), + [anon_sym_uint] = ACTIONS(934), + [anon_sym_float] = ACTIONS(934), + [anon_sym_range] = ACTIONS(934), + [anon_sym_i8] = ACTIONS(934), + [anon_sym_i16] = ACTIONS(934), + [anon_sym_i32] = ACTIONS(934), + [anon_sym_i64] = ACTIONS(934), + [anon_sym_u8] = ACTIONS(934), + [anon_sym_u16] = ACTIONS(934), + [anon_sym_u32] = ACTIONS(934), + [anon_sym_u64] = ACTIONS(934), + [anon_sym_isize] = ACTIONS(934), + [anon_sym_usize] = ACTIONS(934), + [anon_sym_f32] = ACTIONS(934), + [anon_sym_f64] = ACTIONS(934), + [anon_sym_c_char] = ACTIONS(934), + [anon_sym_c_schar] = ACTIONS(934), + [anon_sym_c_uchar] = ACTIONS(934), + [anon_sym_c_short] = ACTIONS(934), + [anon_sym_c_ushort] = ACTIONS(934), + [anon_sym_c_int] = ACTIONS(934), + [anon_sym_c_uint] = ACTIONS(934), + [anon_sym_c_long] = ACTIONS(934), + [anon_sym_c_ulong] = ACTIONS(934), + [anon_sym_c_longlong] = ACTIONS(934), + [anon_sym_c_ulonglong] = ACTIONS(934), + [anon_sym_c_float] = ACTIONS(934), + [anon_sym_c_double] = ACTIONS(934), + [anon_sym_c_longdouble] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_yield] = ACTIONS(934), + [anon_sym_COLON] = ACTIONS(932), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_defer] = ACTIONS(934), + [anon_sym_errdefer] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_expand] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(932), + [anon_sym_orelse] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(932), + [anon_sym_LT_LT_PIPE] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_SLASH] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(932), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [sym_none] = ACTIONS(934), + [sym_undefined] = ACTIONS(934), + [sym_sink] = ACTIONS(934), + [sym_integer] = ACTIONS(934), + [sym_float] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_multiline_string] = ACTIONS(932), + [sym_character] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(932), + }, + [STATE(744)] = { + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(938), + [anon_sym_import] = ACTIONS(938), + [anon_sym_test] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_func] = ACTIONS(938), + [anon_sym_c_func] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(936), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_void] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_anyopaque] = ACTIONS(938), + [anon_sym_bool] = ACTIONS(938), + [anon_sym_int] = ACTIONS(938), + [anon_sym_uint] = ACTIONS(938), + [anon_sym_float] = ACTIONS(938), + [anon_sym_range] = ACTIONS(938), + [anon_sym_i8] = ACTIONS(938), + [anon_sym_i16] = ACTIONS(938), + [anon_sym_i32] = ACTIONS(938), + [anon_sym_i64] = ACTIONS(938), + [anon_sym_u8] = ACTIONS(938), + [anon_sym_u16] = ACTIONS(938), + [anon_sym_u32] = ACTIONS(938), + [anon_sym_u64] = ACTIONS(938), + [anon_sym_isize] = ACTIONS(938), + [anon_sym_usize] = ACTIONS(938), + [anon_sym_f32] = ACTIONS(938), + [anon_sym_f64] = ACTIONS(938), + [anon_sym_c_char] = ACTIONS(938), + [anon_sym_c_schar] = ACTIONS(938), + [anon_sym_c_uchar] = ACTIONS(938), + [anon_sym_c_short] = ACTIONS(938), + [anon_sym_c_ushort] = ACTIONS(938), + [anon_sym_c_int] = ACTIONS(938), + [anon_sym_c_uint] = ACTIONS(938), + [anon_sym_c_long] = ACTIONS(938), + [anon_sym_c_ulong] = ACTIONS(938), + [anon_sym_c_longlong] = ACTIONS(938), + [anon_sym_c_ulonglong] = ACTIONS(938), + [anon_sym_c_float] = ACTIONS(938), + [anon_sym_c_double] = ACTIONS(938), + [anon_sym_c_longdouble] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_yield] = ACTIONS(938), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_defer] = ACTIONS(938), + [anon_sym_errdefer] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_expand] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(936), + [anon_sym_orelse] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_GT_GT] = ACTIONS(936), + [anon_sym_LT_LT_PIPE] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_try] = ACTIONS(938), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(936), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [sym_none] = ACTIONS(938), + [sym_undefined] = ACTIONS(938), + [sym_sink] = ACTIONS(938), + [sym_integer] = ACTIONS(938), + [sym_float] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_multiline_string] = ACTIONS(936), + [sym_character] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(936), + }, + [STATE(745)] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(1094), + [anon_sym_test] = ACTIONS(1094), + [anon_sym_hide] = ACTIONS(1094), + [anon_sym_func] = ACTIONS(1094), + [anon_sym_c_func] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_anyopaque] = ACTIONS(1094), + [anon_sym_bool] = ACTIONS(1094), + [anon_sym_int] = ACTIONS(1094), + [anon_sym_uint] = ACTIONS(1094), + [anon_sym_float] = ACTIONS(1094), + [anon_sym_range] = ACTIONS(1094), + [anon_sym_i8] = ACTIONS(1094), + [anon_sym_i16] = ACTIONS(1094), + [anon_sym_i32] = ACTIONS(1094), + [anon_sym_i64] = ACTIONS(1094), + [anon_sym_u8] = ACTIONS(1094), + [anon_sym_u16] = ACTIONS(1094), + [anon_sym_u32] = ACTIONS(1094), + [anon_sym_u64] = ACTIONS(1094), + [anon_sym_isize] = ACTIONS(1094), + [anon_sym_usize] = ACTIONS(1094), + [anon_sym_f32] = ACTIONS(1094), + [anon_sym_f64] = ACTIONS(1094), + [anon_sym_c_char] = ACTIONS(1094), + [anon_sym_c_schar] = ACTIONS(1094), + [anon_sym_c_uchar] = ACTIONS(1094), + [anon_sym_c_short] = ACTIONS(1094), + [anon_sym_c_ushort] = ACTIONS(1094), + [anon_sym_c_int] = ACTIONS(1094), + [anon_sym_c_uint] = ACTIONS(1094), + [anon_sym_c_long] = ACTIONS(1094), + [anon_sym_c_ulong] = ACTIONS(1094), + [anon_sym_c_longlong] = ACTIONS(1094), + [anon_sym_c_ulonglong] = ACTIONS(1094), + [anon_sym_c_float] = ACTIONS(1094), + [anon_sym_c_double] = ACTIONS(1094), + [anon_sym_c_longdouble] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_COLON] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_defer] = ACTIONS(1094), + [anon_sym_errdefer] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_expand] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_match] = ACTIONS(1094), + [anon_sym_DOT_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), + [anon_sym_orelse] = ACTIONS(1094), + [anon_sym_catch] = ACTIONS(1094), + [anon_sym_or] = ACTIONS(1094), + [anon_sym_and] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_xor] = ACTIONS(1094), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_LT_LT_PIPE] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [sym_none] = ACTIONS(1094), + [sym_undefined] = ACTIONS(1094), + [sym_sink] = ACTIONS(1094), + [sym_integer] = ACTIONS(1094), + [sym_float] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_multiline_string] = ACTIONS(1092), + [sym_character] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1092), + }, + [STATE(746)] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_test] = ACTIONS(1100), + [anon_sym_hide] = ACTIONS(1100), + [anon_sym_func] = ACTIONS(1100), + [anon_sym_c_func] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_anyopaque] = ACTIONS(1100), + [anon_sym_bool] = ACTIONS(1100), + [anon_sym_int] = ACTIONS(1100), + [anon_sym_uint] = ACTIONS(1100), + [anon_sym_float] = ACTIONS(1100), + [anon_sym_range] = ACTIONS(1100), + [anon_sym_i8] = ACTIONS(1100), + [anon_sym_i16] = ACTIONS(1100), + [anon_sym_i32] = ACTIONS(1100), + [anon_sym_i64] = ACTIONS(1100), + [anon_sym_u8] = ACTIONS(1100), + [anon_sym_u16] = ACTIONS(1100), + [anon_sym_u32] = ACTIONS(1100), + [anon_sym_u64] = ACTIONS(1100), + [anon_sym_isize] = ACTIONS(1100), + [anon_sym_usize] = ACTIONS(1100), + [anon_sym_f32] = ACTIONS(1100), + [anon_sym_f64] = ACTIONS(1100), + [anon_sym_c_char] = ACTIONS(1100), + [anon_sym_c_schar] = ACTIONS(1100), + [anon_sym_c_uchar] = ACTIONS(1100), + [anon_sym_c_short] = ACTIONS(1100), + [anon_sym_c_ushort] = ACTIONS(1100), + [anon_sym_c_int] = ACTIONS(1100), + [anon_sym_c_uint] = ACTIONS(1100), + [anon_sym_c_long] = ACTIONS(1100), + [anon_sym_c_ulong] = ACTIONS(1100), + [anon_sym_c_longlong] = ACTIONS(1100), + [anon_sym_c_ulonglong] = ACTIONS(1100), + [anon_sym_c_float] = ACTIONS(1100), + [anon_sym_c_double] = ACTIONS(1100), + [anon_sym_c_longdouble] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_COLON] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_defer] = ACTIONS(1100), + [anon_sym_errdefer] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_expand] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_match] = ACTIONS(1100), + [anon_sym_DOT_DOT] = ACTIONS(1100), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1098), + [anon_sym_orelse] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_or] = ACTIONS(1100), + [anon_sym_and] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_xor] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_LT_LT_PIPE] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [sym_none] = ACTIONS(1100), + [sym_undefined] = ACTIONS(1100), + [sym_sink] = ACTIONS(1100), + [sym_integer] = ACTIONS(1100), + [sym_float] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_multiline_string] = ACTIONS(1098), + [sym_character] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1098), + }, + [STATE(747)] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_test] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_func] = ACTIONS(942), + [anon_sym_c_func] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_QMARK] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_void] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_anyopaque] = ACTIONS(942), + [anon_sym_bool] = ACTIONS(942), + [anon_sym_int] = ACTIONS(942), + [anon_sym_uint] = ACTIONS(942), + [anon_sym_float] = ACTIONS(942), + [anon_sym_range] = ACTIONS(942), + [anon_sym_i8] = ACTIONS(942), + [anon_sym_i16] = ACTIONS(942), + [anon_sym_i32] = ACTIONS(942), + [anon_sym_i64] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(942), + [anon_sym_u16] = ACTIONS(942), + [anon_sym_u32] = ACTIONS(942), + [anon_sym_u64] = ACTIONS(942), + [anon_sym_isize] = ACTIONS(942), + [anon_sym_usize] = ACTIONS(942), + [anon_sym_f32] = ACTIONS(942), + [anon_sym_f64] = ACTIONS(942), + [anon_sym_c_char] = ACTIONS(942), + [anon_sym_c_schar] = ACTIONS(942), + [anon_sym_c_uchar] = ACTIONS(942), + [anon_sym_c_short] = ACTIONS(942), + [anon_sym_c_ushort] = ACTIONS(942), + [anon_sym_c_int] = ACTIONS(942), + [anon_sym_c_uint] = ACTIONS(942), + [anon_sym_c_long] = ACTIONS(942), + [anon_sym_c_ulong] = ACTIONS(942), + [anon_sym_c_longlong] = ACTIONS(942), + [anon_sym_c_ulonglong] = ACTIONS(942), + [anon_sym_c_float] = ACTIONS(942), + [anon_sym_c_double] = ACTIONS(942), + [anon_sym_c_longdouble] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_yield] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(940), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_defer] = ACTIONS(942), + [anon_sym_errdefer] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_expand] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_orelse] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(940), + [anon_sym_LT_LT_PIPE] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(940), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [sym_none] = ACTIONS(942), + [sym_undefined] = ACTIONS(942), + [sym_sink] = ACTIONS(942), + [sym_integer] = ACTIONS(942), + [sym_float] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_multiline_string] = ACTIONS(940), + [sym_character] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(940), + }, + [STATE(748)] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_test] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_func] = ACTIONS(946), + [anon_sym_c_func] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_void] = ACTIONS(946), + [anon_sym_type] = ACTIONS(946), + [anon_sym_anyopaque] = ACTIONS(946), + [anon_sym_bool] = ACTIONS(946), + [anon_sym_int] = ACTIONS(946), + [anon_sym_uint] = ACTIONS(946), + [anon_sym_float] = ACTIONS(946), + [anon_sym_range] = ACTIONS(946), + [anon_sym_i8] = ACTIONS(946), + [anon_sym_i16] = ACTIONS(946), + [anon_sym_i32] = ACTIONS(946), + [anon_sym_i64] = ACTIONS(946), + [anon_sym_u8] = ACTIONS(946), + [anon_sym_u16] = ACTIONS(946), + [anon_sym_u32] = ACTIONS(946), + [anon_sym_u64] = ACTIONS(946), + [anon_sym_isize] = ACTIONS(946), + [anon_sym_usize] = ACTIONS(946), + [anon_sym_f32] = ACTIONS(946), + [anon_sym_f64] = ACTIONS(946), + [anon_sym_c_char] = ACTIONS(946), + [anon_sym_c_schar] = ACTIONS(946), + [anon_sym_c_uchar] = ACTIONS(946), + [anon_sym_c_short] = ACTIONS(946), + [anon_sym_c_ushort] = ACTIONS(946), + [anon_sym_c_int] = ACTIONS(946), + [anon_sym_c_uint] = ACTIONS(946), + [anon_sym_c_long] = ACTIONS(946), + [anon_sym_c_ulong] = ACTIONS(946), + [anon_sym_c_longlong] = ACTIONS(946), + [anon_sym_c_ulonglong] = ACTIONS(946), + [anon_sym_c_float] = ACTIONS(946), + [anon_sym_c_double] = ACTIONS(946), + [anon_sym_c_longdouble] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(944), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_defer] = ACTIONS(946), + [anon_sym_errdefer] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_expand] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_orelse] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_LT_LT_PIPE] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_SLASH] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(946), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(944), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = ACTIONS(946), + [sym_none] = ACTIONS(946), + [sym_undefined] = ACTIONS(946), + [sym_sink] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_multiline_string] = ACTIONS(944), + [sym_character] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(944), + }, + [STATE(749)] = { + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [anon_sym_import] = ACTIONS(820), + [anon_sym_test] = ACTIONS(820), + [anon_sym_hide] = ACTIONS(820), + [anon_sym_func] = ACTIONS(820), + [anon_sym_c_func] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_struct] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(818), + [anon_sym_void] = ACTIONS(820), + [anon_sym_type] = ACTIONS(820), + [anon_sym_anyopaque] = ACTIONS(820), + [anon_sym_bool] = ACTIONS(820), + [anon_sym_int] = ACTIONS(820), + [anon_sym_uint] = ACTIONS(820), + [anon_sym_float] = ACTIONS(820), + [anon_sym_range] = ACTIONS(820), + [anon_sym_i8] = ACTIONS(820), + [anon_sym_i16] = ACTIONS(820), + [anon_sym_i32] = ACTIONS(820), + [anon_sym_i64] = ACTIONS(820), + [anon_sym_u8] = ACTIONS(820), + [anon_sym_u16] = ACTIONS(820), + [anon_sym_u32] = ACTIONS(820), + [anon_sym_u64] = ACTIONS(820), + [anon_sym_isize] = ACTIONS(820), + [anon_sym_usize] = ACTIONS(820), + [anon_sym_f32] = ACTIONS(820), + [anon_sym_f64] = ACTIONS(820), + [anon_sym_c_char] = ACTIONS(820), + [anon_sym_c_schar] = ACTIONS(820), + [anon_sym_c_uchar] = ACTIONS(820), + [anon_sym_c_short] = ACTIONS(820), + [anon_sym_c_ushort] = ACTIONS(820), + [anon_sym_c_int] = ACTIONS(820), + [anon_sym_c_uint] = ACTIONS(820), + [anon_sym_c_long] = ACTIONS(820), + [anon_sym_c_ulong] = ACTIONS(820), + [anon_sym_c_longlong] = ACTIONS(820), + [anon_sym_c_ulonglong] = ACTIONS(820), + [anon_sym_c_float] = ACTIONS(820), + [anon_sym_c_double] = ACTIONS(820), + [anon_sym_c_longdouble] = ACTIONS(820), + [anon_sym_return] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(818), + [anon_sym_break] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(820), + [anon_sym_defer] = ACTIONS(820), + [anon_sym_errdefer] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_else] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_expand] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_match] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(818), + [anon_sym_orelse] = ACTIONS(820), + [anon_sym_catch] = ACTIONS(820), + [anon_sym_or] = ACTIONS(820), + [anon_sym_and] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_xor] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_LT_LT_PIPE] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_try] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_true] = ACTIONS(820), + [anon_sym_false] = ACTIONS(820), + [sym_none] = ACTIONS(820), + [sym_undefined] = ACTIONS(820), + [sym_sink] = ACTIONS(820), + [sym_integer] = ACTIONS(820), + [sym_float] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_multiline_string] = ACTIONS(818), + [sym_character] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(818), + }, + [STATE(750)] = { + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [anon_sym_import] = ACTIONS(824), + [anon_sym_test] = ACTIONS(824), + [anon_sym_hide] = ACTIONS(824), + [anon_sym_func] = ACTIONS(824), + [anon_sym_c_func] = ACTIONS(824), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_void] = ACTIONS(824), + [anon_sym_type] = ACTIONS(824), + [anon_sym_anyopaque] = ACTIONS(824), + [anon_sym_bool] = ACTIONS(824), + [anon_sym_int] = ACTIONS(824), + [anon_sym_uint] = ACTIONS(824), + [anon_sym_float] = ACTIONS(824), + [anon_sym_range] = ACTIONS(824), + [anon_sym_i8] = ACTIONS(824), + [anon_sym_i16] = ACTIONS(824), + [anon_sym_i32] = ACTIONS(824), + [anon_sym_i64] = ACTIONS(824), + [anon_sym_u8] = ACTIONS(824), + [anon_sym_u16] = ACTIONS(824), + [anon_sym_u32] = ACTIONS(824), + [anon_sym_u64] = ACTIONS(824), + [anon_sym_isize] = ACTIONS(824), + [anon_sym_usize] = ACTIONS(824), + [anon_sym_f32] = ACTIONS(824), + [anon_sym_f64] = ACTIONS(824), + [anon_sym_c_char] = ACTIONS(824), + [anon_sym_c_schar] = ACTIONS(824), + [anon_sym_c_uchar] = ACTIONS(824), + [anon_sym_c_short] = ACTIONS(824), + [anon_sym_c_ushort] = ACTIONS(824), + [anon_sym_c_int] = ACTIONS(824), + [anon_sym_c_uint] = ACTIONS(824), + [anon_sym_c_long] = ACTIONS(824), + [anon_sym_c_ulong] = ACTIONS(824), + [anon_sym_c_longlong] = ACTIONS(824), + [anon_sym_c_ulonglong] = ACTIONS(824), + [anon_sym_c_float] = ACTIONS(824), + [anon_sym_c_double] = ACTIONS(824), + [anon_sym_c_longdouble] = ACTIONS(824), + [anon_sym_return] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(824), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_break] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(824), + [anon_sym_defer] = ACTIONS(824), + [anon_sym_errdefer] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_else] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_expand] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_orelse] = ACTIONS(824), + [anon_sym_catch] = ACTIONS(824), + [anon_sym_or] = ACTIONS(824), + [anon_sym_and] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_xor] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_LT_LT_PIPE] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(824), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_true] = ACTIONS(824), + [anon_sym_false] = ACTIONS(824), + [sym_none] = ACTIONS(824), + [sym_undefined] = ACTIONS(824), + [sym_sink] = ACTIONS(824), + [sym_integer] = ACTIONS(824), + [sym_float] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_multiline_string] = ACTIONS(822), + [sym_character] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + }, + [STATE(751)] = { + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [anon_sym_import] = ACTIONS(716), + [anon_sym_test] = ACTIONS(716), + [anon_sym_hide] = ACTIONS(716), + [anon_sym_func] = ACTIONS(716), + [anon_sym_c_func] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_struct] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_COMMA] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PIPE] = ACTIONS(714), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_AT] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_void] = ACTIONS(716), + [anon_sym_type] = ACTIONS(716), + [anon_sym_anyopaque] = ACTIONS(716), + [anon_sym_bool] = ACTIONS(716), + [anon_sym_int] = ACTIONS(716), + [anon_sym_uint] = ACTIONS(716), + [anon_sym_float] = ACTIONS(716), + [anon_sym_range] = ACTIONS(716), + [anon_sym_i8] = ACTIONS(716), + [anon_sym_i16] = ACTIONS(716), + [anon_sym_i32] = ACTIONS(716), + [anon_sym_i64] = ACTIONS(716), + [anon_sym_u8] = ACTIONS(716), + [anon_sym_u16] = ACTIONS(716), + [anon_sym_u32] = ACTIONS(716), + [anon_sym_u64] = ACTIONS(716), + [anon_sym_isize] = ACTIONS(716), + [anon_sym_usize] = ACTIONS(716), + [anon_sym_f32] = ACTIONS(716), + [anon_sym_f64] = ACTIONS(716), + [anon_sym_c_char] = ACTIONS(716), + [anon_sym_c_schar] = ACTIONS(716), + [anon_sym_c_uchar] = ACTIONS(716), + [anon_sym_c_short] = ACTIONS(716), + [anon_sym_c_ushort] = ACTIONS(716), + [anon_sym_c_int] = ACTIONS(716), + [anon_sym_c_uint] = ACTIONS(716), + [anon_sym_c_long] = ACTIONS(716), + [anon_sym_c_ulong] = ACTIONS(716), + [anon_sym_c_longlong] = ACTIONS(716), + [anon_sym_c_ulonglong] = ACTIONS(716), + [anon_sym_c_float] = ACTIONS(716), + [anon_sym_c_double] = ACTIONS(716), + [anon_sym_c_longdouble] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_yield] = ACTIONS(716), + [anon_sym_COLON] = ACTIONS(714), + [anon_sym_break] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_defer] = ACTIONS(716), + [anon_sym_errdefer] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_expand] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_match] = ACTIONS(716), + [anon_sym_DOT_DOT] = ACTIONS(716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(714), + [anon_sym_orelse] = ACTIONS(716), + [anon_sym_catch] = ACTIONS(716), + [anon_sym_or] = ACTIONS(716), + [anon_sym_and] = ACTIONS(716), + [anon_sym_EQ_EQ] = ACTIONS(714), + [anon_sym_BANG_EQ] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(716), + [anon_sym_LT_EQ] = ACTIONS(714), + [anon_sym_GT] = ACTIONS(716), + [anon_sym_GT_EQ] = ACTIONS(714), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_xor] = ACTIONS(716), + [anon_sym_LT_LT] = ACTIONS(716), + [anon_sym_GT_GT] = ACTIONS(714), + [anon_sym_LT_LT_PIPE] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(714), + [anon_sym_SLASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_try] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(714), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_none] = ACTIONS(716), + [sym_undefined] = ACTIONS(716), + [sym_sink] = ACTIONS(716), + [sym_integer] = ACTIONS(716), + [sym_float] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_multiline_string] = ACTIONS(714), + [sym_character] = ACTIONS(714), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(714), + }, + [STATE(752)] = { + [ts_builtin_sym_end] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_import] = ACTIONS(832), + [anon_sym_test] = ACTIONS(832), + [anon_sym_hide] = ACTIONS(832), + [anon_sym_func] = ACTIONS(832), + [anon_sym_c_func] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_void] = ACTIONS(832), + [anon_sym_type] = ACTIONS(832), + [anon_sym_anyopaque] = ACTIONS(832), + [anon_sym_bool] = ACTIONS(832), + [anon_sym_int] = ACTIONS(832), + [anon_sym_uint] = ACTIONS(832), + [anon_sym_float] = ACTIONS(832), + [anon_sym_range] = ACTIONS(832), + [anon_sym_i8] = ACTIONS(832), + [anon_sym_i16] = ACTIONS(832), + [anon_sym_i32] = ACTIONS(832), + [anon_sym_i64] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(832), + [anon_sym_u16] = ACTIONS(832), + [anon_sym_u32] = ACTIONS(832), + [anon_sym_u64] = ACTIONS(832), + [anon_sym_isize] = ACTIONS(832), + [anon_sym_usize] = ACTIONS(832), + [anon_sym_f32] = ACTIONS(832), + [anon_sym_f64] = ACTIONS(832), + [anon_sym_c_char] = ACTIONS(832), + [anon_sym_c_schar] = ACTIONS(832), + [anon_sym_c_uchar] = ACTIONS(832), + [anon_sym_c_short] = ACTIONS(832), + [anon_sym_c_ushort] = ACTIONS(832), + [anon_sym_c_int] = ACTIONS(832), + [anon_sym_c_uint] = ACTIONS(832), + [anon_sym_c_long] = ACTIONS(832), + [anon_sym_c_ulong] = ACTIONS(832), + [anon_sym_c_longlong] = ACTIONS(832), + [anon_sym_c_ulonglong] = ACTIONS(832), + [anon_sym_c_float] = ACTIONS(832), + [anon_sym_c_double] = ACTIONS(832), + [anon_sym_c_longdouble] = ACTIONS(832), + [anon_sym_return] = ACTIONS(832), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_break] = ACTIONS(832), + [anon_sym_continue] = ACTIONS(832), + [anon_sym_defer] = ACTIONS(832), + [anon_sym_errdefer] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_else] = ACTIONS(832), + [anon_sym_while] = ACTIONS(832), + [anon_sym_expand] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_orelse] = ACTIONS(832), + [anon_sym_catch] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_BANG_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_xor] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_LT_LT_PIPE] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [anon_sym_try] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_true] = ACTIONS(832), + [anon_sym_false] = ACTIONS(832), + [sym_none] = ACTIONS(832), + [sym_undefined] = ACTIONS(832), + [sym_sink] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [sym_multiline_string] = ACTIONS(830), + [sym_character] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(830), }, [STATE(753)] = { - [aux_sym_import_declaration_repeat1] = STATE(3280), - [aux_sym_capture_list_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_LT_LT_PIPE] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [ts_builtin_sym_end] = ACTIONS(375), + [sym_identifier] = ACTIONS(373), + [anon_sym_import] = ACTIONS(373), + [anon_sym_test] = ACTIONS(373), + [anon_sym_hide] = ACTIONS(373), + [anon_sym_func] = ACTIONS(373), + [anon_sym_c_func] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(373), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_DOLLAR] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_void] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_anyopaque] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_int] = ACTIONS(373), + [anon_sym_uint] = ACTIONS(373), + [anon_sym_float] = ACTIONS(373), + [anon_sym_range] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_c_char] = ACTIONS(373), + [anon_sym_c_schar] = ACTIONS(373), + [anon_sym_c_uchar] = ACTIONS(373), + [anon_sym_c_short] = ACTIONS(373), + [anon_sym_c_ushort] = ACTIONS(373), + [anon_sym_c_int] = ACTIONS(373), + [anon_sym_c_uint] = ACTIONS(373), + [anon_sym_c_long] = ACTIONS(373), + [anon_sym_c_ulong] = ACTIONS(373), + [anon_sym_c_longlong] = ACTIONS(373), + [anon_sym_c_ulonglong] = ACTIONS(373), + [anon_sym_c_float] = ACTIONS(373), + [anon_sym_c_double] = ACTIONS(373), + [anon_sym_c_longdouble] = ACTIONS(373), + [anon_sym_return] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(373), + [anon_sym_COLON] = ACTIONS(375), + [anon_sym_break] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_errdefer] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(373), + [anon_sym_while] = ACTIONS(373), + [anon_sym_expand] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_orelse] = ACTIONS(373), + [anon_sym_catch] = ACTIONS(373), + [anon_sym_or] = ACTIONS(373), + [anon_sym_and] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_xor] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_LT_LT_PIPE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_TILDE] = ACTIONS(375), + [anon_sym_try] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_none] = ACTIONS(373), + [sym_undefined] = ACTIONS(373), + [sym_sink] = ACTIONS(373), + [sym_integer] = ACTIONS(373), + [sym_float] = ACTIONS(375), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_multiline_string] = ACTIONS(375), + [sym_character] = ACTIONS(375), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1747), + [sym__newline] = ACTIONS(375), }, [STATE(754)] = { - [aux_sym_import_declaration_repeat1] = STATE(3280), - [aux_sym_capture_list_repeat1] = STATE(2554), - [sym_identifier] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_LT_LT_PIPE] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_test] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_func] = ACTIONS(950), + [anon_sym_c_func] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_void] = ACTIONS(950), + [anon_sym_type] = ACTIONS(950), + [anon_sym_anyopaque] = ACTIONS(950), + [anon_sym_bool] = ACTIONS(950), + [anon_sym_int] = ACTIONS(950), + [anon_sym_uint] = ACTIONS(950), + [anon_sym_float] = ACTIONS(950), + [anon_sym_range] = ACTIONS(950), + [anon_sym_i8] = ACTIONS(950), + [anon_sym_i16] = ACTIONS(950), + [anon_sym_i32] = ACTIONS(950), + [anon_sym_i64] = ACTIONS(950), + [anon_sym_u8] = ACTIONS(950), + [anon_sym_u16] = ACTIONS(950), + [anon_sym_u32] = ACTIONS(950), + [anon_sym_u64] = ACTIONS(950), + [anon_sym_isize] = ACTIONS(950), + [anon_sym_usize] = ACTIONS(950), + [anon_sym_f32] = ACTIONS(950), + [anon_sym_f64] = ACTIONS(950), + [anon_sym_c_char] = ACTIONS(950), + [anon_sym_c_schar] = ACTIONS(950), + [anon_sym_c_uchar] = ACTIONS(950), + [anon_sym_c_short] = ACTIONS(950), + [anon_sym_c_ushort] = ACTIONS(950), + [anon_sym_c_int] = ACTIONS(950), + [anon_sym_c_uint] = ACTIONS(950), + [anon_sym_c_long] = ACTIONS(950), + [anon_sym_c_ulong] = ACTIONS(950), + [anon_sym_c_longlong] = ACTIONS(950), + [anon_sym_c_ulonglong] = ACTIONS(950), + [anon_sym_c_float] = ACTIONS(950), + [anon_sym_c_double] = ACTIONS(950), + [anon_sym_c_longdouble] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(948), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_defer] = ACTIONS(950), + [anon_sym_errdefer] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_expand] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_orelse] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_or] = ACTIONS(950), + [anon_sym_and] = ACTIONS(950), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_BANG_EQ] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(950), + [anon_sym_LT_EQ] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_GT_EQ] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_xor] = ACTIONS(950), + [anon_sym_LT_LT] = ACTIONS(950), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_LT_LT_PIPE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [sym_none] = ACTIONS(950), + [sym_undefined] = ACTIONS(950), + [sym_sink] = ACTIONS(950), + [sym_integer] = ACTIONS(950), + [sym_float] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_multiline_string] = ACTIONS(948), + [sym_character] = ACTIONS(948), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1747), + [sym__newline] = ACTIONS(948), }, [STATE(755)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_test] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_func] = ACTIONS(954), + [anon_sym_c_func] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_void] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_anyopaque] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_int] = ACTIONS(954), + [anon_sym_uint] = ACTIONS(954), + [anon_sym_float] = ACTIONS(954), + [anon_sym_range] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_c_char] = ACTIONS(954), + [anon_sym_c_schar] = ACTIONS(954), + [anon_sym_c_uchar] = ACTIONS(954), + [anon_sym_c_short] = ACTIONS(954), + [anon_sym_c_ushort] = ACTIONS(954), + [anon_sym_c_int] = ACTIONS(954), + [anon_sym_c_uint] = ACTIONS(954), + [anon_sym_c_long] = ACTIONS(954), + [anon_sym_c_ulong] = ACTIONS(954), + [anon_sym_c_longlong] = ACTIONS(954), + [anon_sym_c_ulonglong] = ACTIONS(954), + [anon_sym_c_float] = ACTIONS(954), + [anon_sym_c_double] = ACTIONS(954), + [anon_sym_c_longdouble] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_COLON] = ACTIONS(952), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_defer] = ACTIONS(954), + [anon_sym_errdefer] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_expand] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_orelse] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_or] = ACTIONS(954), + [anon_sym_and] = ACTIONS(954), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_xor] = ACTIONS(954), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(952), + [anon_sym_LT_LT_PIPE] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(952), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [sym_none] = ACTIONS(954), + [sym_undefined] = ACTIONS(954), + [sym_sink] = ACTIONS(954), + [sym_integer] = ACTIONS(954), + [sym_float] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym_multiline_string] = ACTIONS(952), + [sym_character] = ACTIONS(952), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), + [sym__newline] = ACTIONS(952), }, [STATE(756)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [anon_sym_import] = ACTIONS(736), + [anon_sym_test] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_func] = ACTIONS(736), + [anon_sym_c_func] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_struct] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_void] = ACTIONS(736), + [anon_sym_type] = ACTIONS(736), + [anon_sym_anyopaque] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_int] = ACTIONS(736), + [anon_sym_uint] = ACTIONS(736), + [anon_sym_float] = ACTIONS(736), + [anon_sym_range] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_c_char] = ACTIONS(736), + [anon_sym_c_schar] = ACTIONS(736), + [anon_sym_c_uchar] = ACTIONS(736), + [anon_sym_c_short] = ACTIONS(736), + [anon_sym_c_ushort] = ACTIONS(736), + [anon_sym_c_int] = ACTIONS(736), + [anon_sym_c_uint] = ACTIONS(736), + [anon_sym_c_long] = ACTIONS(736), + [anon_sym_c_ulong] = ACTIONS(736), + [anon_sym_c_longlong] = ACTIONS(736), + [anon_sym_c_ulonglong] = ACTIONS(736), + [anon_sym_c_float] = ACTIONS(736), + [anon_sym_c_double] = ACTIONS(736), + [anon_sym_c_longdouble] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(736), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_defer] = ACTIONS(736), + [anon_sym_errdefer] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_else] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_expand] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(734), + [anon_sym_orelse] = ACTIONS(736), + [anon_sym_catch] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(734), + [anon_sym_BANG_EQ] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(734), + [anon_sym_LT_LT_PIPE] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_try] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [sym_none] = ACTIONS(736), + [sym_undefined] = ACTIONS(736), + [sym_sink] = ACTIONS(736), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_multiline_string] = ACTIONS(734), + [sym_character] = ACTIONS(734), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), + [sym__newline] = ACTIONS(734), }, [STATE(757)] = { - [sym_variant_payload] = STATE(727), - [sym_identifier] = ACTIONS(483), - [anon_sym_func] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_void] = ACTIONS(483), - [anon_sym_anyopaque] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_int] = ACTIONS(483), - [anon_sym_uint] = ACTIONS(483), - [anon_sym_float] = ACTIONS(483), - [anon_sym_range] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_c_char] = ACTIONS(483), - [anon_sym_c_schar] = ACTIONS(483), - [anon_sym_c_uchar] = ACTIONS(483), - [anon_sym_c_short] = ACTIONS(483), - [anon_sym_c_ushort] = ACTIONS(483), - [anon_sym_c_int] = ACTIONS(483), - [anon_sym_c_uint] = ACTIONS(483), - [anon_sym_c_long] = ACTIONS(483), - [anon_sym_c_ulong] = ACTIONS(483), - [anon_sym_c_longlong] = ACTIONS(483), - [anon_sym_c_ulonglong] = ACTIONS(483), - [anon_sym_c_float] = ACTIONS(483), - [anon_sym_c_double] = ACTIONS(483), - [anon_sym_c_longdouble] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_defer] = ACTIONS(483), - [anon_sym_errdefer] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_expand] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_match] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_orelse] = ACTIONS(483), - [anon_sym_catch] = ACTIONS(483), - [anon_sym_or] = ACTIONS(483), - [anon_sym_and] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_xor] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_LT_LT_PIPE] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_try] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [sym_none] = ACTIONS(483), - [sym_undefined] = ACTIONS(483), - [sym_sink] = ACTIONS(483), - [sym_integer] = ACTIONS(483), - [sym_float] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [sym_multiline_string] = ACTIONS(481), - [sym_character] = ACTIONS(481), + [ts_builtin_sym_end] = ACTIONS(866), + [sym_identifier] = ACTIONS(868), + [anon_sym_import] = ACTIONS(868), + [anon_sym_test] = ACTIONS(868), + [anon_sym_hide] = ACTIONS(868), + [anon_sym_func] = ACTIONS(868), + [anon_sym_c_func] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_COMMA] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_void] = ACTIONS(868), + [anon_sym_type] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_uint] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_return] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(868), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_break] = ACTIONS(868), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_defer] = ACTIONS(868), + [anon_sym_errdefer] = ACTIONS(868), + [anon_sym_if] = ACTIONS(868), + [anon_sym_else] = ACTIONS(868), + [anon_sym_while] = ACTIONS(868), + [anon_sym_expand] = ACTIONS(868), + [anon_sym_for] = ACTIONS(868), + [anon_sym_match] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(866), + [anon_sym_orelse] = ACTIONS(868), + [anon_sym_catch] = ACTIONS(868), + [anon_sym_or] = ACTIONS(868), + [anon_sym_and] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(866), + [anon_sym_BANG_EQ] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(868), + [anon_sym_GT_EQ] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_xor] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(868), + [anon_sym_GT_GT] = ACTIONS(866), + [anon_sym_LT_LT_PIPE] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(866), + [anon_sym_try] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym_true] = ACTIONS(868), + [anon_sym_false] = ACTIONS(868), + [sym_none] = ACTIONS(868), + [sym_undefined] = ACTIONS(868), + [sym_sink] = ACTIONS(868), + [sym_integer] = ACTIONS(868), + [sym_float] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(866), + [sym_multiline_string] = ACTIONS(866), + [sym_character] = ACTIONS(866), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(481), + [sym__newline] = ACTIONS(866), }, [STATE(758)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_defer] = ACTIONS(1777), + [anon_sym_errdefer] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1765), + [sym__newline] = ACTIONS(1771), }, [STATE(759)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(69), - [anon_sym_catch] = ACTIONS(71), - [anon_sym_or] = ACTIONS(73), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_test] = ACTIONS(1777), + [anon_sym_hide] = ACTIONS(1777), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(1771), }, [STATE(760)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(73), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_test] = ACTIONS(1777), + [anon_sym_hide] = ACTIONS(1777), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(1771), }, [STATE(761)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(563), - [anon_sym_func] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(563), - [anon_sym_anyopaque] = ACTIONS(563), - [anon_sym_bool] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_uint] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_range] = ACTIONS(563), - [anon_sym_i8] = ACTIONS(563), - [anon_sym_i16] = ACTIONS(563), - [anon_sym_i32] = ACTIONS(563), - [anon_sym_i64] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(563), - [anon_sym_u16] = ACTIONS(563), - [anon_sym_u32] = ACTIONS(563), - [anon_sym_u64] = ACTIONS(563), - [anon_sym_isize] = ACTIONS(563), - [anon_sym_usize] = ACTIONS(563), - [anon_sym_f32] = ACTIONS(563), - [anon_sym_f64] = ACTIONS(563), - [anon_sym_c_char] = ACTIONS(563), - [anon_sym_c_schar] = ACTIONS(563), - [anon_sym_c_uchar] = ACTIONS(563), - [anon_sym_c_short] = ACTIONS(563), - [anon_sym_c_ushort] = ACTIONS(563), - [anon_sym_c_int] = ACTIONS(563), - [anon_sym_c_uint] = ACTIONS(563), - [anon_sym_c_long] = ACTIONS(563), - [anon_sym_c_ulong] = ACTIONS(563), - [anon_sym_c_longlong] = ACTIONS(563), - [anon_sym_c_ulonglong] = ACTIONS(563), - [anon_sym_c_float] = ACTIONS(563), - [anon_sym_c_double] = ACTIONS(563), - [anon_sym_c_longdouble] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_errdefer] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_expand] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(561), - [anon_sym_orelse] = ACTIONS(563), - [anon_sym_catch] = ACTIONS(563), - [anon_sym_or] = ACTIONS(563), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(563), - [anon_sym_false] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [sym_sink] = ACTIONS(563), - [sym_integer] = ACTIONS(563), - [sym_float] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(561), - [sym_multiline_string] = ACTIONS(561), - [sym_character] = ACTIONS(561), + [sym_type] = STATE(3873), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(561), + [sym__newline] = ACTIONS(406), }, [STATE(762)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(563), - [anon_sym_func] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(563), - [anon_sym_anyopaque] = ACTIONS(563), - [anon_sym_bool] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_uint] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_range] = ACTIONS(563), - [anon_sym_i8] = ACTIONS(563), - [anon_sym_i16] = ACTIONS(563), - [anon_sym_i32] = ACTIONS(563), - [anon_sym_i64] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(563), - [anon_sym_u16] = ACTIONS(563), - [anon_sym_u32] = ACTIONS(563), - [anon_sym_u64] = ACTIONS(563), - [anon_sym_isize] = ACTIONS(563), - [anon_sym_usize] = ACTIONS(563), - [anon_sym_f32] = ACTIONS(563), - [anon_sym_f64] = ACTIONS(563), - [anon_sym_c_char] = ACTIONS(563), - [anon_sym_c_schar] = ACTIONS(563), - [anon_sym_c_uchar] = ACTIONS(563), - [anon_sym_c_short] = ACTIONS(563), - [anon_sym_c_ushort] = ACTIONS(563), - [anon_sym_c_int] = ACTIONS(563), - [anon_sym_c_uint] = ACTIONS(563), - [anon_sym_c_long] = ACTIONS(563), - [anon_sym_c_ulong] = ACTIONS(563), - [anon_sym_c_longlong] = ACTIONS(563), - [anon_sym_c_ulonglong] = ACTIONS(563), - [anon_sym_c_float] = ACTIONS(563), - [anon_sym_c_double] = ACTIONS(563), - [anon_sym_c_longdouble] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_errdefer] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_expand] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(561), - [anon_sym_orelse] = ACTIONS(563), - [anon_sym_catch] = ACTIONS(563), - [anon_sym_or] = ACTIONS(563), - [anon_sym_and] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(563), - [anon_sym_false] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [sym_sink] = ACTIONS(563), - [sym_integer] = ACTIONS(563), - [sym_float] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(561), - [sym_multiline_string] = ACTIONS(561), - [sym_character] = ACTIONS(561), + [sym_argument_list] = STATE(165), + [sym_identifier] = ACTIONS(1728), + [anon_sym_func] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_anyopaque] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_int] = ACTIONS(1728), + [anon_sym_uint] = ACTIONS(1728), + [anon_sym_float] = ACTIONS(1728), + [anon_sym_range] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_c_char] = ACTIONS(1728), + [anon_sym_c_schar] = ACTIONS(1728), + [anon_sym_c_uchar] = ACTIONS(1728), + [anon_sym_c_short] = ACTIONS(1728), + [anon_sym_c_ushort] = ACTIONS(1728), + [anon_sym_c_int] = ACTIONS(1728), + [anon_sym_c_uint] = ACTIONS(1728), + [anon_sym_c_long] = ACTIONS(1728), + [anon_sym_c_ulong] = ACTIONS(1728), + [anon_sym_c_longlong] = ACTIONS(1728), + [anon_sym_c_ulonglong] = ACTIONS(1728), + [anon_sym_c_float] = ACTIONS(1728), + [anon_sym_c_double] = ACTIONS(1728), + [anon_sym_c_longdouble] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_xor_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_expand] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_orelse] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(486), + [anon_sym_or] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_xor] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_LT_LT_PIPE] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_none] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [sym_sink] = ACTIONS(1728), + [sym_integer] = ACTIONS(1728), + [sym_float] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [sym_multiline_string] = ACTIONS(1732), + [sym_character] = ACTIONS(1732), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(561), + [sym__newline] = ACTIONS(1732), }, [STATE(763)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(1771), }, [STATE(764)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_LT_LT_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(1771), }, [STATE(765)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [aux_sym_import_declaration_repeat1] = STATE(3759), + [aux_sym_capture_list_repeat1] = STATE(2970), + [sym_identifier] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1810), }, [STATE(766)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_type] = STATE(3926), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1775), + [sym__newline] = ACTIONS(406), }, [STATE(767)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(778), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [aux_sym_import_declaration_repeat1] = STATE(3759), + [aux_sym_capture_list_repeat1] = STATE(2970), + [sym_identifier] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1777), + [sym__newline] = ACTIONS(1810), }, [STATE(768)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_variant_payload] = STATE(688), + [sym_identifier] = ACTIONS(522), + [anon_sym_func] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_void] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_anyopaque] = ACTIONS(522), + [anon_sym_bool] = ACTIONS(522), + [anon_sym_int] = ACTIONS(522), + [anon_sym_uint] = ACTIONS(522), + [anon_sym_float] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_i8] = ACTIONS(522), + [anon_sym_i16] = ACTIONS(522), + [anon_sym_i32] = ACTIONS(522), + [anon_sym_i64] = ACTIONS(522), + [anon_sym_u8] = ACTIONS(522), + [anon_sym_u16] = ACTIONS(522), + [anon_sym_u32] = ACTIONS(522), + [anon_sym_u64] = ACTIONS(522), + [anon_sym_isize] = ACTIONS(522), + [anon_sym_usize] = ACTIONS(522), + [anon_sym_f32] = ACTIONS(522), + [anon_sym_f64] = ACTIONS(522), + [anon_sym_c_char] = ACTIONS(522), + [anon_sym_c_schar] = ACTIONS(522), + [anon_sym_c_uchar] = ACTIONS(522), + [anon_sym_c_short] = ACTIONS(522), + [anon_sym_c_ushort] = ACTIONS(522), + [anon_sym_c_int] = ACTIONS(522), + [anon_sym_c_uint] = ACTIONS(522), + [anon_sym_c_long] = ACTIONS(522), + [anon_sym_c_ulong] = ACTIONS(522), + [anon_sym_c_longlong] = ACTIONS(522), + [anon_sym_c_ulonglong] = ACTIONS(522), + [anon_sym_c_float] = ACTIONS(522), + [anon_sym_c_double] = ACTIONS(522), + [anon_sym_c_longdouble] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_yield] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(520), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_defer] = ACTIONS(522), + [anon_sym_errdefer] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_expand] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(520), + [anon_sym_orelse] = ACTIONS(522), + [anon_sym_catch] = ACTIONS(522), + [anon_sym_or] = ACTIONS(522), + [anon_sym_and] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(520), + [anon_sym_xor] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(522), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_LT_LT_PIPE] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_try] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [sym_none] = ACTIONS(522), + [sym_undefined] = ACTIONS(522), + [sym_sink] = ACTIONS(522), + [sym_integer] = ACTIONS(522), + [sym_float] = ACTIONS(520), + [anon_sym_DQUOTE] = ACTIONS(520), + [sym_multiline_string] = ACTIONS(520), + [sym_character] = ACTIONS(520), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(520), }, [STATE(769)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_LT_LT_PIPE] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(468), }, [STATE(770)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(1820), }, [STATE(771)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(69), - [anon_sym_catch] = ACTIONS(71), - [anon_sym_or] = ACTIONS(73), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(778), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(1822), }, [STATE(772)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(73), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2997), + [sym_labeled_block] = STATE(2997), + [sym_if_statement] = STATE(2997), + [sym_while_statement] = STATE(2997), + [sym_for_statement] = STATE(2997), + [sym_match_statement] = STATE(2997), + [sym__value] = STATE(2997), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), + [sym__newline] = ACTIONS(1824), }, [STATE(773)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(479), - [anon_sym_func] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_struct] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(479), - [anon_sym_anyopaque] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_uint] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_range] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_c_char] = ACTIONS(479), - [anon_sym_c_schar] = ACTIONS(479), - [anon_sym_c_uchar] = ACTIONS(479), - [anon_sym_c_short] = ACTIONS(479), - [anon_sym_c_ushort] = ACTIONS(479), - [anon_sym_c_int] = ACTIONS(479), - [anon_sym_c_uint] = ACTIONS(479), - [anon_sym_c_long] = ACTIONS(479), - [anon_sym_c_ulong] = ACTIONS(479), - [anon_sym_c_longlong] = ACTIONS(479), - [anon_sym_c_ulonglong] = ACTIONS(479), - [anon_sym_c_float] = ACTIONS(479), - [anon_sym_c_double] = ACTIONS(479), - [anon_sym_c_longdouble] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_defer] = ACTIONS(479), - [anon_sym_errdefer] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_expand] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_match] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_orelse] = ACTIONS(479), - [anon_sym_catch] = ACTIONS(479), - [anon_sym_or] = ACTIONS(479), - [anon_sym_and] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_try] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), - [sym_none] = ACTIONS(479), - [sym_undefined] = ACTIONS(479), - [sym_sink] = ACTIONS(479), - [sym_integer] = ACTIONS(479), - [sym_float] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(477), - [sym_multiline_string] = ACTIONS(477), - [sym_character] = ACTIONS(477), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(3002), + [sym_labeled_block] = STATE(3002), + [sym_if_statement] = STATE(3002), + [sym_while_statement] = STATE(3002), + [sym_for_statement] = STATE(3002), + [sym_match_statement] = STATE(3002), + [sym__value] = STATE(3002), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), + [sym__newline] = ACTIONS(466), }, [STATE(774)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(479), - [anon_sym_func] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_struct] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(1826), + [anon_sym_func] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1830), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(479), - [anon_sym_anyopaque] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_uint] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_range] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_c_char] = ACTIONS(479), - [anon_sym_c_schar] = ACTIONS(479), - [anon_sym_c_uchar] = ACTIONS(479), - [anon_sym_c_short] = ACTIONS(479), - [anon_sym_c_ushort] = ACTIONS(479), - [anon_sym_c_int] = ACTIONS(479), - [anon_sym_c_uint] = ACTIONS(479), - [anon_sym_c_long] = ACTIONS(479), - [anon_sym_c_ulong] = ACTIONS(479), - [anon_sym_c_longlong] = ACTIONS(479), - [anon_sym_c_ulonglong] = ACTIONS(479), - [anon_sym_c_float] = ACTIONS(479), - [anon_sym_c_double] = ACTIONS(479), - [anon_sym_c_longdouble] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_defer] = ACTIONS(479), - [anon_sym_errdefer] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_expand] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_match] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_orelse] = ACTIONS(479), - [anon_sym_catch] = ACTIONS(479), - [anon_sym_or] = ACTIONS(479), - [anon_sym_and] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_try] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), - [sym_none] = ACTIONS(479), - [sym_undefined] = ACTIONS(479), - [sym_sink] = ACTIONS(479), - [sym_integer] = ACTIONS(479), - [sym_float] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(477), - [sym_multiline_string] = ACTIONS(477), - [sym_character] = ACTIONS(477), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - }, - [STATE(775)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_xor] = ACTIONS(83), - [anon_sym_LT_LT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LT_LT_PIPE] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(776)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(451), - [anon_sym_func] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(451), - [anon_sym_anyopaque] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_uint] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_range] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_c_char] = ACTIONS(451), - [anon_sym_c_schar] = ACTIONS(451), - [anon_sym_c_uchar] = ACTIONS(451), - [anon_sym_c_short] = ACTIONS(451), - [anon_sym_c_ushort] = ACTIONS(451), - [anon_sym_c_int] = ACTIONS(451), - [anon_sym_c_uint] = ACTIONS(451), - [anon_sym_c_long] = ACTIONS(451), - [anon_sym_c_ulong] = ACTIONS(451), - [anon_sym_c_longlong] = ACTIONS(451), - [anon_sym_c_ulonglong] = ACTIONS(451), - [anon_sym_c_float] = ACTIONS(451), - [anon_sym_c_double] = ACTIONS(451), - [anon_sym_c_longdouble] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_defer] = ACTIONS(451), - [anon_sym_errdefer] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_expand] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(449), - [anon_sym_orelse] = ACTIONS(451), - [anon_sym_catch] = ACTIONS(451), - [anon_sym_or] = ACTIONS(451), - [anon_sym_and] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(449), - [anon_sym_BANG_EQ] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_xor] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_LT_LT_PIPE] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_try] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_none] = ACTIONS(451), - [sym_undefined] = ACTIONS(451), - [sym_sink] = ACTIONS(451), - [sym_integer] = ACTIONS(451), - [sym_float] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(449), - [sym_multiline_string] = ACTIONS(449), - [sym_character] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(777)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(778)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(779)] = { - [sym_identifier] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_LT_LT_PIPE] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(780)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(796), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1781), - }, - [STATE(781)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(805), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1783), - }, - [STATE(782)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2571), - [sym_labeled_block] = STATE(2571), - [sym_if_statement] = STATE(2571), - [sym_while_statement] = STATE(2571), - [sym_for_statement] = STATE(2571), - [sym_match_statement] = STATE(2571), - [sym__value] = STATE(2571), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(809), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1785), - }, - [STATE(783)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2557), - [sym_labeled_block] = STATE(2557), - [sym_if_statement] = STATE(2557), - [sym_while_statement] = STATE(2557), - [sym_for_statement] = STATE(2557), - [sym_match_statement] = STATE(2557), - [sym__value] = STATE(2557), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1787), - }, - [STATE(784)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1789), - }, - [STATE(785)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2555), - [sym_labeled_block] = STATE(2555), - [sym_if_statement] = STATE(2555), - [sym_while_statement] = STATE(2555), - [sym_for_statement] = STATE(2555), - [sym_match_statement] = STATE(2555), - [sym__value] = STATE(2555), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(786)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2570), - [sym_labeled_block] = STATE(2570), - [sym_if_statement] = STATE(2570), - [sym_while_statement] = STATE(2570), - [sym_for_statement] = STATE(2570), - [sym_match_statement] = STATE(2570), - [sym__value] = STATE(2570), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(813), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1791), - }, - [STATE(787)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2574), - [sym_labeled_block] = STATE(2574), - [sym_if_statement] = STATE(2574), - [sym_while_statement] = STATE(2574), - [sym_for_statement] = STATE(2574), - [sym_match_statement] = STATE(2574), - [sym__value] = STATE(2574), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(817), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1793), - }, - [STATE(788)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(858), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1795), - }, - [STATE(789)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(790)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(1797), - [anon_sym_func] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_anyopaque] = ACTIONS(1797), - [anon_sym_bool] = ACTIONS(1797), - [anon_sym_int] = ACTIONS(1797), - [anon_sym_uint] = ACTIONS(1797), - [anon_sym_float] = ACTIONS(1797), - [anon_sym_range] = ACTIONS(1797), - [anon_sym_i8] = ACTIONS(1797), - [anon_sym_i16] = ACTIONS(1797), - [anon_sym_i32] = ACTIONS(1797), - [anon_sym_i64] = ACTIONS(1797), - [anon_sym_u8] = ACTIONS(1797), - [anon_sym_u16] = ACTIONS(1797), - [anon_sym_u32] = ACTIONS(1797), - [anon_sym_u64] = ACTIONS(1797), - [anon_sym_isize] = ACTIONS(1797), - [anon_sym_usize] = ACTIONS(1797), - [anon_sym_f32] = ACTIONS(1797), - [anon_sym_f64] = ACTIONS(1797), - [anon_sym_c_char] = ACTIONS(1797), - [anon_sym_c_schar] = ACTIONS(1797), - [anon_sym_c_uchar] = ACTIONS(1797), - [anon_sym_c_short] = ACTIONS(1797), - [anon_sym_c_ushort] = ACTIONS(1797), - [anon_sym_c_int] = ACTIONS(1797), - [anon_sym_c_uint] = ACTIONS(1797), - [anon_sym_c_long] = ACTIONS(1797), - [anon_sym_c_ulong] = ACTIONS(1797), - [anon_sym_c_longlong] = ACTIONS(1797), - [anon_sym_c_ulonglong] = ACTIONS(1797), - [anon_sym_c_float] = ACTIONS(1797), - [anon_sym_c_double] = ACTIONS(1797), - [anon_sym_c_longdouble] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_defer] = ACTIONS(1797), - [anon_sym_errdefer] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_expand] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_anyopaque] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_int] = ACTIONS(1826), + [anon_sym_uint] = ACTIONS(1826), + [anon_sym_float] = ACTIONS(1826), + [anon_sym_range] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_c_char] = ACTIONS(1826), + [anon_sym_c_schar] = ACTIONS(1826), + [anon_sym_c_uchar] = ACTIONS(1826), + [anon_sym_c_short] = ACTIONS(1826), + [anon_sym_c_ushort] = ACTIONS(1826), + [anon_sym_c_int] = ACTIONS(1826), + [anon_sym_c_uint] = ACTIONS(1826), + [anon_sym_c_long] = ACTIONS(1826), + [anon_sym_c_ulong] = ACTIONS(1826), + [anon_sym_c_longlong] = ACTIONS(1826), + [anon_sym_c_ulonglong] = ACTIONS(1826), + [anon_sym_c_float] = ACTIONS(1826), + [anon_sym_c_double] = ACTIONS(1826), + [anon_sym_c_longdouble] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_defer] = ACTIONS(1826), + [anon_sym_errdefer] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_expand] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_DOT_DOT_EQ] = ACTIONS(67), [anon_sym_orelse] = ACTIONS(69), @@ -99151,8681 +100189,10449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1830), [anon_sym_xor] = ACTIONS(83), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1760), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [sym_none] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [sym_sink] = ACTIONS(1797), - [sym_integer] = ACTIONS(1797), - [sym_float] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym_multiline_string] = ACTIONS(1799), - [sym_character] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_none] = ACTIONS(1826), + [sym_undefined] = ACTIONS(1826), + [sym_sink] = ACTIONS(1826), + [sym_integer] = ACTIONS(1826), + [sym_float] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym_multiline_string] = ACTIONS(1828), + [sym_character] = ACTIONS(1828), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1799), + [sym__newline] = ACTIONS(1828), + }, + [STATE(775)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(776)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(788), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1832), + }, + [STATE(777)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1834), + }, + [STATE(778)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(779)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(781), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1836), + }, + [STATE(780)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1838), + }, + [STATE(781)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(782)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(786), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1840), + }, + [STATE(783)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1842), + }, + [STATE(784)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(785)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(786)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(787)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(788)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(789)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(790)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(791)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2591), - [sym_labeled_block] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_while_statement] = STATE(2591), - [sym_for_statement] = STATE(2591), - [sym_match_statement] = STATE(2591), - [sym__value] = STATE(2591), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1801), + [sym__newline] = ACTIONS(466), }, [STATE(792)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1803), + [sym__newline] = ACTIONS(466), }, [STATE(793)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1805), + [sym__newline] = ACTIONS(466), }, [STATE(794)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(797), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1807), + [sym__newline] = ACTIONS(1850), }, [STATE(795)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(3003), + [sym_labeled_block] = STATE(3003), + [sym_if_statement] = STATE(3003), + [sym_while_statement] = STATE(3003), + [sym_for_statement] = STATE(3003), + [sym_match_statement] = STATE(3003), + [sym__value] = STATE(3003), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1809), + [sym__newline] = ACTIONS(466), }, [STATE(796)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(468), }, [STATE(797)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(799), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1852), }, [STATE(798)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), [aux_sym_import_declaration_repeat1] = STATE(802), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1811), + [sym__newline] = ACTIONS(1854), }, [STATE(799)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(803), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1813), + [sym__newline] = ACTIONS(466), }, [STATE(800)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(805), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(1856), }, [STATE(801)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(806), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1815), + [sym__newline] = ACTIONS(1858), }, [STATE(802)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(803)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(804)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(825), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1817), - }, - [STATE(805)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(806)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(807)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(808)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(809)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2544), - [sym_labeled_block] = STATE(2544), - [sym_if_statement] = STATE(2544), - [sym_while_statement] = STATE(2544), - [sym_for_statement] = STATE(2544), - [sym_match_statement] = STATE(2544), - [sym__value] = STATE(2544), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(810)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2569), - [sym_labeled_block] = STATE(2569), - [sym_if_statement] = STATE(2569), - [sym_while_statement] = STATE(2569), - [sym_for_statement] = STATE(2569), - [sym_match_statement] = STATE(2569), - [sym__value] = STATE(2569), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(811)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(789), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1819), - }, - [STATE(812)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1821), - }, - [STATE(813)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2561), - [sym_labeled_block] = STATE(2561), - [sym_if_statement] = STATE(2561), - [sym_while_statement] = STATE(2561), - [sym_for_statement] = STATE(2561), - [sym_match_statement] = STATE(2561), - [sym__value] = STATE(2561), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(814)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(818), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1823), - }, - [STATE(815)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1825), - }, - [STATE(816)] = { - [sym_identifier] = ACTIONS(385), - [anon_sym_func] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_void] = ACTIONS(385), - [anon_sym_anyopaque] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_uint] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_range] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_c_char] = ACTIONS(385), - [anon_sym_c_schar] = ACTIONS(385), - [anon_sym_c_uchar] = ACTIONS(385), - [anon_sym_c_short] = ACTIONS(385), - [anon_sym_c_ushort] = ACTIONS(385), - [anon_sym_c_int] = ACTIONS(385), - [anon_sym_c_uint] = ACTIONS(385), - [anon_sym_c_long] = ACTIONS(385), - [anon_sym_c_ulong] = ACTIONS(385), - [anon_sym_c_longlong] = ACTIONS(385), - [anon_sym_c_ulonglong] = ACTIONS(385), - [anon_sym_c_float] = ACTIONS(385), - [anon_sym_c_double] = ACTIONS(385), - [anon_sym_c_longdouble] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(390), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_defer] = ACTIONS(385), - [anon_sym_errdefer] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_expand] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_LT_LT_PIPE] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_try] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_none] = ACTIONS(385), - [sym_undefined] = ACTIONS(385), - [sym_sink] = ACTIONS(385), - [sym_integer] = ACTIONS(385), - [sym_float] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_multiline_string] = ACTIONS(390), - [sym_character] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(817)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2563), - [sym_labeled_block] = STATE(2563), - [sym_if_statement] = STATE(2563), - [sym_while_statement] = STATE(2563), - [sym_for_statement] = STATE(2563), - [sym_match_statement] = STATE(2563), - [sym__value] = STATE(2563), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(818)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(819)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(823), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1827), - }, - [STATE(820)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1829), - }, - [STATE(821)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(822)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(823)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(824)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(825)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(826)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2578), - [sym_labeled_block] = STATE(2578), - [sym_if_statement] = STATE(2578), - [sym_while_statement] = STATE(2578), - [sym_for_statement] = STATE(2578), - [sym_match_statement] = STATE(2578), - [sym__value] = STATE(2578), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1831), - }, - [STATE(827)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(2587), - [sym_labeled_block] = STATE(2587), - [sym_if_statement] = STATE(2587), - [sym_while_statement] = STATE(2587), - [sym_for_statement] = STATE(2587), - [sym_match_statement] = STATE(2587), - [sym__value] = STATE(2587), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(828)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1833), - }, - [STATE(829)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(833), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), - }, - [STATE(830)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(831)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(834), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1837), - }, - [STATE(832)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1839), - }, - [STATE(833)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(834)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(835)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(836)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(837)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(838)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1841), - }, - [STATE(839)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1843), - }, - [STATE(840)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(841)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1845), - }, - [STATE(842)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), - }, - [STATE(843)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(844)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(845)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(846)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1849), - }, - [STATE(847)] = { - [sym_type] = STATE(3368), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(848)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(849)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(808), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1853), - }, - [STATE(850)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1855), - }, - [STATE(851)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1687), - [sym_labeled_block] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_match_statement] = STATE(1687), - [sym__value] = STATE(1687), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(852)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1691), - [sym_labeled_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_match_statement] = STATE(1691), - [sym__value] = STATE(1691), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1857), - }, - [STATE(853)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1509), - [sym_labeled_block] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_while_statement] = STATE(1509), - [sym_for_statement] = STATE(1509), - [sym_match_statement] = STATE(1509), - [sym__value] = STATE(1509), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(856), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1859), - }, - [STATE(854)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(855)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1540), - [sym_labeled_block] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_while_statement] = STATE(1540), - [sym_for_statement] = STATE(1540), - [sym_match_statement] = STATE(1540), - [sym__value] = STATE(1540), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(856)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(857)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), - }, - [STATE(858)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1598), - [sym_labeled_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_match_statement] = STATE(1598), - [sym__value] = STATE(1598), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(859)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1541), - [sym_labeled_block] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_while_statement] = STATE(1541), - [sym_for_statement] = STATE(1541), - [sym_match_statement] = STATE(1541), - [sym__value] = STATE(1541), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(860)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1558), - [sym_labeled_block] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_while_statement] = STATE(1558), - [sym_for_statement] = STATE(1558), - [sym_match_statement] = STATE(1558), - [sym__value] = STATE(1558), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(765), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1861), - }, - [STATE(861)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1581), - [sym_labeled_block] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_match_statement] = STATE(1581), - [sym__value] = STATE(1581), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1863), - }, - [STATE(862)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_xor] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_LT_LT_PIPE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), - }, - [STATE(863)] = { - [sym_argument_list] = STATE(686), - [sym_identifier] = ACTIONS(551), - [anon_sym_func] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(551), - [anon_sym_anyopaque] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_uint] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_range] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_isize] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_f32] = ACTIONS(551), - [anon_sym_f64] = ACTIONS(551), - [anon_sym_c_char] = ACTIONS(551), - [anon_sym_c_schar] = ACTIONS(551), - [anon_sym_c_uchar] = ACTIONS(551), - [anon_sym_c_short] = ACTIONS(551), - [anon_sym_c_ushort] = ACTIONS(551), - [anon_sym_c_int] = ACTIONS(551), - [anon_sym_c_uint] = ACTIONS(551), - [anon_sym_c_long] = ACTIONS(551), - [anon_sym_c_ulong] = ACTIONS(551), - [anon_sym_c_longlong] = ACTIONS(551), - [anon_sym_c_ulonglong] = ACTIONS(551), - [anon_sym_c_float] = ACTIONS(551), - [anon_sym_c_double] = ACTIONS(551), - [anon_sym_c_longdouble] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_defer] = ACTIONS(551), - [anon_sym_errdefer] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_expand] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(549), - [anon_sym_orelse] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_or] = ACTIONS(551), - [anon_sym_and] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_xor] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), [anon_sym_LT_LT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LT_LT_PIPE] = ACTIONS(87), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_try] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [sym_none] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [sym_sink] = ACTIONS(551), - [sym_integer] = ACTIONS(551), - [sym_float] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_multiline_string] = ACTIONS(549), - [sym_character] = ACTIONS(549), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(468), }, - [STATE(864)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(153), + [STATE(804)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(71), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(805)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, - [STATE(865)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(125), + [STATE(806)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, - [STATE(866)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1869), + [STATE(807)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(808)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_defer] = ACTIONS(502), + [anon_sym_errdefer] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_expand] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_try] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_none] = ACTIONS(502), + [sym_undefined] = ACTIONS(502), + [sym_sink] = ACTIONS(502), + [sym_integer] = ACTIONS(502), + [sym_float] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(500), + [sym_multiline_string] = ACTIONS(500), + [sym_character] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(809)] = { + [sym_identifier] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(810)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_defer] = ACTIONS(502), + [anon_sym_errdefer] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_else] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_expand] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_try] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_none] = ACTIONS(502), + [sym_undefined] = ACTIONS(502), + [sym_sink] = ACTIONS(502), + [sym_integer] = ACTIONS(502), + [sym_float] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(500), + [sym_multiline_string] = ACTIONS(500), + [sym_character] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(811)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_expand] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_try] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_none] = ACTIONS(470), + [sym_undefined] = ACTIONS(470), + [sym_sink] = ACTIONS(470), + [sym_integer] = ACTIONS(470), + [sym_float] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_multiline_string] = ACTIONS(468), + [sym_character] = ACTIONS(468), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(812)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(816), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1862), + }, + [STATE(813)] = { + [sym_identifier] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_defer] = ACTIONS(397), + [anon_sym_errdefer] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_expand] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_try] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_none] = ACTIONS(397), + [sym_undefined] = ACTIONS(397), + [sym_sink] = ACTIONS(397), + [sym_integer] = ACTIONS(397), + [sym_float] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_multiline_string] = ACTIONS(406), + [sym_character] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(814)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2956), + [sym_labeled_block] = STATE(2956), + [sym_if_statement] = STATE(2956), + [sym_while_statement] = STATE(2956), + [sym_for_statement] = STATE(2956), + [sym_match_statement] = STATE(2956), + [sym__value] = STATE(2956), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(868), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1864), + }, + [STATE(815)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(816)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(817)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(3000), + [sym_labeled_block] = STATE(3000), + [sym_if_statement] = STATE(3000), + [sym_while_statement] = STATE(3000), + [sym_for_statement] = STATE(3000), + [sym_match_statement] = STATE(3000), + [sym__value] = STATE(3000), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(818)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(3004), + [sym_labeled_block] = STATE(3004), + [sym_if_statement] = STATE(3004), + [sym_while_statement] = STATE(3004), + [sym_for_statement] = STATE(3004), + [sym_match_statement] = STATE(3004), + [sym__value] = STATE(3004), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1866), + }, + [STATE(819)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2985), + [sym_labeled_block] = STATE(2985), + [sym_if_statement] = STATE(2985), + [sym_while_statement] = STATE(2985), + [sym_for_statement] = STATE(2985), + [sym_match_statement] = STATE(2985), + [sym__value] = STATE(2985), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1868), + }, + [STATE(820)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2955), + [sym_labeled_block] = STATE(2955), + [sym_if_statement] = STATE(2955), + [sym_while_statement] = STATE(2955), + [sym_for_statement] = STATE(2955), + [sym_match_statement] = STATE(2955), + [sym__value] = STATE(2955), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(795), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1870), + }, + [STATE(821)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2972), + [sym_labeled_block] = STATE(2972), + [sym_if_statement] = STATE(2972), + [sym_while_statement] = STATE(2972), + [sym_for_statement] = STATE(2972), + [sym_match_statement] = STATE(2972), + [sym__value] = STATE(2972), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(822)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(841), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1872), + }, + [STATE(823)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(844), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1874), + }, + [STATE(824)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(825)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(827), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1876), + }, + [STATE(826)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1878), + }, + [STATE(827)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(828)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(831), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1880), + }, + [STATE(829)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(832), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1882), + }, + [STATE(830)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(831)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(832)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(833)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1884), + }, + [STATE(834)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(838), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1886), + }, + [STATE(835)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(836)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(839), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1888), + }, + [STATE(837)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1890), + }, + [STATE(838)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(839)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(840)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(841)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(842)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(792), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1892), + }, + [STATE(843)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1894), + }, + [STATE(844)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(845)] = { + [sym_type] = STATE(285), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(311), + [sym_identifier] = ACTIONS(313), + [anon_sym_import] = ACTIONS(316), + [anon_sym_test] = ACTIONS(316), + [anon_sym_hide] = ACTIONS(316), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_mut] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_xor_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(311), + [anon_sym_else] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_LT_LT_PIPE] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(311), + }, + [STATE(846)] = { + [sym_type] = STATE(292), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_mut] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(847)] = { + [sym_type] = STATE(291), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(848)] = { + [sym_type] = STATE(297), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(849)] = { + [sym_type] = STATE(299), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(850)] = { + [sym_type] = STATE(306), + [sym__type_atom] = STATE(50), + [sym_parenthesized_type] = STATE(50), + [sym_named_type] = STATE(50), + [sym_optional_type] = STATE(50), + [sym_pointer_type] = STATE(50), + [sym_array_type] = STATE(50), + [sym_function_type] = STATE(50), + [sym_builtin_type] = STATE(50), + [sym_qualified_identifier] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(297), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_mut] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_else] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_LT_LT_PIPE] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(851)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(852)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1896), + }, + [STATE(853)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2964), + [sym_labeled_block] = STATE(2964), + [sym_if_statement] = STATE(2964), + [sym_while_statement] = STATE(2964), + [sym_for_statement] = STATE(2964), + [sym_match_statement] = STATE(2964), + [sym__value] = STATE(2964), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(854)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1771), + }, + [STATE(855)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(791), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1898), + }, + [STATE(856)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(858), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1900), + }, + [STATE(857)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1902), + }, + [STATE(858)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1720), + [sym_labeled_block] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_match_statement] = STATE(1720), + [sym__value] = STATE(1720), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(859)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1721), + [sym_labeled_block] = STATE(1721), + [sym_if_statement] = STATE(1721), + [sym_while_statement] = STATE(1721), + [sym_for_statement] = STATE(1721), + [sym_match_statement] = STATE(1721), + [sym__value] = STATE(1721), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1904), + }, + [STATE(860)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1722), + [sym_labeled_block] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_match_statement] = STATE(1722), + [sym__value] = STATE(1722), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(863), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1906), + }, + [STATE(861)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(862)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1693), + [sym_labeled_block] = STATE(1693), + [sym_if_statement] = STATE(1693), + [sym_while_statement] = STATE(1693), + [sym_for_statement] = STATE(1693), + [sym_match_statement] = STATE(1693), + [sym__value] = STATE(1693), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(863)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1695), + [sym_labeled_block] = STATE(1695), + [sym_if_statement] = STATE(1695), + [sym_while_statement] = STATE(1695), + [sym_for_statement] = STATE(1695), + [sym_match_statement] = STATE(1695), + [sym__value] = STATE(1695), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(864)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(865)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2999), + [sym_labeled_block] = STATE(2999), + [sym_if_statement] = STATE(2999), + [sym_while_statement] = STATE(2999), + [sym_for_statement] = STATE(2999), + [sym_match_statement] = STATE(2999), + [sym__value] = STATE(2999), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(817), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1908), + }, + [STATE(866)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(851), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1910), }, [STATE(867)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_defer] = ACTIONS(1875), - [anon_sym_errdefer] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_expand] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), + [sym__newline] = ACTIONS(1771), }, [STATE(868)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(441), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(2965), + [sym_labeled_block] = STATE(2965), + [sym_if_statement] = STATE(2965), + [sym_while_statement] = STATE(2965), + [sym_for_statement] = STATE(2965), + [sym_match_statement] = STATE(2965), + [sym__value] = STATE(2965), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(869)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(531), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1912), }, [STATE(870)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(205), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1766), + [sym_labeled_block] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_for_statement] = STATE(1766), + [sym_match_statement] = STATE(1766), + [sym__value] = STATE(1766), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1914), }, [STATE(871)] = { - [sym_type] = STATE(235), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(333), - [sym_identifier] = ACTIONS(335), - [anon_sym_import] = ACTIONS(338), - [anon_sym_test] = ACTIONS(338), - [anon_sym_hide] = ACTIONS(338), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(346), - [anon_sym_mut] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(333), - [anon_sym_DASH_EQ] = ACTIONS(333), - [anon_sym_STAR_EQ] = ACTIONS(333), - [anon_sym_SLASH_EQ] = ACTIONS(333), - [anon_sym_AMP_EQ] = ACTIONS(333), - [anon_sym_PIPE_EQ] = ACTIONS(333), - [anon_sym_xor_EQ] = ACTIONS(333), - [anon_sym_LT_LT_EQ] = ACTIONS(333), - [anon_sym_GT_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), - [anon_sym_else] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_LT_LT_PIPE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1767), + [sym_labeled_block] = STATE(1767), + [sym_if_statement] = STATE(1767), + [sym_while_statement] = STATE(1767), + [sym_for_statement] = STATE(1767), + [sym_match_statement] = STATE(1767), + [sym__value] = STATE(1767), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), + [sym__newline] = ACTIONS(1916), }, [STATE(872)] = { - [sym_type] = STATE(247), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_mut] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(570), }, [STATE(873)] = { - [sym_type] = STATE(246), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_mut] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(570), }, [STATE(874)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1526), - [sym_labeled_block] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_match_statement] = STATE(1526), - [sym__value] = STATE(1526), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1707), + [sym__newline] = ACTIONS(570), }, [STATE(875)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(71), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), }, [STATE(876)] = { - [sym_type] = STATE(253), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(255), - [anon_sym_import] = ACTIONS(258), - [anon_sym_test] = ACTIONS(258), - [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(270), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_AMP_EQ] = ACTIONS(253), - [anon_sym_PIPE_EQ] = ACTIONS(253), - [anon_sym_xor_EQ] = ACTIONS(253), - [anon_sym_LT_LT_EQ] = ACTIONS(253), - [anon_sym_GT_GT_EQ] = ACTIONS(253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_LT_LT_PIPE] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_defer] = ACTIONS(572), + [anon_sym_errdefer] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_expand] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_try] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_none] = ACTIONS(572), + [sym_undefined] = ACTIONS(572), + [sym_sink] = ACTIONS(572), + [sym_integer] = ACTIONS(572), + [sym_float] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_multiline_string] = ACTIONS(570), + [sym_character] = ACTIONS(570), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), + [sym__newline] = ACTIONS(570), }, [STATE(877)] = { - [sym_type] = STATE(255), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(255), - [anon_sym_import] = ACTIONS(258), - [anon_sym_test] = ACTIONS(258), - [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(270), - [anon_sym_mut] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_AMP_EQ] = ACTIONS(253), - [anon_sym_PIPE_EQ] = ACTIONS(253), - [anon_sym_xor_EQ] = ACTIONS(253), - [anon_sym_LT_LT_EQ] = ACTIONS(253), - [anon_sym_GT_GT_EQ] = ACTIONS(253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_LT_LT_PIPE] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_defer] = ACTIONS(578), + [anon_sym_errdefer] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_expand] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_match] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_try] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [sym_none] = ACTIONS(578), + [sym_undefined] = ACTIONS(578), + [sym_sink] = ACTIONS(578), + [sym_integer] = ACTIONS(578), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), + [sym__newline] = ACTIONS(576), }, [STATE(878)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_defer] = ACTIONS(1887), - [anon_sym_errdefer] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_expand] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_defer] = ACTIONS(578), + [anon_sym_errdefer] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_expand] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_match] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_try] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [sym_none] = ACTIONS(578), + [sym_undefined] = ACTIONS(578), + [sym_sink] = ACTIONS(578), + [sym_integer] = ACTIONS(578), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), + [sym__newline] = ACTIONS(576), }, [STATE(879)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(239), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1731), + [sym_labeled_block] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_match_statement] = STATE(1731), + [sym__value] = STATE(1731), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), }, [STATE(880)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1534), - [sym_labeled_block] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_while_statement] = STATE(1534), - [sym_for_statement] = STATE(1534), - [sym_match_statement] = STATE(1534), - [sym__value] = STATE(1534), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(599), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(600), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, [STATE(881)] = { - [sym_type] = STATE(264), - [sym__type_atom] = STATE(48), - [sym_named_type] = STATE(48), - [sym_optional_type] = STATE(48), - [sym_pointer_type] = STATE(48), - [sym_array_type] = STATE(48), - [sym_function_type] = STATE(48), - [sym_builtin_type] = STATE(48), - [sym_qualified_identifier] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(263), - [anon_sym_c_func] = ACTIONS(263), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(299), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + }, + [STATE(882)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -107858,5888 +110664,4967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_else] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_LT_LT_PIPE] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(882)] = { - [sym_type] = STATE(3366), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1895), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(883)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(616), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [STATE(883)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, [STATE(884)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(441), + [sym_type] = STATE(3873), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(885)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2520), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1384), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_defer] = ACTIONS(1930), + [anon_sym_errdefer] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_expand] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1932), + }, + [STATE(886)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2520), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1384), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_defer] = ACTIONS(1934), + [anon_sym_errdefer] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_expand] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1932), + }, + [STATE(887)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1817), + [sym_labeled_block] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_match_statement] = STATE(1817), + [sym__value] = STATE(1817), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1771), + }, + [STATE(888)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, - [STATE(885)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2310), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1537), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), + [STATE(889)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_COLON] = ACTIONS(1938), [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - }, - [STATE(886)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(205), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - }, - [STATE(887)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(153), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - }, - [STATE(888)] = { - [sym_type] = STATE(3342), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(889)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2397), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(581), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [STATE(890)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(531), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(197), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, [STATE(891)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(790), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [sym_identifier] = ACTIONS(1703), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(239), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(171), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, [STATE(892)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(1683), - [sym_labeled_block] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_match_statement] = STATE(1683), - [sym__value] = STATE(1683), - [sym_expression] = STATE(2428), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1752), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_if] = ACTIONS(599), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1819), + [sym_labeled_block] = STATE(1819), + [sym_if_statement] = STATE(1819), + [sym_while_statement] = STATE(1819), + [sym_for_statement] = STATE(1819), + [sym_match_statement] = STATE(1819), + [sym__value] = STATE(1819), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(516), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), }, [STATE(893)] = { - [sym_type] = STATE(3363), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1899), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), + [sym_type] = STATE(3916), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(894)] = { - [sym_type] = STATE(3368), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(385), - [anon_sym_test] = ACTIONS(385), - [anon_sym_hide] = ACTIONS(385), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), }, [STATE(895)] = { - [sym_type] = STATE(3377), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), }, [STATE(896)] = { - [sym_type] = STATE(3376), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(390), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), }, [STATE(897)] = { - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1905), - [anon_sym_import] = ACTIONS(1905), - [anon_sym_func] = ACTIONS(1905), - [anon_sym_c_func] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_c_struct] = ACTIONS(1905), - [sym_opaque_type] = ACTIONS(1905), - [anon_sym_distinct] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_QMARK] = ACTIONS(1907), - [anon_sym_AT] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_RBRACK] = ACTIONS(1907), - [anon_sym_void] = ACTIONS(1905), - [anon_sym_anyopaque] = ACTIONS(1905), - [anon_sym_bool] = ACTIONS(1905), - [anon_sym_int] = ACTIONS(1905), - [anon_sym_uint] = ACTIONS(1905), - [anon_sym_float] = ACTIONS(1905), - [anon_sym_range] = ACTIONS(1905), - [anon_sym_i8] = ACTIONS(1905), - [anon_sym_i16] = ACTIONS(1905), - [anon_sym_i32] = ACTIONS(1905), - [anon_sym_i64] = ACTIONS(1905), - [anon_sym_u8] = ACTIONS(1905), - [anon_sym_u16] = ACTIONS(1905), - [anon_sym_u32] = ACTIONS(1905), - [anon_sym_u64] = ACTIONS(1905), - [anon_sym_isize] = ACTIONS(1905), - [anon_sym_usize] = ACTIONS(1905), - [anon_sym_f32] = ACTIONS(1905), - [anon_sym_f64] = ACTIONS(1905), - [anon_sym_c_char] = ACTIONS(1905), - [anon_sym_c_schar] = ACTIONS(1905), - [anon_sym_c_uchar] = ACTIONS(1905), - [anon_sym_c_short] = ACTIONS(1905), - [anon_sym_c_ushort] = ACTIONS(1905), - [anon_sym_c_int] = ACTIONS(1905), - [anon_sym_c_uint] = ACTIONS(1905), - [anon_sym_c_long] = ACTIONS(1905), - [anon_sym_c_ulong] = ACTIONS(1905), - [anon_sym_c_longlong] = ACTIONS(1905), - [anon_sym_c_ulonglong] = ACTIONS(1905), - [anon_sym_c_float] = ACTIONS(1905), - [anon_sym_c_double] = ACTIONS(1905), - [anon_sym_c_longdouble] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_yield] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_errdefer] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_expand] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_undefined] = ACTIONS(1905), - [sym_sink] = ACTIONS(1905), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym_multiline_string] = ACTIONS(1907), - [sym_character] = ACTIONS(1907), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2546), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1603), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(600), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1909), }, [STATE(898)] = { - [sym_type] = STATE(3366), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1895), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), + [sym_type] = STATE(3928), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(406), }, [STATE(899)] = { - [sym_type] = STATE(2081), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(333), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(516), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + }, + [STATE(900)] = { + [sym_type] = STATE(3926), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(901)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + }, + [STATE(902)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2703), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1793), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [STATE(903)] = { + [sym_type] = STATE(3884), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(904)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(133), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + }, + [STATE(905)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(1714), + [sym_labeled_block] = STATE(1714), + [sym_if_statement] = STATE(1714), + [sym_while_statement] = STATE(1714), + [sym_for_statement] = STATE(1714), + [sym_match_statement] = STATE(1714), + [sym__value] = STATE(1714), + [sym_expression] = STATE(2648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [sym_identifier] = ACTIONS(1767), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(197), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + }, + [STATE(906)] = { + [sym_type] = STATE(3881), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(907)] = { + [sym_type] = STATE(2331), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(1963), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_mut] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_xor_EQ] = ACTIONS(284), + [anon_sym_LT_LT_EQ] = ACTIONS(284), + [anon_sym_GT_GT_EQ] = ACTIONS(284), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(284), + [anon_sym_else] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_LT_LT_PIPE] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(908)] = { + [sym_type] = STATE(2320), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_mut] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(909)] = { + [sym_type] = STATE(3884), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(910)] = { + [sym_type] = STATE(2323), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(911)] = { + [sym_type] = STATE(3916), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(912)] = { + [sym_type] = STATE(2308), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_xor_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(311), + [anon_sym_else] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_LT_LT_PIPE] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(311), + }, + [STATE(913)] = { + [sym_type] = STATE(2315), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(914)] = { + [sym_type] = STATE(2314), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_STAR_EQ] = ACTIONS(338), + [anon_sym_SLASH_EQ] = ACTIONS(338), + [anon_sym_AMP_EQ] = ACTIONS(338), + [anon_sym_PIPE_EQ] = ACTIONS(338), + [anon_sym_xor_EQ] = ACTIONS(338), + [anon_sym_LT_LT_EQ] = ACTIONS(338), + [anon_sym_GT_GT_EQ] = ACTIONS(338), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_LT_LT_PIPE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(915)] = { + [sym_type] = STATE(3881), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(916)] = { + [sym_type] = STATE(3928), + [sym__type_atom] = STATE(2916), + [sym_parenthesized_type] = STATE(2916), + [sym_named_type] = STATE(2916), + [sym_optional_type] = STATE(2916), + [sym_pointer_type] = STATE(2916), + [sym_array_type] = STATE(2916), + [sym_function_type] = STATE(2916), + [sym_builtin_type] = STATE(2916), + [sym_qualified_identifier] = STATE(2913), + [sym_identifier] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(416), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_xor_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT_PIPE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(917)] = { + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2012), + [anon_sym_import] = ACTIONS(2012), + [anon_sym_func] = ACTIONS(2012), + [anon_sym_c_func] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_c_struct] = ACTIONS(2012), + [sym_opaque_type] = ACTIONS(2012), + [anon_sym_distinct] = ACTIONS(2012), + [anon_sym_alias] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_QMARK] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2014), + [anon_sym_void] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_anyopaque] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_int] = ACTIONS(2012), + [anon_sym_uint] = ACTIONS(2012), + [anon_sym_float] = ACTIONS(2012), + [anon_sym_range] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_c_char] = ACTIONS(2012), + [anon_sym_c_schar] = ACTIONS(2012), + [anon_sym_c_uchar] = ACTIONS(2012), + [anon_sym_c_short] = ACTIONS(2012), + [anon_sym_c_ushort] = ACTIONS(2012), + [anon_sym_c_int] = ACTIONS(2012), + [anon_sym_c_uint] = ACTIONS(2012), + [anon_sym_c_long] = ACTIONS(2012), + [anon_sym_c_ulong] = ACTIONS(2012), + [anon_sym_c_longlong] = ACTIONS(2012), + [anon_sym_c_ulonglong] = ACTIONS(2012), + [anon_sym_c_float] = ACTIONS(2012), + [anon_sym_c_double] = ACTIONS(2012), + [anon_sym_c_longdouble] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_defer] = ACTIONS(2012), + [anon_sym_errdefer] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_expand] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [sym_none] = ACTIONS(2012), + [sym_undefined] = ACTIONS(2012), + [sym_sink] = ACTIONS(2012), + [sym_integer] = ACTIONS(2012), + [sym_float] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_multiline_string] = ACTIONS(2014), + [sym_character] = ACTIONS(2014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2016), + }, + [STATE(918)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2551), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(921), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2029), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2031), + }, + [STATE(919)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2551), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(928), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2029), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2035), + }, + [STATE(920)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(922), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2043), + }, + [STATE(921)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2560), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2053), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2055), + }, + [STATE(922)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(922), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(2057), + [anon_sym_func] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_anyopaque] = ACTIONS(2083), + [anon_sym_bool] = ACTIONS(2083), + [anon_sym_int] = ACTIONS(2083), + [anon_sym_uint] = ACTIONS(2083), + [anon_sym_float] = ACTIONS(2083), + [anon_sym_range] = ACTIONS(2083), + [anon_sym_i8] = ACTIONS(2083), + [anon_sym_i16] = ACTIONS(2083), + [anon_sym_i32] = ACTIONS(2083), + [anon_sym_i64] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2083), + [anon_sym_u16] = ACTIONS(2083), + [anon_sym_u32] = ACTIONS(2083), + [anon_sym_u64] = ACTIONS(2083), + [anon_sym_isize] = ACTIONS(2083), + [anon_sym_usize] = ACTIONS(2083), + [anon_sym_f32] = ACTIONS(2083), + [anon_sym_f64] = ACTIONS(2083), + [anon_sym_c_char] = ACTIONS(2083), + [anon_sym_c_schar] = ACTIONS(2083), + [anon_sym_c_uchar] = ACTIONS(2083), + [anon_sym_c_short] = ACTIONS(2083), + [anon_sym_c_ushort] = ACTIONS(2083), + [anon_sym_c_int] = ACTIONS(2083), + [anon_sym_c_uint] = ACTIONS(2083), + [anon_sym_c_long] = ACTIONS(2083), + [anon_sym_c_ulong] = ACTIONS(2083), + [anon_sym_c_longlong] = ACTIONS(2083), + [anon_sym_c_ulonglong] = ACTIONS(2083), + [anon_sym_c_float] = ACTIONS(2083), + [anon_sym_c_double] = ACTIONS(2083), + [anon_sym_c_longdouble] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_expand] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [sym_none] = ACTIONS(2101), + [sym_undefined] = ACTIONS(2101), + [sym_sink] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym_multiline_string] = ACTIONS(2104), + [sym_character] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2110), + }, + [STATE(923)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(922), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2043), + }, + [STATE(924)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(922), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2043), + }, + [STATE(925)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(929), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(929), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2119), + }, + [STATE(926)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(920), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2121), + }, + [STATE(927)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2547), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(932), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2129), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2131), + }, + [STATE(928)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2560), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2053), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2055), + }, + [STATE(929)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(922), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2043), + }, + [STATE(930)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(923), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2137), + }, + [STATE(931)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_match_arm] = STATE(924), + [sym_expression] = STATE(2562), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_match_statement_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_expand] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2141), + }, + [STATE(932)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2550), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1878), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2149), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2151), + }, + [STATE(933)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2563), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1890), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2053), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2153), + }, + [STATE(934)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2638), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(956), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2161), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2163), + }, + [STATE(935)] = { + [sym_type] = STATE(2314), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), [anon_sym_DASH] = ACTIONS(338), [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(1914), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(333), - [anon_sym_DASH_EQ] = ACTIONS(333), - [anon_sym_STAR_EQ] = ACTIONS(333), - [anon_sym_SLASH_EQ] = ACTIONS(333), - [anon_sym_AMP_EQ] = ACTIONS(333), - [anon_sym_PIPE_EQ] = ACTIONS(333), - [anon_sym_xor_EQ] = ACTIONS(333), - [anon_sym_LT_LT_EQ] = ACTIONS(333), - [anon_sym_GT_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), - [anon_sym_else] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(338), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), [anon_sym_AMP] = ACTIONS(338), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), [anon_sym_GT_GT] = ACTIONS(338), [anon_sym_LT_LT_PIPE] = ACTIONS(338), [anon_sym_PLUS] = ACTIONS(338), [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - }, - [STATE(900)] = { - [sym_type] = STATE(2106), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_mut] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(901)] = { - [sym_type] = STATE(2098), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_mut] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_xor_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_LT_LT_PIPE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(902)] = { - [sym_type] = STATE(2076), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_mut] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_AMP_EQ] = ACTIONS(253), - [anon_sym_PIPE_EQ] = ACTIONS(253), - [anon_sym_xor_EQ] = ACTIONS(253), - [anon_sym_LT_LT_EQ] = ACTIONS(253), - [anon_sym_GT_GT_EQ] = ACTIONS(253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_LT_LT_PIPE] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(903)] = { - [sym_type] = STATE(3363), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1899), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(904)] = { - [sym_type] = STATE(2080), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_mut] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_AMP_EQ] = ACTIONS(253), - [anon_sym_PIPE_EQ] = ACTIONS(253), - [anon_sym_xor_EQ] = ACTIONS(253), - [anon_sym_LT_LT_EQ] = ACTIONS(253), - [anon_sym_GT_GT_EQ] = ACTIONS(253), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_LT_LT_PIPE] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(905)] = { - [sym_type] = STATE(2100), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_mut] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [anon_sym_xor_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), - [anon_sym_else] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_LT_LT_PIPE] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(906)] = { - [sym_type] = STATE(3376), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(907)] = { - [sym_type] = STATE(3377), - [sym__type_atom] = STATE(2507), - [sym_named_type] = STATE(2507), - [sym_optional_type] = STATE(2507), - [sym_pointer_type] = STATE(2507), - [sym_array_type] = STATE(2507), - [sym_function_type] = STATE(2507), - [sym_builtin_type] = STATE(2507), - [sym_qualified_identifier] = STATE(2504), - [sym_identifier] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_func] = ACTIONS(381), - [anon_sym_c_func] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_xor_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_orelse] = ACTIONS(385), - [anon_sym_catch] = ACTIONS(385), - [anon_sym_or] = ACTIONS(385), - [anon_sym_and] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_xor] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_LT_LT_PIPE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(390), - }, - [STATE(908)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(910), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1960), - }, - [STATE(909)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2340), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(1972), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1974), - }, - [STATE(910)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(910), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1976), - [anon_sym_func] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_void] = ACTIONS(2002), - [anon_sym_anyopaque] = ACTIONS(2002), - [anon_sym_bool] = ACTIONS(2002), - [anon_sym_int] = ACTIONS(2002), - [anon_sym_uint] = ACTIONS(2002), - [anon_sym_float] = ACTIONS(2002), - [anon_sym_range] = ACTIONS(2002), - [anon_sym_i8] = ACTIONS(2002), - [anon_sym_i16] = ACTIONS(2002), - [anon_sym_i32] = ACTIONS(2002), - [anon_sym_i64] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2002), - [anon_sym_u16] = ACTIONS(2002), - [anon_sym_u32] = ACTIONS(2002), - [anon_sym_u64] = ACTIONS(2002), - [anon_sym_isize] = ACTIONS(2002), - [anon_sym_usize] = ACTIONS(2002), - [anon_sym_f32] = ACTIONS(2002), - [anon_sym_f64] = ACTIONS(2002), - [anon_sym_c_char] = ACTIONS(2002), - [anon_sym_c_schar] = ACTIONS(2002), - [anon_sym_c_uchar] = ACTIONS(2002), - [anon_sym_c_short] = ACTIONS(2002), - [anon_sym_c_ushort] = ACTIONS(2002), - [anon_sym_c_int] = ACTIONS(2002), - [anon_sym_c_uint] = ACTIONS(2002), - [anon_sym_c_long] = ACTIONS(2002), - [anon_sym_c_ulong] = ACTIONS(2002), - [anon_sym_c_longlong] = ACTIONS(2002), - [anon_sym_c_ulonglong] = ACTIONS(2002), - [anon_sym_c_float] = ACTIONS(2002), - [anon_sym_c_double] = ACTIONS(2002), - [anon_sym_c_longdouble] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_expand] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [sym_none] = ACTIONS(2020), - [sym_undefined] = ACTIONS(2020), - [sym_sink] = ACTIONS(2020), - [sym_integer] = ACTIONS(2020), - [sym_float] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2026), - [sym_multiline_string] = ACTIONS(2023), - [sym_character] = ACTIONS(2023), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2029), - }, - [STATE(911)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(916), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(916), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2034), - }, - [STATE(912)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2330), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(914), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2042), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2044), - }, - [STATE(913)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(910), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1960), - }, - [STATE(914)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2341), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1724), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2054), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2056), - }, - [STATE(915)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(917), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(917), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2060), - }, - [STATE(916)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(910), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1960), - }, - [STATE(917)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(910), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1960), - }, - [STATE(918)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2336), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1723), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2070), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2072), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2074), - }, - [STATE(919)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(908), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2076), - }, - [STATE(920)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_match_arm] = STATE(913), - [sym_expression] = STATE(2338), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_match_statement_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_expand] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2080), - }, - [STATE(921)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2336), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1723), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2082), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2072), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2074), - }, - [STATE(922)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2340), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(921), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(1972), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2086), - }, - [STATE(923)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2337), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2092), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2094), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2096), - }, - [STATE(924)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2407), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1726), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2054), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2100), - }, - [STATE(925)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2387), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1736), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_RBRACK] = ACTIONS(2106), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2108), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2110), - }, - [STATE(926)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2339), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2094), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2096), - }, - [STATE(927)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2400), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2118), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2120), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2122), - }, - [STATE(928)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2404), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(2124), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(1972), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2126), - }, - [STATE(929)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2325), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(936), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(1972), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2128), - }, - [STATE(930)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2409), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_RBRACK] = ACTIONS(2134), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2136), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2138), - }, - [STATE(931)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2328), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(933), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(1972), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2140), - }, - [STATE(932)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2410), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2072), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2144), - }, - [STATE(933)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2329), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2070), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2072), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2144), - }, - [STATE(934)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2333), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2042), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2146), - }, - [STATE(935)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2403), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2094), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2096), + [sym__newline] = ACTIONS(338), }, [STATE(936)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2342), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2082), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2072), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2144), - }, - [STATE(937)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2334), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1726), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2054), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2100), - }, - [STATE(938)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2396), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(940), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_RBRACK] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2156), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2158), - }, - [STATE(939)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2335), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2042), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2162), - }, - [STATE(940)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2406), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1732), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2170), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2172), - }, - [STATE(941)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2393), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2174), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2042), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2176), - }, - [STATE(942)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2331), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1726), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2054), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2100), - }, - [STATE(943)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2326), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(923), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2180), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2120), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2182), - }, - [STATE(944)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2327), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(926), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2184), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2120), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2186), - }, - [STATE(945)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2353), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2624), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1000), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2192), - }, - [STATE(946)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3281), - [sym_expression_statement] = STATE(3281), - [sym_expression] = STATE(2259), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(987), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2194), - }, - [STATE(947)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_assignment_statement] = STATE(2710), - [sym_expression_statement] = STATE(2710), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [sym_type] = STATE(2320), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_mut] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_RBRACK] = ACTIONS(253), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -113772,1178 +115657,2183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(937)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2634), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1882), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), + [sym_sink] = ACTIONS(2149), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2173), + }, + [STATE(938)] = { + [sym_type] = STATE(2323), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_RBRACK] = ACTIONS(253), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(939)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2657), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1890), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2053), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2153), + }, + [STATE(940)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2561), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2029), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2177), + }, + [STATE(941)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2626), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2185), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2187), + }, + [STATE(942)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2630), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(937), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2129), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2191), + }, + [STATE(943)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2552), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1881), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2199), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2201), + }, + [STATE(944)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2564), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2129), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2203), + }, + [STATE(945)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2637), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(950), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2211), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2213), + }, + [STATE(946)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2555), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2185), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2187), + }, + [STATE(947)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2566), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1882), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2149), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2173), }, [STATE(948)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2389), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(950), - [aux_sym_tuple_literal_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_type] = STATE(2308), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_else] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_LT_LT_PIPE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2204), + [sym__newline] = ACTIONS(311), }, [STATE(949)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2569), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1890), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2053), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2153), }, [STATE(950)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2390), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1746), - [aux_sym_tuple_literal_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2210), - }, - [STATE(951)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(952)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(953)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(954)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2216), - }, - [STATE(955)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2218), - }, - [STATE(956)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2220), - }, - [STATE(957)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(972), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2224), - }, - [STATE(958)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2391), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3198), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2646), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2224), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2226), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2228), }, - [STATE(959)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2347), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2615), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(951)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2655), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(962), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2236), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2238), + }, + [STATE(952)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2567), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2240), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2236), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2242), + }, + [STATE(953)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2565), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(949), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2029), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2244), + }, + [STATE(954)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2622), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_RBRACK] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2252), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2254), + }, + [STATE(955)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2548), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1882), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2256), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2149), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2173), + }, + [STATE(956)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2623), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1891), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_RBRACK] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2264), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2266), + }, + [STATE(957)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2553), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2236), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2270), + }, + [STATE(958)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2568), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1881), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2199), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2201), + }, + [STATE(959)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2652), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(939), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2029), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2276), }, [STATE(960)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3327), - [sym_expression_statement] = STATE(3327), - [sym_expression] = STATE(2259), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2556), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2278), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2236), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2232), + [sym__newline] = ACTIONS(2280), }, [STATE(961)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_assignment_statement] = STATE(2730), - [sym_expression_statement] = STATE(2730), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2558), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1881), + [sym_identifier] = ACTIONS(1926), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2282), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -114976,232 +117866,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), + [sym_sink] = ACTIONS(2199), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2201), }, [STATE(962)] = { - [sym_type] = STATE(2106), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_mut] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2632), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1881), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2199), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(2201), }, [STATE(963)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2389), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1752), - [aux_sym_tuple_literal_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_type] = STATE(2331), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(1963), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_RBRACK] = ACTIONS(284), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_else] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2239), + [sym__newline] = ACTIONS(284), }, [STATE(964)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_assignment_statement] = STATE(2750), - [sym_expression_statement] = STATE(2750), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(2196), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2554), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(1926), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_RBRACK] = ACTIONS(2289), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -115234,2124 +118130,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), + [sym_sink] = ACTIONS(2252), [sym_integer] = ACTIONS(97), [sym_float] = ACTIONS(101), [anon_sym_DQUOTE] = ACTIONS(103), [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2243), + [sym__newline] = ACTIONS(2291), }, [STATE(965)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3260), - [sym_expression_statement] = STATE(3260), - [sym_expression] = STATE(2278), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(966)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2371), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2735), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2247), - }, - [STATE(967)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2411), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(974), - [aux_sym_tuple_literal_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2251), - }, - [STATE(968)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3289), - [sym_expression_statement] = STATE(3289), - [sym_expression] = STATE(2278), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(969)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2448), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2760), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1031), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2257), - }, - [STATE(970)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2383), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2613), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(971)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(972)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(973)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(952), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2263), - }, - [STATE(974)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2415), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1745), - [aux_sym_tuple_literal_repeat1] = STATE(992), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2267), - }, - [STATE(975)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(953), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2269), - }, - [STATE(976)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2415), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3158), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2271), - }, - [STATE(977)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2455), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2676), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1004), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2275), - }, - [STATE(978)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2388), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1019), - [aux_sym_tuple_literal_repeat1] = STATE(1027), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2279), - }, - [STATE(979)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2416), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3204), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2283), - }, - [STATE(980)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(981)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(982)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2415), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(993), - [aux_sym_tuple_literal_repeat1] = STATE(992), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2287), - }, - [STATE(983)] = { - [sym_type] = STATE(2076), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(984)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2394), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3168), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2294), - }, - [STATE(985)] = { - [sym_type] = STATE(2080), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), - }, - [STATE(986)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2296), - }, - [STATE(987)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3311), - [sym_expression_statement] = STATE(3311), - [sym_expression] = STATE(2278), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(988)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3317), - [sym_expression_statement] = STATE(3317), - [sym_expression] = STATE(2259), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(968), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2298), - }, - [STATE(989)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_assignment_statement] = STATE(2765), - [sym_expression_statement] = STATE(2765), - [sym_expression] = STATE(2260), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [sym_type] = STATE(2315), + [sym__type_atom] = STATE(2293), + [sym_parenthesized_type] = STATE(2293), + [sym_named_type] = STATE(2293), + [sym_optional_type] = STATE(2293), + [sym_pointer_type] = STATE(2293), + [sym_array_type] = STATE(2293), + [sym_function_type] = STATE(2293), + [sym_builtin_type] = STATE(2293), + [sym_qualified_identifier] = STATE(2292), + [sym_identifier] = ACTIONS(1958), + [anon_sym_func] = ACTIONS(429), + [anon_sym_c_func] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(338), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -117384,10 +118209,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(966)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2559), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(955), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2293), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2129), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2295), + }, + [STATE(967)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3756), + [sym_expression_statement] = STATE(3756), + [sym_expression] = STATE(2509), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1054), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -117399,7396 +118408,1438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2302), + [sym__newline] = ACTIONS(2297), }, - [STATE(990)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(968)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2306), + [sym__newline] = ACTIONS(466), }, - [STATE(991)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2423), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2657), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(969)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(992)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2417), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3235), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(970)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3835), + [sym_expression_statement] = STATE(3835), + [sym_expression] = STATE(2493), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2312), + [sym__newline] = ACTIONS(466), }, - [STATE(993)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2417), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1750), - [aux_sym_tuple_literal_repeat1] = STATE(1001), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2314), - }, - [STATE(994)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1014), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2316), - }, - [STATE(995)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(996)] = { - [sym_type] = STATE(2098), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_mut] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(997)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(971), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2320), - }, - [STATE(998)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1005), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2322), - }, - [STATE(999)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1007), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2324), - }, - [STATE(1000)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2379), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2752), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1001)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2412), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3302), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2330), - }, - [STATE(1002)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2390), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3173), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2332), - }, - [STATE(1003)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2336), - }, - [STATE(1004)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2434), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2671), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1005)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1006)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2394), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1749), - [aux_sym_tuple_literal_repeat1] = STATE(979), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2342), - }, - [STATE(1007)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1008)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2344), - }, - [STATE(1009)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1011), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2346), - }, - [STATE(1010)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1011)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1012)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2350), - }, - [STATE(1013)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1014)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1015)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1016)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(949), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2356), - }, - [STATE(1017)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1018)] = { - [sym_type] = STATE(2081), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_COMMA] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(1914), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_RBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(333), - [anon_sym_else] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(333), - [anon_sym_LT_LT_PIPE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_SLASH] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - }, - [STATE(1019)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2392), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1748), - [aux_sym_tuple_literal_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2363), - }, - [STATE(1020)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2389), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3137), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2365), - }, - [STATE(1021)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2361), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(2686), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(959), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2369), - }, - [STATE(1022)] = { - [sym_type] = STATE(2100), - [sym__type_atom] = STATE(2002), - [sym_named_type] = STATE(2002), - [sym_optional_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_builtin_type] = STATE(2002), - [sym_qualified_identifier] = STATE(2067), - [sym_identifier] = ACTIONS(1912), - [anon_sym_func] = ACTIONS(413), - [anon_sym_c_func] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_RPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(281), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_else] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_LT_LT_PIPE] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_SLASH] = ACTIONS(281), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(1023)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1024)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(951), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2378), - }, - [STATE(1025)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2414), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(963), - [aux_sym_tuple_literal_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2382), - }, - [STATE(1026)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3238), - [sym_expression_statement] = STATE(3238), - [sym_expression] = STATE(2278), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1027)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2392), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3213), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2384), - }, - [STATE(1028)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2392), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1006), - [aux_sym_tuple_literal_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2386), - }, - [STATE(1029)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2420), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2601), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), + [STATE(971)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), [aux_sym_import_declaration_repeat1] = STATE(991), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2390), + [sym__newline] = ACTIONS(2303), }, - [STATE(1030)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_assignment_statement] = STATE(3248), - [sym_expression_statement] = STATE(3248), - [sym_expression] = STATE(2259), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(972)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2649), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1037), + [aux_sym_tuple_literal_repeat1] = STATE(1029), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2392), + [sym__newline] = ACTIONS(2307), }, - [STATE(1031)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2457), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_keyed_field_initializer] = STATE(2627), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(973)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2311), }, - [STATE(1032)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(974)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2627), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3841), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2398), + [sym__newline] = ACTIONS(2315), }, - [STATE(1033)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(724), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [STATE(975)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1034)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2489), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_tuple_literal_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(2404), - [anon_sym_func] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_void] = ACTIONS(2430), - [anon_sym_anyopaque] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_int] = ACTIONS(2430), - [anon_sym_uint] = ACTIONS(2430), - [anon_sym_float] = ACTIONS(2430), - [anon_sym_range] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_c_char] = ACTIONS(2430), - [anon_sym_c_schar] = ACTIONS(2430), - [anon_sym_c_uchar] = ACTIONS(2430), - [anon_sym_c_short] = ACTIONS(2430), - [anon_sym_c_ushort] = ACTIONS(2430), - [anon_sym_c_int] = ACTIONS(2430), - [anon_sym_c_uint] = ACTIONS(2430), - [anon_sym_c_long] = ACTIONS(2430), - [anon_sym_c_ulong] = ACTIONS(2430), - [anon_sym_c_longlong] = ACTIONS(2430), - [anon_sym_c_ulonglong] = ACTIONS(2430), - [anon_sym_c_float] = ACTIONS(2430), - [anon_sym_c_double] = ACTIONS(2430), - [anon_sym_c_longdouble] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [sym_none] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [sym_sink] = ACTIONS(2442), - [sym_integer] = ACTIONS(2442), - [sym_float] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym_multiline_string] = ACTIONS(2445), - [sym_character] = ACTIONS(2445), + [STATE(976)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2422), + [sym__newline] = ACTIONS(466), }, - [STATE(1035)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2152), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(977)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2319), }, - [STATE(1036)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(978)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2323), }, - [STATE(1037)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(979)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2325), }, - [STATE(1038)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(980)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2600), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3022), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(998), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2455), + [sym__newline] = ACTIONS(2329), }, - [STATE(1039)] = { - [sym_type] = STATE(619), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(281), - [sym_identifier] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(286), - [anon_sym_test] = ACTIONS(286), - [anon_sym_hide] = ACTIONS(286), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(281), + [STATE(981)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2640), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(999), + [aux_sym_tuple_literal_repeat1] = STATE(1000), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2333), + }, + [STATE(982)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2628), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3718), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2337), + }, + [STATE(983)] = { + [sym_type] = STATE(647), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(311), + [sym_identifier] = ACTIONS(1680), + [anon_sym_import] = ACTIONS(316), + [anon_sym_test] = ACTIONS(316), + [anon_sym_hide] = ACTIONS(316), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(311), [anon_sym_QMARK] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1590), [anon_sym_STAR] = ACTIONS(1692), [anon_sym_mut] = ACTIONS(1695), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_else] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [anon_sym_orelse] = ACTIONS(286), - [anon_sym_catch] = ACTIONS(286), - [anon_sym_or] = ACTIONS(286), - [anon_sym_and] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_EQ] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_xor] = ACTIONS(286), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_LT_LT_PIPE] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_SLASH] = ACTIONS(281), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(281), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_else] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_LT_LT_PIPE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), + [sym__newline] = ACTIONS(311), }, - [STATE(1040)] = { - [sym_type] = STATE(627), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(333), - [sym_identifier] = ACTIONS(1607), - [anon_sym_import] = ACTIONS(338), - [anon_sym_test] = ACTIONS(338), - [anon_sym_hide] = ACTIONS(338), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(333), - [anon_sym_else] = ACTIONS(338), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(333), - [anon_sym_orelse] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_or] = ACTIONS(338), - [anon_sym_and] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(333), - [anon_sym_BANG_EQ] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_xor] = ACTIONS(338), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(333), - [anon_sym_LT_LT_PIPE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_SLASH] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - }, - [STATE(1041)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1093), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2457), - }, - [STATE(1042)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2294), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1290), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2461), - }, - [STATE(1043)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2463), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(1044)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2467), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(2471), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(1045)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(665), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2475), - }, - [STATE(1046)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2487), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2479), - }, - [STATE(1047)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2362), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1052), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2483), - }, - [STATE(1048)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2490), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1049)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(724), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1050)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1051)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(760), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2493), - }, - [STATE(1052)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2358), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1053)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2497), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2499), - }, - [STATE(1054)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2372), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2501), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2503), - }, - [STATE(1055)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2419), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3286), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2505), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2507), - }, - [STATE(1056)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2511), - }, - [STATE(1057)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2441), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1162), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2513), - }, - [STATE(1058)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1059)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1067), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2517), - }, - [STATE(1060)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1068), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2519), - }, - [STATE(1061)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2313), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2521), - }, - [STATE(1062)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2426), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1071), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2525), - }, - [STATE(1063)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2430), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3162), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2527), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2529), - }, - [STATE(1064)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1065)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1073), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2533), - }, - [STATE(1066)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1074), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2535), - }, - [STATE(1067)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1068)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1069)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2539), - }, - [STATE(1070)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1078), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2541), - }, - [STATE(1071)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2543), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1072)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2431), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2545), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2547), - }, - [STATE(1073)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1074)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1075)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2549), - }, - [STATE(1076)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(94), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(2196), + [STATE(984)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2598), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3220), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(992), + [sym_identifier] = ACTIONS(2299), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -124821,10 +119872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -124836,1999 +119887,8651 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2553), + [sym__newline] = ACTIONS(2341), + }, + [STATE(985)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2639), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(994), + [aux_sym_tuple_literal_repeat1] = STATE(1007), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2345), + }, + [STATE(986)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2649), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3782), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2347), + }, + [STATE(987)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(988)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2649), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1904), + [aux_sym_tuple_literal_repeat1] = STATE(1029), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2351), + }, + [STATE(989)] = { + [sym_type] = STATE(619), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(990)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2662), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3013), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1018), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2357), + }, + [STATE(991)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(992)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2580), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3019), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(993)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(994)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2645), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1901), + [aux_sym_tuple_literal_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2367), + }, + [STATE(995)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2629), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3847), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2371), + }, + [STATE(996)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2660), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3140), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2375), + }, + [STATE(997)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2673), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3068), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2379), + }, + [STATE(998)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2607), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3081), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(999)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2653), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1909), + [aux_sym_tuple_literal_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2385), + }, + [STATE(1000)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2653), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3694), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2387), + }, + [STATE(1001)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1002)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1003)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1004)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1005)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2393), + }, + [STATE(1006)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2395), + }, + [STATE(1007)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2645), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3788), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2397), + }, + [STATE(1008)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2399), + }, + [STATE(1009)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2653), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1065), + [aux_sym_tuple_literal_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2401), + }, + [STATE(1010)] = { + [sym_type] = STATE(615), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(284), + [sym_identifier] = ACTIONS(1703), + [anon_sym_import] = ACTIONS(289), + [anon_sym_test] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_else] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(284), + }, + [STATE(1011)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2645), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1076), + [aux_sym_tuple_literal_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2403), + }, + [STATE(1012)] = { + [sym_type] = STATE(633), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(1013)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2629), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1903), + [aux_sym_tuple_literal_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2405), + }, + [STATE(1014)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1015)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2407), + }, + [STATE(1016)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2635), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3655), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2411), + }, + [STATE(1017)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1001), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2413), + }, + [STATE(1018)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2675), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3028), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1019)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1075), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2419), + }, + [STATE(1020)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2423), + }, + [STATE(1021)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3871), + [sym_expression_statement] = STATE(3871), + [sym_expression] = STATE(2509), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1046), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2425), + }, + [STATE(1022)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2647), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3626), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2429), + }, + [STATE(1023)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1024)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_assignment_statement] = STATE(3060), + [sym_expression_statement] = STATE(3060), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1025)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2437), + }, + [STATE(1026)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1027)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1032), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2441), + }, + [STATE(1028)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2443), + }, + [STATE(1029)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2620), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3842), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2447), + }, + [STATE(1030)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2617), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3653), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2451), + }, + [STATE(1031)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1032)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1033)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1034)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2629), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1070), + [aux_sym_tuple_literal_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2457), + }, + [STATE(1035)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1036)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_assignment_statement] = STATE(3071), + [sym_expression_statement] = STATE(3071), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2461), + }, + [STATE(1037)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2620), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1905), + [aux_sym_tuple_literal_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2463), + }, + [STATE(1038)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2465), + }, + [STATE(1039)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(969), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2467), + }, + [STATE(1040)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_assignment_statement] = STATE(3114), + [sym_expression_statement] = STATE(3114), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1024), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2471), + }, + [STATE(1041)] = { + [sym_type] = STATE(617), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(343), + [anon_sym_test] = ACTIONS(343), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_else] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(1042)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1043)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2593), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3166), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1068), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2477), + }, + [STATE(1044)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1048), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2479), + }, + [STATE(1045)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1051), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2481), + }, + [STATE(1046)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3668), + [sym_expression_statement] = STATE(3668), + [sym_expression] = STATE(2493), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1047)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2605), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3162), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1048)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1049)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2666), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3147), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1050)] = { + [sym_type] = STATE(614), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(1582), + [anon_sym_c_func] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(1051)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1052)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3821), + [sym_expression_statement] = STATE(3821), + [sym_expression] = STATE(2509), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2489), + }, + [STATE(1053)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_assignment_statement] = STATE(3141), + [sym_expression_statement] = STATE(3141), + [sym_expression] = STATE(2511), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1054)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3676), + [sym_expression_statement] = STATE(3676), + [sym_expression] = STATE(2493), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1055)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2712), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3095), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1056)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3688), + [sym_expression_statement] = STATE(3688), + [sym_expression] = STATE(2493), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1057)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2643), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1013), + [aux_sym_tuple_literal_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2497), + }, + [STATE(1058)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2602), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3225), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1047), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2501), + }, + [STATE(1059)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_assignment_statement] = STATE(3691), + [sym_expression_statement] = STATE(3691), + [sym_expression] = STATE(2509), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2503), + }, + [STATE(1060)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2505), + }, + [STATE(1061)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2658), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(988), + [aux_sym_tuple_literal_repeat1] = STATE(986), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2509), + }, + [STATE(1062)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1063)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1023), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2515), + }, + [STATE(1064)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2619), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3772), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2519), + }, + [STATE(1065)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2619), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1906), + [aux_sym_tuple_literal_repeat1] = STATE(974), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2521), + }, + [STATE(1066)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2667), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3150), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2525), + }, + [STATE(1067)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1068)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2583), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3174), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1069)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2650), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3705), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2533), + }, + [STATE(1070)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2650), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1900), + [aux_sym_tuple_literal_repeat1] = STATE(1016), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2535), + }, + [STATE(1071)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1031), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2539), + }, + [STATE(1072)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2697), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_keyed_field_initializer] = STATE(3205), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2353), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1073)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1035), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2543), + }, + [STATE(1074)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(975), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2545), + }, + [STATE(1075)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1076)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2647), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1907), + [aux_sym_tuple_literal_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2547), }, [STATE(1077)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(741), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2553), }, [STATE(1078)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1079)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1089), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2557), }, [STATE(1080)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2344), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_block] = STATE(2869), + [sym_expression] = STATE(2779), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1081)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2589), }, [STATE(1082)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2681), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3733), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1083)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1164), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2563), - }, - [STATE(1084)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2565), - }, - [STATE(1085)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1086)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1087)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1088)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1091), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2571), - }, - [STATE(1089)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2573), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1090)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(107), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1091)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1092)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1093)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1094)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2579), - }, - [STATE(1095)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2491), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1048), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2583), - }, - [STATE(1096)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(94), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1097), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2587), - }, - [STATE(1097)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(107), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1098)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2222), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2591), - }, - [STATE(1099)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2348), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2781), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2595), }, - [STATE(1100)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(61), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(2196), + [STATE(1084)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2434), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2597), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(2599), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -126861,10 +128564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -126876,6079 +128579,7527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2597), + [sym__newline] = ACTIONS(2609), }, - [STATE(1101)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(665), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1105), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [STATE(1085)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2362), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2599), + [sym__newline] = ACTIONS(466), }, - [STATE(1102)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2485), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1104), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1086)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2733), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2603), + [sym__newline] = ACTIONS(2613), }, - [STATE(1103)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2359), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1107), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2607), - }, - [STATE(1104)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2486), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1105)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(724), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1106)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2366), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1275), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2611), - }, - [STATE(1107)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2373), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1108)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1111), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2615), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1087)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2870), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1161), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2617), }, - [STATE(1109)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2451), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3221), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2619), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1088)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2612), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1092), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2621), }, - [STATE(1110)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1116), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1089)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2871), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2625), + [sym__newline] = ACTIONS(466), }, - [STATE(1111)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1090)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(663), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1112)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1119), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1091)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(876), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2629), }, - [STATE(1113)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1197), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1092)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2603), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2631), + [sym__newline] = ACTIONS(466), }, - [STATE(1114)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2458), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1123), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1093)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1096), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2635), }, - [STATE(1115)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2459), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3197), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1094)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2669), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3732), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2637), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2639), }, - [STATE(1116)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1095)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1117)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1125), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2643), }, - [STATE(1118)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1126), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1096)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2645), + [sym__newline] = ACTIONS(466), }, - [STATE(1119)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1097)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2647), }, - [STATE(1120)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2421), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3184), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1121)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1129), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1098)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1105), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2649), }, - [STATE(1122)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1130), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1099)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2702), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1108), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2651), + [sym__newline] = ACTIONS(2653), }, - [STATE(1123)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1124)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2456), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1132), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1100)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2706), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2657), }, - [STATE(1125)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1101)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1126)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1102)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1127)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1135), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2661), }, - [STATE(1128)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1103)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2663), }, - [STATE(1129)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1104)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1130)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1105)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1131)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1138), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1106)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1114), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2667), }, - [STATE(1132)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1107)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1115), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2669), }, - [STATE(1133)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), + [STATE(1108)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_RBRACK] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2673), + [sym__newline] = ACTIONS(466), }, - [STATE(1134)] = { - [sym_type] = STATE(622), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(1631), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), + [STATE(1109)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2693), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1117), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2673), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), + [sym__newline] = ACTIONS(2675), }, - [STATE(1135)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1110)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1136)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1111)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1137)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1112)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2677), + [sym__newline] = ACTIONS(2679), }, - [STATE(1138)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1139)] = { - [sym_type] = STATE(639), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(305), - [sym_identifier] = ACTIONS(1631), - [anon_sym_import] = ACTIONS(310), - [anon_sym_test] = ACTIONS(310), - [anon_sym_hide] = ACTIONS(310), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_QMARK] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(305), - [anon_sym_else] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_orelse] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_or] = ACTIONS(310), - [anon_sym_and] = ACTIONS(310), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_xor] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_LT_LT_PIPE] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(305), - }, - [STATE(1140)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2356), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1180), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1113)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2681), }, - [STATE(1141)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1114)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1142)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2346), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1115)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2687), + [sym__newline] = ACTIONS(466), }, - [STATE(1143)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2345), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1116)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1121), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2685), + }, + [STATE(1117)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1118)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1144)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1119)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2693), + [sym__newline] = ACTIONS(466), }, - [STATE(1145)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), + [STATE(1120)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1122), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2691), + }, + [STATE(1121)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2693), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1122)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1146)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1148), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1123)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2434), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1127), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2697), }, - [STATE(1147)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1149), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2699), - }, - [STATE(1148)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1149)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1150)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1124)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(163), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2703), }, - [STATE(1151)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1125)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(170), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2705), + [sym__newline] = ACTIONS(466), }, - [STATE(1152)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1126)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2444), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1340), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2707), }, - [STATE(1153)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1127)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2362), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, - [STATE(1154)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1155), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1128)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2847), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2709), + [sym__newline] = ACTIONS(2711), }, - [STATE(1155)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1156)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_block] = STATE(665), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1033), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), + [STATE(1129)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(741), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1134), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2713), }, - [STATE(1157)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2715), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [STATE(1130)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2523), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), + [sym__newline] = ACTIONS(2715), + }, + [STATE(1131)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2884), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1177), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2719), + }, + [STATE(1132)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2606), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1137), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2723), + }, + [STATE(1133)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2885), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1134)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(663), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1135)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2571), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1373), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2727), + }, + [STATE(1136)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2827), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_tuple_literal_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(2729), + [anon_sym_func] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_void] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_anyopaque] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_int] = ACTIONS(2755), + [anon_sym_uint] = ACTIONS(2755), + [anon_sym_float] = ACTIONS(2755), + [anon_sym_range] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_c_char] = ACTIONS(2755), + [anon_sym_c_schar] = ACTIONS(2755), + [anon_sym_c_uchar] = ACTIONS(2755), + [anon_sym_c_short] = ACTIONS(2755), + [anon_sym_c_ushort] = ACTIONS(2755), + [anon_sym_c_int] = ACTIONS(2755), + [anon_sym_c_uint] = ACTIONS(2755), + [anon_sym_c_long] = ACTIONS(2755), + [anon_sym_c_ulong] = ACTIONS(2755), + [anon_sym_c_longlong] = ACTIONS(2755), + [anon_sym_c_ulonglong] = ACTIONS(2755), + [anon_sym_c_float] = ACTIONS(2755), + [anon_sym_c_double] = ACTIONS(2755), + [anon_sym_c_longdouble] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [sym_none] = ACTIONS(2767), + [sym_undefined] = ACTIONS(2767), + [sym_sink] = ACTIONS(2767), + [sym_integer] = ACTIONS(2767), + [sym_float] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_multiline_string] = ACTIONS(2770), + [sym_character] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2747), + }, + [STATE(1137)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2576), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1138)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1144), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2780), + }, + [STATE(1139)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2684), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3643), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2782), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2784), + }, + [STATE(1140)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1152), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2788), + }, + [STATE(1141)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2790), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2792), + }, + [STATE(1142)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1143)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1144)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1145)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2798), + }, + [STATE(1146)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2800), + }, + [STATE(1147)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2802), + }, + [STATE(1148)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1243), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2804), + }, + [STATE(1149)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2713), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2806), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2808), + }, + [STATE(1150)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2715), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3731), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2810), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2812), + }, + [STATE(1151)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2616), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2816), + }, + [STATE(1152)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1153)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2820), + }, + [STATE(1154)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1163), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2822), + }, + [STATE(1155)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1156)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1157)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1166), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2826), }, [STATE(1158)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2438), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2721), + [sym__newline] = ACTIONS(2828), }, [STATE(1159)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2432), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1725), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2830), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2725), + [sym__newline] = ACTIONS(466), }, [STATE(1160)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2727), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2708), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1169), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2832), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2834), }, [STATE(1161)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2444), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3192), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2851), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2731), + [sym__newline] = ACTIONS(466), }, [STATE(1162)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2446), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1725), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2725), + [sym__newline] = ACTIONS(466), }, [STATE(1163)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2435), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3233), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1181), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2733), + [sym__newline] = ACTIONS(466), }, [STATE(1164)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1170), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2840), }, [STATE(1165)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1171), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2842), }, [STATE(1166)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1184), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2737), + [sym__newline] = ACTIONS(466), }, [STATE(1167)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2145), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1169), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2739), + [sym__newline] = ACTIONS(466), }, [STATE(1168)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1189), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2743), + [sym__newline] = ACTIONS(2846), }, [STATE(1169)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2152), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2848), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1170)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2265), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1375), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2745), + [sym__newline] = ACTIONS(466), }, [STATE(1171)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2747), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1172)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(94), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(2196), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1174), + [sym_identifier] = ACTIONS(1926), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -132981,10 +136132,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -132996,44 +136147,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2749), + [sym__newline] = ACTIONS(2852), }, [STATE(1173)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_block] = STATE(107), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2854), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -133066,10 +136218,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -133081,44 +136233,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(466), }, [STATE(1174)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2253), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1398), - [sym_identifier] = ACTIONS(2196), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(1795), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), @@ -133151,10 +136304,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_none] = ACTIONS(97), @@ -133166,409 +136319,33227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(101), [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2751), + [sym__newline] = ACTIONS(466), }, [STATE(1175)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2753), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2887), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1133), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), + [sym__newline] = ACTIONS(2860), }, [STATE(1176)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1036), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2753), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2584), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1182), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2755), + [sym__newline] = ACTIONS(2864), }, [STATE(1177)] = { - [sym_type] = STATE(611), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(253), - [sym_identifier] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(258), - [anon_sym_test] = ACTIONS(258), - [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(253), - [anon_sym_orelse] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_or] = ACTIONS(258), - [anon_sym_and] = ACTIONS(258), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_xor] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_LT_LT_PIPE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(253), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2888), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(253), + [sym__newline] = ACTIONS(466), }, [STATE(1178)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2753), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(741), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1180), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2757), + [sym__newline] = ACTIONS(2870), }, [STATE(1179)] = { - [sym_type] = STATE(613), - [sym__type_atom] = STATE(648), - [sym_named_type] = STATE(648), - [sym_optional_type] = STATE(648), - [sym_pointer_type] = STATE(648), - [sym_array_type] = STATE(648), - [sym_function_type] = STATE(648), - [sym_builtin_type] = STATE(648), - [sym_qualified_identifier] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(253), + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(663), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1180)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(663), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1181)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1869), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1413), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2880), + }, + [STATE(1182)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2608), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1183)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1188), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2884), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2886), + }, + [STATE(1184)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2582), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2888), + }, + [STATE(1185)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_block] = STATE(2894), + [sym_expression] = STATE(2805), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2890), + }, + [STATE(1186)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1193), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2894), + }, + [STATE(1187)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2520), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1384), + [sym_identifier] = ACTIONS(2896), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(2900), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1932), + }, + [STATE(1188)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1189)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1196), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2904), + }, + [STATE(1190)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2906), + }, + [STATE(1191)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2680), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1200), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2908), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2910), + }, + [STATE(1192)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2682), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3856), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2912), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2914), + }, + [STATE(1193)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1194)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1202), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2918), + }, + [STATE(1195)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1203), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2920), + }, + [STATE(1196)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1197)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1198)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1206), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2924), + }, + [STATE(1199)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1207), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2926), + }, + [STATE(1200)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1201)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2690), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1209), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2930), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2932), + }, + [STATE(1202)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1203)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1204)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2936), + }, + [STATE(1205)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1213), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2938), + }, + [STATE(1206)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2940), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1207)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2940), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1208)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2940), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2942), + }, + [STATE(1209)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1210)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2676), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3719), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2946), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2948), + }, + [STATE(1211)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2950), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1212)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1213)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1214)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1218), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2954), + }, + [STATE(1215)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2956), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1216)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2679), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + }, + [STATE(1217)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2595), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(2960), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2962), + }, + [STATE(1218)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1219)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2573), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1220), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2968), + }, + [STATE(1220)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2577), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1221)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1222), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2974), + }, + [STATE(1222)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1223)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1225), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2978), + }, + [STATE(1224)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2980), + }, + [STATE(1225)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1226)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1227)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1229), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2984), + }, + [STATE(1228)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1230), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2986), + }, + [STATE(1229)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1230)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1231)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1232), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2990), + }, + [STATE(1232)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1233)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_block] = STATE(741), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1179), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2994), + }, + [STATE(1234)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2714), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2998), + }, + [STATE(1235)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1236)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1237)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3002), + }, + [STATE(1238)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3004), + }, + [STATE(1239)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2674), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + }, + [STATE(1240)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(163), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3008), + }, + [STATE(1241)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1242)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(170), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1243)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1244)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1264), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3012), + }, + [STATE(1245)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(63), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1513), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3014), + }, + [STATE(1246)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2434), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3016), + }, + [STATE(1247)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_block] = STATE(2362), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1248)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2497), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1501), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3018), + }, + [STATE(1249)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1078), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3022), + }, + [STATE(1250)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2696), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1216), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3024), + }, + [STATE(1251)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2543), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1441), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3026), + }, + [STATE(1252)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(163), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3028), + }, + [STATE(1253)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_block] = STATE(170), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1254)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2490), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1532), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3030), + }, + [STATE(1255)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3032), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1256)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2695), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3806), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3034), + }, + [STATE(1257)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1258)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1142), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3038), + }, + [STATE(1259)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3040), + }, + [STATE(1260)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2589), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1261)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1262)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1263)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3046), + }, + [STATE(1264)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3048), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1265)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2698), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1266), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3052), + }, + [STATE(1266)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2659), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + }, + [STATE(1267)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2604), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1268)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2701), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1269), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3058), + }, + [STATE(1269)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2664), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2958), + }, + [STATE(1270)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2591), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1211), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3064), + }, + [STATE(1271)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2716), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3748), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3066), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3068), + }, + [STATE(1272)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1273)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2672), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_field_initializer] = STATE(3860), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(2299), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3070), + }, + [STATE(1274)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1275)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2663), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(3700), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3076), + }, + [STATE(1276)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2721), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1317), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + }, + [STATE(1277)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2678), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1558), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3080), + }, + [STATE(1278)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1282), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3082), + }, + [STATE(1279)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(3), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1284), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3084), + }, + [STATE(1280)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2717), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3086), + }, + [STATE(1281)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2807), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1315), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3088), + }, + [STATE(1282)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1283)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2813), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1316), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3090), + }, + [STATE(1284)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(8), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1285)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(873), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1299), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3092), + }, + [STATE(1286)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(874), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3094), + }, + [STATE(1287)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(652), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1301), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3096), + }, + [STATE(1288)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(875), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1303), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3098), + }, + [STATE(1289)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(876), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2629), + }, + [STATE(1290)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2781), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2595), + }, + [STATE(1291)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(877), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1305), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3100), + }, + [STATE(1292)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(878), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3102), + }, + [STATE(1293)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(830), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3104), + }, + [STATE(1294)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(872), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3106), + }, + [STATE(1295)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2779), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1296)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2720), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3108), + }, + [STATE(1297)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3110), + }, + [STATE(1298)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(605), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1312), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3112), + }, + [STATE(1299)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(796), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1300)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(803), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1301)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1302)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2734), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1320), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3114), + }, + [STATE(1303)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(804), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1304)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(807), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1305)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(808), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1306)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(810), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1307)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(811), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1308)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(769), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1309)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2751), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3116), + }, + [STATE(1310)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2752), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3118), + }, + [STATE(1311)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(606), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1312)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(588), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1313)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1855), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1471), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3120), + }, + [STATE(1314)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2808), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1315)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2811), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1316)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2806), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1317)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2744), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1318)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2784), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1319)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2732), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1320)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2797), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1321)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2793), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1322)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2738), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1323)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3122), + }, + [STATE(1324)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1325)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1326), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3124), + }, + [STATE(1326)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1327)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2446), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1336), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3126), + }, + [STATE(1328)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2448), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3128), + }, + [STATE(1329)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3130), + }, + [STATE(1330)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2449), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3132), + }, + [STATE(1331)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2444), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1340), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2707), + }, + [STATE(1332)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3134), + }, + [STATE(1333)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2450), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1342), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3136), + }, + [STATE(1334)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2451), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3138), + }, + [STATE(1335)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2452), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3140), + }, + [STATE(1336)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2453), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1337)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2454), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1338)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(85), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1339)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2455), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1340)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2456), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1341)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2457), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1342)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2458), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1343)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2459), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1344)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2460), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2699), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_try] = ACTIONS(155), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1345)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2519), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3142), + }, + [STATE(1346)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2520), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1384), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1932), + }, + [STATE(1347)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2301), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3144), + }, + [STATE(1348)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1353), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3146), + }, + [STATE(1349)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2522), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1386), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3148), + }, + [STATE(1350)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2523), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2715), + }, + [STATE(1351)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(11), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1357), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3150), + }, + [STATE(1352)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2524), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3152), + }, + [STATE(1353)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1354)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2521), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1389), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3154), + }, + [STATE(1355)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2526), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1390), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3156), + }, + [STATE(1356)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2528), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1391), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3158), + }, + [STATE(1357)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(12), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1358)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2613), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1369), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3160), + }, + [STATE(1359)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2614), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1370), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3162), + }, + [STATE(1360)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(652), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1371), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3164), + }, + [STATE(1361)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2586), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3166), + }, + [STATE(1362)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2571), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1373), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2727), + }, + [STATE(1363)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2597), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1374), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3168), + }, + [STATE(1364)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2570), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3170), + }, + [STATE(1365)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2588), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1376), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3172), + }, + [STATE(1366)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2587), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3174), + }, + [STATE(1367)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3176), + }, + [STATE(1368)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(645), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1379), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3178), + }, + [STATE(1369)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2578), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1370)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2585), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1371)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1372)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2596), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1373)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2610), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1374)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2611), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1375)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2590), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1376)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2572), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1377)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2574), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1378)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(616), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1379)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(624), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1380)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2601), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1474), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3180), + }, + [STATE(1381)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1545), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3182), + }, + [STATE(1382)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(874), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(3184), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(3186), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3094), + }, + [STATE(1383)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2525), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1384)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2527), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1385)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2302), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1386)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2529), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1387)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2514), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1388)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2516), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1389)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2518), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1390)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2515), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1391)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2517), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1392)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(5), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3188), + }, + [STATE(1393)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(575), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1547), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3190), + }, + [STATE(1394)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1395)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1396)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1856), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3192), + }, + [STATE(1397)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1873), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1410), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3194), + }, + [STATE(1398)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(652), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1411), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3196), + }, + [STATE(1399)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1860), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1412), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3198), + }, + [STATE(1400)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1869), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1413), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2880), + }, + [STATE(1401)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1870), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1414), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3200), + }, + [STATE(1402)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1872), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1415), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3202), + }, + [STATE(1403)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1857), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3204), + }, + [STATE(1404)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1858), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1417), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3206), + }, + [STATE(1405)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(7), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3208), + }, + [STATE(1406)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(594), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3210), + }, + [STATE(1407)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(598), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1420), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3212), + }, + [STATE(1408)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2636), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1409)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1861), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1410)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1862), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1411)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1412)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1859), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1413)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1864), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1414)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1865), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1415)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1866), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1416)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1867), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1417)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1868), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1418)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3214), + }, + [STATE(1419)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(599), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1420)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(600), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1421)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(4), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1422)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2549), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1423)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1424)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2728), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1446), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3216), + }, + [STATE(1425)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2768), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1449), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3218), + }, + [STATE(1426)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2301), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3220), + }, + [STATE(1427)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2532), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1428)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2670), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1537), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3222), + }, + [STATE(1429)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2773), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1451), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3224), + }, + [STATE(1430)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2733), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2613), + }, + [STATE(1431)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2777), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1453), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3226), + }, + [STATE(1432)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2805), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1295), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3228), + }, + [STATE(1433)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2778), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3230), + }, + [STATE(1434)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2742), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3232), + }, + [STATE(1435)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2765), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1456), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3234), + }, + [STATE(1436)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2618), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3236), + }, + [STATE(1437)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(648), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1438)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2538), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1439)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(17), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1443), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3238), + }, + [STATE(1440)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2668), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1441)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2539), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1442)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2540), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1443)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(18), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1444)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(592), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1447), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3240), + }, + [STATE(1445)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(593), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1448), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3242), + }, + [STATE(1446)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2800), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1447)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(601), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1448)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(602), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1449)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2801), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1450)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2302), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1451)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2719), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1452)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2729), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1453)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2757), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1454)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2762), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1455)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2763), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1456)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2767), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1457)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2544), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1458)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2537), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1459)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(13), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1461), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3244), + }, + [STATE(1460)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2533), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1461)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(14), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1462)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2618), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1463)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1394), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3246), + }, + [STATE(1464)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2700), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1467), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3248), + }, + [STATE(1465)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2683), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1466)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(9), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1469), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3250), + }, + [STATE(1467)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2685), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1468)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2545), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3252), + }, + [STATE(1469)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(10), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1470)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1472), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3254), + }, + [STATE(1471)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(1871), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DOLLAR] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1472)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1473)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2530), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1560), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3256), + }, + [STATE(1474)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1475)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2615), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1546), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3258), + }, + [STATE(1476)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(59), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1509), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3260), + }, + [STATE(1477)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(60), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1510), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3262), + }, + [STATE(1478)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2557), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3264), + }, + [STATE(1479)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1511), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3266), + }, + [STATE(1480)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(87), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1512), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3268), + }, + [STATE(1481)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(63), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1513), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3014), + }, + [STATE(1482)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(64), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1514), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3270), + }, + [STATE(1483)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(66), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3272), + }, + [STATE(1484)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1485), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3274), + }, + [STATE(1485)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1486)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(67), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1527), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3276), + }, + [STATE(1487)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(68), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1538), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3278), + }, + [STATE(1488)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2494), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3280), + }, + [STATE(1489)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2495), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1498), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3282), + }, + [STATE(1490)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2301), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1499), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3284), + }, + [STATE(1491)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2496), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1500), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3286), + }, + [STATE(1492)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2497), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1501), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3018), + }, + [STATE(1493)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2498), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1502), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3288), + }, + [STATE(1494)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2499), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1503), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3290), + }, + [STATE(1495)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2500), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1504), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3292), + }, + [STATE(1496)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2492), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1505), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3294), + }, + [STATE(1497)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2501), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1498)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2502), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1499)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2302), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1500)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2503), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1501)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2504), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1502)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2505), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1503)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2506), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1504)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2507), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1505)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2508), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1506)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(652), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3296), + }, + [STATE(1507)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2542), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3298), + }, + [STATE(1508)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2543), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1441), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3026), + }, + [STATE(1509)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(72), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1510)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(84), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1511)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(85), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1512)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(39), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1513)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(40), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1514)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(41), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1515)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1516), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3300), + }, + [STATE(1516)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(53), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1517)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2486), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1528), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3302), + }, + [STATE(1518)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2488), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1529), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3304), + }, + [STATE(1519)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1530), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3306), + }, + [STATE(1520)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2489), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1531), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3308), + }, + [STATE(1521)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2490), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1532), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3030), + }, + [STATE(1522)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2491), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1533), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3310), + }, + [STATE(1523)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2485), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1534), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3312), + }, + [STATE(1524)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2466), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1535), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3314), + }, + [STATE(1525)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2473), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(1536), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3316), + }, + [STATE(1526)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(42), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1527)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(43), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1528)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2477), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1529)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2478), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1530)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(85), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1531)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2479), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1532)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2484), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1533)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2467), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1534)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2468), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1535)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2469), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1536)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(2471), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1537)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2677), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1538)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(44), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1539)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2541), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1442), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3318), + }, + [STATE(1540)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2536), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1457), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3320), + }, + [STATE(1541)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2534), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1458), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3322), + }, + [STATE(1542)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2531), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1460), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3324), + }, + [STATE(1543)] = { + [sym_struct_type] = STATE(2890), + [sym_array_type] = STATE(2890), + [sym_builtin_type] = STATE(2890), + [sym_expression] = STATE(2633), + [sym_binary_expression] = STATE(2890), + [sym_catch_expression] = STATE(2890), + [sym_unary_expression] = STATE(2890), + [sym_field_expression] = STATE(2890), + [sym_intrinsic_call_expression] = STATE(2890), + [sym_call_expression] = STATE(2890), + [sym_index_expression] = STATE(2890), + [sym_slice_expression] = STATE(2890), + [sym_postfix_expression] = STATE(2890), + [sym_struct_literal] = STATE(2890), + [sym_tuple_literal] = STATE(2890), + [sym_enum_literal] = STATE(2890), + [sym_array_literal] = STATE(2890), + [sym_parenthesized_expression] = STATE(2890), + [sym_comptime_block] = STATE(2890), + [sym_function_literal] = STATE(2890), + [sym_qualified_identifier] = STATE(3234), + [sym_boolean] = STATE(2890), + [sym_string] = STATE(2890), + [aux_sym_import_declaration_repeat1] = STATE(1462), + [sym_identifier] = ACTIONS(2559), + [anon_sym_func] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [sym_none] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [sym_sink] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym_multiline_string] = ACTIONS(2585), + [sym_character] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3326), + }, + [STATE(1544)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2692), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1465), + [sym_identifier] = ACTIONS(2597), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3328), + }, + [STATE(1545)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(576), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1546)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2599), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1547)] = { + [sym_struct_type] = STATE(161), + [sym_array_type] = STATE(161), + [sym_builtin_type] = STATE(161), + [sym_expression] = STATE(574), + [sym_binary_expression] = STATE(161), + [sym_catch_expression] = STATE(161), + [sym_unary_expression] = STATE(161), + [sym_field_expression] = STATE(161), + [sym_intrinsic_call_expression] = STATE(161), + [sym_call_expression] = STATE(161), + [sym_index_expression] = STATE(161), + [sym_slice_expression] = STATE(161), + [sym_postfix_expression] = STATE(161), + [sym_struct_literal] = STATE(161), + [sym_tuple_literal] = STATE(161), + [sym_enum_literal] = STATE(161), + [sym_array_literal] = STATE(161), + [sym_parenthesized_expression] = STATE(161), + [sym_comptime_block] = STATE(161), + [sym_function_literal] = STATE(161), + [sym_qualified_identifier] = STATE(3232), + [sym_boolean] = STATE(161), + [sym_string] = STATE(161), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2431), + [anon_sym_func] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(123), + [anon_sym_type] = ACTIONS(123), + [anon_sym_anyopaque] = ACTIONS(123), + [anon_sym_bool] = ACTIONS(123), + [anon_sym_int] = ACTIONS(123), + [anon_sym_uint] = ACTIONS(123), + [anon_sym_float] = ACTIONS(123), + [anon_sym_range] = ACTIONS(123), + [anon_sym_i8] = ACTIONS(123), + [anon_sym_i16] = ACTIONS(123), + [anon_sym_i32] = ACTIONS(123), + [anon_sym_i64] = ACTIONS(123), + [anon_sym_u8] = ACTIONS(123), + [anon_sym_u16] = ACTIONS(123), + [anon_sym_u32] = ACTIONS(123), + [anon_sym_u64] = ACTIONS(123), + [anon_sym_isize] = ACTIONS(123), + [anon_sym_usize] = ACTIONS(123), + [anon_sym_f32] = ACTIONS(123), + [anon_sym_f64] = ACTIONS(123), + [anon_sym_c_char] = ACTIONS(123), + [anon_sym_c_schar] = ACTIONS(123), + [anon_sym_c_uchar] = ACTIONS(123), + [anon_sym_c_short] = ACTIONS(123), + [anon_sym_c_ushort] = ACTIONS(123), + [anon_sym_c_int] = ACTIONS(123), + [anon_sym_c_uint] = ACTIONS(123), + [anon_sym_c_long] = ACTIONS(123), + [anon_sym_c_ulong] = ACTIONS(123), + [anon_sym_c_longlong] = ACTIONS(123), + [anon_sym_c_ulonglong] = ACTIONS(123), + [anon_sym_c_float] = ACTIONS(123), + [anon_sym_c_double] = ACTIONS(123), + [anon_sym_c_longdouble] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_try] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_true] = ACTIONS(141), + [anon_sym_false] = ACTIONS(141), + [sym_none] = ACTIONS(143), + [sym_undefined] = ACTIONS(143), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_multiline_string] = ACTIONS(147), + [sym_character] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1548)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2699), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3330), + }, + [STATE(1549)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(15), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3332), + }, + [STATE(1550)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2687), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1551)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(16), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1552)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(650), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1553)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(654), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1552), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3334), + }, + [STATE(1554)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2709), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3336), + }, + [STATE(1555)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(19), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3338), + }, + [STATE(1556)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2688), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1557)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2549), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1558)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2691), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1559)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2694), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [aux_sym_import_declaration_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3340), + }, + [STATE(1560)] = { + [sym_struct_type] = STATE(700), + [sym_array_type] = STATE(700), + [sym_builtin_type] = STATE(700), + [sym_expression] = STATE(2535), + [sym_binary_expression] = STATE(700), + [sym_catch_expression] = STATE(700), + [sym_unary_expression] = STATE(700), + [sym_field_expression] = STATE(700), + [sym_intrinsic_call_expression] = STATE(700), + [sym_call_expression] = STATE(700), + [sym_index_expression] = STATE(700), + [sym_slice_expression] = STATE(700), + [sym_postfix_expression] = STATE(700), + [sym_struct_literal] = STATE(700), + [sym_tuple_literal] = STATE(700), + [sym_enum_literal] = STATE(700), + [sym_array_literal] = STATE(700), + [sym_parenthesized_expression] = STATE(700), + [sym_comptime_block] = STATE(700), + [sym_function_literal] = STATE(700), + [sym_qualified_identifier] = STATE(3474), + [sym_boolean] = STATE(700), + [sym_string] = STATE(700), + [aux_sym_import_declaration_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(2868), + [anon_sym_func] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_anyopaque] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_range] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_c_char] = ACTIONS(1633), + [anon_sym_c_schar] = ACTIONS(1633), + [anon_sym_c_uchar] = ACTIONS(1633), + [anon_sym_c_short] = ACTIONS(1633), + [anon_sym_c_ushort] = ACTIONS(1633), + [anon_sym_c_int] = ACTIONS(1633), + [anon_sym_c_uint] = ACTIONS(1633), + [anon_sym_c_long] = ACTIONS(1633), + [anon_sym_c_ulong] = ACTIONS(1633), + [anon_sym_c_longlong] = ACTIONS(1633), + [anon_sym_c_ulonglong] = ACTIONS(1633), + [anon_sym_c_float] = ACTIONS(1633), + [anon_sym_c_double] = ACTIONS(1633), + [anon_sym_c_longdouble] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1635), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_undefined] = ACTIONS(1641), + [sym_sink] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_multiline_string] = ACTIONS(1643), + [sym_character] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(466), + }, + [STATE(1561)] = { + [sym_type] = STATE(647), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1680), + [anon_sym_func] = ACTIONS(1683), + [anon_sym_c_func] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_anyopaque] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_int] = ACTIONS(1700), + [anon_sym_uint] = ACTIONS(1700), + [anon_sym_float] = ACTIONS(1700), + [anon_sym_range] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_c_char] = ACTIONS(1700), + [anon_sym_c_schar] = ACTIONS(1700), + [anon_sym_c_uchar] = ACTIONS(1700), + [anon_sym_c_short] = ACTIONS(1700), + [anon_sym_c_ushort] = ACTIONS(1700), + [anon_sym_c_int] = ACTIONS(1700), + [anon_sym_c_uint] = ACTIONS(1700), + [anon_sym_c_long] = ACTIONS(1700), + [anon_sym_c_ulong] = ACTIONS(1700), + [anon_sym_c_longlong] = ACTIONS(1700), + [anon_sym_c_ulonglong] = ACTIONS(1700), + [anon_sym_c_float] = ACTIONS(1700), + [anon_sym_c_double] = ACTIONS(1700), + [anon_sym_c_longdouble] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_LT_LT_PIPE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(311), + }, + [STATE(1562)] = { + [sym_type] = STATE(617), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1576), + [anon_sym_func] = ACTIONS(1579), + [anon_sym_c_func] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_anyopaque] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_int] = ACTIONS(1600), + [anon_sym_uint] = ACTIONS(1600), + [anon_sym_float] = ACTIONS(1600), + [anon_sym_range] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_c_char] = ACTIONS(1600), + [anon_sym_c_schar] = ACTIONS(1600), + [anon_sym_c_uchar] = ACTIONS(1600), + [anon_sym_c_short] = ACTIONS(1600), + [anon_sym_c_ushort] = ACTIONS(1600), + [anon_sym_c_int] = ACTIONS(1600), + [anon_sym_c_uint] = ACTIONS(1600), + [anon_sym_c_long] = ACTIONS(1600), + [anon_sym_c_ulong] = ACTIONS(1600), + [anon_sym_c_longlong] = ACTIONS(1600), + [anon_sym_c_ulonglong] = ACTIONS(1600), + [anon_sym_c_float] = ACTIONS(1600), + [anon_sym_c_double] = ACTIONS(1600), + [anon_sym_c_longdouble] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(338), + }, + [STATE(1563)] = { + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2902), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [STATE(1564)] = { + [sym_type] = STATE(633), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), [sym_identifier] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(258), - [anon_sym_test] = ACTIONS(258), - [anon_sym_hide] = ACTIONS(258), - [anon_sym_func] = ACTIONS(1613), - [anon_sym_c_func] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_DASH] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_else] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_anyopaque] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_range] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_c_char] = ACTIONS(1675), + [anon_sym_c_schar] = ACTIONS(1675), + [anon_sym_c_uchar] = ACTIONS(1675), + [anon_sym_c_short] = ACTIONS(1675), + [anon_sym_c_ushort] = ACTIONS(1675), + [anon_sym_c_int] = ACTIONS(1675), + [anon_sym_c_uint] = ACTIONS(1675), + [anon_sym_c_long] = ACTIONS(1675), + [anon_sym_c_ulong] = ACTIONS(1675), + [anon_sym_c_longlong] = ACTIONS(1675), + [anon_sym_c_ulonglong] = ACTIONS(1675), + [anon_sym_c_float] = ACTIONS(1675), + [anon_sym_c_double] = ACTIONS(1675), + [anon_sym_c_longdouble] = ACTIONS(1675), [anon_sym_DOT_DOT] = ACTIONS(258), [anon_sym_DOT_DOT_EQ] = ACTIONS(253), [anon_sym_orelse] = ACTIONS(258), @@ -133593,43225 +169564,15459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(253), }, - [STATE(1180)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2354), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1181)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1182)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2447), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_field_initializer] = STATE(3299), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1120), - [sym_identifier] = ACTIONS(2188), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2759), - }, - [STATE(1183)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2761), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(1184)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1185)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2442), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1188), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2769), - }, - [STATE(1186)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2355), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1050), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2771), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2773), - }, - [STATE(1187)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2462), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(3217), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2775), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2777), - }, - [STATE(1188)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2452), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1725), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2725), - }, - [STATE(1189)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1190)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2145), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1193), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2793), - }, - [STATE(1191)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1081), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2795), - }, - [STATE(1192)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2797), - }, - [STATE(1193)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2152), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1194)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2471), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2799), - }, - [STATE(1195)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2488), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1196)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_block] = STATE(2145), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1035), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2803), - }, - [STATE(1197)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1198)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2475), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1199)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(588), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1200)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2445), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1201)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2313), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2521), - }, - [STATE(1202)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2132), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1203)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2314), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1349), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2805), - }, - [STATE(1204)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2466), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1205)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2385), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2807), - }, - [STATE(1206)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2315), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1350), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2809), - }, - [STATE(1207)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2316), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1351), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2811), - }, - [STATE(1208)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2317), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1352), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2813), - }, - [STATE(1209)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2468), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1210)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2463), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1211)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2291), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1286), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2815), - }, - [STATE(1212)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2292), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), - }, - [STATE(1213)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2091), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1288), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2817), - }, - [STATE(1214)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2472), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1215)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2293), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1289), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2819), - }, - [STATE(1216)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2294), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1290), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2461), - }, - [STATE(1217)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2473), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1218)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2821), - }, - [STATE(1219)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2295), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1292), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2823), - }, - [STATE(1220)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2296), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1293), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2825), - }, - [STATE(1221)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2297), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1295), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2827), - }, - [STATE(1222)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2298), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1296), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2829), - }, - [STATE(1223)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1224)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2481), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1225)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1226)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2349), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1359), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2831), - }, - [STATE(1227)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(57), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1299), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2833), - }, - [STATE(1228)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(58), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1301), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2835), - }, - [STATE(1229)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1230), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2837), - }, - [STATE(1230)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1231)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2219), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1241), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2839), - }, - [STATE(1232)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2220), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1242), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2841), - }, - [STATE(1233)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(59), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1243), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2843), - }, - [STATE(1234)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2221), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1244), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2845), - }, - [STATE(1235)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2222), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2591), - }, - [STATE(1236)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2223), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2847), - }, - [STATE(1237)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2224), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1247), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2849), - }, - [STATE(1238)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2225), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1248), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2851), - }, - [STATE(1239)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2226), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2853), - }, - [STATE(1240)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(59), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2855), - }, - [STATE(1241)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2227), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1242)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2228), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1243)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(82), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1244)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2229), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1245)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2230), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1246)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2231), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1247)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2232), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1248)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2233), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1249)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2218), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(443), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1250)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(60), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2857), - }, - [STATE(1251)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(61), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2597), - }, - [STATE(1252)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1257), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2859), - }, - [STATE(1253)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(86), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2861), - }, - [STATE(1254)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(10), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1259), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2863), - }, - [STATE(1255)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(64), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2865), - }, - [STATE(1256)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(65), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2867), - }, - [STATE(1257)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1258)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(66), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1438), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2869), - }, - [STATE(1259)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(11), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1260)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2363), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1271), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2871), - }, - [STATE(1261)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2386), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1272), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2873), - }, - [STATE(1262)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(646), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2875), - }, - [STATE(1263)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2365), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2877), - }, - [STATE(1264)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2366), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1275), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2611), - }, - [STATE(1265)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2367), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1276), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2879), - }, - [STATE(1266)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2368), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2881), - }, - [STATE(1267)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2369), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2883), - }, - [STATE(1268)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2370), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1279), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2885), - }, - [STATE(1269)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(601), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1283), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2887), - }, - [STATE(1270)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(602), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1284), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2889), - }, - [STATE(1271)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2374), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1272)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2375), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1273)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(645), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1274)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2376), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1275)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2377), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1276)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2378), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1277)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2380), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1278)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2381), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1279)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2382), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1280)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2437), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2891), - }, - [STATE(1281)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1282)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2332), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1283)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(603), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1284)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(605), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1285)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2893), - }, - [STATE(1286)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2305), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1287)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2303), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1288)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2132), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1289)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2299), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1290)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2300), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1291)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(644), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1297), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2895), - }, - [STATE(1292)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2301), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1293)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2302), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1294)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(3), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2897), - }, - [STATE(1295)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2306), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1296)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2304), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1297)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1298)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2422), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1380), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2899), - }, - [STATE(1299)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(70), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1300)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(4), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1301)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(77), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1302)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(862), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1356), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2901), - }, - [STATE(1303)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(863), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1360), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2903), - }, - [STATE(1304)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(82), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1305)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(571), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1407), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2905), - }, - [STATE(1306)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(83), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1307)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(863), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1360), - [sym_identifier] = ACTIONS(2907), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(2909), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2903), - }, - [STATE(1308)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(5), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2911), - }, - [STATE(1309)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(39), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1310)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(646), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1366), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2913), - }, - [STATE(1311)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(643), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1312)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(40), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1313)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(6), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1314)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(759), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1384), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2915), - }, - [STATE(1315)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(594), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1319), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2917), - }, - [STATE(1316)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(595), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1320), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2919), - }, - [STATE(1317)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(568), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1408), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2921), - }, - [STATE(1318)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(760), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2493), - }, - [STATE(1319)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(599), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1320)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(600), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1321)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2443), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1322)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(41), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1323)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(761), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1404), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2923), - }, - [STATE(1324)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(762), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1405), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2925), - }, - [STATE(1325)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(42), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1326)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(763), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1406), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2927), - }, - [STATE(1327)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(764), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1413), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2929), - }, - [STATE(1328)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2311), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1347), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2931), - }, - [STATE(1329)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(16), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1330), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2933), - }, - [STATE(1330)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(17), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1331)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(576), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2935), - }, - [STATE(1332)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(578), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1334), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2937), - }, - [STATE(1333)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(579), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1334)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(580), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1335)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2476), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1336)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(12), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1337), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2939), - }, - [STATE(1337)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(13), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1338)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2429), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1340), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2941), - }, - [STATE(1339)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(8), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2943), - }, - [STATE(1340)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2453), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1341)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(9), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1342)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(585), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1437), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2945), - }, - [STATE(1343)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2309), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1344)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2312), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1345)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(584), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1199), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2947), - }, - [STATE(1346)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(645), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1347)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2318), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1348)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2320), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1349)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2321), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1350)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2322), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1351)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2323), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1352)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2324), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1353)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2467), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1335), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2949), - }, - [STATE(1354)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2467), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1355)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1357), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2951), - }, - [STATE(1356)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(769), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1357)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1358)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2450), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1359)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2364), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1360)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(770), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1361)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2262), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1371), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2953), - }, - [STATE(1362)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2263), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1372), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2955), - }, - [STATE(1363)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2091), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1373), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2957), - }, - [STATE(1364)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2264), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1374), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2959), - }, - [STATE(1365)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2265), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1375), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2745), - }, - [STATE(1366)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(645), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1367)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2266), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1376), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2961), - }, - [STATE(1368)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2267), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1377), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2963), - }, - [STATE(1369)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2268), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1378), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2965), - }, - [STATE(1370)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2258), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1379), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2967), - }, - [STATE(1371)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2269), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1372)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2270), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1373)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2132), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1374)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2271), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1375)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2272), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1376)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2273), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1377)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2274), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1378)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2275), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1379)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2276), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_try] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1380)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2427), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1381)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(55), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2969), - }, - [STATE(1382)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2308), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1343), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2971), - }, - [STATE(1383)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(45), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1384)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(771), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1385)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2251), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1394), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2973), - }, - [STATE(1386)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2250), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1395), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2975), - }, - [STATE(1387)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(59), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1396), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2977), - }, - [STATE(1388)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2252), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1397), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2979), - }, - [STATE(1389)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2253), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1398), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2751), - }, - [STATE(1390)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2254), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1399), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2981), - }, - [STATE(1391)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2255), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1400), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2983), - }, - [STATE(1392)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2256), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1401), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2985), - }, - [STATE(1393)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2257), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(1402), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2987), - }, - [STATE(1394)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2241), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1395)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2240), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1396)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(82), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1397)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2243), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1398)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2242), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1399)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2247), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1400)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2244), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1401)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2245), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1402)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(2246), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_try] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1403)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(772), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1404)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(773), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1405)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(774), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1406)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(775), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1407)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(569), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1408)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(570), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1409)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(7), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1281), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2989), - }, - [STATE(1410)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2343), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1282), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2991), - }, - [STATE(1411)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2477), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1354), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2993), - }, - [STATE(1412)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2454), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1358), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2995), - }, - [STATE(1413)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(776), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1414)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2433), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1416), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2997), - }, - [STATE(1415)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(14), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1417), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2999), - }, - [STATE(1416)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2440), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1417)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(15), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1418)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2425), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1200), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3001), - }, - [STATE(1419)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1424), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3003), - }, - [STATE(1420)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(2319), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1344), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3005), - }, - [STATE(1421)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(18), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1422), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3007), - }, - [STATE(1422)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(19), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1423)] = { - [sym_struct_type] = STATE(731), - [sym_array_type] = STATE(731), - [sym_builtin_type] = STATE(731), - [sym_expression] = STATE(646), - [sym_binary_expression] = STATE(731), - [sym_catch_expression] = STATE(731), - [sym_unary_expression] = STATE(731), - [sym_field_expression] = STATE(731), - [sym_intrinsic_call_expression] = STATE(731), - [sym_call_expression] = STATE(731), - [sym_index_expression] = STATE(731), - [sym_slice_expression] = STATE(731), - [sym_postfix_expression] = STATE(731), - [sym_struct_literal] = STATE(731), - [sym_tuple_literal] = STATE(731), - [sym_enum_literal] = STATE(731), - [sym_array_literal] = STATE(731), - [sym_parenthesized_expression] = STATE(731), - [sym_comptime_block] = STATE(731), - [sym_function_literal] = STATE(731), - [sym_qualified_identifier] = STATE(2944), - [sym_boolean] = STATE(731), - [sym_string] = STATE(731), - [aux_sym_import_declaration_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(2400), - [anon_sym_func] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_anyopaque] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_range] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_c_char] = ACTIONS(1567), - [anon_sym_c_schar] = ACTIONS(1567), - [anon_sym_c_uchar] = ACTIONS(1567), - [anon_sym_c_short] = ACTIONS(1567), - [anon_sym_c_ushort] = ACTIONS(1567), - [anon_sym_c_int] = ACTIONS(1567), - [anon_sym_c_uint] = ACTIONS(1567), - [anon_sym_c_long] = ACTIONS(1567), - [anon_sym_c_ulong] = ACTIONS(1567), - [anon_sym_c_longlong] = ACTIONS(1567), - [anon_sym_c_ulonglong] = ACTIONS(1567), - [anon_sym_c_float] = ACTIONS(1567), - [anon_sym_c_double] = ACTIONS(1567), - [anon_sym_c_longdouble] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [sym_none] = ACTIONS(1575), - [sym_undefined] = ACTIONS(1575), - [sym_sink] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1577), - [sym_character] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3009), - }, - [STATE(1424)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1425)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2086), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1426)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2111), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1425), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3011), - }, - [STATE(1427)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2474), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3013), - }, - [STATE(1428)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2483), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1436), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3015), - }, - [STATE(1429)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2091), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1202), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3017), - }, - [STATE(1430)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2469), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3019), - }, - [STATE(1431)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2471), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2799), - }, - [STATE(1432)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2479), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3021), - }, - [STATE(1433)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2464), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1214), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3023), - }, - [STATE(1434)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2478), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1217), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3025), - }, - [STATE(1435)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2470), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(1224), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3027), - }, - [STATE(1436)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2482), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1437)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(587), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1438)] = { - [sym_struct_type] = STATE(90), - [sym_array_type] = STATE(90), - [sym_builtin_type] = STATE(90), - [sym_expression] = STATE(43), - [sym_binary_expression] = STATE(90), - [sym_catch_expression] = STATE(90), - [sym_unary_expression] = STATE(90), - [sym_field_expression] = STATE(90), - [sym_intrinsic_call_expression] = STATE(90), - [sym_call_expression] = STATE(90), - [sym_index_expression] = STATE(90), - [sym_slice_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_struct_literal] = STATE(90), - [sym_tuple_literal] = STATE(90), - [sym_enum_literal] = STATE(90), - [sym_array_literal] = STATE(90), - [sym_parenthesized_expression] = STATE(90), - [sym_comptime_block] = STATE(90), - [sym_function_literal] = STATE(90), - [sym_qualified_identifier] = STATE(3082), - [sym_boolean] = STATE(90), - [sym_string] = STATE(90), - [aux_sym_import_declaration_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2196), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(129), - [anon_sym_try] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_none] = ACTIONS(97), - [sym_undefined] = ACTIONS(97), - [sym_sink] = ACTIONS(97), - [sym_integer] = ACTIONS(97), - [sym_float] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_multiline_string] = ACTIONS(101), - [sym_character] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(1439)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2492), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - }, - [STATE(1440)] = { - [sym_struct_type] = STATE(2143), - [sym_array_type] = STATE(2143), - [sym_builtin_type] = STATE(2143), - [sym_expression] = STATE(2493), - [sym_binary_expression] = STATE(2143), - [sym_catch_expression] = STATE(2143), - [sym_unary_expression] = STATE(2143), - [sym_field_expression] = STATE(2143), - [sym_intrinsic_call_expression] = STATE(2143), - [sym_call_expression] = STATE(2143), - [sym_index_expression] = STATE(2143), - [sym_slice_expression] = STATE(2143), - [sym_postfix_expression] = STATE(2143), - [sym_struct_literal] = STATE(2143), - [sym_tuple_literal] = STATE(2143), - [sym_enum_literal] = STATE(2143), - [sym_array_literal] = STATE(2143), - [sym_parenthesized_expression] = STATE(2143), - [sym_comptime_block] = STATE(2143), - [sym_function_literal] = STATE(2143), - [sym_qualified_identifier] = STATE(3110), - [sym_boolean] = STATE(2143), - [sym_string] = STATE(2143), - [sym_identifier] = ACTIONS(1871), - [anon_sym_func] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(195), - [anon_sym_anyopaque] = ACTIONS(195), - [anon_sym_bool] = ACTIONS(195), - [anon_sym_int] = ACTIONS(195), - [anon_sym_uint] = ACTIONS(195), - [anon_sym_float] = ACTIONS(195), - [anon_sym_range] = ACTIONS(195), - [anon_sym_i8] = ACTIONS(195), - [anon_sym_i16] = ACTIONS(195), - [anon_sym_i32] = ACTIONS(195), - [anon_sym_i64] = ACTIONS(195), - [anon_sym_u8] = ACTIONS(195), - [anon_sym_u16] = ACTIONS(195), - [anon_sym_u32] = ACTIONS(195), - [anon_sym_u64] = ACTIONS(195), - [anon_sym_isize] = ACTIONS(195), - [anon_sym_usize] = ACTIONS(195), - [anon_sym_f32] = ACTIONS(195), - [anon_sym_f64] = ACTIONS(195), - [anon_sym_c_char] = ACTIONS(195), - [anon_sym_c_schar] = ACTIONS(195), - [anon_sym_c_uchar] = ACTIONS(195), - [anon_sym_c_short] = ACTIONS(195), - [anon_sym_c_ushort] = ACTIONS(195), - [anon_sym_c_int] = ACTIONS(195), - [anon_sym_c_uint] = ACTIONS(195), - [anon_sym_c_long] = ACTIONS(195), - [anon_sym_c_ulong] = ACTIONS(195), - [anon_sym_c_longlong] = ACTIONS(195), - [anon_sym_c_ulonglong] = ACTIONS(195), - [anon_sym_c_float] = ACTIONS(195), - [anon_sym_c_double] = ACTIONS(195), - [anon_sym_c_longdouble] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [sym_none] = ACTIONS(215), - [sym_undefined] = ACTIONS(215), - [sym_sink] = ACTIONS(215), - [sym_integer] = ACTIONS(215), - [sym_float] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym_multiline_string] = ACTIONS(219), - [sym_character] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - }, - [STATE(1441)] = { - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(3031), - [anon_sym_test] = ACTIONS(3031), - [anon_sym_hide] = ACTIONS(3031), - [anon_sym_func] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_void] = ACTIONS(3031), - [anon_sym_anyopaque] = ACTIONS(3031), - [anon_sym_bool] = ACTIONS(3031), - [anon_sym_int] = ACTIONS(3031), - [anon_sym_uint] = ACTIONS(3031), - [anon_sym_float] = ACTIONS(3031), - [anon_sym_range] = ACTIONS(3031), - [anon_sym_i8] = ACTIONS(3031), - [anon_sym_i16] = ACTIONS(3031), - [anon_sym_i32] = ACTIONS(3031), - [anon_sym_i64] = ACTIONS(3031), - [anon_sym_u8] = ACTIONS(3031), - [anon_sym_u16] = ACTIONS(3031), - [anon_sym_u32] = ACTIONS(3031), - [anon_sym_u64] = ACTIONS(3031), - [anon_sym_isize] = ACTIONS(3031), - [anon_sym_usize] = ACTIONS(3031), - [anon_sym_f32] = ACTIONS(3031), - [anon_sym_f64] = ACTIONS(3031), - [anon_sym_c_char] = ACTIONS(3031), - [anon_sym_c_schar] = ACTIONS(3031), - [anon_sym_c_uchar] = ACTIONS(3031), - [anon_sym_c_short] = ACTIONS(3031), - [anon_sym_c_ushort] = ACTIONS(3031), - [anon_sym_c_int] = ACTIONS(3031), - [anon_sym_c_uint] = ACTIONS(3031), - [anon_sym_c_long] = ACTIONS(3031), - [anon_sym_c_ulong] = ACTIONS(3031), - [anon_sym_c_longlong] = ACTIONS(3031), - [anon_sym_c_ulonglong] = ACTIONS(3031), - [anon_sym_c_float] = ACTIONS(3031), - [anon_sym_c_double] = ACTIONS(3031), - [anon_sym_c_longdouble] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_errdefer] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_expand] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_undefined] = ACTIONS(3031), - [sym_sink] = ACTIONS(3031), - [sym_integer] = ACTIONS(3031), - [sym_float] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_multiline_string] = ACTIONS(3029), - [sym_character] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3029), - }, - [STATE(1442)] = { - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_import] = ACTIONS(3037), - [anon_sym_test] = ACTIONS(3037), - [anon_sym_hide] = ACTIONS(3037), - [anon_sym_func] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_void] = ACTIONS(3037), - [anon_sym_anyopaque] = ACTIONS(3037), - [anon_sym_bool] = ACTIONS(3037), - [anon_sym_int] = ACTIONS(3037), - [anon_sym_uint] = ACTIONS(3037), - [anon_sym_float] = ACTIONS(3037), - [anon_sym_range] = ACTIONS(3037), - [anon_sym_i8] = ACTIONS(3037), - [anon_sym_i16] = ACTIONS(3037), - [anon_sym_i32] = ACTIONS(3037), - [anon_sym_i64] = ACTIONS(3037), - [anon_sym_u8] = ACTIONS(3037), - [anon_sym_u16] = ACTIONS(3037), - [anon_sym_u32] = ACTIONS(3037), - [anon_sym_u64] = ACTIONS(3037), - [anon_sym_isize] = ACTIONS(3037), - [anon_sym_usize] = ACTIONS(3037), - [anon_sym_f32] = ACTIONS(3037), - [anon_sym_f64] = ACTIONS(3037), - [anon_sym_c_char] = ACTIONS(3037), - [anon_sym_c_schar] = ACTIONS(3037), - [anon_sym_c_uchar] = ACTIONS(3037), - [anon_sym_c_short] = ACTIONS(3037), - [anon_sym_c_ushort] = ACTIONS(3037), - [anon_sym_c_int] = ACTIONS(3037), - [anon_sym_c_uint] = ACTIONS(3037), - [anon_sym_c_long] = ACTIONS(3037), - [anon_sym_c_ulong] = ACTIONS(3037), - [anon_sym_c_longlong] = ACTIONS(3037), - [anon_sym_c_ulonglong] = ACTIONS(3037), - [anon_sym_c_float] = ACTIONS(3037), - [anon_sym_c_double] = ACTIONS(3037), - [anon_sym_c_longdouble] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_COLON] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_defer] = ACTIONS(3037), - [anon_sym_errdefer] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_else] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_expand] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_true] = ACTIONS(3037), - [anon_sym_false] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [sym_sink] = ACTIONS(3037), - [sym_integer] = ACTIONS(3037), - [sym_float] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [sym_multiline_string] = ACTIONS(3035), - [sym_character] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3035), - }, - [STATE(1443)] = { - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_import] = ACTIONS(3043), - [anon_sym_test] = ACTIONS(3043), - [anon_sym_hide] = ACTIONS(3043), - [anon_sym_func] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_DOLLAR] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_void] = ACTIONS(3043), - [anon_sym_anyopaque] = ACTIONS(3043), - [anon_sym_bool] = ACTIONS(3043), - [anon_sym_int] = ACTIONS(3043), - [anon_sym_uint] = ACTIONS(3043), - [anon_sym_float] = ACTIONS(3043), - [anon_sym_range] = ACTIONS(3043), - [anon_sym_i8] = ACTIONS(3043), - [anon_sym_i16] = ACTIONS(3043), - [anon_sym_i32] = ACTIONS(3043), - [anon_sym_i64] = ACTIONS(3043), - [anon_sym_u8] = ACTIONS(3043), - [anon_sym_u16] = ACTIONS(3043), - [anon_sym_u32] = ACTIONS(3043), - [anon_sym_u64] = ACTIONS(3043), - [anon_sym_isize] = ACTIONS(3043), - [anon_sym_usize] = ACTIONS(3043), - [anon_sym_f32] = ACTIONS(3043), - [anon_sym_f64] = ACTIONS(3043), - [anon_sym_c_char] = ACTIONS(3043), - [anon_sym_c_schar] = ACTIONS(3043), - [anon_sym_c_uchar] = ACTIONS(3043), - [anon_sym_c_short] = ACTIONS(3043), - [anon_sym_c_ushort] = ACTIONS(3043), - [anon_sym_c_int] = ACTIONS(3043), - [anon_sym_c_uint] = ACTIONS(3043), - [anon_sym_c_long] = ACTIONS(3043), - [anon_sym_c_ulong] = ACTIONS(3043), - [anon_sym_c_longlong] = ACTIONS(3043), - [anon_sym_c_ulonglong] = ACTIONS(3043), - [anon_sym_c_float] = ACTIONS(3043), - [anon_sym_c_double] = ACTIONS(3043), - [anon_sym_c_longdouble] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_errdefer] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_expand] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_undefined] = ACTIONS(3043), - [sym_sink] = ACTIONS(3043), - [sym_integer] = ACTIONS(3043), - [sym_float] = ACTIONS(3041), - [anon_sym_DQUOTE] = ACTIONS(3041), - [sym_multiline_string] = ACTIONS(3041), - [sym_character] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3041), - }, - [STATE(1444)] = { - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(3047), - [anon_sym_test] = ACTIONS(3047), - [anon_sym_hide] = ACTIONS(3047), - [anon_sym_func] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_void] = ACTIONS(3047), - [anon_sym_anyopaque] = ACTIONS(3047), - [anon_sym_bool] = ACTIONS(3047), - [anon_sym_int] = ACTIONS(3047), - [anon_sym_uint] = ACTIONS(3047), - [anon_sym_float] = ACTIONS(3047), - [anon_sym_range] = ACTIONS(3047), - [anon_sym_i8] = ACTIONS(3047), - [anon_sym_i16] = ACTIONS(3047), - [anon_sym_i32] = ACTIONS(3047), - [anon_sym_i64] = ACTIONS(3047), - [anon_sym_u8] = ACTIONS(3047), - [anon_sym_u16] = ACTIONS(3047), - [anon_sym_u32] = ACTIONS(3047), - [anon_sym_u64] = ACTIONS(3047), - [anon_sym_isize] = ACTIONS(3047), - [anon_sym_usize] = ACTIONS(3047), - [anon_sym_f32] = ACTIONS(3047), - [anon_sym_f64] = ACTIONS(3047), - [anon_sym_c_char] = ACTIONS(3047), - [anon_sym_c_schar] = ACTIONS(3047), - [anon_sym_c_uchar] = ACTIONS(3047), - [anon_sym_c_short] = ACTIONS(3047), - [anon_sym_c_ushort] = ACTIONS(3047), - [anon_sym_c_int] = ACTIONS(3047), - [anon_sym_c_uint] = ACTIONS(3047), - [anon_sym_c_long] = ACTIONS(3047), - [anon_sym_c_ulong] = ACTIONS(3047), - [anon_sym_c_longlong] = ACTIONS(3047), - [anon_sym_c_ulonglong] = ACTIONS(3047), - [anon_sym_c_float] = ACTIONS(3047), - [anon_sym_c_double] = ACTIONS(3047), - [anon_sym_c_longdouble] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_errdefer] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_expand] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_undefined] = ACTIONS(3047), - [sym_sink] = ACTIONS(3047), - [sym_integer] = ACTIONS(3047), - [sym_float] = ACTIONS(3045), - [anon_sym_DQUOTE] = ACTIONS(3045), - [sym_multiline_string] = ACTIONS(3045), - [sym_character] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3045), - }, - [STATE(1445)] = { - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_import] = ACTIONS(3051), - [anon_sym_test] = ACTIONS(3051), - [anon_sym_hide] = ACTIONS(3051), - [anon_sym_func] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_void] = ACTIONS(3051), - [anon_sym_anyopaque] = ACTIONS(3051), - [anon_sym_bool] = ACTIONS(3051), - [anon_sym_int] = ACTIONS(3051), - [anon_sym_uint] = ACTIONS(3051), - [anon_sym_float] = ACTIONS(3051), - [anon_sym_range] = ACTIONS(3051), - [anon_sym_i8] = ACTIONS(3051), - [anon_sym_i16] = ACTIONS(3051), - [anon_sym_i32] = ACTIONS(3051), - [anon_sym_i64] = ACTIONS(3051), - [anon_sym_u8] = ACTIONS(3051), - [anon_sym_u16] = ACTIONS(3051), - [anon_sym_u32] = ACTIONS(3051), - [anon_sym_u64] = ACTIONS(3051), - [anon_sym_isize] = ACTIONS(3051), - [anon_sym_usize] = ACTIONS(3051), - [anon_sym_f32] = ACTIONS(3051), - [anon_sym_f64] = ACTIONS(3051), - [anon_sym_c_char] = ACTIONS(3051), - [anon_sym_c_schar] = ACTIONS(3051), - [anon_sym_c_uchar] = ACTIONS(3051), - [anon_sym_c_short] = ACTIONS(3051), - [anon_sym_c_ushort] = ACTIONS(3051), - [anon_sym_c_int] = ACTIONS(3051), - [anon_sym_c_uint] = ACTIONS(3051), - [anon_sym_c_long] = ACTIONS(3051), - [anon_sym_c_ulong] = ACTIONS(3051), - [anon_sym_c_longlong] = ACTIONS(3051), - [anon_sym_c_ulonglong] = ACTIONS(3051), - [anon_sym_c_float] = ACTIONS(3051), - [anon_sym_c_double] = ACTIONS(3051), - [anon_sym_c_longdouble] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_yield] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_errdefer] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_expand] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_undefined] = ACTIONS(3051), - [sym_sink] = ACTIONS(3051), - [sym_integer] = ACTIONS(3051), - [sym_float] = ACTIONS(3049), - [anon_sym_DQUOTE] = ACTIONS(3049), - [sym_multiline_string] = ACTIONS(3049), - [sym_character] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3049), - }, - [STATE(1446)] = { - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_identifier] = ACTIONS(3055), - [anon_sym_import] = ACTIONS(3055), - [anon_sym_test] = ACTIONS(3055), - [anon_sym_hide] = ACTIONS(3055), - [anon_sym_func] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_DOLLAR] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_void] = ACTIONS(3055), - [anon_sym_anyopaque] = ACTIONS(3055), - [anon_sym_bool] = ACTIONS(3055), - [anon_sym_int] = ACTIONS(3055), - [anon_sym_uint] = ACTIONS(3055), - [anon_sym_float] = ACTIONS(3055), - [anon_sym_range] = ACTIONS(3055), - [anon_sym_i8] = ACTIONS(3055), - [anon_sym_i16] = ACTIONS(3055), - [anon_sym_i32] = ACTIONS(3055), - [anon_sym_i64] = ACTIONS(3055), - [anon_sym_u8] = ACTIONS(3055), - [anon_sym_u16] = ACTIONS(3055), - [anon_sym_u32] = ACTIONS(3055), - [anon_sym_u64] = ACTIONS(3055), - [anon_sym_isize] = ACTIONS(3055), - [anon_sym_usize] = ACTIONS(3055), - [anon_sym_f32] = ACTIONS(3055), - [anon_sym_f64] = ACTIONS(3055), - [anon_sym_c_char] = ACTIONS(3055), - [anon_sym_c_schar] = ACTIONS(3055), - [anon_sym_c_uchar] = ACTIONS(3055), - [anon_sym_c_short] = ACTIONS(3055), - [anon_sym_c_ushort] = ACTIONS(3055), - [anon_sym_c_int] = ACTIONS(3055), - [anon_sym_c_uint] = ACTIONS(3055), - [anon_sym_c_long] = ACTIONS(3055), - [anon_sym_c_ulong] = ACTIONS(3055), - [anon_sym_c_longlong] = ACTIONS(3055), - [anon_sym_c_ulonglong] = ACTIONS(3055), - [anon_sym_c_float] = ACTIONS(3055), - [anon_sym_c_double] = ACTIONS(3055), - [anon_sym_c_longdouble] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_yield] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_defer] = ACTIONS(3055), - [anon_sym_errdefer] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_expand] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3055), - [anon_sym_false] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [sym_sink] = ACTIONS(3055), - [sym_integer] = ACTIONS(3055), - [sym_float] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(3053), - [sym_multiline_string] = ACTIONS(3053), - [sym_character] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3053), - }, - [STATE(1447)] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3059), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_test] = ACTIONS(3059), - [anon_sym_hide] = ACTIONS(3059), - [anon_sym_func] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_DOLLAR] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_void] = ACTIONS(3059), - [anon_sym_anyopaque] = ACTIONS(3059), - [anon_sym_bool] = ACTIONS(3059), - [anon_sym_int] = ACTIONS(3059), - [anon_sym_uint] = ACTIONS(3059), - [anon_sym_float] = ACTIONS(3059), - [anon_sym_range] = ACTIONS(3059), - [anon_sym_i8] = ACTIONS(3059), - [anon_sym_i16] = ACTIONS(3059), - [anon_sym_i32] = ACTIONS(3059), - [anon_sym_i64] = ACTIONS(3059), - [anon_sym_u8] = ACTIONS(3059), - [anon_sym_u16] = ACTIONS(3059), - [anon_sym_u32] = ACTIONS(3059), - [anon_sym_u64] = ACTIONS(3059), - [anon_sym_isize] = ACTIONS(3059), - [anon_sym_usize] = ACTIONS(3059), - [anon_sym_f32] = ACTIONS(3059), - [anon_sym_f64] = ACTIONS(3059), - [anon_sym_c_char] = ACTIONS(3059), - [anon_sym_c_schar] = ACTIONS(3059), - [anon_sym_c_uchar] = ACTIONS(3059), - [anon_sym_c_short] = ACTIONS(3059), - [anon_sym_c_ushort] = ACTIONS(3059), - [anon_sym_c_int] = ACTIONS(3059), - [anon_sym_c_uint] = ACTIONS(3059), - [anon_sym_c_long] = ACTIONS(3059), - [anon_sym_c_ulong] = ACTIONS(3059), - [anon_sym_c_longlong] = ACTIONS(3059), - [anon_sym_c_ulonglong] = ACTIONS(3059), - [anon_sym_c_float] = ACTIONS(3059), - [anon_sym_c_double] = ACTIONS(3059), - [anon_sym_c_longdouble] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_yield] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_defer] = ACTIONS(3059), - [anon_sym_errdefer] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_expand] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_undefined] = ACTIONS(3059), - [sym_sink] = ACTIONS(3059), - [sym_integer] = ACTIONS(3059), - [sym_float] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_multiline_string] = ACTIONS(3057), - [sym_character] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3057), - }, - [STATE(1448)] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [sym_identifier] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_test] = ACTIONS(3063), - [anon_sym_hide] = ACTIONS(3063), - [anon_sym_func] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_void] = ACTIONS(3063), - [anon_sym_anyopaque] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_int] = ACTIONS(3063), - [anon_sym_uint] = ACTIONS(3063), - [anon_sym_float] = ACTIONS(3063), - [anon_sym_range] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_c_char] = ACTIONS(3063), - [anon_sym_c_schar] = ACTIONS(3063), - [anon_sym_c_uchar] = ACTIONS(3063), - [anon_sym_c_short] = ACTIONS(3063), - [anon_sym_c_ushort] = ACTIONS(3063), - [anon_sym_c_int] = ACTIONS(3063), - [anon_sym_c_uint] = ACTIONS(3063), - [anon_sym_c_long] = ACTIONS(3063), - [anon_sym_c_ulong] = ACTIONS(3063), - [anon_sym_c_longlong] = ACTIONS(3063), - [anon_sym_c_ulonglong] = ACTIONS(3063), - [anon_sym_c_float] = ACTIONS(3063), - [anon_sym_c_double] = ACTIONS(3063), - [anon_sym_c_longdouble] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_yield] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_defer] = ACTIONS(3063), - [anon_sym_errdefer] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_expand] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3063), - [anon_sym_false] = ACTIONS(3063), - [sym_none] = ACTIONS(3063), - [sym_undefined] = ACTIONS(3063), - [sym_sink] = ACTIONS(3063), - [sym_integer] = ACTIONS(3063), - [sym_float] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [sym_multiline_string] = ACTIONS(3061), - [sym_character] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3061), - }, - [STATE(1449)] = { - [ts_builtin_sym_end] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3067), - [anon_sym_import] = ACTIONS(3067), - [anon_sym_test] = ACTIONS(3067), - [anon_sym_hide] = ACTIONS(3067), - [anon_sym_func] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_anyopaque] = ACTIONS(3067), - [anon_sym_bool] = ACTIONS(3067), - [anon_sym_int] = ACTIONS(3067), - [anon_sym_uint] = ACTIONS(3067), - [anon_sym_float] = ACTIONS(3067), - [anon_sym_range] = ACTIONS(3067), - [anon_sym_i8] = ACTIONS(3067), - [anon_sym_i16] = ACTIONS(3067), - [anon_sym_i32] = ACTIONS(3067), - [anon_sym_i64] = ACTIONS(3067), - [anon_sym_u8] = ACTIONS(3067), - [anon_sym_u16] = ACTIONS(3067), - [anon_sym_u32] = ACTIONS(3067), - [anon_sym_u64] = ACTIONS(3067), - [anon_sym_isize] = ACTIONS(3067), - [anon_sym_usize] = ACTIONS(3067), - [anon_sym_f32] = ACTIONS(3067), - [anon_sym_f64] = ACTIONS(3067), - [anon_sym_c_char] = ACTIONS(3067), - [anon_sym_c_schar] = ACTIONS(3067), - [anon_sym_c_uchar] = ACTIONS(3067), - [anon_sym_c_short] = ACTIONS(3067), - [anon_sym_c_ushort] = ACTIONS(3067), - [anon_sym_c_int] = ACTIONS(3067), - [anon_sym_c_uint] = ACTIONS(3067), - [anon_sym_c_long] = ACTIONS(3067), - [anon_sym_c_ulong] = ACTIONS(3067), - [anon_sym_c_longlong] = ACTIONS(3067), - [anon_sym_c_ulonglong] = ACTIONS(3067), - [anon_sym_c_float] = ACTIONS(3067), - [anon_sym_c_double] = ACTIONS(3067), - [anon_sym_c_longdouble] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_yield] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_defer] = ACTIONS(3067), - [anon_sym_errdefer] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_expand] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_match] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [sym_none] = ACTIONS(3067), - [sym_undefined] = ACTIONS(3067), - [sym_sink] = ACTIONS(3067), - [sym_integer] = ACTIONS(3067), - [sym_float] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_multiline_string] = ACTIONS(3065), - [sym_character] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3065), - }, - [STATE(1450)] = { - [ts_builtin_sym_end] = ACTIONS(3069), - [sym_identifier] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_test] = ACTIONS(3071), - [anon_sym_hide] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_void] = ACTIONS(3071), - [anon_sym_anyopaque] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_int] = ACTIONS(3071), - [anon_sym_uint] = ACTIONS(3071), - [anon_sym_float] = ACTIONS(3071), - [anon_sym_range] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_c_char] = ACTIONS(3071), - [anon_sym_c_schar] = ACTIONS(3071), - [anon_sym_c_uchar] = ACTIONS(3071), - [anon_sym_c_short] = ACTIONS(3071), - [anon_sym_c_ushort] = ACTIONS(3071), - [anon_sym_c_int] = ACTIONS(3071), - [anon_sym_c_uint] = ACTIONS(3071), - [anon_sym_c_long] = ACTIONS(3071), - [anon_sym_c_ulong] = ACTIONS(3071), - [anon_sym_c_longlong] = ACTIONS(3071), - [anon_sym_c_ulonglong] = ACTIONS(3071), - [anon_sym_c_float] = ACTIONS(3071), - [anon_sym_c_double] = ACTIONS(3071), - [anon_sym_c_longdouble] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_yield] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_defer] = ACTIONS(3071), - [anon_sym_errdefer] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_expand] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [sym_none] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [sym_sink] = ACTIONS(3071), - [sym_integer] = ACTIONS(3071), - [sym_float] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_multiline_string] = ACTIONS(3069), - [sym_character] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3069), - }, - [STATE(1451)] = { - [ts_builtin_sym_end] = ACTIONS(3073), - [sym_identifier] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(3075), - [anon_sym_test] = ACTIONS(3075), - [anon_sym_hide] = ACTIONS(3075), - [anon_sym_func] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_void] = ACTIONS(3075), - [anon_sym_anyopaque] = ACTIONS(3075), - [anon_sym_bool] = ACTIONS(3075), - [anon_sym_int] = ACTIONS(3075), - [anon_sym_uint] = ACTIONS(3075), - [anon_sym_float] = ACTIONS(3075), - [anon_sym_range] = ACTIONS(3075), - [anon_sym_i8] = ACTIONS(3075), - [anon_sym_i16] = ACTIONS(3075), - [anon_sym_i32] = ACTIONS(3075), - [anon_sym_i64] = ACTIONS(3075), - [anon_sym_u8] = ACTIONS(3075), - [anon_sym_u16] = ACTIONS(3075), - [anon_sym_u32] = ACTIONS(3075), - [anon_sym_u64] = ACTIONS(3075), - [anon_sym_isize] = ACTIONS(3075), - [anon_sym_usize] = ACTIONS(3075), - [anon_sym_f32] = ACTIONS(3075), - [anon_sym_f64] = ACTIONS(3075), - [anon_sym_c_char] = ACTIONS(3075), - [anon_sym_c_schar] = ACTIONS(3075), - [anon_sym_c_uchar] = ACTIONS(3075), - [anon_sym_c_short] = ACTIONS(3075), - [anon_sym_c_ushort] = ACTIONS(3075), - [anon_sym_c_int] = ACTIONS(3075), - [anon_sym_c_uint] = ACTIONS(3075), - [anon_sym_c_long] = ACTIONS(3075), - [anon_sym_c_ulong] = ACTIONS(3075), - [anon_sym_c_longlong] = ACTIONS(3075), - [anon_sym_c_ulonglong] = ACTIONS(3075), - [anon_sym_c_float] = ACTIONS(3075), - [anon_sym_c_double] = ACTIONS(3075), - [anon_sym_c_longdouble] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_defer] = ACTIONS(3075), - [anon_sym_errdefer] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_expand] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [sym_none] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [sym_sink] = ACTIONS(3075), - [sym_integer] = ACTIONS(3075), - [sym_float] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_multiline_string] = ACTIONS(3073), - [sym_character] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3073), - }, - [STATE(1452)] = { - [ts_builtin_sym_end] = ACTIONS(3077), - [sym_identifier] = ACTIONS(3079), - [anon_sym_import] = ACTIONS(3079), - [anon_sym_test] = ACTIONS(3079), - [anon_sym_hide] = ACTIONS(3079), - [anon_sym_func] = ACTIONS(3079), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_DOLLAR] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_void] = ACTIONS(3079), - [anon_sym_anyopaque] = ACTIONS(3079), - [anon_sym_bool] = ACTIONS(3079), - [anon_sym_int] = ACTIONS(3079), - [anon_sym_uint] = ACTIONS(3079), - [anon_sym_float] = ACTIONS(3079), - [anon_sym_range] = ACTIONS(3079), - [anon_sym_i8] = ACTIONS(3079), - [anon_sym_i16] = ACTIONS(3079), - [anon_sym_i32] = ACTIONS(3079), - [anon_sym_i64] = ACTIONS(3079), - [anon_sym_u8] = ACTIONS(3079), - [anon_sym_u16] = ACTIONS(3079), - [anon_sym_u32] = ACTIONS(3079), - [anon_sym_u64] = ACTIONS(3079), - [anon_sym_isize] = ACTIONS(3079), - [anon_sym_usize] = ACTIONS(3079), - [anon_sym_f32] = ACTIONS(3079), - [anon_sym_f64] = ACTIONS(3079), - [anon_sym_c_char] = ACTIONS(3079), - [anon_sym_c_schar] = ACTIONS(3079), - [anon_sym_c_uchar] = ACTIONS(3079), - [anon_sym_c_short] = ACTIONS(3079), - [anon_sym_c_ushort] = ACTIONS(3079), - [anon_sym_c_int] = ACTIONS(3079), - [anon_sym_c_uint] = ACTIONS(3079), - [anon_sym_c_long] = ACTIONS(3079), - [anon_sym_c_ulong] = ACTIONS(3079), - [anon_sym_c_longlong] = ACTIONS(3079), - [anon_sym_c_ulonglong] = ACTIONS(3079), - [anon_sym_c_float] = ACTIONS(3079), - [anon_sym_c_double] = ACTIONS(3079), - [anon_sym_c_longdouble] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_break] = ACTIONS(3079), - [anon_sym_continue] = ACTIONS(3079), - [anon_sym_defer] = ACTIONS(3079), - [anon_sym_errdefer] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_else] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_expand] = ACTIONS(3079), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3079), - [anon_sym_false] = ACTIONS(3079), - [sym_none] = ACTIONS(3079), - [sym_undefined] = ACTIONS(3079), - [sym_sink] = ACTIONS(3079), - [sym_integer] = ACTIONS(3079), - [sym_float] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_multiline_string] = ACTIONS(3077), - [sym_character] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3077), - }, - [STATE(1453)] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [sym_identifier] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(3083), - [anon_sym_test] = ACTIONS(3083), - [anon_sym_hide] = ACTIONS(3083), - [anon_sym_func] = ACTIONS(3083), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_void] = ACTIONS(3083), - [anon_sym_anyopaque] = ACTIONS(3083), - [anon_sym_bool] = ACTIONS(3083), - [anon_sym_int] = ACTIONS(3083), - [anon_sym_uint] = ACTIONS(3083), - [anon_sym_float] = ACTIONS(3083), - [anon_sym_range] = ACTIONS(3083), - [anon_sym_i8] = ACTIONS(3083), - [anon_sym_i16] = ACTIONS(3083), - [anon_sym_i32] = ACTIONS(3083), - [anon_sym_i64] = ACTIONS(3083), - [anon_sym_u8] = ACTIONS(3083), - [anon_sym_u16] = ACTIONS(3083), - [anon_sym_u32] = ACTIONS(3083), - [anon_sym_u64] = ACTIONS(3083), - [anon_sym_isize] = ACTIONS(3083), - [anon_sym_usize] = ACTIONS(3083), - [anon_sym_f32] = ACTIONS(3083), - [anon_sym_f64] = ACTIONS(3083), - [anon_sym_c_char] = ACTIONS(3083), - [anon_sym_c_schar] = ACTIONS(3083), - [anon_sym_c_uchar] = ACTIONS(3083), - [anon_sym_c_short] = ACTIONS(3083), - [anon_sym_c_ushort] = ACTIONS(3083), - [anon_sym_c_int] = ACTIONS(3083), - [anon_sym_c_uint] = ACTIONS(3083), - [anon_sym_c_long] = ACTIONS(3083), - [anon_sym_c_ulong] = ACTIONS(3083), - [anon_sym_c_longlong] = ACTIONS(3083), - [anon_sym_c_ulonglong] = ACTIONS(3083), - [anon_sym_c_float] = ACTIONS(3083), - [anon_sym_c_double] = ACTIONS(3083), - [anon_sym_c_longdouble] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_defer] = ACTIONS(3083), - [anon_sym_errdefer] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_expand] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_true] = ACTIONS(3083), - [anon_sym_false] = ACTIONS(3083), - [sym_none] = ACTIONS(3083), - [sym_undefined] = ACTIONS(3083), - [sym_sink] = ACTIONS(3083), - [sym_integer] = ACTIONS(3083), - [sym_float] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(3081), - [sym_multiline_string] = ACTIONS(3081), - [sym_character] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3081), - }, - [STATE(1454)] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_import] = ACTIONS(3087), - [anon_sym_test] = ACTIONS(3087), - [anon_sym_hide] = ACTIONS(3087), - [anon_sym_func] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_void] = ACTIONS(3087), - [anon_sym_anyopaque] = ACTIONS(3087), - [anon_sym_bool] = ACTIONS(3087), - [anon_sym_int] = ACTIONS(3087), - [anon_sym_uint] = ACTIONS(3087), - [anon_sym_float] = ACTIONS(3087), - [anon_sym_range] = ACTIONS(3087), - [anon_sym_i8] = ACTIONS(3087), - [anon_sym_i16] = ACTIONS(3087), - [anon_sym_i32] = ACTIONS(3087), - [anon_sym_i64] = ACTIONS(3087), - [anon_sym_u8] = ACTIONS(3087), - [anon_sym_u16] = ACTIONS(3087), - [anon_sym_u32] = ACTIONS(3087), - [anon_sym_u64] = ACTIONS(3087), - [anon_sym_isize] = ACTIONS(3087), - [anon_sym_usize] = ACTIONS(3087), - [anon_sym_f32] = ACTIONS(3087), - [anon_sym_f64] = ACTIONS(3087), - [anon_sym_c_char] = ACTIONS(3087), - [anon_sym_c_schar] = ACTIONS(3087), - [anon_sym_c_uchar] = ACTIONS(3087), - [anon_sym_c_short] = ACTIONS(3087), - [anon_sym_c_ushort] = ACTIONS(3087), - [anon_sym_c_int] = ACTIONS(3087), - [anon_sym_c_uint] = ACTIONS(3087), - [anon_sym_c_long] = ACTIONS(3087), - [anon_sym_c_ulong] = ACTIONS(3087), - [anon_sym_c_longlong] = ACTIONS(3087), - [anon_sym_c_ulonglong] = ACTIONS(3087), - [anon_sym_c_float] = ACTIONS(3087), - [anon_sym_c_double] = ACTIONS(3087), - [anon_sym_c_longdouble] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_errdefer] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_expand] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_true] = ACTIONS(3087), - [anon_sym_false] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_undefined] = ACTIONS(3087), - [sym_sink] = ACTIONS(3087), - [sym_integer] = ACTIONS(3087), - [sym_float] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_multiline_string] = ACTIONS(3085), - [sym_character] = ACTIONS(3085), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3085), - }, - [STATE(1455)] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_import] = ACTIONS(3091), - [anon_sym_test] = ACTIONS(3091), - [anon_sym_hide] = ACTIONS(3091), - [anon_sym_func] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_void] = ACTIONS(3091), - [anon_sym_anyopaque] = ACTIONS(3091), - [anon_sym_bool] = ACTIONS(3091), - [anon_sym_int] = ACTIONS(3091), - [anon_sym_uint] = ACTIONS(3091), - [anon_sym_float] = ACTIONS(3091), - [anon_sym_range] = ACTIONS(3091), - [anon_sym_i8] = ACTIONS(3091), - [anon_sym_i16] = ACTIONS(3091), - [anon_sym_i32] = ACTIONS(3091), - [anon_sym_i64] = ACTIONS(3091), - [anon_sym_u8] = ACTIONS(3091), - [anon_sym_u16] = ACTIONS(3091), - [anon_sym_u32] = ACTIONS(3091), - [anon_sym_u64] = ACTIONS(3091), - [anon_sym_isize] = ACTIONS(3091), - [anon_sym_usize] = ACTIONS(3091), - [anon_sym_f32] = ACTIONS(3091), - [anon_sym_f64] = ACTIONS(3091), - [anon_sym_c_char] = ACTIONS(3091), - [anon_sym_c_schar] = ACTIONS(3091), - [anon_sym_c_uchar] = ACTIONS(3091), - [anon_sym_c_short] = ACTIONS(3091), - [anon_sym_c_ushort] = ACTIONS(3091), - [anon_sym_c_int] = ACTIONS(3091), - [anon_sym_c_uint] = ACTIONS(3091), - [anon_sym_c_long] = ACTIONS(3091), - [anon_sym_c_ulong] = ACTIONS(3091), - [anon_sym_c_longlong] = ACTIONS(3091), - [anon_sym_c_ulonglong] = ACTIONS(3091), - [anon_sym_c_float] = ACTIONS(3091), - [anon_sym_c_double] = ACTIONS(3091), - [anon_sym_c_longdouble] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_errdefer] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_expand] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_true] = ACTIONS(3091), - [anon_sym_false] = ACTIONS(3091), - [sym_none] = ACTIONS(3091), - [sym_undefined] = ACTIONS(3091), - [sym_sink] = ACTIONS(3091), - [sym_integer] = ACTIONS(3091), - [sym_float] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_multiline_string] = ACTIONS(3089), - [sym_character] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3089), - }, - [STATE(1456)] = { - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_test] = ACTIONS(3095), - [anon_sym_hide] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_void] = ACTIONS(3095), - [anon_sym_anyopaque] = ACTIONS(3095), - [anon_sym_bool] = ACTIONS(3095), - [anon_sym_int] = ACTIONS(3095), - [anon_sym_uint] = ACTIONS(3095), - [anon_sym_float] = ACTIONS(3095), - [anon_sym_range] = ACTIONS(3095), - [anon_sym_i8] = ACTIONS(3095), - [anon_sym_i16] = ACTIONS(3095), - [anon_sym_i32] = ACTIONS(3095), - [anon_sym_i64] = ACTIONS(3095), - [anon_sym_u8] = ACTIONS(3095), - [anon_sym_u16] = ACTIONS(3095), - [anon_sym_u32] = ACTIONS(3095), - [anon_sym_u64] = ACTIONS(3095), - [anon_sym_isize] = ACTIONS(3095), - [anon_sym_usize] = ACTIONS(3095), - [anon_sym_f32] = ACTIONS(3095), - [anon_sym_f64] = ACTIONS(3095), - [anon_sym_c_char] = ACTIONS(3095), - [anon_sym_c_schar] = ACTIONS(3095), - [anon_sym_c_uchar] = ACTIONS(3095), - [anon_sym_c_short] = ACTIONS(3095), - [anon_sym_c_ushort] = ACTIONS(3095), - [anon_sym_c_int] = ACTIONS(3095), - [anon_sym_c_uint] = ACTIONS(3095), - [anon_sym_c_long] = ACTIONS(3095), - [anon_sym_c_ulong] = ACTIONS(3095), - [anon_sym_c_longlong] = ACTIONS(3095), - [anon_sym_c_ulonglong] = ACTIONS(3095), - [anon_sym_c_float] = ACTIONS(3095), - [anon_sym_c_double] = ACTIONS(3095), - [anon_sym_c_longdouble] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_defer] = ACTIONS(3095), - [anon_sym_errdefer] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_expand] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [sym_none] = ACTIONS(3095), - [sym_undefined] = ACTIONS(3095), - [sym_sink] = ACTIONS(3095), - [sym_integer] = ACTIONS(3095), - [sym_float] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_multiline_string] = ACTIONS(3093), - [sym_character] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3093), - }, - [STATE(1457)] = { - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_test] = ACTIONS(3099), - [anon_sym_hide] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_void] = ACTIONS(3099), - [anon_sym_anyopaque] = ACTIONS(3099), - [anon_sym_bool] = ACTIONS(3099), - [anon_sym_int] = ACTIONS(3099), - [anon_sym_uint] = ACTIONS(3099), - [anon_sym_float] = ACTIONS(3099), - [anon_sym_range] = ACTIONS(3099), - [anon_sym_i8] = ACTIONS(3099), - [anon_sym_i16] = ACTIONS(3099), - [anon_sym_i32] = ACTIONS(3099), - [anon_sym_i64] = ACTIONS(3099), - [anon_sym_u8] = ACTIONS(3099), - [anon_sym_u16] = ACTIONS(3099), - [anon_sym_u32] = ACTIONS(3099), - [anon_sym_u64] = ACTIONS(3099), - [anon_sym_isize] = ACTIONS(3099), - [anon_sym_usize] = ACTIONS(3099), - [anon_sym_f32] = ACTIONS(3099), - [anon_sym_f64] = ACTIONS(3099), - [anon_sym_c_char] = ACTIONS(3099), - [anon_sym_c_schar] = ACTIONS(3099), - [anon_sym_c_uchar] = ACTIONS(3099), - [anon_sym_c_short] = ACTIONS(3099), - [anon_sym_c_ushort] = ACTIONS(3099), - [anon_sym_c_int] = ACTIONS(3099), - [anon_sym_c_uint] = ACTIONS(3099), - [anon_sym_c_long] = ACTIONS(3099), - [anon_sym_c_ulong] = ACTIONS(3099), - [anon_sym_c_longlong] = ACTIONS(3099), - [anon_sym_c_ulonglong] = ACTIONS(3099), - [anon_sym_c_float] = ACTIONS(3099), - [anon_sym_c_double] = ACTIONS(3099), - [anon_sym_c_longdouble] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_yield] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_defer] = ACTIONS(3099), - [anon_sym_errdefer] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_expand] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3099), - [anon_sym_false] = ACTIONS(3099), - [sym_none] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [sym_sink] = ACTIONS(3099), - [sym_integer] = ACTIONS(3099), - [sym_float] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_multiline_string] = ACTIONS(3097), - [sym_character] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3097), - }, - [STATE(1458)] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [sym_identifier] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_test] = ACTIONS(3103), - [anon_sym_hide] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_void] = ACTIONS(3103), - [anon_sym_anyopaque] = ACTIONS(3103), - [anon_sym_bool] = ACTIONS(3103), - [anon_sym_int] = ACTIONS(3103), - [anon_sym_uint] = ACTIONS(3103), - [anon_sym_float] = ACTIONS(3103), - [anon_sym_range] = ACTIONS(3103), - [anon_sym_i8] = ACTIONS(3103), - [anon_sym_i16] = ACTIONS(3103), - [anon_sym_i32] = ACTIONS(3103), - [anon_sym_i64] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3103), - [anon_sym_u16] = ACTIONS(3103), - [anon_sym_u32] = ACTIONS(3103), - [anon_sym_u64] = ACTIONS(3103), - [anon_sym_isize] = ACTIONS(3103), - [anon_sym_usize] = ACTIONS(3103), - [anon_sym_f32] = ACTIONS(3103), - [anon_sym_f64] = ACTIONS(3103), - [anon_sym_c_char] = ACTIONS(3103), - [anon_sym_c_schar] = ACTIONS(3103), - [anon_sym_c_uchar] = ACTIONS(3103), - [anon_sym_c_short] = ACTIONS(3103), - [anon_sym_c_ushort] = ACTIONS(3103), - [anon_sym_c_int] = ACTIONS(3103), - [anon_sym_c_uint] = ACTIONS(3103), - [anon_sym_c_long] = ACTIONS(3103), - [anon_sym_c_ulong] = ACTIONS(3103), - [anon_sym_c_longlong] = ACTIONS(3103), - [anon_sym_c_ulonglong] = ACTIONS(3103), - [anon_sym_c_float] = ACTIONS(3103), - [anon_sym_c_double] = ACTIONS(3103), - [anon_sym_c_longdouble] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_defer] = ACTIONS(3103), - [anon_sym_errdefer] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_expand] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_true] = ACTIONS(3103), - [anon_sym_false] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_undefined] = ACTIONS(3103), - [sym_sink] = ACTIONS(3103), - [sym_integer] = ACTIONS(3103), - [sym_float] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_multiline_string] = ACTIONS(3101), - [sym_character] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3101), - }, - [STATE(1459)] = { - [ts_builtin_sym_end] = ACTIONS(3105), - [sym_identifier] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_test] = ACTIONS(3107), - [anon_sym_hide] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_DOLLAR] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_anyopaque] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_int] = ACTIONS(3107), - [anon_sym_uint] = ACTIONS(3107), - [anon_sym_float] = ACTIONS(3107), - [anon_sym_range] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_c_char] = ACTIONS(3107), - [anon_sym_c_schar] = ACTIONS(3107), - [anon_sym_c_uchar] = ACTIONS(3107), - [anon_sym_c_short] = ACTIONS(3107), - [anon_sym_c_ushort] = ACTIONS(3107), - [anon_sym_c_int] = ACTIONS(3107), - [anon_sym_c_uint] = ACTIONS(3107), - [anon_sym_c_long] = ACTIONS(3107), - [anon_sym_c_ulong] = ACTIONS(3107), - [anon_sym_c_longlong] = ACTIONS(3107), - [anon_sym_c_ulonglong] = ACTIONS(3107), - [anon_sym_c_float] = ACTIONS(3107), - [anon_sym_c_double] = ACTIONS(3107), - [anon_sym_c_longdouble] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_defer] = ACTIONS(3107), - [anon_sym_errdefer] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_expand] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_match] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [sym_none] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [sym_sink] = ACTIONS(3107), - [sym_integer] = ACTIONS(3107), - [sym_float] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_multiline_string] = ACTIONS(3105), - [sym_character] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3105), - }, - [STATE(1460)] = { - [ts_builtin_sym_end] = ACTIONS(3109), - [sym_identifier] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_test] = ACTIONS(3111), - [anon_sym_hide] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_void] = ACTIONS(3111), - [anon_sym_anyopaque] = ACTIONS(3111), - [anon_sym_bool] = ACTIONS(3111), - [anon_sym_int] = ACTIONS(3111), - [anon_sym_uint] = ACTIONS(3111), - [anon_sym_float] = ACTIONS(3111), - [anon_sym_range] = ACTIONS(3111), - [anon_sym_i8] = ACTIONS(3111), - [anon_sym_i16] = ACTIONS(3111), - [anon_sym_i32] = ACTIONS(3111), - [anon_sym_i64] = ACTIONS(3111), - [anon_sym_u8] = ACTIONS(3111), - [anon_sym_u16] = ACTIONS(3111), - [anon_sym_u32] = ACTIONS(3111), - [anon_sym_u64] = ACTIONS(3111), - [anon_sym_isize] = ACTIONS(3111), - [anon_sym_usize] = ACTIONS(3111), - [anon_sym_f32] = ACTIONS(3111), - [anon_sym_f64] = ACTIONS(3111), - [anon_sym_c_char] = ACTIONS(3111), - [anon_sym_c_schar] = ACTIONS(3111), - [anon_sym_c_uchar] = ACTIONS(3111), - [anon_sym_c_short] = ACTIONS(3111), - [anon_sym_c_ushort] = ACTIONS(3111), - [anon_sym_c_int] = ACTIONS(3111), - [anon_sym_c_uint] = ACTIONS(3111), - [anon_sym_c_long] = ACTIONS(3111), - [anon_sym_c_ulong] = ACTIONS(3111), - [anon_sym_c_longlong] = ACTIONS(3111), - [anon_sym_c_ulonglong] = ACTIONS(3111), - [anon_sym_c_float] = ACTIONS(3111), - [anon_sym_c_double] = ACTIONS(3111), - [anon_sym_c_longdouble] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3111), - [anon_sym_break] = ACTIONS(3111), - [anon_sym_continue] = ACTIONS(3111), - [anon_sym_defer] = ACTIONS(3111), - [anon_sym_errdefer] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3111), - [anon_sym_while] = ACTIONS(3111), - [anon_sym_expand] = ACTIONS(3111), - [anon_sym_for] = ACTIONS(3111), - [anon_sym_match] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_true] = ACTIONS(3111), - [anon_sym_false] = ACTIONS(3111), - [sym_none] = ACTIONS(3111), - [sym_undefined] = ACTIONS(3111), - [sym_sink] = ACTIONS(3111), - [sym_integer] = ACTIONS(3111), - [sym_float] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_multiline_string] = ACTIONS(3109), - [sym_character] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3109), - }, - [STATE(1461)] = { - [ts_builtin_sym_end] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_test] = ACTIONS(3115), - [anon_sym_hide] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_void] = ACTIONS(3115), - [anon_sym_anyopaque] = ACTIONS(3115), - [anon_sym_bool] = ACTIONS(3115), - [anon_sym_int] = ACTIONS(3115), - [anon_sym_uint] = ACTIONS(3115), - [anon_sym_float] = ACTIONS(3115), - [anon_sym_range] = ACTIONS(3115), - [anon_sym_i8] = ACTIONS(3115), - [anon_sym_i16] = ACTIONS(3115), - [anon_sym_i32] = ACTIONS(3115), - [anon_sym_i64] = ACTIONS(3115), - [anon_sym_u8] = ACTIONS(3115), - [anon_sym_u16] = ACTIONS(3115), - [anon_sym_u32] = ACTIONS(3115), - [anon_sym_u64] = ACTIONS(3115), - [anon_sym_isize] = ACTIONS(3115), - [anon_sym_usize] = ACTIONS(3115), - [anon_sym_f32] = ACTIONS(3115), - [anon_sym_f64] = ACTIONS(3115), - [anon_sym_c_char] = ACTIONS(3115), - [anon_sym_c_schar] = ACTIONS(3115), - [anon_sym_c_uchar] = ACTIONS(3115), - [anon_sym_c_short] = ACTIONS(3115), - [anon_sym_c_ushort] = ACTIONS(3115), - [anon_sym_c_int] = ACTIONS(3115), - [anon_sym_c_uint] = ACTIONS(3115), - [anon_sym_c_long] = ACTIONS(3115), - [anon_sym_c_ulong] = ACTIONS(3115), - [anon_sym_c_longlong] = ACTIONS(3115), - [anon_sym_c_ulonglong] = ACTIONS(3115), - [anon_sym_c_float] = ACTIONS(3115), - [anon_sym_c_double] = ACTIONS(3115), - [anon_sym_c_longdouble] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_defer] = ACTIONS(3115), - [anon_sym_errdefer] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_expand] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_true] = ACTIONS(3115), - [anon_sym_false] = ACTIONS(3115), - [sym_none] = ACTIONS(3115), - [sym_undefined] = ACTIONS(3115), - [sym_sink] = ACTIONS(3115), - [sym_integer] = ACTIONS(3115), - [sym_float] = ACTIONS(3113), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym_multiline_string] = ACTIONS(3113), - [sym_character] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3113), - }, - [STATE(1462)] = { - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_test] = ACTIONS(3119), - [anon_sym_hide] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_DOLLAR] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_void] = ACTIONS(3119), - [anon_sym_anyopaque] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_int] = ACTIONS(3119), - [anon_sym_uint] = ACTIONS(3119), - [anon_sym_float] = ACTIONS(3119), - [anon_sym_range] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_c_char] = ACTIONS(3119), - [anon_sym_c_schar] = ACTIONS(3119), - [anon_sym_c_uchar] = ACTIONS(3119), - [anon_sym_c_short] = ACTIONS(3119), - [anon_sym_c_ushort] = ACTIONS(3119), - [anon_sym_c_int] = ACTIONS(3119), - [anon_sym_c_uint] = ACTIONS(3119), - [anon_sym_c_long] = ACTIONS(3119), - [anon_sym_c_ulong] = ACTIONS(3119), - [anon_sym_c_longlong] = ACTIONS(3119), - [anon_sym_c_ulonglong] = ACTIONS(3119), - [anon_sym_c_float] = ACTIONS(3119), - [anon_sym_c_double] = ACTIONS(3119), - [anon_sym_c_longdouble] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_defer] = ACTIONS(3119), - [anon_sym_errdefer] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_expand] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_undefined] = ACTIONS(3119), - [sym_sink] = ACTIONS(3119), - [sym_integer] = ACTIONS(3119), - [sym_float] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_multiline_string] = ACTIONS(3117), - [sym_character] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3117), - }, - [STATE(1463)] = { - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1059), - [anon_sym_test] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_func] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_struct] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_void] = ACTIONS(1059), - [anon_sym_anyopaque] = ACTIONS(1059), - [anon_sym_bool] = ACTIONS(1059), - [anon_sym_int] = ACTIONS(1059), - [anon_sym_uint] = ACTIONS(1059), - [anon_sym_float] = ACTIONS(1059), - [anon_sym_range] = ACTIONS(1059), - [anon_sym_i8] = ACTIONS(1059), - [anon_sym_i16] = ACTIONS(1059), - [anon_sym_i32] = ACTIONS(1059), - [anon_sym_i64] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1059), - [anon_sym_u16] = ACTIONS(1059), - [anon_sym_u32] = ACTIONS(1059), - [anon_sym_u64] = ACTIONS(1059), - [anon_sym_isize] = ACTIONS(1059), - [anon_sym_usize] = ACTIONS(1059), - [anon_sym_f32] = ACTIONS(1059), - [anon_sym_f64] = ACTIONS(1059), - [anon_sym_c_char] = ACTIONS(1059), - [anon_sym_c_schar] = ACTIONS(1059), - [anon_sym_c_uchar] = ACTIONS(1059), - [anon_sym_c_short] = ACTIONS(1059), - [anon_sym_c_ushort] = ACTIONS(1059), - [anon_sym_c_int] = ACTIONS(1059), - [anon_sym_c_uint] = ACTIONS(1059), - [anon_sym_c_long] = ACTIONS(1059), - [anon_sym_c_ulong] = ACTIONS(1059), - [anon_sym_c_longlong] = ACTIONS(1059), - [anon_sym_c_ulonglong] = ACTIONS(1059), - [anon_sym_c_float] = ACTIONS(1059), - [anon_sym_c_double] = ACTIONS(1059), - [anon_sym_c_longdouble] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_defer] = ACTIONS(1059), - [anon_sym_errdefer] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_expand] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [sym_none] = ACTIONS(1059), - [sym_undefined] = ACTIONS(1059), - [sym_sink] = ACTIONS(1059), - [sym_integer] = ACTIONS(1059), - [sym_float] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [sym_multiline_string] = ACTIONS(1057), - [sym_character] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1057), - }, - [STATE(1464)] = { - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_identifier] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_test] = ACTIONS(3123), - [anon_sym_hide] = ACTIONS(3123), - [anon_sym_func] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_RPAREN] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_void] = ACTIONS(3123), - [anon_sym_anyopaque] = ACTIONS(3123), - [anon_sym_bool] = ACTIONS(3123), - [anon_sym_int] = ACTIONS(3123), - [anon_sym_uint] = ACTIONS(3123), - [anon_sym_float] = ACTIONS(3123), - [anon_sym_range] = ACTIONS(3123), - [anon_sym_i8] = ACTIONS(3123), - [anon_sym_i16] = ACTIONS(3123), - [anon_sym_i32] = ACTIONS(3123), - [anon_sym_i64] = ACTIONS(3123), - [anon_sym_u8] = ACTIONS(3123), - [anon_sym_u16] = ACTIONS(3123), - [anon_sym_u32] = ACTIONS(3123), - [anon_sym_u64] = ACTIONS(3123), - [anon_sym_isize] = ACTIONS(3123), - [anon_sym_usize] = ACTIONS(3123), - [anon_sym_f32] = ACTIONS(3123), - [anon_sym_f64] = ACTIONS(3123), - [anon_sym_c_char] = ACTIONS(3123), - [anon_sym_c_schar] = ACTIONS(3123), - [anon_sym_c_uchar] = ACTIONS(3123), - [anon_sym_c_short] = ACTIONS(3123), - [anon_sym_c_ushort] = ACTIONS(3123), - [anon_sym_c_int] = ACTIONS(3123), - [anon_sym_c_uint] = ACTIONS(3123), - [anon_sym_c_long] = ACTIONS(3123), - [anon_sym_c_ulong] = ACTIONS(3123), - [anon_sym_c_longlong] = ACTIONS(3123), - [anon_sym_c_ulonglong] = ACTIONS(3123), - [anon_sym_c_float] = ACTIONS(3123), - [anon_sym_c_double] = ACTIONS(3123), - [anon_sym_c_longdouble] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_yield] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_defer] = ACTIONS(3123), - [anon_sym_errdefer] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_expand] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_undefined] = ACTIONS(3123), - [sym_sink] = ACTIONS(3123), - [sym_integer] = ACTIONS(3123), - [sym_float] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_multiline_string] = ACTIONS(3121), - [sym_character] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3121), - }, - [STATE(1465)] = { - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_test] = ACTIONS(3127), - [anon_sym_hide] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_void] = ACTIONS(3127), - [anon_sym_anyopaque] = ACTIONS(3127), - [anon_sym_bool] = ACTIONS(3127), - [anon_sym_int] = ACTIONS(3127), - [anon_sym_uint] = ACTIONS(3127), - [anon_sym_float] = ACTIONS(3127), - [anon_sym_range] = ACTIONS(3127), - [anon_sym_i8] = ACTIONS(3127), - [anon_sym_i16] = ACTIONS(3127), - [anon_sym_i32] = ACTIONS(3127), - [anon_sym_i64] = ACTIONS(3127), - [anon_sym_u8] = ACTIONS(3127), - [anon_sym_u16] = ACTIONS(3127), - [anon_sym_u32] = ACTIONS(3127), - [anon_sym_u64] = ACTIONS(3127), - [anon_sym_isize] = ACTIONS(3127), - [anon_sym_usize] = ACTIONS(3127), - [anon_sym_f32] = ACTIONS(3127), - [anon_sym_f64] = ACTIONS(3127), - [anon_sym_c_char] = ACTIONS(3127), - [anon_sym_c_schar] = ACTIONS(3127), - [anon_sym_c_uchar] = ACTIONS(3127), - [anon_sym_c_short] = ACTIONS(3127), - [anon_sym_c_ushort] = ACTIONS(3127), - [anon_sym_c_int] = ACTIONS(3127), - [anon_sym_c_uint] = ACTIONS(3127), - [anon_sym_c_long] = ACTIONS(3127), - [anon_sym_c_ulong] = ACTIONS(3127), - [anon_sym_c_longlong] = ACTIONS(3127), - [anon_sym_c_ulonglong] = ACTIONS(3127), - [anon_sym_c_float] = ACTIONS(3127), - [anon_sym_c_double] = ACTIONS(3127), - [anon_sym_c_longdouble] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_defer] = ACTIONS(3127), - [anon_sym_errdefer] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_expand] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_undefined] = ACTIONS(3127), - [sym_sink] = ACTIONS(3127), - [sym_integer] = ACTIONS(3127), - [sym_float] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_multiline_string] = ACTIONS(3125), - [sym_character] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3125), - }, - [STATE(1466)] = { - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_test] = ACTIONS(3131), - [anon_sym_hide] = ACTIONS(3131), - [anon_sym_func] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_DOLLAR] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_anyopaque] = ACTIONS(3131), - [anon_sym_bool] = ACTIONS(3131), - [anon_sym_int] = ACTIONS(3131), - [anon_sym_uint] = ACTIONS(3131), - [anon_sym_float] = ACTIONS(3131), - [anon_sym_range] = ACTIONS(3131), - [anon_sym_i8] = ACTIONS(3131), - [anon_sym_i16] = ACTIONS(3131), - [anon_sym_i32] = ACTIONS(3131), - [anon_sym_i64] = ACTIONS(3131), - [anon_sym_u8] = ACTIONS(3131), - [anon_sym_u16] = ACTIONS(3131), - [anon_sym_u32] = ACTIONS(3131), - [anon_sym_u64] = ACTIONS(3131), - [anon_sym_isize] = ACTIONS(3131), - [anon_sym_usize] = ACTIONS(3131), - [anon_sym_f32] = ACTIONS(3131), - [anon_sym_f64] = ACTIONS(3131), - [anon_sym_c_char] = ACTIONS(3131), - [anon_sym_c_schar] = ACTIONS(3131), - [anon_sym_c_uchar] = ACTIONS(3131), - [anon_sym_c_short] = ACTIONS(3131), - [anon_sym_c_ushort] = ACTIONS(3131), - [anon_sym_c_int] = ACTIONS(3131), - [anon_sym_c_uint] = ACTIONS(3131), - [anon_sym_c_long] = ACTIONS(3131), - [anon_sym_c_ulong] = ACTIONS(3131), - [anon_sym_c_longlong] = ACTIONS(3131), - [anon_sym_c_ulonglong] = ACTIONS(3131), - [anon_sym_c_float] = ACTIONS(3131), - [anon_sym_c_double] = ACTIONS(3131), - [anon_sym_c_longdouble] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_defer] = ACTIONS(3131), - [anon_sym_errdefer] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_expand] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3131), - [anon_sym_false] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_undefined] = ACTIONS(3131), - [sym_sink] = ACTIONS(3131), - [sym_integer] = ACTIONS(3131), - [sym_float] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_multiline_string] = ACTIONS(3129), - [sym_character] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3129), - }, - [STATE(1467)] = { - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_test] = ACTIONS(3135), - [anon_sym_hide] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_void] = ACTIONS(3135), - [anon_sym_anyopaque] = ACTIONS(3135), - [anon_sym_bool] = ACTIONS(3135), - [anon_sym_int] = ACTIONS(3135), - [anon_sym_uint] = ACTIONS(3135), - [anon_sym_float] = ACTIONS(3135), - [anon_sym_range] = ACTIONS(3135), - [anon_sym_i8] = ACTIONS(3135), - [anon_sym_i16] = ACTIONS(3135), - [anon_sym_i32] = ACTIONS(3135), - [anon_sym_i64] = ACTIONS(3135), - [anon_sym_u8] = ACTIONS(3135), - [anon_sym_u16] = ACTIONS(3135), - [anon_sym_u32] = ACTIONS(3135), - [anon_sym_u64] = ACTIONS(3135), - [anon_sym_isize] = ACTIONS(3135), - [anon_sym_usize] = ACTIONS(3135), - [anon_sym_f32] = ACTIONS(3135), - [anon_sym_f64] = ACTIONS(3135), - [anon_sym_c_char] = ACTIONS(3135), - [anon_sym_c_schar] = ACTIONS(3135), - [anon_sym_c_uchar] = ACTIONS(3135), - [anon_sym_c_short] = ACTIONS(3135), - [anon_sym_c_ushort] = ACTIONS(3135), - [anon_sym_c_int] = ACTIONS(3135), - [anon_sym_c_uint] = ACTIONS(3135), - [anon_sym_c_long] = ACTIONS(3135), - [anon_sym_c_ulong] = ACTIONS(3135), - [anon_sym_c_longlong] = ACTIONS(3135), - [anon_sym_c_ulonglong] = ACTIONS(3135), - [anon_sym_c_float] = ACTIONS(3135), - [anon_sym_c_double] = ACTIONS(3135), - [anon_sym_c_longdouble] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_errdefer] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_expand] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3135), - [anon_sym_false] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_undefined] = ACTIONS(3135), - [sym_sink] = ACTIONS(3135), - [sym_integer] = ACTIONS(3135), - [sym_float] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_multiline_string] = ACTIONS(3133), - [sym_character] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3133), - }, - [STATE(1468)] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_test] = ACTIONS(3139), - [anon_sym_hide] = ACTIONS(3139), - [anon_sym_func] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_void] = ACTIONS(3139), - [anon_sym_anyopaque] = ACTIONS(3139), - [anon_sym_bool] = ACTIONS(3139), - [anon_sym_int] = ACTIONS(3139), - [anon_sym_uint] = ACTIONS(3139), - [anon_sym_float] = ACTIONS(3139), - [anon_sym_range] = ACTIONS(3139), - [anon_sym_i8] = ACTIONS(3139), - [anon_sym_i16] = ACTIONS(3139), - [anon_sym_i32] = ACTIONS(3139), - [anon_sym_i64] = ACTIONS(3139), - [anon_sym_u8] = ACTIONS(3139), - [anon_sym_u16] = ACTIONS(3139), - [anon_sym_u32] = ACTIONS(3139), - [anon_sym_u64] = ACTIONS(3139), - [anon_sym_isize] = ACTIONS(3139), - [anon_sym_usize] = ACTIONS(3139), - [anon_sym_f32] = ACTIONS(3139), - [anon_sym_f64] = ACTIONS(3139), - [anon_sym_c_char] = ACTIONS(3139), - [anon_sym_c_schar] = ACTIONS(3139), - [anon_sym_c_uchar] = ACTIONS(3139), - [anon_sym_c_short] = ACTIONS(3139), - [anon_sym_c_ushort] = ACTIONS(3139), - [anon_sym_c_int] = ACTIONS(3139), - [anon_sym_c_uint] = ACTIONS(3139), - [anon_sym_c_long] = ACTIONS(3139), - [anon_sym_c_ulong] = ACTIONS(3139), - [anon_sym_c_longlong] = ACTIONS(3139), - [anon_sym_c_ulonglong] = ACTIONS(3139), - [anon_sym_c_float] = ACTIONS(3139), - [anon_sym_c_double] = ACTIONS(3139), - [anon_sym_c_longdouble] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_defer] = ACTIONS(3139), - [anon_sym_errdefer] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_expand] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_undefined] = ACTIONS(3139), - [sym_sink] = ACTIONS(3139), - [sym_integer] = ACTIONS(3139), - [sym_float] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_multiline_string] = ACTIONS(3137), - [sym_character] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3137), - }, - [STATE(1469)] = { - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_test] = ACTIONS(3143), - [anon_sym_hide] = ACTIONS(3143), - [anon_sym_func] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_DOLLAR] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_void] = ACTIONS(3143), - [anon_sym_anyopaque] = ACTIONS(3143), - [anon_sym_bool] = ACTIONS(3143), - [anon_sym_int] = ACTIONS(3143), - [anon_sym_uint] = ACTIONS(3143), - [anon_sym_float] = ACTIONS(3143), - [anon_sym_range] = ACTIONS(3143), - [anon_sym_i8] = ACTIONS(3143), - [anon_sym_i16] = ACTIONS(3143), - [anon_sym_i32] = ACTIONS(3143), - [anon_sym_i64] = ACTIONS(3143), - [anon_sym_u8] = ACTIONS(3143), - [anon_sym_u16] = ACTIONS(3143), - [anon_sym_u32] = ACTIONS(3143), - [anon_sym_u64] = ACTIONS(3143), - [anon_sym_isize] = ACTIONS(3143), - [anon_sym_usize] = ACTIONS(3143), - [anon_sym_f32] = ACTIONS(3143), - [anon_sym_f64] = ACTIONS(3143), - [anon_sym_c_char] = ACTIONS(3143), - [anon_sym_c_schar] = ACTIONS(3143), - [anon_sym_c_uchar] = ACTIONS(3143), - [anon_sym_c_short] = ACTIONS(3143), - [anon_sym_c_ushort] = ACTIONS(3143), - [anon_sym_c_int] = ACTIONS(3143), - [anon_sym_c_uint] = ACTIONS(3143), - [anon_sym_c_long] = ACTIONS(3143), - [anon_sym_c_ulong] = ACTIONS(3143), - [anon_sym_c_longlong] = ACTIONS(3143), - [anon_sym_c_ulonglong] = ACTIONS(3143), - [anon_sym_c_float] = ACTIONS(3143), - [anon_sym_c_double] = ACTIONS(3143), - [anon_sym_c_longdouble] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_defer] = ACTIONS(3143), - [anon_sym_errdefer] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_expand] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3143), - [anon_sym_false] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_undefined] = ACTIONS(3143), - [sym_sink] = ACTIONS(3143), - [sym_integer] = ACTIONS(3143), - [sym_float] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_multiline_string] = ACTIONS(3141), - [sym_character] = ACTIONS(3141), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3141), - }, - [STATE(1470)] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_import] = ACTIONS(3147), - [anon_sym_test] = ACTIONS(3147), - [anon_sym_hide] = ACTIONS(3147), - [anon_sym_func] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_RPAREN] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_void] = ACTIONS(3147), - [anon_sym_anyopaque] = ACTIONS(3147), - [anon_sym_bool] = ACTIONS(3147), - [anon_sym_int] = ACTIONS(3147), - [anon_sym_uint] = ACTIONS(3147), - [anon_sym_float] = ACTIONS(3147), - [anon_sym_range] = ACTIONS(3147), - [anon_sym_i8] = ACTIONS(3147), - [anon_sym_i16] = ACTIONS(3147), - [anon_sym_i32] = ACTIONS(3147), - [anon_sym_i64] = ACTIONS(3147), - [anon_sym_u8] = ACTIONS(3147), - [anon_sym_u16] = ACTIONS(3147), - [anon_sym_u32] = ACTIONS(3147), - [anon_sym_u64] = ACTIONS(3147), - [anon_sym_isize] = ACTIONS(3147), - [anon_sym_usize] = ACTIONS(3147), - [anon_sym_f32] = ACTIONS(3147), - [anon_sym_f64] = ACTIONS(3147), - [anon_sym_c_char] = ACTIONS(3147), - [anon_sym_c_schar] = ACTIONS(3147), - [anon_sym_c_uchar] = ACTIONS(3147), - [anon_sym_c_short] = ACTIONS(3147), - [anon_sym_c_ushort] = ACTIONS(3147), - [anon_sym_c_int] = ACTIONS(3147), - [anon_sym_c_uint] = ACTIONS(3147), - [anon_sym_c_long] = ACTIONS(3147), - [anon_sym_c_ulong] = ACTIONS(3147), - [anon_sym_c_longlong] = ACTIONS(3147), - [anon_sym_c_ulonglong] = ACTIONS(3147), - [anon_sym_c_float] = ACTIONS(3147), - [anon_sym_c_double] = ACTIONS(3147), - [anon_sym_c_longdouble] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_errdefer] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_expand] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3147), - [anon_sym_false] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_undefined] = ACTIONS(3147), - [sym_sink] = ACTIONS(3147), - [sym_integer] = ACTIONS(3147), - [sym_float] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_multiline_string] = ACTIONS(3145), - [sym_character] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3145), - }, - [STATE(1471)] = { - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_test] = ACTIONS(3151), - [anon_sym_hide] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_void] = ACTIONS(3151), - [anon_sym_anyopaque] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_int] = ACTIONS(3151), - [anon_sym_uint] = ACTIONS(3151), - [anon_sym_float] = ACTIONS(3151), - [anon_sym_range] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_c_char] = ACTIONS(3151), - [anon_sym_c_schar] = ACTIONS(3151), - [anon_sym_c_uchar] = ACTIONS(3151), - [anon_sym_c_short] = ACTIONS(3151), - [anon_sym_c_ushort] = ACTIONS(3151), - [anon_sym_c_int] = ACTIONS(3151), - [anon_sym_c_uint] = ACTIONS(3151), - [anon_sym_c_long] = ACTIONS(3151), - [anon_sym_c_ulong] = ACTIONS(3151), - [anon_sym_c_longlong] = ACTIONS(3151), - [anon_sym_c_ulonglong] = ACTIONS(3151), - [anon_sym_c_float] = ACTIONS(3151), - [anon_sym_c_double] = ACTIONS(3151), - [anon_sym_c_longdouble] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_errdefer] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_expand] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3151), - [anon_sym_false] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_undefined] = ACTIONS(3151), - [sym_sink] = ACTIONS(3151), - [sym_integer] = ACTIONS(3151), - [sym_float] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_multiline_string] = ACTIONS(3149), - [sym_character] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3149), - }, - [STATE(1472)] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_test] = ACTIONS(3155), - [anon_sym_hide] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_void] = ACTIONS(3155), - [anon_sym_anyopaque] = ACTIONS(3155), - [anon_sym_bool] = ACTIONS(3155), - [anon_sym_int] = ACTIONS(3155), - [anon_sym_uint] = ACTIONS(3155), - [anon_sym_float] = ACTIONS(3155), - [anon_sym_range] = ACTIONS(3155), - [anon_sym_i8] = ACTIONS(3155), - [anon_sym_i16] = ACTIONS(3155), - [anon_sym_i32] = ACTIONS(3155), - [anon_sym_i64] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3155), - [anon_sym_u16] = ACTIONS(3155), - [anon_sym_u32] = ACTIONS(3155), - [anon_sym_u64] = ACTIONS(3155), - [anon_sym_isize] = ACTIONS(3155), - [anon_sym_usize] = ACTIONS(3155), - [anon_sym_f32] = ACTIONS(3155), - [anon_sym_f64] = ACTIONS(3155), - [anon_sym_c_char] = ACTIONS(3155), - [anon_sym_c_schar] = ACTIONS(3155), - [anon_sym_c_uchar] = ACTIONS(3155), - [anon_sym_c_short] = ACTIONS(3155), - [anon_sym_c_ushort] = ACTIONS(3155), - [anon_sym_c_int] = ACTIONS(3155), - [anon_sym_c_uint] = ACTIONS(3155), - [anon_sym_c_long] = ACTIONS(3155), - [anon_sym_c_ulong] = ACTIONS(3155), - [anon_sym_c_longlong] = ACTIONS(3155), - [anon_sym_c_ulonglong] = ACTIONS(3155), - [anon_sym_c_float] = ACTIONS(3155), - [anon_sym_c_double] = ACTIONS(3155), - [anon_sym_c_longdouble] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_yield] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_errdefer] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_expand] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_true] = ACTIONS(3155), - [anon_sym_false] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_undefined] = ACTIONS(3155), - [sym_sink] = ACTIONS(3155), - [sym_integer] = ACTIONS(3155), - [sym_float] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_multiline_string] = ACTIONS(3153), - [sym_character] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3153), - }, - [STATE(1473)] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_test] = ACTIONS(3159), - [anon_sym_hide] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_DOLLAR] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_void] = ACTIONS(3159), - [anon_sym_anyopaque] = ACTIONS(3159), - [anon_sym_bool] = ACTIONS(3159), - [anon_sym_int] = ACTIONS(3159), - [anon_sym_uint] = ACTIONS(3159), - [anon_sym_float] = ACTIONS(3159), - [anon_sym_range] = ACTIONS(3159), - [anon_sym_i8] = ACTIONS(3159), - [anon_sym_i16] = ACTIONS(3159), - [anon_sym_i32] = ACTIONS(3159), - [anon_sym_i64] = ACTIONS(3159), - [anon_sym_u8] = ACTIONS(3159), - [anon_sym_u16] = ACTIONS(3159), - [anon_sym_u32] = ACTIONS(3159), - [anon_sym_u64] = ACTIONS(3159), - [anon_sym_isize] = ACTIONS(3159), - [anon_sym_usize] = ACTIONS(3159), - [anon_sym_f32] = ACTIONS(3159), - [anon_sym_f64] = ACTIONS(3159), - [anon_sym_c_char] = ACTIONS(3159), - [anon_sym_c_schar] = ACTIONS(3159), - [anon_sym_c_uchar] = ACTIONS(3159), - [anon_sym_c_short] = ACTIONS(3159), - [anon_sym_c_ushort] = ACTIONS(3159), - [anon_sym_c_int] = ACTIONS(3159), - [anon_sym_c_uint] = ACTIONS(3159), - [anon_sym_c_long] = ACTIONS(3159), - [anon_sym_c_ulong] = ACTIONS(3159), - [anon_sym_c_longlong] = ACTIONS(3159), - [anon_sym_c_ulonglong] = ACTIONS(3159), - [anon_sym_c_float] = ACTIONS(3159), - [anon_sym_c_double] = ACTIONS(3159), - [anon_sym_c_longdouble] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_defer] = ACTIONS(3159), - [anon_sym_errdefer] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_expand] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_undefined] = ACTIONS(3159), - [sym_sink] = ACTIONS(3159), - [sym_integer] = ACTIONS(3159), - [sym_float] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_multiline_string] = ACTIONS(3157), - [sym_character] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3157), - }, - [STATE(1474)] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_test] = ACTIONS(3163), - [anon_sym_hide] = ACTIONS(3163), - [anon_sym_func] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_anyopaque] = ACTIONS(3163), - [anon_sym_bool] = ACTIONS(3163), - [anon_sym_int] = ACTIONS(3163), - [anon_sym_uint] = ACTIONS(3163), - [anon_sym_float] = ACTIONS(3163), - [anon_sym_range] = ACTIONS(3163), - [anon_sym_i8] = ACTIONS(3163), - [anon_sym_i16] = ACTIONS(3163), - [anon_sym_i32] = ACTIONS(3163), - [anon_sym_i64] = ACTIONS(3163), - [anon_sym_u8] = ACTIONS(3163), - [anon_sym_u16] = ACTIONS(3163), - [anon_sym_u32] = ACTIONS(3163), - [anon_sym_u64] = ACTIONS(3163), - [anon_sym_isize] = ACTIONS(3163), - [anon_sym_usize] = ACTIONS(3163), - [anon_sym_f32] = ACTIONS(3163), - [anon_sym_f64] = ACTIONS(3163), - [anon_sym_c_char] = ACTIONS(3163), - [anon_sym_c_schar] = ACTIONS(3163), - [anon_sym_c_uchar] = ACTIONS(3163), - [anon_sym_c_short] = ACTIONS(3163), - [anon_sym_c_ushort] = ACTIONS(3163), - [anon_sym_c_int] = ACTIONS(3163), - [anon_sym_c_uint] = ACTIONS(3163), - [anon_sym_c_long] = ACTIONS(3163), - [anon_sym_c_ulong] = ACTIONS(3163), - [anon_sym_c_longlong] = ACTIONS(3163), - [anon_sym_c_ulonglong] = ACTIONS(3163), - [anon_sym_c_float] = ACTIONS(3163), - [anon_sym_c_double] = ACTIONS(3163), - [anon_sym_c_longdouble] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_defer] = ACTIONS(3163), - [anon_sym_errdefer] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_expand] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3163), - [anon_sym_false] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [sym_sink] = ACTIONS(3163), - [sym_integer] = ACTIONS(3163), - [sym_float] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_multiline_string] = ACTIONS(3161), - [sym_character] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3161), - }, - [STATE(1475)] = { - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_test] = ACTIONS(3167), - [anon_sym_hide] = ACTIONS(3167), - [anon_sym_func] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_RPAREN] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_anyopaque] = ACTIONS(3167), - [anon_sym_bool] = ACTIONS(3167), - [anon_sym_int] = ACTIONS(3167), - [anon_sym_uint] = ACTIONS(3167), - [anon_sym_float] = ACTIONS(3167), - [anon_sym_range] = ACTIONS(3167), - [anon_sym_i8] = ACTIONS(3167), - [anon_sym_i16] = ACTIONS(3167), - [anon_sym_i32] = ACTIONS(3167), - [anon_sym_i64] = ACTIONS(3167), - [anon_sym_u8] = ACTIONS(3167), - [anon_sym_u16] = ACTIONS(3167), - [anon_sym_u32] = ACTIONS(3167), - [anon_sym_u64] = ACTIONS(3167), - [anon_sym_isize] = ACTIONS(3167), - [anon_sym_usize] = ACTIONS(3167), - [anon_sym_f32] = ACTIONS(3167), - [anon_sym_f64] = ACTIONS(3167), - [anon_sym_c_char] = ACTIONS(3167), - [anon_sym_c_schar] = ACTIONS(3167), - [anon_sym_c_uchar] = ACTIONS(3167), - [anon_sym_c_short] = ACTIONS(3167), - [anon_sym_c_ushort] = ACTIONS(3167), - [anon_sym_c_int] = ACTIONS(3167), - [anon_sym_c_uint] = ACTIONS(3167), - [anon_sym_c_long] = ACTIONS(3167), - [anon_sym_c_ulong] = ACTIONS(3167), - [anon_sym_c_longlong] = ACTIONS(3167), - [anon_sym_c_ulonglong] = ACTIONS(3167), - [anon_sym_c_float] = ACTIONS(3167), - [anon_sym_c_double] = ACTIONS(3167), - [anon_sym_c_longdouble] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_errdefer] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_expand] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3167), - [anon_sym_false] = ACTIONS(3167), - [sym_none] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [sym_sink] = ACTIONS(3167), - [sym_integer] = ACTIONS(3167), - [sym_float] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [sym_multiline_string] = ACTIONS(3165), - [sym_character] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3165), - }, - [STATE(1476)] = { - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_test] = ACTIONS(3171), - [anon_sym_hide] = ACTIONS(3171), - [anon_sym_func] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_anyopaque] = ACTIONS(3171), - [anon_sym_bool] = ACTIONS(3171), - [anon_sym_int] = ACTIONS(3171), - [anon_sym_uint] = ACTIONS(3171), - [anon_sym_float] = ACTIONS(3171), - [anon_sym_range] = ACTIONS(3171), - [anon_sym_i8] = ACTIONS(3171), - [anon_sym_i16] = ACTIONS(3171), - [anon_sym_i32] = ACTIONS(3171), - [anon_sym_i64] = ACTIONS(3171), - [anon_sym_u8] = ACTIONS(3171), - [anon_sym_u16] = ACTIONS(3171), - [anon_sym_u32] = ACTIONS(3171), - [anon_sym_u64] = ACTIONS(3171), - [anon_sym_isize] = ACTIONS(3171), - [anon_sym_usize] = ACTIONS(3171), - [anon_sym_f32] = ACTIONS(3171), - [anon_sym_f64] = ACTIONS(3171), - [anon_sym_c_char] = ACTIONS(3171), - [anon_sym_c_schar] = ACTIONS(3171), - [anon_sym_c_uchar] = ACTIONS(3171), - [anon_sym_c_short] = ACTIONS(3171), - [anon_sym_c_ushort] = ACTIONS(3171), - [anon_sym_c_int] = ACTIONS(3171), - [anon_sym_c_uint] = ACTIONS(3171), - [anon_sym_c_long] = ACTIONS(3171), - [anon_sym_c_ulong] = ACTIONS(3171), - [anon_sym_c_longlong] = ACTIONS(3171), - [anon_sym_c_ulonglong] = ACTIONS(3171), - [anon_sym_c_float] = ACTIONS(3171), - [anon_sym_c_double] = ACTIONS(3171), - [anon_sym_c_longdouble] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_defer] = ACTIONS(3171), - [anon_sym_errdefer] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_expand] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3171), - [anon_sym_false] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [sym_sink] = ACTIONS(3171), - [sym_integer] = ACTIONS(3171), - [sym_float] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(3169), - [sym_multiline_string] = ACTIONS(3169), - [sym_character] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3169), - }, - [STATE(1477)] = { - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_test] = ACTIONS(3175), - [anon_sym_hide] = ACTIONS(3175), - [anon_sym_func] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_anyopaque] = ACTIONS(3175), - [anon_sym_bool] = ACTIONS(3175), - [anon_sym_int] = ACTIONS(3175), - [anon_sym_uint] = ACTIONS(3175), - [anon_sym_float] = ACTIONS(3175), - [anon_sym_range] = ACTIONS(3175), - [anon_sym_i8] = ACTIONS(3175), - [anon_sym_i16] = ACTIONS(3175), - [anon_sym_i32] = ACTIONS(3175), - [anon_sym_i64] = ACTIONS(3175), - [anon_sym_u8] = ACTIONS(3175), - [anon_sym_u16] = ACTIONS(3175), - [anon_sym_u32] = ACTIONS(3175), - [anon_sym_u64] = ACTIONS(3175), - [anon_sym_isize] = ACTIONS(3175), - [anon_sym_usize] = ACTIONS(3175), - [anon_sym_f32] = ACTIONS(3175), - [anon_sym_f64] = ACTIONS(3175), - [anon_sym_c_char] = ACTIONS(3175), - [anon_sym_c_schar] = ACTIONS(3175), - [anon_sym_c_uchar] = ACTIONS(3175), - [anon_sym_c_short] = ACTIONS(3175), - [anon_sym_c_ushort] = ACTIONS(3175), - [anon_sym_c_int] = ACTIONS(3175), - [anon_sym_c_uint] = ACTIONS(3175), - [anon_sym_c_long] = ACTIONS(3175), - [anon_sym_c_ulong] = ACTIONS(3175), - [anon_sym_c_longlong] = ACTIONS(3175), - [anon_sym_c_ulonglong] = ACTIONS(3175), - [anon_sym_c_float] = ACTIONS(3175), - [anon_sym_c_double] = ACTIONS(3175), - [anon_sym_c_longdouble] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_defer] = ACTIONS(3175), - [anon_sym_errdefer] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_expand] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3175), - [anon_sym_false] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [sym_sink] = ACTIONS(3175), - [sym_integer] = ACTIONS(3175), - [sym_float] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_multiline_string] = ACTIONS(3173), - [sym_character] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3173), - }, - [STATE(1478)] = { - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3179), - [anon_sym_import] = ACTIONS(3179), - [anon_sym_test] = ACTIONS(3179), - [anon_sym_hide] = ACTIONS(3179), - [anon_sym_func] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_void] = ACTIONS(3179), - [anon_sym_anyopaque] = ACTIONS(3179), - [anon_sym_bool] = ACTIONS(3179), - [anon_sym_int] = ACTIONS(3179), - [anon_sym_uint] = ACTIONS(3179), - [anon_sym_float] = ACTIONS(3179), - [anon_sym_range] = ACTIONS(3179), - [anon_sym_i8] = ACTIONS(3179), - [anon_sym_i16] = ACTIONS(3179), - [anon_sym_i32] = ACTIONS(3179), - [anon_sym_i64] = ACTIONS(3179), - [anon_sym_u8] = ACTIONS(3179), - [anon_sym_u16] = ACTIONS(3179), - [anon_sym_u32] = ACTIONS(3179), - [anon_sym_u64] = ACTIONS(3179), - [anon_sym_isize] = ACTIONS(3179), - [anon_sym_usize] = ACTIONS(3179), - [anon_sym_f32] = ACTIONS(3179), - [anon_sym_f64] = ACTIONS(3179), - [anon_sym_c_char] = ACTIONS(3179), - [anon_sym_c_schar] = ACTIONS(3179), - [anon_sym_c_uchar] = ACTIONS(3179), - [anon_sym_c_short] = ACTIONS(3179), - [anon_sym_c_ushort] = ACTIONS(3179), - [anon_sym_c_int] = ACTIONS(3179), - [anon_sym_c_uint] = ACTIONS(3179), - [anon_sym_c_long] = ACTIONS(3179), - [anon_sym_c_ulong] = ACTIONS(3179), - [anon_sym_c_longlong] = ACTIONS(3179), - [anon_sym_c_ulonglong] = ACTIONS(3179), - [anon_sym_c_float] = ACTIONS(3179), - [anon_sym_c_double] = ACTIONS(3179), - [anon_sym_c_longdouble] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_defer] = ACTIONS(3179), - [anon_sym_errdefer] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_expand] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3179), - [anon_sym_false] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_undefined] = ACTIONS(3179), - [sym_sink] = ACTIONS(3179), - [sym_integer] = ACTIONS(3179), - [sym_float] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_multiline_string] = ACTIONS(3177), - [sym_character] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3177), - }, - [STATE(1479)] = { - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_import] = ACTIONS(3183), - [anon_sym_test] = ACTIONS(3183), - [anon_sym_hide] = ACTIONS(3183), - [anon_sym_func] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_DOLLAR] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_void] = ACTIONS(3183), - [anon_sym_anyopaque] = ACTIONS(3183), - [anon_sym_bool] = ACTIONS(3183), - [anon_sym_int] = ACTIONS(3183), - [anon_sym_uint] = ACTIONS(3183), - [anon_sym_float] = ACTIONS(3183), - [anon_sym_range] = ACTIONS(3183), - [anon_sym_i8] = ACTIONS(3183), - [anon_sym_i16] = ACTIONS(3183), - [anon_sym_i32] = ACTIONS(3183), - [anon_sym_i64] = ACTIONS(3183), - [anon_sym_u8] = ACTIONS(3183), - [anon_sym_u16] = ACTIONS(3183), - [anon_sym_u32] = ACTIONS(3183), - [anon_sym_u64] = ACTIONS(3183), - [anon_sym_isize] = ACTIONS(3183), - [anon_sym_usize] = ACTIONS(3183), - [anon_sym_f32] = ACTIONS(3183), - [anon_sym_f64] = ACTIONS(3183), - [anon_sym_c_char] = ACTIONS(3183), - [anon_sym_c_schar] = ACTIONS(3183), - [anon_sym_c_uchar] = ACTIONS(3183), - [anon_sym_c_short] = ACTIONS(3183), - [anon_sym_c_ushort] = ACTIONS(3183), - [anon_sym_c_int] = ACTIONS(3183), - [anon_sym_c_uint] = ACTIONS(3183), - [anon_sym_c_long] = ACTIONS(3183), - [anon_sym_c_ulong] = ACTIONS(3183), - [anon_sym_c_longlong] = ACTIONS(3183), - [anon_sym_c_ulonglong] = ACTIONS(3183), - [anon_sym_c_float] = ACTIONS(3183), - [anon_sym_c_double] = ACTIONS(3183), - [anon_sym_c_longdouble] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_errdefer] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_expand] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_undefined] = ACTIONS(3183), - [sym_sink] = ACTIONS(3183), - [sym_integer] = ACTIONS(3183), - [sym_float] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_multiline_string] = ACTIONS(3181), - [sym_character] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3181), - }, - [STATE(1480)] = { - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_test] = ACTIONS(3187), - [anon_sym_hide] = ACTIONS(3187), - [anon_sym_func] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_RPAREN] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_void] = ACTIONS(3187), - [anon_sym_anyopaque] = ACTIONS(3187), - [anon_sym_bool] = ACTIONS(3187), - [anon_sym_int] = ACTIONS(3187), - [anon_sym_uint] = ACTIONS(3187), - [anon_sym_float] = ACTIONS(3187), - [anon_sym_range] = ACTIONS(3187), - [anon_sym_i8] = ACTIONS(3187), - [anon_sym_i16] = ACTIONS(3187), - [anon_sym_i32] = ACTIONS(3187), - [anon_sym_i64] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3187), - [anon_sym_u16] = ACTIONS(3187), - [anon_sym_u32] = ACTIONS(3187), - [anon_sym_u64] = ACTIONS(3187), - [anon_sym_isize] = ACTIONS(3187), - [anon_sym_usize] = ACTIONS(3187), - [anon_sym_f32] = ACTIONS(3187), - [anon_sym_f64] = ACTIONS(3187), - [anon_sym_c_char] = ACTIONS(3187), - [anon_sym_c_schar] = ACTIONS(3187), - [anon_sym_c_uchar] = ACTIONS(3187), - [anon_sym_c_short] = ACTIONS(3187), - [anon_sym_c_ushort] = ACTIONS(3187), - [anon_sym_c_int] = ACTIONS(3187), - [anon_sym_c_uint] = ACTIONS(3187), - [anon_sym_c_long] = ACTIONS(3187), - [anon_sym_c_ulong] = ACTIONS(3187), - [anon_sym_c_longlong] = ACTIONS(3187), - [anon_sym_c_ulonglong] = ACTIONS(3187), - [anon_sym_c_float] = ACTIONS(3187), - [anon_sym_c_double] = ACTIONS(3187), - [anon_sym_c_longdouble] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_errdefer] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_expand] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3187), - [anon_sym_false] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_undefined] = ACTIONS(3187), - [sym_sink] = ACTIONS(3187), - [sym_integer] = ACTIONS(3187), - [sym_float] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_multiline_string] = ACTIONS(3185), - [sym_character] = ACTIONS(3185), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3185), - }, - [STATE(1481)] = { - [ts_builtin_sym_end] = ACTIONS(3189), - [sym_identifier] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_test] = ACTIONS(3191), - [anon_sym_hide] = ACTIONS(3191), - [anon_sym_func] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_void] = ACTIONS(3191), - [anon_sym_anyopaque] = ACTIONS(3191), - [anon_sym_bool] = ACTIONS(3191), - [anon_sym_int] = ACTIONS(3191), - [anon_sym_uint] = ACTIONS(3191), - [anon_sym_float] = ACTIONS(3191), - [anon_sym_range] = ACTIONS(3191), - [anon_sym_i8] = ACTIONS(3191), - [anon_sym_i16] = ACTIONS(3191), - [anon_sym_i32] = ACTIONS(3191), - [anon_sym_i64] = ACTIONS(3191), - [anon_sym_u8] = ACTIONS(3191), - [anon_sym_u16] = ACTIONS(3191), - [anon_sym_u32] = ACTIONS(3191), - [anon_sym_u64] = ACTIONS(3191), - [anon_sym_isize] = ACTIONS(3191), - [anon_sym_usize] = ACTIONS(3191), - [anon_sym_f32] = ACTIONS(3191), - [anon_sym_f64] = ACTIONS(3191), - [anon_sym_c_char] = ACTIONS(3191), - [anon_sym_c_schar] = ACTIONS(3191), - [anon_sym_c_uchar] = ACTIONS(3191), - [anon_sym_c_short] = ACTIONS(3191), - [anon_sym_c_ushort] = ACTIONS(3191), - [anon_sym_c_int] = ACTIONS(3191), - [anon_sym_c_uint] = ACTIONS(3191), - [anon_sym_c_long] = ACTIONS(3191), - [anon_sym_c_ulong] = ACTIONS(3191), - [anon_sym_c_longlong] = ACTIONS(3191), - [anon_sym_c_ulonglong] = ACTIONS(3191), - [anon_sym_c_float] = ACTIONS(3191), - [anon_sym_c_double] = ACTIONS(3191), - [anon_sym_c_longdouble] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_defer] = ACTIONS(3191), - [anon_sym_errdefer] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_expand] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3191), - [anon_sym_false] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_undefined] = ACTIONS(3191), - [sym_sink] = ACTIONS(3191), - [sym_integer] = ACTIONS(3191), - [sym_float] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [sym_multiline_string] = ACTIONS(3189), - [sym_character] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3189), - }, - [STATE(1482)] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_test] = ACTIONS(3195), - [anon_sym_hide] = ACTIONS(3195), - [anon_sym_func] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_RPAREN] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_DOLLAR] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3195), - [anon_sym_anyopaque] = ACTIONS(3195), - [anon_sym_bool] = ACTIONS(3195), - [anon_sym_int] = ACTIONS(3195), - [anon_sym_uint] = ACTIONS(3195), - [anon_sym_float] = ACTIONS(3195), - [anon_sym_range] = ACTIONS(3195), - [anon_sym_i8] = ACTIONS(3195), - [anon_sym_i16] = ACTIONS(3195), - [anon_sym_i32] = ACTIONS(3195), - [anon_sym_i64] = ACTIONS(3195), - [anon_sym_u8] = ACTIONS(3195), - [anon_sym_u16] = ACTIONS(3195), - [anon_sym_u32] = ACTIONS(3195), - [anon_sym_u64] = ACTIONS(3195), - [anon_sym_isize] = ACTIONS(3195), - [anon_sym_usize] = ACTIONS(3195), - [anon_sym_f32] = ACTIONS(3195), - [anon_sym_f64] = ACTIONS(3195), - [anon_sym_c_char] = ACTIONS(3195), - [anon_sym_c_schar] = ACTIONS(3195), - [anon_sym_c_uchar] = ACTIONS(3195), - [anon_sym_c_short] = ACTIONS(3195), - [anon_sym_c_ushort] = ACTIONS(3195), - [anon_sym_c_int] = ACTIONS(3195), - [anon_sym_c_uint] = ACTIONS(3195), - [anon_sym_c_long] = ACTIONS(3195), - [anon_sym_c_ulong] = ACTIONS(3195), - [anon_sym_c_longlong] = ACTIONS(3195), - [anon_sym_c_ulonglong] = ACTIONS(3195), - [anon_sym_c_float] = ACTIONS(3195), - [anon_sym_c_double] = ACTIONS(3195), - [anon_sym_c_longdouble] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_errdefer] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_expand] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3195), - [anon_sym_false] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_undefined] = ACTIONS(3195), - [sym_sink] = ACTIONS(3195), - [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_multiline_string] = ACTIONS(3193), - [sym_character] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3193), - }, - [STATE(1483)] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3199), - [anon_sym_import] = ACTIONS(3199), - [anon_sym_test] = ACTIONS(3199), - [anon_sym_hide] = ACTIONS(3199), - [anon_sym_func] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_RPAREN] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_void] = ACTIONS(3199), - [anon_sym_anyopaque] = ACTIONS(3199), - [anon_sym_bool] = ACTIONS(3199), - [anon_sym_int] = ACTIONS(3199), - [anon_sym_uint] = ACTIONS(3199), - [anon_sym_float] = ACTIONS(3199), - [anon_sym_range] = ACTIONS(3199), - [anon_sym_i8] = ACTIONS(3199), - [anon_sym_i16] = ACTIONS(3199), - [anon_sym_i32] = ACTIONS(3199), - [anon_sym_i64] = ACTIONS(3199), - [anon_sym_u8] = ACTIONS(3199), - [anon_sym_u16] = ACTIONS(3199), - [anon_sym_u32] = ACTIONS(3199), - [anon_sym_u64] = ACTIONS(3199), - [anon_sym_isize] = ACTIONS(3199), - [anon_sym_usize] = ACTIONS(3199), - [anon_sym_f32] = ACTIONS(3199), - [anon_sym_f64] = ACTIONS(3199), - [anon_sym_c_char] = ACTIONS(3199), - [anon_sym_c_schar] = ACTIONS(3199), - [anon_sym_c_uchar] = ACTIONS(3199), - [anon_sym_c_short] = ACTIONS(3199), - [anon_sym_c_ushort] = ACTIONS(3199), - [anon_sym_c_int] = ACTIONS(3199), - [anon_sym_c_uint] = ACTIONS(3199), - [anon_sym_c_long] = ACTIONS(3199), - [anon_sym_c_ulong] = ACTIONS(3199), - [anon_sym_c_longlong] = ACTIONS(3199), - [anon_sym_c_ulonglong] = ACTIONS(3199), - [anon_sym_c_float] = ACTIONS(3199), - [anon_sym_c_double] = ACTIONS(3199), - [anon_sym_c_longdouble] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_errdefer] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_expand] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_undefined] = ACTIONS(3199), - [sym_sink] = ACTIONS(3199), - [sym_integer] = ACTIONS(3199), - [sym_float] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_multiline_string] = ACTIONS(3197), - [sym_character] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3197), - }, - [STATE(1484)] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_import] = ACTIONS(3203), - [anon_sym_test] = ACTIONS(3203), - [anon_sym_hide] = ACTIONS(3203), - [anon_sym_func] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_DOLLAR] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_void] = ACTIONS(3203), - [anon_sym_anyopaque] = ACTIONS(3203), - [anon_sym_bool] = ACTIONS(3203), - [anon_sym_int] = ACTIONS(3203), - [anon_sym_uint] = ACTIONS(3203), - [anon_sym_float] = ACTIONS(3203), - [anon_sym_range] = ACTIONS(3203), - [anon_sym_i8] = ACTIONS(3203), - [anon_sym_i16] = ACTIONS(3203), - [anon_sym_i32] = ACTIONS(3203), - [anon_sym_i64] = ACTIONS(3203), - [anon_sym_u8] = ACTIONS(3203), - [anon_sym_u16] = ACTIONS(3203), - [anon_sym_u32] = ACTIONS(3203), - [anon_sym_u64] = ACTIONS(3203), - [anon_sym_isize] = ACTIONS(3203), - [anon_sym_usize] = ACTIONS(3203), - [anon_sym_f32] = ACTIONS(3203), - [anon_sym_f64] = ACTIONS(3203), - [anon_sym_c_char] = ACTIONS(3203), - [anon_sym_c_schar] = ACTIONS(3203), - [anon_sym_c_uchar] = ACTIONS(3203), - [anon_sym_c_short] = ACTIONS(3203), - [anon_sym_c_ushort] = ACTIONS(3203), - [anon_sym_c_int] = ACTIONS(3203), - [anon_sym_c_uint] = ACTIONS(3203), - [anon_sym_c_long] = ACTIONS(3203), - [anon_sym_c_ulong] = ACTIONS(3203), - [anon_sym_c_longlong] = ACTIONS(3203), - [anon_sym_c_ulonglong] = ACTIONS(3203), - [anon_sym_c_float] = ACTIONS(3203), - [anon_sym_c_double] = ACTIONS(3203), - [anon_sym_c_longdouble] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_errdefer] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_expand] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3203), - [anon_sym_false] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_undefined] = ACTIONS(3203), - [sym_sink] = ACTIONS(3203), - [sym_integer] = ACTIONS(3203), - [sym_float] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_multiline_string] = ACTIONS(3201), - [sym_character] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3201), - }, - [STATE(1485)] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_test] = ACTIONS(3207), - [anon_sym_hide] = ACTIONS(3207), - [anon_sym_func] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_DOLLAR] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_anyopaque] = ACTIONS(3207), - [anon_sym_bool] = ACTIONS(3207), - [anon_sym_int] = ACTIONS(3207), - [anon_sym_uint] = ACTIONS(3207), - [anon_sym_float] = ACTIONS(3207), - [anon_sym_range] = ACTIONS(3207), - [anon_sym_i8] = ACTIONS(3207), - [anon_sym_i16] = ACTIONS(3207), - [anon_sym_i32] = ACTIONS(3207), - [anon_sym_i64] = ACTIONS(3207), - [anon_sym_u8] = ACTIONS(3207), - [anon_sym_u16] = ACTIONS(3207), - [anon_sym_u32] = ACTIONS(3207), - [anon_sym_u64] = ACTIONS(3207), - [anon_sym_isize] = ACTIONS(3207), - [anon_sym_usize] = ACTIONS(3207), - [anon_sym_f32] = ACTIONS(3207), - [anon_sym_f64] = ACTIONS(3207), - [anon_sym_c_char] = ACTIONS(3207), - [anon_sym_c_schar] = ACTIONS(3207), - [anon_sym_c_uchar] = ACTIONS(3207), - [anon_sym_c_short] = ACTIONS(3207), - [anon_sym_c_ushort] = ACTIONS(3207), - [anon_sym_c_int] = ACTIONS(3207), - [anon_sym_c_uint] = ACTIONS(3207), - [anon_sym_c_long] = ACTIONS(3207), - [anon_sym_c_ulong] = ACTIONS(3207), - [anon_sym_c_longlong] = ACTIONS(3207), - [anon_sym_c_ulonglong] = ACTIONS(3207), - [anon_sym_c_float] = ACTIONS(3207), - [anon_sym_c_double] = ACTIONS(3207), - [anon_sym_c_longdouble] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_errdefer] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_expand] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_true] = ACTIONS(3207), - [anon_sym_false] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [sym_sink] = ACTIONS(3207), - [sym_integer] = ACTIONS(3207), - [sym_float] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_multiline_string] = ACTIONS(3205), - [sym_character] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3205), - }, - [STATE(1486)] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_import] = ACTIONS(3211), - [anon_sym_test] = ACTIONS(3211), - [anon_sym_hide] = ACTIONS(3211), - [anon_sym_func] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_RPAREN] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_DOLLAR] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_void] = ACTIONS(3211), - [anon_sym_anyopaque] = ACTIONS(3211), - [anon_sym_bool] = ACTIONS(3211), - [anon_sym_int] = ACTIONS(3211), - [anon_sym_uint] = ACTIONS(3211), - [anon_sym_float] = ACTIONS(3211), - [anon_sym_range] = ACTIONS(3211), - [anon_sym_i8] = ACTIONS(3211), - [anon_sym_i16] = ACTIONS(3211), - [anon_sym_i32] = ACTIONS(3211), - [anon_sym_i64] = ACTIONS(3211), - [anon_sym_u8] = ACTIONS(3211), - [anon_sym_u16] = ACTIONS(3211), - [anon_sym_u32] = ACTIONS(3211), - [anon_sym_u64] = ACTIONS(3211), - [anon_sym_isize] = ACTIONS(3211), - [anon_sym_usize] = ACTIONS(3211), - [anon_sym_f32] = ACTIONS(3211), - [anon_sym_f64] = ACTIONS(3211), - [anon_sym_c_char] = ACTIONS(3211), - [anon_sym_c_schar] = ACTIONS(3211), - [anon_sym_c_uchar] = ACTIONS(3211), - [anon_sym_c_short] = ACTIONS(3211), - [anon_sym_c_ushort] = ACTIONS(3211), - [anon_sym_c_int] = ACTIONS(3211), - [anon_sym_c_uint] = ACTIONS(3211), - [anon_sym_c_long] = ACTIONS(3211), - [anon_sym_c_ulong] = ACTIONS(3211), - [anon_sym_c_longlong] = ACTIONS(3211), - [anon_sym_c_ulonglong] = ACTIONS(3211), - [anon_sym_c_float] = ACTIONS(3211), - [anon_sym_c_double] = ACTIONS(3211), - [anon_sym_c_longdouble] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_errdefer] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_expand] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_true] = ACTIONS(3211), - [anon_sym_false] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_undefined] = ACTIONS(3211), - [sym_sink] = ACTIONS(3211), - [sym_integer] = ACTIONS(3211), - [sym_float] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_multiline_string] = ACTIONS(3209), - [sym_character] = ACTIONS(3209), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3209), - }, - [STATE(1487)] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_import] = ACTIONS(3215), - [anon_sym_test] = ACTIONS(3215), - [anon_sym_hide] = ACTIONS(3215), - [anon_sym_func] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_RPAREN] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_DOLLAR] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3215), - [anon_sym_anyopaque] = ACTIONS(3215), - [anon_sym_bool] = ACTIONS(3215), - [anon_sym_int] = ACTIONS(3215), - [anon_sym_uint] = ACTIONS(3215), - [anon_sym_float] = ACTIONS(3215), - [anon_sym_range] = ACTIONS(3215), - [anon_sym_i8] = ACTIONS(3215), - [anon_sym_i16] = ACTIONS(3215), - [anon_sym_i32] = ACTIONS(3215), - [anon_sym_i64] = ACTIONS(3215), - [anon_sym_u8] = ACTIONS(3215), - [anon_sym_u16] = ACTIONS(3215), - [anon_sym_u32] = ACTIONS(3215), - [anon_sym_u64] = ACTIONS(3215), - [anon_sym_isize] = ACTIONS(3215), - [anon_sym_usize] = ACTIONS(3215), - [anon_sym_f32] = ACTIONS(3215), - [anon_sym_f64] = ACTIONS(3215), - [anon_sym_c_char] = ACTIONS(3215), - [anon_sym_c_schar] = ACTIONS(3215), - [anon_sym_c_uchar] = ACTIONS(3215), - [anon_sym_c_short] = ACTIONS(3215), - [anon_sym_c_ushort] = ACTIONS(3215), - [anon_sym_c_int] = ACTIONS(3215), - [anon_sym_c_uint] = ACTIONS(3215), - [anon_sym_c_long] = ACTIONS(3215), - [anon_sym_c_ulong] = ACTIONS(3215), - [anon_sym_c_longlong] = ACTIONS(3215), - [anon_sym_c_ulonglong] = ACTIONS(3215), - [anon_sym_c_float] = ACTIONS(3215), - [anon_sym_c_double] = ACTIONS(3215), - [anon_sym_c_longdouble] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_yield] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_errdefer] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_expand] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_true] = ACTIONS(3215), - [anon_sym_false] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_undefined] = ACTIONS(3215), - [sym_sink] = ACTIONS(3215), - [sym_integer] = ACTIONS(3215), - [sym_float] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_multiline_string] = ACTIONS(3213), - [sym_character] = ACTIONS(3213), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3213), - }, - [STATE(1488)] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_test] = ACTIONS(3219), - [anon_sym_hide] = ACTIONS(3219), - [anon_sym_func] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_anyopaque] = ACTIONS(3219), - [anon_sym_bool] = ACTIONS(3219), - [anon_sym_int] = ACTIONS(3219), - [anon_sym_uint] = ACTIONS(3219), - [anon_sym_float] = ACTIONS(3219), - [anon_sym_range] = ACTIONS(3219), - [anon_sym_i8] = ACTIONS(3219), - [anon_sym_i16] = ACTIONS(3219), - [anon_sym_i32] = ACTIONS(3219), - [anon_sym_i64] = ACTIONS(3219), - [anon_sym_u8] = ACTIONS(3219), - [anon_sym_u16] = ACTIONS(3219), - [anon_sym_u32] = ACTIONS(3219), - [anon_sym_u64] = ACTIONS(3219), - [anon_sym_isize] = ACTIONS(3219), - [anon_sym_usize] = ACTIONS(3219), - [anon_sym_f32] = ACTIONS(3219), - [anon_sym_f64] = ACTIONS(3219), - [anon_sym_c_char] = ACTIONS(3219), - [anon_sym_c_schar] = ACTIONS(3219), - [anon_sym_c_uchar] = ACTIONS(3219), - [anon_sym_c_short] = ACTIONS(3219), - [anon_sym_c_ushort] = ACTIONS(3219), - [anon_sym_c_int] = ACTIONS(3219), - [anon_sym_c_uint] = ACTIONS(3219), - [anon_sym_c_long] = ACTIONS(3219), - [anon_sym_c_ulong] = ACTIONS(3219), - [anon_sym_c_longlong] = ACTIONS(3219), - [anon_sym_c_ulonglong] = ACTIONS(3219), - [anon_sym_c_float] = ACTIONS(3219), - [anon_sym_c_double] = ACTIONS(3219), - [anon_sym_c_longdouble] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_errdefer] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_expand] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3217), - [anon_sym_true] = ACTIONS(3219), - [anon_sym_false] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [sym_sink] = ACTIONS(3219), - [sym_integer] = ACTIONS(3219), - [sym_float] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_multiline_string] = ACTIONS(3217), - [sym_character] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3217), - }, - [STATE(1489)] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_test] = ACTIONS(3223), - [anon_sym_hide] = ACTIONS(3223), - [anon_sym_func] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_RPAREN] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_anyopaque] = ACTIONS(3223), - [anon_sym_bool] = ACTIONS(3223), - [anon_sym_int] = ACTIONS(3223), - [anon_sym_uint] = ACTIONS(3223), - [anon_sym_float] = ACTIONS(3223), - [anon_sym_range] = ACTIONS(3223), - [anon_sym_i8] = ACTIONS(3223), - [anon_sym_i16] = ACTIONS(3223), - [anon_sym_i32] = ACTIONS(3223), - [anon_sym_i64] = ACTIONS(3223), - [anon_sym_u8] = ACTIONS(3223), - [anon_sym_u16] = ACTIONS(3223), - [anon_sym_u32] = ACTIONS(3223), - [anon_sym_u64] = ACTIONS(3223), - [anon_sym_isize] = ACTIONS(3223), - [anon_sym_usize] = ACTIONS(3223), - [anon_sym_f32] = ACTIONS(3223), - [anon_sym_f64] = ACTIONS(3223), - [anon_sym_c_char] = ACTIONS(3223), - [anon_sym_c_schar] = ACTIONS(3223), - [anon_sym_c_uchar] = ACTIONS(3223), - [anon_sym_c_short] = ACTIONS(3223), - [anon_sym_c_ushort] = ACTIONS(3223), - [anon_sym_c_int] = ACTIONS(3223), - [anon_sym_c_uint] = ACTIONS(3223), - [anon_sym_c_long] = ACTIONS(3223), - [anon_sym_c_ulong] = ACTIONS(3223), - [anon_sym_c_longlong] = ACTIONS(3223), - [anon_sym_c_ulonglong] = ACTIONS(3223), - [anon_sym_c_float] = ACTIONS(3223), - [anon_sym_c_double] = ACTIONS(3223), - [anon_sym_c_longdouble] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_defer] = ACTIONS(3223), - [anon_sym_errdefer] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_expand] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3221), - [anon_sym_true] = ACTIONS(3223), - [anon_sym_false] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [sym_sink] = ACTIONS(3223), - [sym_integer] = ACTIONS(3223), - [sym_float] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_multiline_string] = ACTIONS(3221), - [sym_character] = ACTIONS(3221), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3221), - }, - [STATE(1490)] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_test] = ACTIONS(3227), - [anon_sym_hide] = ACTIONS(3227), - [anon_sym_func] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_RPAREN] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_anyopaque] = ACTIONS(3227), - [anon_sym_bool] = ACTIONS(3227), - [anon_sym_int] = ACTIONS(3227), - [anon_sym_uint] = ACTIONS(3227), - [anon_sym_float] = ACTIONS(3227), - [anon_sym_range] = ACTIONS(3227), - [anon_sym_i8] = ACTIONS(3227), - [anon_sym_i16] = ACTIONS(3227), - [anon_sym_i32] = ACTIONS(3227), - [anon_sym_i64] = ACTIONS(3227), - [anon_sym_u8] = ACTIONS(3227), - [anon_sym_u16] = ACTIONS(3227), - [anon_sym_u32] = ACTIONS(3227), - [anon_sym_u64] = ACTIONS(3227), - [anon_sym_isize] = ACTIONS(3227), - [anon_sym_usize] = ACTIONS(3227), - [anon_sym_f32] = ACTIONS(3227), - [anon_sym_f64] = ACTIONS(3227), - [anon_sym_c_char] = ACTIONS(3227), - [anon_sym_c_schar] = ACTIONS(3227), - [anon_sym_c_uchar] = ACTIONS(3227), - [anon_sym_c_short] = ACTIONS(3227), - [anon_sym_c_ushort] = ACTIONS(3227), - [anon_sym_c_int] = ACTIONS(3227), - [anon_sym_c_uint] = ACTIONS(3227), - [anon_sym_c_long] = ACTIONS(3227), - [anon_sym_c_ulong] = ACTIONS(3227), - [anon_sym_c_longlong] = ACTIONS(3227), - [anon_sym_c_ulonglong] = ACTIONS(3227), - [anon_sym_c_float] = ACTIONS(3227), - [anon_sym_c_double] = ACTIONS(3227), - [anon_sym_c_longdouble] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_defer] = ACTIONS(3227), - [anon_sym_errdefer] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_expand] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_DOT] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [sym_sink] = ACTIONS(3227), - [sym_integer] = ACTIONS(3227), - [sym_float] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_multiline_string] = ACTIONS(3225), - [sym_character] = ACTIONS(3225), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3225), - }, - [STATE(1491)] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_test] = ACTIONS(3231), - [anon_sym_hide] = ACTIONS(3231), - [anon_sym_func] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_DOLLAR] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_anyopaque] = ACTIONS(3231), - [anon_sym_bool] = ACTIONS(3231), - [anon_sym_int] = ACTIONS(3231), - [anon_sym_uint] = ACTIONS(3231), - [anon_sym_float] = ACTIONS(3231), - [anon_sym_range] = ACTIONS(3231), - [anon_sym_i8] = ACTIONS(3231), - [anon_sym_i16] = ACTIONS(3231), - [anon_sym_i32] = ACTIONS(3231), - [anon_sym_i64] = ACTIONS(3231), - [anon_sym_u8] = ACTIONS(3231), - [anon_sym_u16] = ACTIONS(3231), - [anon_sym_u32] = ACTIONS(3231), - [anon_sym_u64] = ACTIONS(3231), - [anon_sym_isize] = ACTIONS(3231), - [anon_sym_usize] = ACTIONS(3231), - [anon_sym_f32] = ACTIONS(3231), - [anon_sym_f64] = ACTIONS(3231), - [anon_sym_c_char] = ACTIONS(3231), - [anon_sym_c_schar] = ACTIONS(3231), - [anon_sym_c_uchar] = ACTIONS(3231), - [anon_sym_c_short] = ACTIONS(3231), - [anon_sym_c_ushort] = ACTIONS(3231), - [anon_sym_c_int] = ACTIONS(3231), - [anon_sym_c_uint] = ACTIONS(3231), - [anon_sym_c_long] = ACTIONS(3231), - [anon_sym_c_ulong] = ACTIONS(3231), - [anon_sym_c_longlong] = ACTIONS(3231), - [anon_sym_c_ulonglong] = ACTIONS(3231), - [anon_sym_c_float] = ACTIONS(3231), - [anon_sym_c_double] = ACTIONS(3231), - [anon_sym_c_longdouble] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_errdefer] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_expand] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [sym_sink] = ACTIONS(3231), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_multiline_string] = ACTIONS(3229), - [sym_character] = ACTIONS(3229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3229), - }, - [STATE(1492)] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_test] = ACTIONS(3235), - [anon_sym_hide] = ACTIONS(3235), - [anon_sym_func] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_anyopaque] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_int] = ACTIONS(3235), - [anon_sym_uint] = ACTIONS(3235), - [anon_sym_float] = ACTIONS(3235), - [anon_sym_range] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_c_char] = ACTIONS(3235), - [anon_sym_c_schar] = ACTIONS(3235), - [anon_sym_c_uchar] = ACTIONS(3235), - [anon_sym_c_short] = ACTIONS(3235), - [anon_sym_c_ushort] = ACTIONS(3235), - [anon_sym_c_int] = ACTIONS(3235), - [anon_sym_c_uint] = ACTIONS(3235), - [anon_sym_c_long] = ACTIONS(3235), - [anon_sym_c_ulong] = ACTIONS(3235), - [anon_sym_c_longlong] = ACTIONS(3235), - [anon_sym_c_ulonglong] = ACTIONS(3235), - [anon_sym_c_float] = ACTIONS(3235), - [anon_sym_c_double] = ACTIONS(3235), - [anon_sym_c_longdouble] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_errdefer] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_expand] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [sym_sink] = ACTIONS(3235), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_multiline_string] = ACTIONS(3233), - [sym_character] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3233), - }, - [STATE(1493)] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_test] = ACTIONS(3239), - [anon_sym_hide] = ACTIONS(3239), - [anon_sym_func] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_RPAREN] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_DOLLAR] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_anyopaque] = ACTIONS(3239), - [anon_sym_bool] = ACTIONS(3239), - [anon_sym_int] = ACTIONS(3239), - [anon_sym_uint] = ACTIONS(3239), - [anon_sym_float] = ACTIONS(3239), - [anon_sym_range] = ACTIONS(3239), - [anon_sym_i8] = ACTIONS(3239), - [anon_sym_i16] = ACTIONS(3239), - [anon_sym_i32] = ACTIONS(3239), - [anon_sym_i64] = ACTIONS(3239), - [anon_sym_u8] = ACTIONS(3239), - [anon_sym_u16] = ACTIONS(3239), - [anon_sym_u32] = ACTIONS(3239), - [anon_sym_u64] = ACTIONS(3239), - [anon_sym_isize] = ACTIONS(3239), - [anon_sym_usize] = ACTIONS(3239), - [anon_sym_f32] = ACTIONS(3239), - [anon_sym_f64] = ACTIONS(3239), - [anon_sym_c_char] = ACTIONS(3239), - [anon_sym_c_schar] = ACTIONS(3239), - [anon_sym_c_uchar] = ACTIONS(3239), - [anon_sym_c_short] = ACTIONS(3239), - [anon_sym_c_ushort] = ACTIONS(3239), - [anon_sym_c_int] = ACTIONS(3239), - [anon_sym_c_uint] = ACTIONS(3239), - [anon_sym_c_long] = ACTIONS(3239), - [anon_sym_c_ulong] = ACTIONS(3239), - [anon_sym_c_longlong] = ACTIONS(3239), - [anon_sym_c_ulonglong] = ACTIONS(3239), - [anon_sym_c_float] = ACTIONS(3239), - [anon_sym_c_double] = ACTIONS(3239), - [anon_sym_c_longdouble] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_errdefer] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_else] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_expand] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_true] = ACTIONS(3239), - [anon_sym_false] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [sym_sink] = ACTIONS(3239), - [sym_integer] = ACTIONS(3239), - [sym_float] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_multiline_string] = ACTIONS(3237), - [sym_character] = ACTIONS(3237), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3237), - }, - [STATE(1494)] = { - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_test] = ACTIONS(3243), - [anon_sym_hide] = ACTIONS(3243), - [anon_sym_func] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_RPAREN] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_anyopaque] = ACTIONS(3243), - [anon_sym_bool] = ACTIONS(3243), - [anon_sym_int] = ACTIONS(3243), - [anon_sym_uint] = ACTIONS(3243), - [anon_sym_float] = ACTIONS(3243), - [anon_sym_range] = ACTIONS(3243), - [anon_sym_i8] = ACTIONS(3243), - [anon_sym_i16] = ACTIONS(3243), - [anon_sym_i32] = ACTIONS(3243), - [anon_sym_i64] = ACTIONS(3243), - [anon_sym_u8] = ACTIONS(3243), - [anon_sym_u16] = ACTIONS(3243), - [anon_sym_u32] = ACTIONS(3243), - [anon_sym_u64] = ACTIONS(3243), - [anon_sym_isize] = ACTIONS(3243), - [anon_sym_usize] = ACTIONS(3243), - [anon_sym_f32] = ACTIONS(3243), - [anon_sym_f64] = ACTIONS(3243), - [anon_sym_c_char] = ACTIONS(3243), - [anon_sym_c_schar] = ACTIONS(3243), - [anon_sym_c_uchar] = ACTIONS(3243), - [anon_sym_c_short] = ACTIONS(3243), - [anon_sym_c_ushort] = ACTIONS(3243), - [anon_sym_c_int] = ACTIONS(3243), - [anon_sym_c_uint] = ACTIONS(3243), - [anon_sym_c_long] = ACTIONS(3243), - [anon_sym_c_ulong] = ACTIONS(3243), - [anon_sym_c_longlong] = ACTIONS(3243), - [anon_sym_c_ulonglong] = ACTIONS(3243), - [anon_sym_c_float] = ACTIONS(3243), - [anon_sym_c_double] = ACTIONS(3243), - [anon_sym_c_longdouble] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_defer] = ACTIONS(3243), - [anon_sym_errdefer] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_else] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_expand] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [sym_sink] = ACTIONS(3243), - [sym_integer] = ACTIONS(3243), - [sym_float] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_multiline_string] = ACTIONS(3241), - [sym_character] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3241), - }, - [STATE(1495)] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_test] = ACTIONS(3247), - [anon_sym_hide] = ACTIONS(3247), - [anon_sym_func] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_RPAREN] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_anyopaque] = ACTIONS(3247), - [anon_sym_bool] = ACTIONS(3247), - [anon_sym_int] = ACTIONS(3247), - [anon_sym_uint] = ACTIONS(3247), - [anon_sym_float] = ACTIONS(3247), - [anon_sym_range] = ACTIONS(3247), - [anon_sym_i8] = ACTIONS(3247), - [anon_sym_i16] = ACTIONS(3247), - [anon_sym_i32] = ACTIONS(3247), - [anon_sym_i64] = ACTIONS(3247), - [anon_sym_u8] = ACTIONS(3247), - [anon_sym_u16] = ACTIONS(3247), - [anon_sym_u32] = ACTIONS(3247), - [anon_sym_u64] = ACTIONS(3247), - [anon_sym_isize] = ACTIONS(3247), - [anon_sym_usize] = ACTIONS(3247), - [anon_sym_f32] = ACTIONS(3247), - [anon_sym_f64] = ACTIONS(3247), - [anon_sym_c_char] = ACTIONS(3247), - [anon_sym_c_schar] = ACTIONS(3247), - [anon_sym_c_uchar] = ACTIONS(3247), - [anon_sym_c_short] = ACTIONS(3247), - [anon_sym_c_ushort] = ACTIONS(3247), - [anon_sym_c_int] = ACTIONS(3247), - [anon_sym_c_uint] = ACTIONS(3247), - [anon_sym_c_long] = ACTIONS(3247), - [anon_sym_c_ulong] = ACTIONS(3247), - [anon_sym_c_longlong] = ACTIONS(3247), - [anon_sym_c_ulonglong] = ACTIONS(3247), - [anon_sym_c_float] = ACTIONS(3247), - [anon_sym_c_double] = ACTIONS(3247), - [anon_sym_c_longdouble] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_errdefer] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_else] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_expand] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [sym_sink] = ACTIONS(3247), - [sym_integer] = ACTIONS(3247), - [sym_float] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_multiline_string] = ACTIONS(3245), - [sym_character] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3245), - }, - [STATE(1496)] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_test] = ACTIONS(3251), - [anon_sym_hide] = ACTIONS(3251), - [anon_sym_func] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_DOLLAR] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_anyopaque] = ACTIONS(3251), - [anon_sym_bool] = ACTIONS(3251), - [anon_sym_int] = ACTIONS(3251), - [anon_sym_uint] = ACTIONS(3251), - [anon_sym_float] = ACTIONS(3251), - [anon_sym_range] = ACTIONS(3251), - [anon_sym_i8] = ACTIONS(3251), - [anon_sym_i16] = ACTIONS(3251), - [anon_sym_i32] = ACTIONS(3251), - [anon_sym_i64] = ACTIONS(3251), - [anon_sym_u8] = ACTIONS(3251), - [anon_sym_u16] = ACTIONS(3251), - [anon_sym_u32] = ACTIONS(3251), - [anon_sym_u64] = ACTIONS(3251), - [anon_sym_isize] = ACTIONS(3251), - [anon_sym_usize] = ACTIONS(3251), - [anon_sym_f32] = ACTIONS(3251), - [anon_sym_f64] = ACTIONS(3251), - [anon_sym_c_char] = ACTIONS(3251), - [anon_sym_c_schar] = ACTIONS(3251), - [anon_sym_c_uchar] = ACTIONS(3251), - [anon_sym_c_short] = ACTIONS(3251), - [anon_sym_c_ushort] = ACTIONS(3251), - [anon_sym_c_int] = ACTIONS(3251), - [anon_sym_c_uint] = ACTIONS(3251), - [anon_sym_c_long] = ACTIONS(3251), - [anon_sym_c_ulong] = ACTIONS(3251), - [anon_sym_c_longlong] = ACTIONS(3251), - [anon_sym_c_ulonglong] = ACTIONS(3251), - [anon_sym_c_float] = ACTIONS(3251), - [anon_sym_c_double] = ACTIONS(3251), - [anon_sym_c_longdouble] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_errdefer] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_else] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_expand] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_DOT] = ACTIONS(3249), - [anon_sym_true] = ACTIONS(3251), - [anon_sym_false] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [sym_sink] = ACTIONS(3251), - [sym_integer] = ACTIONS(3251), - [sym_float] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_multiline_string] = ACTIONS(3249), - [sym_character] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3249), - }, - [STATE(1497)] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_test] = ACTIONS(3255), - [anon_sym_hide] = ACTIONS(3255), - [anon_sym_func] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_RPAREN] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_anyopaque] = ACTIONS(3255), - [anon_sym_bool] = ACTIONS(3255), - [anon_sym_int] = ACTIONS(3255), - [anon_sym_uint] = ACTIONS(3255), - [anon_sym_float] = ACTIONS(3255), - [anon_sym_range] = ACTIONS(3255), - [anon_sym_i8] = ACTIONS(3255), - [anon_sym_i16] = ACTIONS(3255), - [anon_sym_i32] = ACTIONS(3255), - [anon_sym_i64] = ACTIONS(3255), - [anon_sym_u8] = ACTIONS(3255), - [anon_sym_u16] = ACTIONS(3255), - [anon_sym_u32] = ACTIONS(3255), - [anon_sym_u64] = ACTIONS(3255), - [anon_sym_isize] = ACTIONS(3255), - [anon_sym_usize] = ACTIONS(3255), - [anon_sym_f32] = ACTIONS(3255), - [anon_sym_f64] = ACTIONS(3255), - [anon_sym_c_char] = ACTIONS(3255), - [anon_sym_c_schar] = ACTIONS(3255), - [anon_sym_c_uchar] = ACTIONS(3255), - [anon_sym_c_short] = ACTIONS(3255), - [anon_sym_c_ushort] = ACTIONS(3255), - [anon_sym_c_int] = ACTIONS(3255), - [anon_sym_c_uint] = ACTIONS(3255), - [anon_sym_c_long] = ACTIONS(3255), - [anon_sym_c_ulong] = ACTIONS(3255), - [anon_sym_c_longlong] = ACTIONS(3255), - [anon_sym_c_ulonglong] = ACTIONS(3255), - [anon_sym_c_float] = ACTIONS(3255), - [anon_sym_c_double] = ACTIONS(3255), - [anon_sym_c_longdouble] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_defer] = ACTIONS(3255), - [anon_sym_errdefer] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_expand] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_true] = ACTIONS(3255), - [anon_sym_false] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [sym_sink] = ACTIONS(3255), - [sym_integer] = ACTIONS(3255), - [sym_float] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_multiline_string] = ACTIONS(3253), - [sym_character] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3253), - }, - [STATE(1498)] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_test] = ACTIONS(3259), - [anon_sym_hide] = ACTIONS(3259), - [anon_sym_func] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_DOLLAR] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_anyopaque] = ACTIONS(3259), - [anon_sym_bool] = ACTIONS(3259), - [anon_sym_int] = ACTIONS(3259), - [anon_sym_uint] = ACTIONS(3259), - [anon_sym_float] = ACTIONS(3259), - [anon_sym_range] = ACTIONS(3259), - [anon_sym_i8] = ACTIONS(3259), - [anon_sym_i16] = ACTIONS(3259), - [anon_sym_i32] = ACTIONS(3259), - [anon_sym_i64] = ACTIONS(3259), - [anon_sym_u8] = ACTIONS(3259), - [anon_sym_u16] = ACTIONS(3259), - [anon_sym_u32] = ACTIONS(3259), - [anon_sym_u64] = ACTIONS(3259), - [anon_sym_isize] = ACTIONS(3259), - [anon_sym_usize] = ACTIONS(3259), - [anon_sym_f32] = ACTIONS(3259), - [anon_sym_f64] = ACTIONS(3259), - [anon_sym_c_char] = ACTIONS(3259), - [anon_sym_c_schar] = ACTIONS(3259), - [anon_sym_c_uchar] = ACTIONS(3259), - [anon_sym_c_short] = ACTIONS(3259), - [anon_sym_c_ushort] = ACTIONS(3259), - [anon_sym_c_int] = ACTIONS(3259), - [anon_sym_c_uint] = ACTIONS(3259), - [anon_sym_c_long] = ACTIONS(3259), - [anon_sym_c_ulong] = ACTIONS(3259), - [anon_sym_c_longlong] = ACTIONS(3259), - [anon_sym_c_ulonglong] = ACTIONS(3259), - [anon_sym_c_float] = ACTIONS(3259), - [anon_sym_c_double] = ACTIONS(3259), - [anon_sym_c_longdouble] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_errdefer] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_else] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_expand] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_DOT] = ACTIONS(3257), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [sym_sink] = ACTIONS(3259), - [sym_integer] = ACTIONS(3259), - [sym_float] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_multiline_string] = ACTIONS(3257), - [sym_character] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3257), - }, - [STATE(1499)] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3263), - [anon_sym_import] = ACTIONS(3263), - [anon_sym_test] = ACTIONS(3263), - [anon_sym_hide] = ACTIONS(3263), - [anon_sym_func] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_RPAREN] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_DOLLAR] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_void] = ACTIONS(3263), - [anon_sym_anyopaque] = ACTIONS(3263), - [anon_sym_bool] = ACTIONS(3263), - [anon_sym_int] = ACTIONS(3263), - [anon_sym_uint] = ACTIONS(3263), - [anon_sym_float] = ACTIONS(3263), - [anon_sym_range] = ACTIONS(3263), - [anon_sym_i8] = ACTIONS(3263), - [anon_sym_i16] = ACTIONS(3263), - [anon_sym_i32] = ACTIONS(3263), - [anon_sym_i64] = ACTIONS(3263), - [anon_sym_u8] = ACTIONS(3263), - [anon_sym_u16] = ACTIONS(3263), - [anon_sym_u32] = ACTIONS(3263), - [anon_sym_u64] = ACTIONS(3263), - [anon_sym_isize] = ACTIONS(3263), - [anon_sym_usize] = ACTIONS(3263), - [anon_sym_f32] = ACTIONS(3263), - [anon_sym_f64] = ACTIONS(3263), - [anon_sym_c_char] = ACTIONS(3263), - [anon_sym_c_schar] = ACTIONS(3263), - [anon_sym_c_uchar] = ACTIONS(3263), - [anon_sym_c_short] = ACTIONS(3263), - [anon_sym_c_ushort] = ACTIONS(3263), - [anon_sym_c_int] = ACTIONS(3263), - [anon_sym_c_uint] = ACTIONS(3263), - [anon_sym_c_long] = ACTIONS(3263), - [anon_sym_c_ulong] = ACTIONS(3263), - [anon_sym_c_longlong] = ACTIONS(3263), - [anon_sym_c_ulonglong] = ACTIONS(3263), - [anon_sym_c_float] = ACTIONS(3263), - [anon_sym_c_double] = ACTIONS(3263), - [anon_sym_c_longdouble] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_yield] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_defer] = ACTIONS(3263), - [anon_sym_errdefer] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_else] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_expand] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_DOT] = ACTIONS(3261), - [anon_sym_true] = ACTIONS(3263), - [anon_sym_false] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_undefined] = ACTIONS(3263), - [sym_sink] = ACTIONS(3263), - [sym_integer] = ACTIONS(3263), - [sym_float] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_multiline_string] = ACTIONS(3261), - [sym_character] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3261), - }, - [STATE(1500)] = { - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_test] = ACTIONS(3267), - [anon_sym_hide] = ACTIONS(3267), - [anon_sym_func] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_anyopaque] = ACTIONS(3267), - [anon_sym_bool] = ACTIONS(3267), - [anon_sym_int] = ACTIONS(3267), - [anon_sym_uint] = ACTIONS(3267), - [anon_sym_float] = ACTIONS(3267), - [anon_sym_range] = ACTIONS(3267), - [anon_sym_i8] = ACTIONS(3267), - [anon_sym_i16] = ACTIONS(3267), - [anon_sym_i32] = ACTIONS(3267), - [anon_sym_i64] = ACTIONS(3267), - [anon_sym_u8] = ACTIONS(3267), - [anon_sym_u16] = ACTIONS(3267), - [anon_sym_u32] = ACTIONS(3267), - [anon_sym_u64] = ACTIONS(3267), - [anon_sym_isize] = ACTIONS(3267), - [anon_sym_usize] = ACTIONS(3267), - [anon_sym_f32] = ACTIONS(3267), - [anon_sym_f64] = ACTIONS(3267), - [anon_sym_c_char] = ACTIONS(3267), - [anon_sym_c_schar] = ACTIONS(3267), - [anon_sym_c_uchar] = ACTIONS(3267), - [anon_sym_c_short] = ACTIONS(3267), - [anon_sym_c_ushort] = ACTIONS(3267), - [anon_sym_c_int] = ACTIONS(3267), - [anon_sym_c_uint] = ACTIONS(3267), - [anon_sym_c_long] = ACTIONS(3267), - [anon_sym_c_ulong] = ACTIONS(3267), - [anon_sym_c_longlong] = ACTIONS(3267), - [anon_sym_c_ulonglong] = ACTIONS(3267), - [anon_sym_c_float] = ACTIONS(3267), - [anon_sym_c_double] = ACTIONS(3267), - [anon_sym_c_longdouble] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_errdefer] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_else] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_expand] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_DOT] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [sym_sink] = ACTIONS(3267), - [sym_integer] = ACTIONS(3267), - [sym_float] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [sym_multiline_string] = ACTIONS(3265), - [sym_character] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3265), - }, - [STATE(1501)] = { - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_test] = ACTIONS(3271), - [anon_sym_hide] = ACTIONS(3271), - [anon_sym_func] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_RPAREN] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_anyopaque] = ACTIONS(3271), - [anon_sym_bool] = ACTIONS(3271), - [anon_sym_int] = ACTIONS(3271), - [anon_sym_uint] = ACTIONS(3271), - [anon_sym_float] = ACTIONS(3271), - [anon_sym_range] = ACTIONS(3271), - [anon_sym_i8] = ACTIONS(3271), - [anon_sym_i16] = ACTIONS(3271), - [anon_sym_i32] = ACTIONS(3271), - [anon_sym_i64] = ACTIONS(3271), - [anon_sym_u8] = ACTIONS(3271), - [anon_sym_u16] = ACTIONS(3271), - [anon_sym_u32] = ACTIONS(3271), - [anon_sym_u64] = ACTIONS(3271), - [anon_sym_isize] = ACTIONS(3271), - [anon_sym_usize] = ACTIONS(3271), - [anon_sym_f32] = ACTIONS(3271), - [anon_sym_f64] = ACTIONS(3271), - [anon_sym_c_char] = ACTIONS(3271), - [anon_sym_c_schar] = ACTIONS(3271), - [anon_sym_c_uchar] = ACTIONS(3271), - [anon_sym_c_short] = ACTIONS(3271), - [anon_sym_c_ushort] = ACTIONS(3271), - [anon_sym_c_int] = ACTIONS(3271), - [anon_sym_c_uint] = ACTIONS(3271), - [anon_sym_c_long] = ACTIONS(3271), - [anon_sym_c_ulong] = ACTIONS(3271), - [anon_sym_c_longlong] = ACTIONS(3271), - [anon_sym_c_ulonglong] = ACTIONS(3271), - [anon_sym_c_float] = ACTIONS(3271), - [anon_sym_c_double] = ACTIONS(3271), - [anon_sym_c_longdouble] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_errdefer] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_expand] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [sym_sink] = ACTIONS(3271), - [sym_integer] = ACTIONS(3271), - [sym_float] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3269), - [sym_multiline_string] = ACTIONS(3269), - [sym_character] = ACTIONS(3269), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3269), - }, - [STATE(1502)] = { - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_test] = ACTIONS(3275), - [anon_sym_hide] = ACTIONS(3275), - [anon_sym_func] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_RPAREN] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_anyopaque] = ACTIONS(3275), - [anon_sym_bool] = ACTIONS(3275), - [anon_sym_int] = ACTIONS(3275), - [anon_sym_uint] = ACTIONS(3275), - [anon_sym_float] = ACTIONS(3275), - [anon_sym_range] = ACTIONS(3275), - [anon_sym_i8] = ACTIONS(3275), - [anon_sym_i16] = ACTIONS(3275), - [anon_sym_i32] = ACTIONS(3275), - [anon_sym_i64] = ACTIONS(3275), - [anon_sym_u8] = ACTIONS(3275), - [anon_sym_u16] = ACTIONS(3275), - [anon_sym_u32] = ACTIONS(3275), - [anon_sym_u64] = ACTIONS(3275), - [anon_sym_isize] = ACTIONS(3275), - [anon_sym_usize] = ACTIONS(3275), - [anon_sym_f32] = ACTIONS(3275), - [anon_sym_f64] = ACTIONS(3275), - [anon_sym_c_char] = ACTIONS(3275), - [anon_sym_c_schar] = ACTIONS(3275), - [anon_sym_c_uchar] = ACTIONS(3275), - [anon_sym_c_short] = ACTIONS(3275), - [anon_sym_c_ushort] = ACTIONS(3275), - [anon_sym_c_int] = ACTIONS(3275), - [anon_sym_c_uint] = ACTIONS(3275), - [anon_sym_c_long] = ACTIONS(3275), - [anon_sym_c_ulong] = ACTIONS(3275), - [anon_sym_c_longlong] = ACTIONS(3275), - [anon_sym_c_ulonglong] = ACTIONS(3275), - [anon_sym_c_float] = ACTIONS(3275), - [anon_sym_c_double] = ACTIONS(3275), - [anon_sym_c_longdouble] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_errdefer] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_expand] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_DOT] = ACTIONS(3273), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [sym_sink] = ACTIONS(3275), - [sym_integer] = ACTIONS(3275), - [sym_float] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [sym_multiline_string] = ACTIONS(3273), - [sym_character] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3273), - }, - [STATE(1503)] = { - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_test] = ACTIONS(3279), - [anon_sym_hide] = ACTIONS(3279), - [anon_sym_func] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_RPAREN] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_anyopaque] = ACTIONS(3279), - [anon_sym_bool] = ACTIONS(3279), - [anon_sym_int] = ACTIONS(3279), - [anon_sym_uint] = ACTIONS(3279), - [anon_sym_float] = ACTIONS(3279), - [anon_sym_range] = ACTIONS(3279), - [anon_sym_i8] = ACTIONS(3279), - [anon_sym_i16] = ACTIONS(3279), - [anon_sym_i32] = ACTIONS(3279), - [anon_sym_i64] = ACTIONS(3279), - [anon_sym_u8] = ACTIONS(3279), - [anon_sym_u16] = ACTIONS(3279), - [anon_sym_u32] = ACTIONS(3279), - [anon_sym_u64] = ACTIONS(3279), - [anon_sym_isize] = ACTIONS(3279), - [anon_sym_usize] = ACTIONS(3279), - [anon_sym_f32] = ACTIONS(3279), - [anon_sym_f64] = ACTIONS(3279), - [anon_sym_c_char] = ACTIONS(3279), - [anon_sym_c_schar] = ACTIONS(3279), - [anon_sym_c_uchar] = ACTIONS(3279), - [anon_sym_c_short] = ACTIONS(3279), - [anon_sym_c_ushort] = ACTIONS(3279), - [anon_sym_c_int] = ACTIONS(3279), - [anon_sym_c_uint] = ACTIONS(3279), - [anon_sym_c_long] = ACTIONS(3279), - [anon_sym_c_ulong] = ACTIONS(3279), - [anon_sym_c_longlong] = ACTIONS(3279), - [anon_sym_c_ulonglong] = ACTIONS(3279), - [anon_sym_c_float] = ACTIONS(3279), - [anon_sym_c_double] = ACTIONS(3279), - [anon_sym_c_longdouble] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_defer] = ACTIONS(3279), - [anon_sym_errdefer] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_expand] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_true] = ACTIONS(3279), - [anon_sym_false] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [sym_sink] = ACTIONS(3279), - [sym_integer] = ACTIONS(3279), - [sym_float] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [sym_multiline_string] = ACTIONS(3277), - [sym_character] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3277), - }, - [STATE(1504)] = { - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_test] = ACTIONS(3283), - [anon_sym_hide] = ACTIONS(3283), - [anon_sym_func] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_DOLLAR] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_anyopaque] = ACTIONS(3283), - [anon_sym_bool] = ACTIONS(3283), - [anon_sym_int] = ACTIONS(3283), - [anon_sym_uint] = ACTIONS(3283), - [anon_sym_float] = ACTIONS(3283), - [anon_sym_range] = ACTIONS(3283), - [anon_sym_i8] = ACTIONS(3283), - [anon_sym_i16] = ACTIONS(3283), - [anon_sym_i32] = ACTIONS(3283), - [anon_sym_i64] = ACTIONS(3283), - [anon_sym_u8] = ACTIONS(3283), - [anon_sym_u16] = ACTIONS(3283), - [anon_sym_u32] = ACTIONS(3283), - [anon_sym_u64] = ACTIONS(3283), - [anon_sym_isize] = ACTIONS(3283), - [anon_sym_usize] = ACTIONS(3283), - [anon_sym_f32] = ACTIONS(3283), - [anon_sym_f64] = ACTIONS(3283), - [anon_sym_c_char] = ACTIONS(3283), - [anon_sym_c_schar] = ACTIONS(3283), - [anon_sym_c_uchar] = ACTIONS(3283), - [anon_sym_c_short] = ACTIONS(3283), - [anon_sym_c_ushort] = ACTIONS(3283), - [anon_sym_c_int] = ACTIONS(3283), - [anon_sym_c_uint] = ACTIONS(3283), - [anon_sym_c_long] = ACTIONS(3283), - [anon_sym_c_ulong] = ACTIONS(3283), - [anon_sym_c_longlong] = ACTIONS(3283), - [anon_sym_c_ulonglong] = ACTIONS(3283), - [anon_sym_c_float] = ACTIONS(3283), - [anon_sym_c_double] = ACTIONS(3283), - [anon_sym_c_longdouble] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_defer] = ACTIONS(3283), - [anon_sym_errdefer] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_expand] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [sym_sink] = ACTIONS(3283), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [sym_multiline_string] = ACTIONS(3281), - [sym_character] = ACTIONS(3281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3281), - }, - [STATE(1505)] = { - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_test] = ACTIONS(3287), - [anon_sym_hide] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_anyopaque] = ACTIONS(3287), - [anon_sym_bool] = ACTIONS(3287), - [anon_sym_int] = ACTIONS(3287), - [anon_sym_uint] = ACTIONS(3287), - [anon_sym_float] = ACTIONS(3287), - [anon_sym_range] = ACTIONS(3287), - [anon_sym_i8] = ACTIONS(3287), - [anon_sym_i16] = ACTIONS(3287), - [anon_sym_i32] = ACTIONS(3287), - [anon_sym_i64] = ACTIONS(3287), - [anon_sym_u8] = ACTIONS(3287), - [anon_sym_u16] = ACTIONS(3287), - [anon_sym_u32] = ACTIONS(3287), - [anon_sym_u64] = ACTIONS(3287), - [anon_sym_isize] = ACTIONS(3287), - [anon_sym_usize] = ACTIONS(3287), - [anon_sym_f32] = ACTIONS(3287), - [anon_sym_f64] = ACTIONS(3287), - [anon_sym_c_char] = ACTIONS(3287), - [anon_sym_c_schar] = ACTIONS(3287), - [anon_sym_c_uchar] = ACTIONS(3287), - [anon_sym_c_short] = ACTIONS(3287), - [anon_sym_c_ushort] = ACTIONS(3287), - [anon_sym_c_int] = ACTIONS(3287), - [anon_sym_c_uint] = ACTIONS(3287), - [anon_sym_c_long] = ACTIONS(3287), - [anon_sym_c_ulong] = ACTIONS(3287), - [anon_sym_c_longlong] = ACTIONS(3287), - [anon_sym_c_ulonglong] = ACTIONS(3287), - [anon_sym_c_float] = ACTIONS(3287), - [anon_sym_c_double] = ACTIONS(3287), - [anon_sym_c_longdouble] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_defer] = ACTIONS(3287), - [anon_sym_errdefer] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_expand] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_true] = ACTIONS(3287), - [anon_sym_false] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [sym_sink] = ACTIONS(3287), - [sym_integer] = ACTIONS(3287), - [sym_float] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [sym_multiline_string] = ACTIONS(3285), - [sym_character] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3285), - }, - [STATE(1506)] = { - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_identifier] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_test] = ACTIONS(3291), - [anon_sym_hide] = ACTIONS(3291), - [anon_sym_func] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_anyopaque] = ACTIONS(3291), - [anon_sym_bool] = ACTIONS(3291), - [anon_sym_int] = ACTIONS(3291), - [anon_sym_uint] = ACTIONS(3291), - [anon_sym_float] = ACTIONS(3291), - [anon_sym_range] = ACTIONS(3291), - [anon_sym_i8] = ACTIONS(3291), - [anon_sym_i16] = ACTIONS(3291), - [anon_sym_i32] = ACTIONS(3291), - [anon_sym_i64] = ACTIONS(3291), - [anon_sym_u8] = ACTIONS(3291), - [anon_sym_u16] = ACTIONS(3291), - [anon_sym_u32] = ACTIONS(3291), - [anon_sym_u64] = ACTIONS(3291), - [anon_sym_isize] = ACTIONS(3291), - [anon_sym_usize] = ACTIONS(3291), - [anon_sym_f32] = ACTIONS(3291), - [anon_sym_f64] = ACTIONS(3291), - [anon_sym_c_char] = ACTIONS(3291), - [anon_sym_c_schar] = ACTIONS(3291), - [anon_sym_c_uchar] = ACTIONS(3291), - [anon_sym_c_short] = ACTIONS(3291), - [anon_sym_c_ushort] = ACTIONS(3291), - [anon_sym_c_int] = ACTIONS(3291), - [anon_sym_c_uint] = ACTIONS(3291), - [anon_sym_c_long] = ACTIONS(3291), - [anon_sym_c_ulong] = ACTIONS(3291), - [anon_sym_c_longlong] = ACTIONS(3291), - [anon_sym_c_ulonglong] = ACTIONS(3291), - [anon_sym_c_float] = ACTIONS(3291), - [anon_sym_c_double] = ACTIONS(3291), - [anon_sym_c_longdouble] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_defer] = ACTIONS(3291), - [anon_sym_errdefer] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_expand] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_DOT] = ACTIONS(3289), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [sym_sink] = ACTIONS(3291), - [sym_integer] = ACTIONS(3291), - [sym_float] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [sym_multiline_string] = ACTIONS(3289), - [sym_character] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3289), - }, - [STATE(1507)] = { - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_test] = ACTIONS(3295), - [anon_sym_hide] = ACTIONS(3295), - [anon_sym_func] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_anyopaque] = ACTIONS(3295), - [anon_sym_bool] = ACTIONS(3295), - [anon_sym_int] = ACTIONS(3295), - [anon_sym_uint] = ACTIONS(3295), - [anon_sym_float] = ACTIONS(3295), - [anon_sym_range] = ACTIONS(3295), - [anon_sym_i8] = ACTIONS(3295), - [anon_sym_i16] = ACTIONS(3295), - [anon_sym_i32] = ACTIONS(3295), - [anon_sym_i64] = ACTIONS(3295), - [anon_sym_u8] = ACTIONS(3295), - [anon_sym_u16] = ACTIONS(3295), - [anon_sym_u32] = ACTIONS(3295), - [anon_sym_u64] = ACTIONS(3295), - [anon_sym_isize] = ACTIONS(3295), - [anon_sym_usize] = ACTIONS(3295), - [anon_sym_f32] = ACTIONS(3295), - [anon_sym_f64] = ACTIONS(3295), - [anon_sym_c_char] = ACTIONS(3295), - [anon_sym_c_schar] = ACTIONS(3295), - [anon_sym_c_uchar] = ACTIONS(3295), - [anon_sym_c_short] = ACTIONS(3295), - [anon_sym_c_ushort] = ACTIONS(3295), - [anon_sym_c_int] = ACTIONS(3295), - [anon_sym_c_uint] = ACTIONS(3295), - [anon_sym_c_long] = ACTIONS(3295), - [anon_sym_c_ulong] = ACTIONS(3295), - [anon_sym_c_longlong] = ACTIONS(3295), - [anon_sym_c_ulonglong] = ACTIONS(3295), - [anon_sym_c_float] = ACTIONS(3295), - [anon_sym_c_double] = ACTIONS(3295), - [anon_sym_c_longdouble] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_errdefer] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_expand] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3293), - [anon_sym_true] = ACTIONS(3295), - [anon_sym_false] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [sym_sink] = ACTIONS(3295), - [sym_integer] = ACTIONS(3295), - [sym_float] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [sym_multiline_string] = ACTIONS(3293), - [sym_character] = ACTIONS(3293), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3293), - }, - [STATE(1508)] = { - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_test] = ACTIONS(3299), - [anon_sym_hide] = ACTIONS(3299), - [anon_sym_func] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_RPAREN] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_anyopaque] = ACTIONS(3299), - [anon_sym_bool] = ACTIONS(3299), - [anon_sym_int] = ACTIONS(3299), - [anon_sym_uint] = ACTIONS(3299), - [anon_sym_float] = ACTIONS(3299), - [anon_sym_range] = ACTIONS(3299), - [anon_sym_i8] = ACTIONS(3299), - [anon_sym_i16] = ACTIONS(3299), - [anon_sym_i32] = ACTIONS(3299), - [anon_sym_i64] = ACTIONS(3299), - [anon_sym_u8] = ACTIONS(3299), - [anon_sym_u16] = ACTIONS(3299), - [anon_sym_u32] = ACTIONS(3299), - [anon_sym_u64] = ACTIONS(3299), - [anon_sym_isize] = ACTIONS(3299), - [anon_sym_usize] = ACTIONS(3299), - [anon_sym_f32] = ACTIONS(3299), - [anon_sym_f64] = ACTIONS(3299), - [anon_sym_c_char] = ACTIONS(3299), - [anon_sym_c_schar] = ACTIONS(3299), - [anon_sym_c_uchar] = ACTIONS(3299), - [anon_sym_c_short] = ACTIONS(3299), - [anon_sym_c_ushort] = ACTIONS(3299), - [anon_sym_c_int] = ACTIONS(3299), - [anon_sym_c_uint] = ACTIONS(3299), - [anon_sym_c_long] = ACTIONS(3299), - [anon_sym_c_ulong] = ACTIONS(3299), - [anon_sym_c_longlong] = ACTIONS(3299), - [anon_sym_c_ulonglong] = ACTIONS(3299), - [anon_sym_c_float] = ACTIONS(3299), - [anon_sym_c_double] = ACTIONS(3299), - [anon_sym_c_longdouble] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_defer] = ACTIONS(3299), - [anon_sym_errdefer] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_expand] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_DOT] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [sym_sink] = ACTIONS(3299), - [sym_integer] = ACTIONS(3299), - [sym_float] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_multiline_string] = ACTIONS(3297), - [sym_character] = ACTIONS(3297), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3297), - }, - [STATE(1509)] = { - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_identifier] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_test] = ACTIONS(3303), - [anon_sym_hide] = ACTIONS(3303), - [anon_sym_func] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_RPAREN] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_anyopaque] = ACTIONS(3303), - [anon_sym_bool] = ACTIONS(3303), - [anon_sym_int] = ACTIONS(3303), - [anon_sym_uint] = ACTIONS(3303), - [anon_sym_float] = ACTIONS(3303), - [anon_sym_range] = ACTIONS(3303), - [anon_sym_i8] = ACTIONS(3303), - [anon_sym_i16] = ACTIONS(3303), - [anon_sym_i32] = ACTIONS(3303), - [anon_sym_i64] = ACTIONS(3303), - [anon_sym_u8] = ACTIONS(3303), - [anon_sym_u16] = ACTIONS(3303), - [anon_sym_u32] = ACTIONS(3303), - [anon_sym_u64] = ACTIONS(3303), - [anon_sym_isize] = ACTIONS(3303), - [anon_sym_usize] = ACTIONS(3303), - [anon_sym_f32] = ACTIONS(3303), - [anon_sym_f64] = ACTIONS(3303), - [anon_sym_c_char] = ACTIONS(3303), - [anon_sym_c_schar] = ACTIONS(3303), - [anon_sym_c_uchar] = ACTIONS(3303), - [anon_sym_c_short] = ACTIONS(3303), - [anon_sym_c_ushort] = ACTIONS(3303), - [anon_sym_c_int] = ACTIONS(3303), - [anon_sym_c_uint] = ACTIONS(3303), - [anon_sym_c_long] = ACTIONS(3303), - [anon_sym_c_ulong] = ACTIONS(3303), - [anon_sym_c_longlong] = ACTIONS(3303), - [anon_sym_c_ulonglong] = ACTIONS(3303), - [anon_sym_c_float] = ACTIONS(3303), - [anon_sym_c_double] = ACTIONS(3303), - [anon_sym_c_longdouble] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_defer] = ACTIONS(3303), - [anon_sym_errdefer] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_expand] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_DOT] = ACTIONS(3301), - [anon_sym_true] = ACTIONS(3303), - [anon_sym_false] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [sym_sink] = ACTIONS(3303), - [sym_integer] = ACTIONS(3303), - [sym_float] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [sym_multiline_string] = ACTIONS(3301), - [sym_character] = ACTIONS(3301), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3301), - }, - [STATE(1510)] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_test] = ACTIONS(3307), - [anon_sym_hide] = ACTIONS(3307), - [anon_sym_func] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_RPAREN] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_DOLLAR] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_anyopaque] = ACTIONS(3307), - [anon_sym_bool] = ACTIONS(3307), - [anon_sym_int] = ACTIONS(3307), - [anon_sym_uint] = ACTIONS(3307), - [anon_sym_float] = ACTIONS(3307), - [anon_sym_range] = ACTIONS(3307), - [anon_sym_i8] = ACTIONS(3307), - [anon_sym_i16] = ACTIONS(3307), - [anon_sym_i32] = ACTIONS(3307), - [anon_sym_i64] = ACTIONS(3307), - [anon_sym_u8] = ACTIONS(3307), - [anon_sym_u16] = ACTIONS(3307), - [anon_sym_u32] = ACTIONS(3307), - [anon_sym_u64] = ACTIONS(3307), - [anon_sym_isize] = ACTIONS(3307), - [anon_sym_usize] = ACTIONS(3307), - [anon_sym_f32] = ACTIONS(3307), - [anon_sym_f64] = ACTIONS(3307), - [anon_sym_c_char] = ACTIONS(3307), - [anon_sym_c_schar] = ACTIONS(3307), - [anon_sym_c_uchar] = ACTIONS(3307), - [anon_sym_c_short] = ACTIONS(3307), - [anon_sym_c_ushort] = ACTIONS(3307), - [anon_sym_c_int] = ACTIONS(3307), - [anon_sym_c_uint] = ACTIONS(3307), - [anon_sym_c_long] = ACTIONS(3307), - [anon_sym_c_ulong] = ACTIONS(3307), - [anon_sym_c_longlong] = ACTIONS(3307), - [anon_sym_c_ulonglong] = ACTIONS(3307), - [anon_sym_c_float] = ACTIONS(3307), - [anon_sym_c_double] = ACTIONS(3307), - [anon_sym_c_longdouble] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_errdefer] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_expand] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_DOT] = ACTIONS(3305), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [sym_sink] = ACTIONS(3307), - [sym_integer] = ACTIONS(3307), - [sym_float] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_multiline_string] = ACTIONS(3305), - [sym_character] = ACTIONS(3305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3305), - }, - [STATE(1511)] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_test] = ACTIONS(3311), - [anon_sym_hide] = ACTIONS(3311), - [anon_sym_func] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_RPAREN] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_anyopaque] = ACTIONS(3311), - [anon_sym_bool] = ACTIONS(3311), - [anon_sym_int] = ACTIONS(3311), - [anon_sym_uint] = ACTIONS(3311), - [anon_sym_float] = ACTIONS(3311), - [anon_sym_range] = ACTIONS(3311), - [anon_sym_i8] = ACTIONS(3311), - [anon_sym_i16] = ACTIONS(3311), - [anon_sym_i32] = ACTIONS(3311), - [anon_sym_i64] = ACTIONS(3311), - [anon_sym_u8] = ACTIONS(3311), - [anon_sym_u16] = ACTIONS(3311), - [anon_sym_u32] = ACTIONS(3311), - [anon_sym_u64] = ACTIONS(3311), - [anon_sym_isize] = ACTIONS(3311), - [anon_sym_usize] = ACTIONS(3311), - [anon_sym_f32] = ACTIONS(3311), - [anon_sym_f64] = ACTIONS(3311), - [anon_sym_c_char] = ACTIONS(3311), - [anon_sym_c_schar] = ACTIONS(3311), - [anon_sym_c_uchar] = ACTIONS(3311), - [anon_sym_c_short] = ACTIONS(3311), - [anon_sym_c_ushort] = ACTIONS(3311), - [anon_sym_c_int] = ACTIONS(3311), - [anon_sym_c_uint] = ACTIONS(3311), - [anon_sym_c_long] = ACTIONS(3311), - [anon_sym_c_ulong] = ACTIONS(3311), - [anon_sym_c_longlong] = ACTIONS(3311), - [anon_sym_c_ulonglong] = ACTIONS(3311), - [anon_sym_c_float] = ACTIONS(3311), - [anon_sym_c_double] = ACTIONS(3311), - [anon_sym_c_longdouble] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_errdefer] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_expand] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_DOT] = ACTIONS(3309), - [anon_sym_true] = ACTIONS(3311), - [anon_sym_false] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [sym_sink] = ACTIONS(3311), - [sym_integer] = ACTIONS(3311), - [sym_float] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_multiline_string] = ACTIONS(3309), - [sym_character] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3309), - }, - [STATE(1512)] = { - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_test] = ACTIONS(3315), - [anon_sym_hide] = ACTIONS(3315), - [anon_sym_func] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_RPAREN] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_anyopaque] = ACTIONS(3315), - [anon_sym_bool] = ACTIONS(3315), - [anon_sym_int] = ACTIONS(3315), - [anon_sym_uint] = ACTIONS(3315), - [anon_sym_float] = ACTIONS(3315), - [anon_sym_range] = ACTIONS(3315), - [anon_sym_i8] = ACTIONS(3315), - [anon_sym_i16] = ACTIONS(3315), - [anon_sym_i32] = ACTIONS(3315), - [anon_sym_i64] = ACTIONS(3315), - [anon_sym_u8] = ACTIONS(3315), - [anon_sym_u16] = ACTIONS(3315), - [anon_sym_u32] = ACTIONS(3315), - [anon_sym_u64] = ACTIONS(3315), - [anon_sym_isize] = ACTIONS(3315), - [anon_sym_usize] = ACTIONS(3315), - [anon_sym_f32] = ACTIONS(3315), - [anon_sym_f64] = ACTIONS(3315), - [anon_sym_c_char] = ACTIONS(3315), - [anon_sym_c_schar] = ACTIONS(3315), - [anon_sym_c_uchar] = ACTIONS(3315), - [anon_sym_c_short] = ACTIONS(3315), - [anon_sym_c_ushort] = ACTIONS(3315), - [anon_sym_c_int] = ACTIONS(3315), - [anon_sym_c_uint] = ACTIONS(3315), - [anon_sym_c_long] = ACTIONS(3315), - [anon_sym_c_ulong] = ACTIONS(3315), - [anon_sym_c_longlong] = ACTIONS(3315), - [anon_sym_c_ulonglong] = ACTIONS(3315), - [anon_sym_c_float] = ACTIONS(3315), - [anon_sym_c_double] = ACTIONS(3315), - [anon_sym_c_longdouble] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_errdefer] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_expand] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3315), - [anon_sym_false] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [sym_sink] = ACTIONS(3315), - [sym_integer] = ACTIONS(3315), - [sym_float] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [sym_multiline_string] = ACTIONS(3313), - [sym_character] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3313), - }, - [STATE(1513)] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_test] = ACTIONS(3319), - [anon_sym_hide] = ACTIONS(3319), - [anon_sym_func] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_anyopaque] = ACTIONS(3319), - [anon_sym_bool] = ACTIONS(3319), - [anon_sym_int] = ACTIONS(3319), - [anon_sym_uint] = ACTIONS(3319), - [anon_sym_float] = ACTIONS(3319), - [anon_sym_range] = ACTIONS(3319), - [anon_sym_i8] = ACTIONS(3319), - [anon_sym_i16] = ACTIONS(3319), - [anon_sym_i32] = ACTIONS(3319), - [anon_sym_i64] = ACTIONS(3319), - [anon_sym_u8] = ACTIONS(3319), - [anon_sym_u16] = ACTIONS(3319), - [anon_sym_u32] = ACTIONS(3319), - [anon_sym_u64] = ACTIONS(3319), - [anon_sym_isize] = ACTIONS(3319), - [anon_sym_usize] = ACTIONS(3319), - [anon_sym_f32] = ACTIONS(3319), - [anon_sym_f64] = ACTIONS(3319), - [anon_sym_c_char] = ACTIONS(3319), - [anon_sym_c_schar] = ACTIONS(3319), - [anon_sym_c_uchar] = ACTIONS(3319), - [anon_sym_c_short] = ACTIONS(3319), - [anon_sym_c_ushort] = ACTIONS(3319), - [anon_sym_c_int] = ACTIONS(3319), - [anon_sym_c_uint] = ACTIONS(3319), - [anon_sym_c_long] = ACTIONS(3319), - [anon_sym_c_ulong] = ACTIONS(3319), - [anon_sym_c_longlong] = ACTIONS(3319), - [anon_sym_c_ulonglong] = ACTIONS(3319), - [anon_sym_c_float] = ACTIONS(3319), - [anon_sym_c_double] = ACTIONS(3319), - [anon_sym_c_longdouble] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_errdefer] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_expand] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_DOT] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [sym_sink] = ACTIONS(3319), - [sym_integer] = ACTIONS(3319), - [sym_float] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [sym_multiline_string] = ACTIONS(3317), - [sym_character] = ACTIONS(3317), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3317), - }, - [STATE(1514)] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_test] = ACTIONS(3323), - [anon_sym_hide] = ACTIONS(3323), - [anon_sym_func] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_DOLLAR] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_anyopaque] = ACTIONS(3323), - [anon_sym_bool] = ACTIONS(3323), - [anon_sym_int] = ACTIONS(3323), - [anon_sym_uint] = ACTIONS(3323), - [anon_sym_float] = ACTIONS(3323), - [anon_sym_range] = ACTIONS(3323), - [anon_sym_i8] = ACTIONS(3323), - [anon_sym_i16] = ACTIONS(3323), - [anon_sym_i32] = ACTIONS(3323), - [anon_sym_i64] = ACTIONS(3323), - [anon_sym_u8] = ACTIONS(3323), - [anon_sym_u16] = ACTIONS(3323), - [anon_sym_u32] = ACTIONS(3323), - [anon_sym_u64] = ACTIONS(3323), - [anon_sym_isize] = ACTIONS(3323), - [anon_sym_usize] = ACTIONS(3323), - [anon_sym_f32] = ACTIONS(3323), - [anon_sym_f64] = ACTIONS(3323), - [anon_sym_c_char] = ACTIONS(3323), - [anon_sym_c_schar] = ACTIONS(3323), - [anon_sym_c_uchar] = ACTIONS(3323), - [anon_sym_c_short] = ACTIONS(3323), - [anon_sym_c_ushort] = ACTIONS(3323), - [anon_sym_c_int] = ACTIONS(3323), - [anon_sym_c_uint] = ACTIONS(3323), - [anon_sym_c_long] = ACTIONS(3323), - [anon_sym_c_ulong] = ACTIONS(3323), - [anon_sym_c_longlong] = ACTIONS(3323), - [anon_sym_c_ulonglong] = ACTIONS(3323), - [anon_sym_c_float] = ACTIONS(3323), - [anon_sym_c_double] = ACTIONS(3323), - [anon_sym_c_longdouble] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_errdefer] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_expand] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_DOT] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [sym_sink] = ACTIONS(3323), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_multiline_string] = ACTIONS(3321), - [sym_character] = ACTIONS(3321), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3321), - }, - [STATE(1515)] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_test] = ACTIONS(3327), - [anon_sym_hide] = ACTIONS(3327), - [anon_sym_func] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_DOLLAR] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_anyopaque] = ACTIONS(3327), - [anon_sym_bool] = ACTIONS(3327), - [anon_sym_int] = ACTIONS(3327), - [anon_sym_uint] = ACTIONS(3327), - [anon_sym_float] = ACTIONS(3327), - [anon_sym_range] = ACTIONS(3327), - [anon_sym_i8] = ACTIONS(3327), - [anon_sym_i16] = ACTIONS(3327), - [anon_sym_i32] = ACTIONS(3327), - [anon_sym_i64] = ACTIONS(3327), - [anon_sym_u8] = ACTIONS(3327), - [anon_sym_u16] = ACTIONS(3327), - [anon_sym_u32] = ACTIONS(3327), - [anon_sym_u64] = ACTIONS(3327), - [anon_sym_isize] = ACTIONS(3327), - [anon_sym_usize] = ACTIONS(3327), - [anon_sym_f32] = ACTIONS(3327), - [anon_sym_f64] = ACTIONS(3327), - [anon_sym_c_char] = ACTIONS(3327), - [anon_sym_c_schar] = ACTIONS(3327), - [anon_sym_c_uchar] = ACTIONS(3327), - [anon_sym_c_short] = ACTIONS(3327), - [anon_sym_c_ushort] = ACTIONS(3327), - [anon_sym_c_int] = ACTIONS(3327), - [anon_sym_c_uint] = ACTIONS(3327), - [anon_sym_c_long] = ACTIONS(3327), - [anon_sym_c_ulong] = ACTIONS(3327), - [anon_sym_c_longlong] = ACTIONS(3327), - [anon_sym_c_ulonglong] = ACTIONS(3327), - [anon_sym_c_float] = ACTIONS(3327), - [anon_sym_c_double] = ACTIONS(3327), - [anon_sym_c_longdouble] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_errdefer] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_expand] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_DOT] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [sym_sink] = ACTIONS(3327), - [sym_integer] = ACTIONS(3327), - [sym_float] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [sym_multiline_string] = ACTIONS(3325), - [sym_character] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3325), - }, - [STATE(1516)] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_test] = ACTIONS(3331), - [anon_sym_hide] = ACTIONS(3331), - [anon_sym_func] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_anyopaque] = ACTIONS(3331), - [anon_sym_bool] = ACTIONS(3331), - [anon_sym_int] = ACTIONS(3331), - [anon_sym_uint] = ACTIONS(3331), - [anon_sym_float] = ACTIONS(3331), - [anon_sym_range] = ACTIONS(3331), - [anon_sym_i8] = ACTIONS(3331), - [anon_sym_i16] = ACTIONS(3331), - [anon_sym_i32] = ACTIONS(3331), - [anon_sym_i64] = ACTIONS(3331), - [anon_sym_u8] = ACTIONS(3331), - [anon_sym_u16] = ACTIONS(3331), - [anon_sym_u32] = ACTIONS(3331), - [anon_sym_u64] = ACTIONS(3331), - [anon_sym_isize] = ACTIONS(3331), - [anon_sym_usize] = ACTIONS(3331), - [anon_sym_f32] = ACTIONS(3331), - [anon_sym_f64] = ACTIONS(3331), - [anon_sym_c_char] = ACTIONS(3331), - [anon_sym_c_schar] = ACTIONS(3331), - [anon_sym_c_uchar] = ACTIONS(3331), - [anon_sym_c_short] = ACTIONS(3331), - [anon_sym_c_ushort] = ACTIONS(3331), - [anon_sym_c_int] = ACTIONS(3331), - [anon_sym_c_uint] = ACTIONS(3331), - [anon_sym_c_long] = ACTIONS(3331), - [anon_sym_c_ulong] = ACTIONS(3331), - [anon_sym_c_longlong] = ACTIONS(3331), - [anon_sym_c_ulonglong] = ACTIONS(3331), - [anon_sym_c_float] = ACTIONS(3331), - [anon_sym_c_double] = ACTIONS(3331), - [anon_sym_c_longdouble] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_errdefer] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_expand] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_DOT] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [sym_sink] = ACTIONS(3331), - [sym_integer] = ACTIONS(3331), - [sym_float] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym_multiline_string] = ACTIONS(3329), - [sym_character] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3329), - }, - [STATE(1517)] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_import] = ACTIONS(3335), - [anon_sym_test] = ACTIONS(3335), - [anon_sym_hide] = ACTIONS(3335), - [anon_sym_func] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3335), - [anon_sym_anyopaque] = ACTIONS(3335), - [anon_sym_bool] = ACTIONS(3335), - [anon_sym_int] = ACTIONS(3335), - [anon_sym_uint] = ACTIONS(3335), - [anon_sym_float] = ACTIONS(3335), - [anon_sym_range] = ACTIONS(3335), - [anon_sym_i8] = ACTIONS(3335), - [anon_sym_i16] = ACTIONS(3335), - [anon_sym_i32] = ACTIONS(3335), - [anon_sym_i64] = ACTIONS(3335), - [anon_sym_u8] = ACTIONS(3335), - [anon_sym_u16] = ACTIONS(3335), - [anon_sym_u32] = ACTIONS(3335), - [anon_sym_u64] = ACTIONS(3335), - [anon_sym_isize] = ACTIONS(3335), - [anon_sym_usize] = ACTIONS(3335), - [anon_sym_f32] = ACTIONS(3335), - [anon_sym_f64] = ACTIONS(3335), - [anon_sym_c_char] = ACTIONS(3335), - [anon_sym_c_schar] = ACTIONS(3335), - [anon_sym_c_uchar] = ACTIONS(3335), - [anon_sym_c_short] = ACTIONS(3335), - [anon_sym_c_ushort] = ACTIONS(3335), - [anon_sym_c_int] = ACTIONS(3335), - [anon_sym_c_uint] = ACTIONS(3335), - [anon_sym_c_long] = ACTIONS(3335), - [anon_sym_c_ulong] = ACTIONS(3335), - [anon_sym_c_longlong] = ACTIONS(3335), - [anon_sym_c_ulonglong] = ACTIONS(3335), - [anon_sym_c_float] = ACTIONS(3335), - [anon_sym_c_double] = ACTIONS(3335), - [anon_sym_c_longdouble] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_errdefer] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_expand] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_DOT] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_undefined] = ACTIONS(3335), - [sym_sink] = ACTIONS(3335), - [sym_integer] = ACTIONS(3335), - [sym_float] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [sym_multiline_string] = ACTIONS(3333), - [sym_character] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3333), - }, - [STATE(1518)] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_test] = ACTIONS(3339), - [anon_sym_hide] = ACTIONS(3339), - [anon_sym_func] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_DOLLAR] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_anyopaque] = ACTIONS(3339), - [anon_sym_bool] = ACTIONS(3339), - [anon_sym_int] = ACTIONS(3339), - [anon_sym_uint] = ACTIONS(3339), - [anon_sym_float] = ACTIONS(3339), - [anon_sym_range] = ACTIONS(3339), - [anon_sym_i8] = ACTIONS(3339), - [anon_sym_i16] = ACTIONS(3339), - [anon_sym_i32] = ACTIONS(3339), - [anon_sym_i64] = ACTIONS(3339), - [anon_sym_u8] = ACTIONS(3339), - [anon_sym_u16] = ACTIONS(3339), - [anon_sym_u32] = ACTIONS(3339), - [anon_sym_u64] = ACTIONS(3339), - [anon_sym_isize] = ACTIONS(3339), - [anon_sym_usize] = ACTIONS(3339), - [anon_sym_f32] = ACTIONS(3339), - [anon_sym_f64] = ACTIONS(3339), - [anon_sym_c_char] = ACTIONS(3339), - [anon_sym_c_schar] = ACTIONS(3339), - [anon_sym_c_uchar] = ACTIONS(3339), - [anon_sym_c_short] = ACTIONS(3339), - [anon_sym_c_ushort] = ACTIONS(3339), - [anon_sym_c_int] = ACTIONS(3339), - [anon_sym_c_uint] = ACTIONS(3339), - [anon_sym_c_long] = ACTIONS(3339), - [anon_sym_c_ulong] = ACTIONS(3339), - [anon_sym_c_longlong] = ACTIONS(3339), - [anon_sym_c_ulonglong] = ACTIONS(3339), - [anon_sym_c_float] = ACTIONS(3339), - [anon_sym_c_double] = ACTIONS(3339), - [anon_sym_c_longdouble] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_errdefer] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_expand] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_DOT] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [sym_sink] = ACTIONS(3339), - [sym_integer] = ACTIONS(3339), - [sym_float] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [sym_multiline_string] = ACTIONS(3337), - [sym_character] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3337), - }, - [STATE(1519)] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_test] = ACTIONS(3343), - [anon_sym_hide] = ACTIONS(3343), - [anon_sym_func] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_anyopaque] = ACTIONS(3343), - [anon_sym_bool] = ACTIONS(3343), - [anon_sym_int] = ACTIONS(3343), - [anon_sym_uint] = ACTIONS(3343), - [anon_sym_float] = ACTIONS(3343), - [anon_sym_range] = ACTIONS(3343), - [anon_sym_i8] = ACTIONS(3343), - [anon_sym_i16] = ACTIONS(3343), - [anon_sym_i32] = ACTIONS(3343), - [anon_sym_i64] = ACTIONS(3343), - [anon_sym_u8] = ACTIONS(3343), - [anon_sym_u16] = ACTIONS(3343), - [anon_sym_u32] = ACTIONS(3343), - [anon_sym_u64] = ACTIONS(3343), - [anon_sym_isize] = ACTIONS(3343), - [anon_sym_usize] = ACTIONS(3343), - [anon_sym_f32] = ACTIONS(3343), - [anon_sym_f64] = ACTIONS(3343), - [anon_sym_c_char] = ACTIONS(3343), - [anon_sym_c_schar] = ACTIONS(3343), - [anon_sym_c_uchar] = ACTIONS(3343), - [anon_sym_c_short] = ACTIONS(3343), - [anon_sym_c_ushort] = ACTIONS(3343), - [anon_sym_c_int] = ACTIONS(3343), - [anon_sym_c_uint] = ACTIONS(3343), - [anon_sym_c_long] = ACTIONS(3343), - [anon_sym_c_ulong] = ACTIONS(3343), - [anon_sym_c_longlong] = ACTIONS(3343), - [anon_sym_c_ulonglong] = ACTIONS(3343), - [anon_sym_c_float] = ACTIONS(3343), - [anon_sym_c_double] = ACTIONS(3343), - [anon_sym_c_longdouble] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_errdefer] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_expand] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_DOT] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [sym_sink] = ACTIONS(3343), - [sym_integer] = ACTIONS(3343), - [sym_float] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_multiline_string] = ACTIONS(3341), - [sym_character] = ACTIONS(3341), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3341), - }, - [STATE(1520)] = { - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_test] = ACTIONS(3347), - [anon_sym_hide] = ACTIONS(3347), - [anon_sym_func] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_anyopaque] = ACTIONS(3347), - [anon_sym_bool] = ACTIONS(3347), - [anon_sym_int] = ACTIONS(3347), - [anon_sym_uint] = ACTIONS(3347), - [anon_sym_float] = ACTIONS(3347), - [anon_sym_range] = ACTIONS(3347), - [anon_sym_i8] = ACTIONS(3347), - [anon_sym_i16] = ACTIONS(3347), - [anon_sym_i32] = ACTIONS(3347), - [anon_sym_i64] = ACTIONS(3347), - [anon_sym_u8] = ACTIONS(3347), - [anon_sym_u16] = ACTIONS(3347), - [anon_sym_u32] = ACTIONS(3347), - [anon_sym_u64] = ACTIONS(3347), - [anon_sym_isize] = ACTIONS(3347), - [anon_sym_usize] = ACTIONS(3347), - [anon_sym_f32] = ACTIONS(3347), - [anon_sym_f64] = ACTIONS(3347), - [anon_sym_c_char] = ACTIONS(3347), - [anon_sym_c_schar] = ACTIONS(3347), - [anon_sym_c_uchar] = ACTIONS(3347), - [anon_sym_c_short] = ACTIONS(3347), - [anon_sym_c_ushort] = ACTIONS(3347), - [anon_sym_c_int] = ACTIONS(3347), - [anon_sym_c_uint] = ACTIONS(3347), - [anon_sym_c_long] = ACTIONS(3347), - [anon_sym_c_ulong] = ACTIONS(3347), - [anon_sym_c_longlong] = ACTIONS(3347), - [anon_sym_c_ulonglong] = ACTIONS(3347), - [anon_sym_c_float] = ACTIONS(3347), - [anon_sym_c_double] = ACTIONS(3347), - [anon_sym_c_longdouble] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_errdefer] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_expand] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_DOT] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [sym_sink] = ACTIONS(3347), - [sym_integer] = ACTIONS(3347), - [sym_float] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [sym_multiline_string] = ACTIONS(3345), - [sym_character] = ACTIONS(3345), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3345), - }, - [STATE(1521)] = { - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_test] = ACTIONS(3351), - [anon_sym_hide] = ACTIONS(3351), - [anon_sym_func] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_anyopaque] = ACTIONS(3351), - [anon_sym_bool] = ACTIONS(3351), - [anon_sym_int] = ACTIONS(3351), - [anon_sym_uint] = ACTIONS(3351), - [anon_sym_float] = ACTIONS(3351), - [anon_sym_range] = ACTIONS(3351), - [anon_sym_i8] = ACTIONS(3351), - [anon_sym_i16] = ACTIONS(3351), - [anon_sym_i32] = ACTIONS(3351), - [anon_sym_i64] = ACTIONS(3351), - [anon_sym_u8] = ACTIONS(3351), - [anon_sym_u16] = ACTIONS(3351), - [anon_sym_u32] = ACTIONS(3351), - [anon_sym_u64] = ACTIONS(3351), - [anon_sym_isize] = ACTIONS(3351), - [anon_sym_usize] = ACTIONS(3351), - [anon_sym_f32] = ACTIONS(3351), - [anon_sym_f64] = ACTIONS(3351), - [anon_sym_c_char] = ACTIONS(3351), - [anon_sym_c_schar] = ACTIONS(3351), - [anon_sym_c_uchar] = ACTIONS(3351), - [anon_sym_c_short] = ACTIONS(3351), - [anon_sym_c_ushort] = ACTIONS(3351), - [anon_sym_c_int] = ACTIONS(3351), - [anon_sym_c_uint] = ACTIONS(3351), - [anon_sym_c_long] = ACTIONS(3351), - [anon_sym_c_ulong] = ACTIONS(3351), - [anon_sym_c_longlong] = ACTIONS(3351), - [anon_sym_c_ulonglong] = ACTIONS(3351), - [anon_sym_c_float] = ACTIONS(3351), - [anon_sym_c_double] = ACTIONS(3351), - [anon_sym_c_longdouble] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_defer] = ACTIONS(3351), - [anon_sym_errdefer] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_expand] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_DOT] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [sym_sink] = ACTIONS(3351), - [sym_integer] = ACTIONS(3351), - [sym_float] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [sym_multiline_string] = ACTIONS(3349), - [sym_character] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3349), - }, - [STATE(1522)] = { - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_test] = ACTIONS(3355), - [anon_sym_hide] = ACTIONS(3355), - [anon_sym_func] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_DOLLAR] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_anyopaque] = ACTIONS(3355), - [anon_sym_bool] = ACTIONS(3355), - [anon_sym_int] = ACTIONS(3355), - [anon_sym_uint] = ACTIONS(3355), - [anon_sym_float] = ACTIONS(3355), - [anon_sym_range] = ACTIONS(3355), - [anon_sym_i8] = ACTIONS(3355), - [anon_sym_i16] = ACTIONS(3355), - [anon_sym_i32] = ACTIONS(3355), - [anon_sym_i64] = ACTIONS(3355), - [anon_sym_u8] = ACTIONS(3355), - [anon_sym_u16] = ACTIONS(3355), - [anon_sym_u32] = ACTIONS(3355), - [anon_sym_u64] = ACTIONS(3355), - [anon_sym_isize] = ACTIONS(3355), - [anon_sym_usize] = ACTIONS(3355), - [anon_sym_f32] = ACTIONS(3355), - [anon_sym_f64] = ACTIONS(3355), - [anon_sym_c_char] = ACTIONS(3355), - [anon_sym_c_schar] = ACTIONS(3355), - [anon_sym_c_uchar] = ACTIONS(3355), - [anon_sym_c_short] = ACTIONS(3355), - [anon_sym_c_ushort] = ACTIONS(3355), - [anon_sym_c_int] = ACTIONS(3355), - [anon_sym_c_uint] = ACTIONS(3355), - [anon_sym_c_long] = ACTIONS(3355), - [anon_sym_c_ulong] = ACTIONS(3355), - [anon_sym_c_longlong] = ACTIONS(3355), - [anon_sym_c_ulonglong] = ACTIONS(3355), - [anon_sym_c_float] = ACTIONS(3355), - [anon_sym_c_double] = ACTIONS(3355), - [anon_sym_c_longdouble] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_errdefer] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_expand] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_DOT] = ACTIONS(3353), - [anon_sym_true] = ACTIONS(3355), - [anon_sym_false] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [sym_sink] = ACTIONS(3355), - [sym_integer] = ACTIONS(3355), - [sym_float] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [sym_multiline_string] = ACTIONS(3353), - [sym_character] = ACTIONS(3353), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3353), - }, - [STATE(1523)] = { - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_test] = ACTIONS(3359), - [anon_sym_hide] = ACTIONS(3359), - [anon_sym_func] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_anyopaque] = ACTIONS(3359), - [anon_sym_bool] = ACTIONS(3359), - [anon_sym_int] = ACTIONS(3359), - [anon_sym_uint] = ACTIONS(3359), - [anon_sym_float] = ACTIONS(3359), - [anon_sym_range] = ACTIONS(3359), - [anon_sym_i8] = ACTIONS(3359), - [anon_sym_i16] = ACTIONS(3359), - [anon_sym_i32] = ACTIONS(3359), - [anon_sym_i64] = ACTIONS(3359), - [anon_sym_u8] = ACTIONS(3359), - [anon_sym_u16] = ACTIONS(3359), - [anon_sym_u32] = ACTIONS(3359), - [anon_sym_u64] = ACTIONS(3359), - [anon_sym_isize] = ACTIONS(3359), - [anon_sym_usize] = ACTIONS(3359), - [anon_sym_f32] = ACTIONS(3359), - [anon_sym_f64] = ACTIONS(3359), - [anon_sym_c_char] = ACTIONS(3359), - [anon_sym_c_schar] = ACTIONS(3359), - [anon_sym_c_uchar] = ACTIONS(3359), - [anon_sym_c_short] = ACTIONS(3359), - [anon_sym_c_ushort] = ACTIONS(3359), - [anon_sym_c_int] = ACTIONS(3359), - [anon_sym_c_uint] = ACTIONS(3359), - [anon_sym_c_long] = ACTIONS(3359), - [anon_sym_c_ulong] = ACTIONS(3359), - [anon_sym_c_longlong] = ACTIONS(3359), - [anon_sym_c_ulonglong] = ACTIONS(3359), - [anon_sym_c_float] = ACTIONS(3359), - [anon_sym_c_double] = ACTIONS(3359), - [anon_sym_c_longdouble] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_errdefer] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_expand] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3357), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [sym_sink] = ACTIONS(3359), - [sym_integer] = ACTIONS(3359), - [sym_float] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [sym_multiline_string] = ACTIONS(3357), - [sym_character] = ACTIONS(3357), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3357), - }, - [STATE(1524)] = { - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_test] = ACTIONS(3363), - [anon_sym_hide] = ACTIONS(3363), - [anon_sym_func] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_RPAREN] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_DOLLAR] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_anyopaque] = ACTIONS(3363), - [anon_sym_bool] = ACTIONS(3363), - [anon_sym_int] = ACTIONS(3363), - [anon_sym_uint] = ACTIONS(3363), - [anon_sym_float] = ACTIONS(3363), - [anon_sym_range] = ACTIONS(3363), - [anon_sym_i8] = ACTIONS(3363), - [anon_sym_i16] = ACTIONS(3363), - [anon_sym_i32] = ACTIONS(3363), - [anon_sym_i64] = ACTIONS(3363), - [anon_sym_u8] = ACTIONS(3363), - [anon_sym_u16] = ACTIONS(3363), - [anon_sym_u32] = ACTIONS(3363), - [anon_sym_u64] = ACTIONS(3363), - [anon_sym_isize] = ACTIONS(3363), - [anon_sym_usize] = ACTIONS(3363), - [anon_sym_f32] = ACTIONS(3363), - [anon_sym_f64] = ACTIONS(3363), - [anon_sym_c_char] = ACTIONS(3363), - [anon_sym_c_schar] = ACTIONS(3363), - [anon_sym_c_uchar] = ACTIONS(3363), - [anon_sym_c_short] = ACTIONS(3363), - [anon_sym_c_ushort] = ACTIONS(3363), - [anon_sym_c_int] = ACTIONS(3363), - [anon_sym_c_uint] = ACTIONS(3363), - [anon_sym_c_long] = ACTIONS(3363), - [anon_sym_c_ulong] = ACTIONS(3363), - [anon_sym_c_longlong] = ACTIONS(3363), - [anon_sym_c_ulonglong] = ACTIONS(3363), - [anon_sym_c_float] = ACTIONS(3363), - [anon_sym_c_double] = ACTIONS(3363), - [anon_sym_c_longdouble] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_errdefer] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_expand] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3361), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [sym_sink] = ACTIONS(3363), - [sym_integer] = ACTIONS(3363), - [sym_float] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [sym_multiline_string] = ACTIONS(3361), - [sym_character] = ACTIONS(3361), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3361), - }, - [STATE(1525)] = { - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_test] = ACTIONS(3367), - [anon_sym_hide] = ACTIONS(3367), - [anon_sym_func] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_RPAREN] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_DOLLAR] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_anyopaque] = ACTIONS(3367), - [anon_sym_bool] = ACTIONS(3367), - [anon_sym_int] = ACTIONS(3367), - [anon_sym_uint] = ACTIONS(3367), - [anon_sym_float] = ACTIONS(3367), - [anon_sym_range] = ACTIONS(3367), - [anon_sym_i8] = ACTIONS(3367), - [anon_sym_i16] = ACTIONS(3367), - [anon_sym_i32] = ACTIONS(3367), - [anon_sym_i64] = ACTIONS(3367), - [anon_sym_u8] = ACTIONS(3367), - [anon_sym_u16] = ACTIONS(3367), - [anon_sym_u32] = ACTIONS(3367), - [anon_sym_u64] = ACTIONS(3367), - [anon_sym_isize] = ACTIONS(3367), - [anon_sym_usize] = ACTIONS(3367), - [anon_sym_f32] = ACTIONS(3367), - [anon_sym_f64] = ACTIONS(3367), - [anon_sym_c_char] = ACTIONS(3367), - [anon_sym_c_schar] = ACTIONS(3367), - [anon_sym_c_uchar] = ACTIONS(3367), - [anon_sym_c_short] = ACTIONS(3367), - [anon_sym_c_ushort] = ACTIONS(3367), - [anon_sym_c_int] = ACTIONS(3367), - [anon_sym_c_uint] = ACTIONS(3367), - [anon_sym_c_long] = ACTIONS(3367), - [anon_sym_c_ulong] = ACTIONS(3367), - [anon_sym_c_longlong] = ACTIONS(3367), - [anon_sym_c_ulonglong] = ACTIONS(3367), - [anon_sym_c_float] = ACTIONS(3367), - [anon_sym_c_double] = ACTIONS(3367), - [anon_sym_c_longdouble] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_errdefer] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_expand] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_DOT] = ACTIONS(3365), - [anon_sym_true] = ACTIONS(3367), - [anon_sym_false] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [sym_sink] = ACTIONS(3367), - [sym_integer] = ACTIONS(3367), - [sym_float] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [sym_multiline_string] = ACTIONS(3365), - [sym_character] = ACTIONS(3365), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3365), - }, - [STATE(1526)] = { - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_test] = ACTIONS(3371), - [anon_sym_hide] = ACTIONS(3371), - [anon_sym_func] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_anyopaque] = ACTIONS(3371), - [anon_sym_bool] = ACTIONS(3371), - [anon_sym_int] = ACTIONS(3371), - [anon_sym_uint] = ACTIONS(3371), - [anon_sym_float] = ACTIONS(3371), - [anon_sym_range] = ACTIONS(3371), - [anon_sym_i8] = ACTIONS(3371), - [anon_sym_i16] = ACTIONS(3371), - [anon_sym_i32] = ACTIONS(3371), - [anon_sym_i64] = ACTIONS(3371), - [anon_sym_u8] = ACTIONS(3371), - [anon_sym_u16] = ACTIONS(3371), - [anon_sym_u32] = ACTIONS(3371), - [anon_sym_u64] = ACTIONS(3371), - [anon_sym_isize] = ACTIONS(3371), - [anon_sym_usize] = ACTIONS(3371), - [anon_sym_f32] = ACTIONS(3371), - [anon_sym_f64] = ACTIONS(3371), - [anon_sym_c_char] = ACTIONS(3371), - [anon_sym_c_schar] = ACTIONS(3371), - [anon_sym_c_uchar] = ACTIONS(3371), - [anon_sym_c_short] = ACTIONS(3371), - [anon_sym_c_ushort] = ACTIONS(3371), - [anon_sym_c_int] = ACTIONS(3371), - [anon_sym_c_uint] = ACTIONS(3371), - [anon_sym_c_long] = ACTIONS(3371), - [anon_sym_c_ulong] = ACTIONS(3371), - [anon_sym_c_longlong] = ACTIONS(3371), - [anon_sym_c_ulonglong] = ACTIONS(3371), - [anon_sym_c_float] = ACTIONS(3371), - [anon_sym_c_double] = ACTIONS(3371), - [anon_sym_c_longdouble] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_defer] = ACTIONS(3371), - [anon_sym_errdefer] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_expand] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_DOT] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [sym_sink] = ACTIONS(3371), - [sym_integer] = ACTIONS(3371), - [sym_float] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [sym_multiline_string] = ACTIONS(3369), - [sym_character] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3369), - }, - [STATE(1527)] = { - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_test] = ACTIONS(3375), - [anon_sym_hide] = ACTIONS(3375), - [anon_sym_func] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_anyopaque] = ACTIONS(3375), - [anon_sym_bool] = ACTIONS(3375), - [anon_sym_int] = ACTIONS(3375), - [anon_sym_uint] = ACTIONS(3375), - [anon_sym_float] = ACTIONS(3375), - [anon_sym_range] = ACTIONS(3375), - [anon_sym_i8] = ACTIONS(3375), - [anon_sym_i16] = ACTIONS(3375), - [anon_sym_i32] = ACTIONS(3375), - [anon_sym_i64] = ACTIONS(3375), - [anon_sym_u8] = ACTIONS(3375), - [anon_sym_u16] = ACTIONS(3375), - [anon_sym_u32] = ACTIONS(3375), - [anon_sym_u64] = ACTIONS(3375), - [anon_sym_isize] = ACTIONS(3375), - [anon_sym_usize] = ACTIONS(3375), - [anon_sym_f32] = ACTIONS(3375), - [anon_sym_f64] = ACTIONS(3375), - [anon_sym_c_char] = ACTIONS(3375), - [anon_sym_c_schar] = ACTIONS(3375), - [anon_sym_c_uchar] = ACTIONS(3375), - [anon_sym_c_short] = ACTIONS(3375), - [anon_sym_c_ushort] = ACTIONS(3375), - [anon_sym_c_int] = ACTIONS(3375), - [anon_sym_c_uint] = ACTIONS(3375), - [anon_sym_c_long] = ACTIONS(3375), - [anon_sym_c_ulong] = ACTIONS(3375), - [anon_sym_c_longlong] = ACTIONS(3375), - [anon_sym_c_ulonglong] = ACTIONS(3375), - [anon_sym_c_float] = ACTIONS(3375), - [anon_sym_c_double] = ACTIONS(3375), - [anon_sym_c_longdouble] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_defer] = ACTIONS(3375), - [anon_sym_errdefer] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_expand] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [sym_sink] = ACTIONS(3375), - [sym_integer] = ACTIONS(3375), - [sym_float] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [sym_multiline_string] = ACTIONS(3373), - [sym_character] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3373), - }, - [STATE(1528)] = { - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_test] = ACTIONS(3379), - [anon_sym_hide] = ACTIONS(3379), - [anon_sym_func] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_anyopaque] = ACTIONS(3379), - [anon_sym_bool] = ACTIONS(3379), - [anon_sym_int] = ACTIONS(3379), - [anon_sym_uint] = ACTIONS(3379), - [anon_sym_float] = ACTIONS(3379), - [anon_sym_range] = ACTIONS(3379), - [anon_sym_i8] = ACTIONS(3379), - [anon_sym_i16] = ACTIONS(3379), - [anon_sym_i32] = ACTIONS(3379), - [anon_sym_i64] = ACTIONS(3379), - [anon_sym_u8] = ACTIONS(3379), - [anon_sym_u16] = ACTIONS(3379), - [anon_sym_u32] = ACTIONS(3379), - [anon_sym_u64] = ACTIONS(3379), - [anon_sym_isize] = ACTIONS(3379), - [anon_sym_usize] = ACTIONS(3379), - [anon_sym_f32] = ACTIONS(3379), - [anon_sym_f64] = ACTIONS(3379), - [anon_sym_c_char] = ACTIONS(3379), - [anon_sym_c_schar] = ACTIONS(3379), - [anon_sym_c_uchar] = ACTIONS(3379), - [anon_sym_c_short] = ACTIONS(3379), - [anon_sym_c_ushort] = ACTIONS(3379), - [anon_sym_c_int] = ACTIONS(3379), - [anon_sym_c_uint] = ACTIONS(3379), - [anon_sym_c_long] = ACTIONS(3379), - [anon_sym_c_ulong] = ACTIONS(3379), - [anon_sym_c_longlong] = ACTIONS(3379), - [anon_sym_c_ulonglong] = ACTIONS(3379), - [anon_sym_c_float] = ACTIONS(3379), - [anon_sym_c_double] = ACTIONS(3379), - [anon_sym_c_longdouble] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_errdefer] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_expand] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_DOT] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [sym_sink] = ACTIONS(3379), - [sym_integer] = ACTIONS(3379), - [sym_float] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_multiline_string] = ACTIONS(3377), - [sym_character] = ACTIONS(3377), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3377), - }, - [STATE(1529)] = { - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_test] = ACTIONS(3383), - [anon_sym_hide] = ACTIONS(3383), - [anon_sym_func] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_anyopaque] = ACTIONS(3383), - [anon_sym_bool] = ACTIONS(3383), - [anon_sym_int] = ACTIONS(3383), - [anon_sym_uint] = ACTIONS(3383), - [anon_sym_float] = ACTIONS(3383), - [anon_sym_range] = ACTIONS(3383), - [anon_sym_i8] = ACTIONS(3383), - [anon_sym_i16] = ACTIONS(3383), - [anon_sym_i32] = ACTIONS(3383), - [anon_sym_i64] = ACTIONS(3383), - [anon_sym_u8] = ACTIONS(3383), - [anon_sym_u16] = ACTIONS(3383), - [anon_sym_u32] = ACTIONS(3383), - [anon_sym_u64] = ACTIONS(3383), - [anon_sym_isize] = ACTIONS(3383), - [anon_sym_usize] = ACTIONS(3383), - [anon_sym_f32] = ACTIONS(3383), - [anon_sym_f64] = ACTIONS(3383), - [anon_sym_c_char] = ACTIONS(3383), - [anon_sym_c_schar] = ACTIONS(3383), - [anon_sym_c_uchar] = ACTIONS(3383), - [anon_sym_c_short] = ACTIONS(3383), - [anon_sym_c_ushort] = ACTIONS(3383), - [anon_sym_c_int] = ACTIONS(3383), - [anon_sym_c_uint] = ACTIONS(3383), - [anon_sym_c_long] = ACTIONS(3383), - [anon_sym_c_ulong] = ACTIONS(3383), - [anon_sym_c_longlong] = ACTIONS(3383), - [anon_sym_c_ulonglong] = ACTIONS(3383), - [anon_sym_c_float] = ACTIONS(3383), - [anon_sym_c_double] = ACTIONS(3383), - [anon_sym_c_longdouble] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_errdefer] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_expand] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [sym_sink] = ACTIONS(3383), - [sym_integer] = ACTIONS(3383), - [sym_float] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_multiline_string] = ACTIONS(3381), - [sym_character] = ACTIONS(3381), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3381), - }, - [STATE(1530)] = { - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_test] = ACTIONS(3387), - [anon_sym_hide] = ACTIONS(3387), - [anon_sym_func] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_anyopaque] = ACTIONS(3387), - [anon_sym_bool] = ACTIONS(3387), - [anon_sym_int] = ACTIONS(3387), - [anon_sym_uint] = ACTIONS(3387), - [anon_sym_float] = ACTIONS(3387), - [anon_sym_range] = ACTIONS(3387), - [anon_sym_i8] = ACTIONS(3387), - [anon_sym_i16] = ACTIONS(3387), - [anon_sym_i32] = ACTIONS(3387), - [anon_sym_i64] = ACTIONS(3387), - [anon_sym_u8] = ACTIONS(3387), - [anon_sym_u16] = ACTIONS(3387), - [anon_sym_u32] = ACTIONS(3387), - [anon_sym_u64] = ACTIONS(3387), - [anon_sym_isize] = ACTIONS(3387), - [anon_sym_usize] = ACTIONS(3387), - [anon_sym_f32] = ACTIONS(3387), - [anon_sym_f64] = ACTIONS(3387), - [anon_sym_c_char] = ACTIONS(3387), - [anon_sym_c_schar] = ACTIONS(3387), - [anon_sym_c_uchar] = ACTIONS(3387), - [anon_sym_c_short] = ACTIONS(3387), - [anon_sym_c_ushort] = ACTIONS(3387), - [anon_sym_c_int] = ACTIONS(3387), - [anon_sym_c_uint] = ACTIONS(3387), - [anon_sym_c_long] = ACTIONS(3387), - [anon_sym_c_ulong] = ACTIONS(3387), - [anon_sym_c_longlong] = ACTIONS(3387), - [anon_sym_c_ulonglong] = ACTIONS(3387), - [anon_sym_c_float] = ACTIONS(3387), - [anon_sym_c_double] = ACTIONS(3387), - [anon_sym_c_longdouble] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_errdefer] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_expand] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_DOT] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [sym_sink] = ACTIONS(3387), - [sym_integer] = ACTIONS(3387), - [sym_float] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_multiline_string] = ACTIONS(3385), - [sym_character] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3385), - }, - [STATE(1531)] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_test] = ACTIONS(3391), - [anon_sym_hide] = ACTIONS(3391), - [anon_sym_func] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_anyopaque] = ACTIONS(3391), - [anon_sym_bool] = ACTIONS(3391), - [anon_sym_int] = ACTIONS(3391), - [anon_sym_uint] = ACTIONS(3391), - [anon_sym_float] = ACTIONS(3391), - [anon_sym_range] = ACTIONS(3391), - [anon_sym_i8] = ACTIONS(3391), - [anon_sym_i16] = ACTIONS(3391), - [anon_sym_i32] = ACTIONS(3391), - [anon_sym_i64] = ACTIONS(3391), - [anon_sym_u8] = ACTIONS(3391), - [anon_sym_u16] = ACTIONS(3391), - [anon_sym_u32] = ACTIONS(3391), - [anon_sym_u64] = ACTIONS(3391), - [anon_sym_isize] = ACTIONS(3391), - [anon_sym_usize] = ACTIONS(3391), - [anon_sym_f32] = ACTIONS(3391), - [anon_sym_f64] = ACTIONS(3391), - [anon_sym_c_char] = ACTIONS(3391), - [anon_sym_c_schar] = ACTIONS(3391), - [anon_sym_c_uchar] = ACTIONS(3391), - [anon_sym_c_short] = ACTIONS(3391), - [anon_sym_c_ushort] = ACTIONS(3391), - [anon_sym_c_int] = ACTIONS(3391), - [anon_sym_c_uint] = ACTIONS(3391), - [anon_sym_c_long] = ACTIONS(3391), - [anon_sym_c_ulong] = ACTIONS(3391), - [anon_sym_c_longlong] = ACTIONS(3391), - [anon_sym_c_ulonglong] = ACTIONS(3391), - [anon_sym_c_float] = ACTIONS(3391), - [anon_sym_c_double] = ACTIONS(3391), - [anon_sym_c_longdouble] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_errdefer] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_expand] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_DOT] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [sym_sink] = ACTIONS(3391), - [sym_integer] = ACTIONS(3391), - [sym_float] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_multiline_string] = ACTIONS(3389), - [sym_character] = ACTIONS(3389), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3389), - }, - [STATE(1532)] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_test] = ACTIONS(3395), - [anon_sym_hide] = ACTIONS(3395), - [anon_sym_func] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_anyopaque] = ACTIONS(3395), - [anon_sym_bool] = ACTIONS(3395), - [anon_sym_int] = ACTIONS(3395), - [anon_sym_uint] = ACTIONS(3395), - [anon_sym_float] = ACTIONS(3395), - [anon_sym_range] = ACTIONS(3395), - [anon_sym_i8] = ACTIONS(3395), - [anon_sym_i16] = ACTIONS(3395), - [anon_sym_i32] = ACTIONS(3395), - [anon_sym_i64] = ACTIONS(3395), - [anon_sym_u8] = ACTIONS(3395), - [anon_sym_u16] = ACTIONS(3395), - [anon_sym_u32] = ACTIONS(3395), - [anon_sym_u64] = ACTIONS(3395), - [anon_sym_isize] = ACTIONS(3395), - [anon_sym_usize] = ACTIONS(3395), - [anon_sym_f32] = ACTIONS(3395), - [anon_sym_f64] = ACTIONS(3395), - [anon_sym_c_char] = ACTIONS(3395), - [anon_sym_c_schar] = ACTIONS(3395), - [anon_sym_c_uchar] = ACTIONS(3395), - [anon_sym_c_short] = ACTIONS(3395), - [anon_sym_c_ushort] = ACTIONS(3395), - [anon_sym_c_int] = ACTIONS(3395), - [anon_sym_c_uint] = ACTIONS(3395), - [anon_sym_c_long] = ACTIONS(3395), - [anon_sym_c_ulong] = ACTIONS(3395), - [anon_sym_c_longlong] = ACTIONS(3395), - [anon_sym_c_ulonglong] = ACTIONS(3395), - [anon_sym_c_float] = ACTIONS(3395), - [anon_sym_c_double] = ACTIONS(3395), - [anon_sym_c_longdouble] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_defer] = ACTIONS(3395), - [anon_sym_errdefer] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_expand] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [sym_sink] = ACTIONS(3395), - [sym_integer] = ACTIONS(3395), - [sym_float] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [sym_multiline_string] = ACTIONS(3393), - [sym_character] = ACTIONS(3393), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3393), - }, - [STATE(1533)] = { - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_test] = ACTIONS(3399), - [anon_sym_hide] = ACTIONS(3399), - [anon_sym_func] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_anyopaque] = ACTIONS(3399), - [anon_sym_bool] = ACTIONS(3399), - [anon_sym_int] = ACTIONS(3399), - [anon_sym_uint] = ACTIONS(3399), - [anon_sym_float] = ACTIONS(3399), - [anon_sym_range] = ACTIONS(3399), - [anon_sym_i8] = ACTIONS(3399), - [anon_sym_i16] = ACTIONS(3399), - [anon_sym_i32] = ACTIONS(3399), - [anon_sym_i64] = ACTIONS(3399), - [anon_sym_u8] = ACTIONS(3399), - [anon_sym_u16] = ACTIONS(3399), - [anon_sym_u32] = ACTIONS(3399), - [anon_sym_u64] = ACTIONS(3399), - [anon_sym_isize] = ACTIONS(3399), - [anon_sym_usize] = ACTIONS(3399), - [anon_sym_f32] = ACTIONS(3399), - [anon_sym_f64] = ACTIONS(3399), - [anon_sym_c_char] = ACTIONS(3399), - [anon_sym_c_schar] = ACTIONS(3399), - [anon_sym_c_uchar] = ACTIONS(3399), - [anon_sym_c_short] = ACTIONS(3399), - [anon_sym_c_ushort] = ACTIONS(3399), - [anon_sym_c_int] = ACTIONS(3399), - [anon_sym_c_uint] = ACTIONS(3399), - [anon_sym_c_long] = ACTIONS(3399), - [anon_sym_c_ulong] = ACTIONS(3399), - [anon_sym_c_longlong] = ACTIONS(3399), - [anon_sym_c_ulonglong] = ACTIONS(3399), - [anon_sym_c_float] = ACTIONS(3399), - [anon_sym_c_double] = ACTIONS(3399), - [anon_sym_c_longdouble] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_defer] = ACTIONS(3399), - [anon_sym_errdefer] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_expand] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [sym_none] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [sym_sink] = ACTIONS(3399), - [sym_integer] = ACTIONS(3399), - [sym_float] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym_multiline_string] = ACTIONS(3397), - [sym_character] = ACTIONS(3397), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3397), - }, - [STATE(1534)] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_test] = ACTIONS(3403), - [anon_sym_hide] = ACTIONS(3403), - [anon_sym_func] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_anyopaque] = ACTIONS(3403), - [anon_sym_bool] = ACTIONS(3403), - [anon_sym_int] = ACTIONS(3403), - [anon_sym_uint] = ACTIONS(3403), - [anon_sym_float] = ACTIONS(3403), - [anon_sym_range] = ACTIONS(3403), - [anon_sym_i8] = ACTIONS(3403), - [anon_sym_i16] = ACTIONS(3403), - [anon_sym_i32] = ACTIONS(3403), - [anon_sym_i64] = ACTIONS(3403), - [anon_sym_u8] = ACTIONS(3403), - [anon_sym_u16] = ACTIONS(3403), - [anon_sym_u32] = ACTIONS(3403), - [anon_sym_u64] = ACTIONS(3403), - [anon_sym_isize] = ACTIONS(3403), - [anon_sym_usize] = ACTIONS(3403), - [anon_sym_f32] = ACTIONS(3403), - [anon_sym_f64] = ACTIONS(3403), - [anon_sym_c_char] = ACTIONS(3403), - [anon_sym_c_schar] = ACTIONS(3403), - [anon_sym_c_uchar] = ACTIONS(3403), - [anon_sym_c_short] = ACTIONS(3403), - [anon_sym_c_ushort] = ACTIONS(3403), - [anon_sym_c_int] = ACTIONS(3403), - [anon_sym_c_uint] = ACTIONS(3403), - [anon_sym_c_long] = ACTIONS(3403), - [anon_sym_c_ulong] = ACTIONS(3403), - [anon_sym_c_longlong] = ACTIONS(3403), - [anon_sym_c_ulonglong] = ACTIONS(3403), - [anon_sym_c_float] = ACTIONS(3403), - [anon_sym_c_double] = ACTIONS(3403), - [anon_sym_c_longdouble] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_defer] = ACTIONS(3403), - [anon_sym_errdefer] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_expand] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [sym_sink] = ACTIONS(3403), - [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [sym_multiline_string] = ACTIONS(3401), - [sym_character] = ACTIONS(3401), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3401), - }, - [STATE(1535)] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_test] = ACTIONS(3407), - [anon_sym_hide] = ACTIONS(3407), - [anon_sym_func] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_anyopaque] = ACTIONS(3407), - [anon_sym_bool] = ACTIONS(3407), - [anon_sym_int] = ACTIONS(3407), - [anon_sym_uint] = ACTIONS(3407), - [anon_sym_float] = ACTIONS(3407), - [anon_sym_range] = ACTIONS(3407), - [anon_sym_i8] = ACTIONS(3407), - [anon_sym_i16] = ACTIONS(3407), - [anon_sym_i32] = ACTIONS(3407), - [anon_sym_i64] = ACTIONS(3407), - [anon_sym_u8] = ACTIONS(3407), - [anon_sym_u16] = ACTIONS(3407), - [anon_sym_u32] = ACTIONS(3407), - [anon_sym_u64] = ACTIONS(3407), - [anon_sym_isize] = ACTIONS(3407), - [anon_sym_usize] = ACTIONS(3407), - [anon_sym_f32] = ACTIONS(3407), - [anon_sym_f64] = ACTIONS(3407), - [anon_sym_c_char] = ACTIONS(3407), - [anon_sym_c_schar] = ACTIONS(3407), - [anon_sym_c_uchar] = ACTIONS(3407), - [anon_sym_c_short] = ACTIONS(3407), - [anon_sym_c_ushort] = ACTIONS(3407), - [anon_sym_c_int] = ACTIONS(3407), - [anon_sym_c_uint] = ACTIONS(3407), - [anon_sym_c_long] = ACTIONS(3407), - [anon_sym_c_ulong] = ACTIONS(3407), - [anon_sym_c_longlong] = ACTIONS(3407), - [anon_sym_c_ulonglong] = ACTIONS(3407), - [anon_sym_c_float] = ACTIONS(3407), - [anon_sym_c_double] = ACTIONS(3407), - [anon_sym_c_longdouble] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_defer] = ACTIONS(3407), - [anon_sym_errdefer] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_expand] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [sym_sink] = ACTIONS(3407), - [sym_integer] = ACTIONS(3407), - [sym_float] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [sym_multiline_string] = ACTIONS(3405), - [sym_character] = ACTIONS(3405), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3405), - }, - [STATE(1536)] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_test] = ACTIONS(3411), - [anon_sym_hide] = ACTIONS(3411), - [anon_sym_func] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_anyopaque] = ACTIONS(3411), - [anon_sym_bool] = ACTIONS(3411), - [anon_sym_int] = ACTIONS(3411), - [anon_sym_uint] = ACTIONS(3411), - [anon_sym_float] = ACTIONS(3411), - [anon_sym_range] = ACTIONS(3411), - [anon_sym_i8] = ACTIONS(3411), - [anon_sym_i16] = ACTIONS(3411), - [anon_sym_i32] = ACTIONS(3411), - [anon_sym_i64] = ACTIONS(3411), - [anon_sym_u8] = ACTIONS(3411), - [anon_sym_u16] = ACTIONS(3411), - [anon_sym_u32] = ACTIONS(3411), - [anon_sym_u64] = ACTIONS(3411), - [anon_sym_isize] = ACTIONS(3411), - [anon_sym_usize] = ACTIONS(3411), - [anon_sym_f32] = ACTIONS(3411), - [anon_sym_f64] = ACTIONS(3411), - [anon_sym_c_char] = ACTIONS(3411), - [anon_sym_c_schar] = ACTIONS(3411), - [anon_sym_c_uchar] = ACTIONS(3411), - [anon_sym_c_short] = ACTIONS(3411), - [anon_sym_c_ushort] = ACTIONS(3411), - [anon_sym_c_int] = ACTIONS(3411), - [anon_sym_c_uint] = ACTIONS(3411), - [anon_sym_c_long] = ACTIONS(3411), - [anon_sym_c_ulong] = ACTIONS(3411), - [anon_sym_c_longlong] = ACTIONS(3411), - [anon_sym_c_ulonglong] = ACTIONS(3411), - [anon_sym_c_float] = ACTIONS(3411), - [anon_sym_c_double] = ACTIONS(3411), - [anon_sym_c_longdouble] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_defer] = ACTIONS(3411), - [anon_sym_errdefer] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_expand] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [sym_none] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [sym_sink] = ACTIONS(3411), - [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [sym_multiline_string] = ACTIONS(3409), - [sym_character] = ACTIONS(3409), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3409), - }, - [STATE(1537)] = { - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_identifier] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_test] = ACTIONS(3415), - [anon_sym_hide] = ACTIONS(3415), - [anon_sym_func] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_anyopaque] = ACTIONS(3415), - [anon_sym_bool] = ACTIONS(3415), - [anon_sym_int] = ACTIONS(3415), - [anon_sym_uint] = ACTIONS(3415), - [anon_sym_float] = ACTIONS(3415), - [anon_sym_range] = ACTIONS(3415), - [anon_sym_i8] = ACTIONS(3415), - [anon_sym_i16] = ACTIONS(3415), - [anon_sym_i32] = ACTIONS(3415), - [anon_sym_i64] = ACTIONS(3415), - [anon_sym_u8] = ACTIONS(3415), - [anon_sym_u16] = ACTIONS(3415), - [anon_sym_u32] = ACTIONS(3415), - [anon_sym_u64] = ACTIONS(3415), - [anon_sym_isize] = ACTIONS(3415), - [anon_sym_usize] = ACTIONS(3415), - [anon_sym_f32] = ACTIONS(3415), - [anon_sym_f64] = ACTIONS(3415), - [anon_sym_c_char] = ACTIONS(3415), - [anon_sym_c_schar] = ACTIONS(3415), - [anon_sym_c_uchar] = ACTIONS(3415), - [anon_sym_c_short] = ACTIONS(3415), - [anon_sym_c_ushort] = ACTIONS(3415), - [anon_sym_c_int] = ACTIONS(3415), - [anon_sym_c_uint] = ACTIONS(3415), - [anon_sym_c_long] = ACTIONS(3415), - [anon_sym_c_ulong] = ACTIONS(3415), - [anon_sym_c_longlong] = ACTIONS(3415), - [anon_sym_c_ulonglong] = ACTIONS(3415), - [anon_sym_c_float] = ACTIONS(3415), - [anon_sym_c_double] = ACTIONS(3415), - [anon_sym_c_longdouble] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_defer] = ACTIONS(3415), - [anon_sym_errdefer] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_expand] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [sym_none] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [sym_sink] = ACTIONS(3415), - [sym_integer] = ACTIONS(3415), - [sym_float] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym_multiline_string] = ACTIONS(3413), - [sym_character] = ACTIONS(3413), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3413), - }, - [STATE(1538)] = { - [ts_builtin_sym_end] = ACTIONS(3417), - [sym_identifier] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_test] = ACTIONS(3419), - [anon_sym_hide] = ACTIONS(3419), - [anon_sym_func] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_anyopaque] = ACTIONS(3419), - [anon_sym_bool] = ACTIONS(3419), - [anon_sym_int] = ACTIONS(3419), - [anon_sym_uint] = ACTIONS(3419), - [anon_sym_float] = ACTIONS(3419), - [anon_sym_range] = ACTIONS(3419), - [anon_sym_i8] = ACTIONS(3419), - [anon_sym_i16] = ACTIONS(3419), - [anon_sym_i32] = ACTIONS(3419), - [anon_sym_i64] = ACTIONS(3419), - [anon_sym_u8] = ACTIONS(3419), - [anon_sym_u16] = ACTIONS(3419), - [anon_sym_u32] = ACTIONS(3419), - [anon_sym_u64] = ACTIONS(3419), - [anon_sym_isize] = ACTIONS(3419), - [anon_sym_usize] = ACTIONS(3419), - [anon_sym_f32] = ACTIONS(3419), - [anon_sym_f64] = ACTIONS(3419), - [anon_sym_c_char] = ACTIONS(3419), - [anon_sym_c_schar] = ACTIONS(3419), - [anon_sym_c_uchar] = ACTIONS(3419), - [anon_sym_c_short] = ACTIONS(3419), - [anon_sym_c_ushort] = ACTIONS(3419), - [anon_sym_c_int] = ACTIONS(3419), - [anon_sym_c_uint] = ACTIONS(3419), - [anon_sym_c_long] = ACTIONS(3419), - [anon_sym_c_ulong] = ACTIONS(3419), - [anon_sym_c_longlong] = ACTIONS(3419), - [anon_sym_c_ulonglong] = ACTIONS(3419), - [anon_sym_c_float] = ACTIONS(3419), - [anon_sym_c_double] = ACTIONS(3419), - [anon_sym_c_longdouble] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_defer] = ACTIONS(3419), - [anon_sym_errdefer] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_expand] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_true] = ACTIONS(3419), - [anon_sym_false] = ACTIONS(3419), - [sym_none] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [sym_sink] = ACTIONS(3419), - [sym_integer] = ACTIONS(3419), - [sym_float] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [sym_multiline_string] = ACTIONS(3417), - [sym_character] = ACTIONS(3417), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3417), - }, - [STATE(1539)] = { - [ts_builtin_sym_end] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_test] = ACTIONS(3423), - [anon_sym_hide] = ACTIONS(3423), - [anon_sym_func] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_RPAREN] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_anyopaque] = ACTIONS(3423), - [anon_sym_bool] = ACTIONS(3423), - [anon_sym_int] = ACTIONS(3423), - [anon_sym_uint] = ACTIONS(3423), - [anon_sym_float] = ACTIONS(3423), - [anon_sym_range] = ACTIONS(3423), - [anon_sym_i8] = ACTIONS(3423), - [anon_sym_i16] = ACTIONS(3423), - [anon_sym_i32] = ACTIONS(3423), - [anon_sym_i64] = ACTIONS(3423), - [anon_sym_u8] = ACTIONS(3423), - [anon_sym_u16] = ACTIONS(3423), - [anon_sym_u32] = ACTIONS(3423), - [anon_sym_u64] = ACTIONS(3423), - [anon_sym_isize] = ACTIONS(3423), - [anon_sym_usize] = ACTIONS(3423), - [anon_sym_f32] = ACTIONS(3423), - [anon_sym_f64] = ACTIONS(3423), - [anon_sym_c_char] = ACTIONS(3423), - [anon_sym_c_schar] = ACTIONS(3423), - [anon_sym_c_uchar] = ACTIONS(3423), - [anon_sym_c_short] = ACTIONS(3423), - [anon_sym_c_ushort] = ACTIONS(3423), - [anon_sym_c_int] = ACTIONS(3423), - [anon_sym_c_uint] = ACTIONS(3423), - [anon_sym_c_long] = ACTIONS(3423), - [anon_sym_c_ulong] = ACTIONS(3423), - [anon_sym_c_longlong] = ACTIONS(3423), - [anon_sym_c_ulonglong] = ACTIONS(3423), - [anon_sym_c_float] = ACTIONS(3423), - [anon_sym_c_double] = ACTIONS(3423), - [anon_sym_c_longdouble] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_defer] = ACTIONS(3423), - [anon_sym_errdefer] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_expand] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_true] = ACTIONS(3423), - [anon_sym_false] = ACTIONS(3423), - [sym_none] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [sym_sink] = ACTIONS(3423), - [sym_integer] = ACTIONS(3423), - [sym_float] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_multiline_string] = ACTIONS(3421), - [sym_character] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3421), - }, - [STATE(1540)] = { - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_test] = ACTIONS(3427), - [anon_sym_hide] = ACTIONS(3427), - [anon_sym_func] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_anyopaque] = ACTIONS(3427), - [anon_sym_bool] = ACTIONS(3427), - [anon_sym_int] = ACTIONS(3427), - [anon_sym_uint] = ACTIONS(3427), - [anon_sym_float] = ACTIONS(3427), - [anon_sym_range] = ACTIONS(3427), - [anon_sym_i8] = ACTIONS(3427), - [anon_sym_i16] = ACTIONS(3427), - [anon_sym_i32] = ACTIONS(3427), - [anon_sym_i64] = ACTIONS(3427), - [anon_sym_u8] = ACTIONS(3427), - [anon_sym_u16] = ACTIONS(3427), - [anon_sym_u32] = ACTIONS(3427), - [anon_sym_u64] = ACTIONS(3427), - [anon_sym_isize] = ACTIONS(3427), - [anon_sym_usize] = ACTIONS(3427), - [anon_sym_f32] = ACTIONS(3427), - [anon_sym_f64] = ACTIONS(3427), - [anon_sym_c_char] = ACTIONS(3427), - [anon_sym_c_schar] = ACTIONS(3427), - [anon_sym_c_uchar] = ACTIONS(3427), - [anon_sym_c_short] = ACTIONS(3427), - [anon_sym_c_ushort] = ACTIONS(3427), - [anon_sym_c_int] = ACTIONS(3427), - [anon_sym_c_uint] = ACTIONS(3427), - [anon_sym_c_long] = ACTIONS(3427), - [anon_sym_c_ulong] = ACTIONS(3427), - [anon_sym_c_longlong] = ACTIONS(3427), - [anon_sym_c_ulonglong] = ACTIONS(3427), - [anon_sym_c_float] = ACTIONS(3427), - [anon_sym_c_double] = ACTIONS(3427), - [anon_sym_c_longdouble] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_defer] = ACTIONS(3427), - [anon_sym_errdefer] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_expand] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_true] = ACTIONS(3427), - [anon_sym_false] = ACTIONS(3427), - [sym_none] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [sym_sink] = ACTIONS(3427), - [sym_integer] = ACTIONS(3427), - [sym_float] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [sym_multiline_string] = ACTIONS(3425), - [sym_character] = ACTIONS(3425), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3425), - }, - [STATE(1541)] = { - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_test] = ACTIONS(3431), - [anon_sym_hide] = ACTIONS(3431), - [anon_sym_func] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_anyopaque] = ACTIONS(3431), - [anon_sym_bool] = ACTIONS(3431), - [anon_sym_int] = ACTIONS(3431), - [anon_sym_uint] = ACTIONS(3431), - [anon_sym_float] = ACTIONS(3431), - [anon_sym_range] = ACTIONS(3431), - [anon_sym_i8] = ACTIONS(3431), - [anon_sym_i16] = ACTIONS(3431), - [anon_sym_i32] = ACTIONS(3431), - [anon_sym_i64] = ACTIONS(3431), - [anon_sym_u8] = ACTIONS(3431), - [anon_sym_u16] = ACTIONS(3431), - [anon_sym_u32] = ACTIONS(3431), - [anon_sym_u64] = ACTIONS(3431), - [anon_sym_isize] = ACTIONS(3431), - [anon_sym_usize] = ACTIONS(3431), - [anon_sym_f32] = ACTIONS(3431), - [anon_sym_f64] = ACTIONS(3431), - [anon_sym_c_char] = ACTIONS(3431), - [anon_sym_c_schar] = ACTIONS(3431), - [anon_sym_c_uchar] = ACTIONS(3431), - [anon_sym_c_short] = ACTIONS(3431), - [anon_sym_c_ushort] = ACTIONS(3431), - [anon_sym_c_int] = ACTIONS(3431), - [anon_sym_c_uint] = ACTIONS(3431), - [anon_sym_c_long] = ACTIONS(3431), - [anon_sym_c_ulong] = ACTIONS(3431), - [anon_sym_c_longlong] = ACTIONS(3431), - [anon_sym_c_ulonglong] = ACTIONS(3431), - [anon_sym_c_float] = ACTIONS(3431), - [anon_sym_c_double] = ACTIONS(3431), - [anon_sym_c_longdouble] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_defer] = ACTIONS(3431), - [anon_sym_errdefer] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_expand] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_true] = ACTIONS(3431), - [anon_sym_false] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [sym_sink] = ACTIONS(3431), - [sym_integer] = ACTIONS(3431), - [sym_float] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_multiline_string] = ACTIONS(3429), - [sym_character] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3429), - }, - [STATE(1542)] = { - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_test] = ACTIONS(3435), - [anon_sym_hide] = ACTIONS(3435), - [anon_sym_func] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_RPAREN] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_anyopaque] = ACTIONS(3435), - [anon_sym_bool] = ACTIONS(3435), - [anon_sym_int] = ACTIONS(3435), - [anon_sym_uint] = ACTIONS(3435), - [anon_sym_float] = ACTIONS(3435), - [anon_sym_range] = ACTIONS(3435), - [anon_sym_i8] = ACTIONS(3435), - [anon_sym_i16] = ACTIONS(3435), - [anon_sym_i32] = ACTIONS(3435), - [anon_sym_i64] = ACTIONS(3435), - [anon_sym_u8] = ACTIONS(3435), - [anon_sym_u16] = ACTIONS(3435), - [anon_sym_u32] = ACTIONS(3435), - [anon_sym_u64] = ACTIONS(3435), - [anon_sym_isize] = ACTIONS(3435), - [anon_sym_usize] = ACTIONS(3435), - [anon_sym_f32] = ACTIONS(3435), - [anon_sym_f64] = ACTIONS(3435), - [anon_sym_c_char] = ACTIONS(3435), - [anon_sym_c_schar] = ACTIONS(3435), - [anon_sym_c_uchar] = ACTIONS(3435), - [anon_sym_c_short] = ACTIONS(3435), - [anon_sym_c_ushort] = ACTIONS(3435), - [anon_sym_c_int] = ACTIONS(3435), - [anon_sym_c_uint] = ACTIONS(3435), - [anon_sym_c_long] = ACTIONS(3435), - [anon_sym_c_ulong] = ACTIONS(3435), - [anon_sym_c_longlong] = ACTIONS(3435), - [anon_sym_c_ulonglong] = ACTIONS(3435), - [anon_sym_c_float] = ACTIONS(3435), - [anon_sym_c_double] = ACTIONS(3435), - [anon_sym_c_longdouble] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_defer] = ACTIONS(3435), - [anon_sym_errdefer] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_expand] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_true] = ACTIONS(3435), - [anon_sym_false] = ACTIONS(3435), - [sym_none] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [sym_sink] = ACTIONS(3435), - [sym_integer] = ACTIONS(3435), - [sym_float] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [sym_multiline_string] = ACTIONS(3433), - [sym_character] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3433), - }, - [STATE(1543)] = { - [ts_builtin_sym_end] = ACTIONS(3437), - [sym_identifier] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_test] = ACTIONS(3439), - [anon_sym_hide] = ACTIONS(3439), - [anon_sym_func] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_RPAREN] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_anyopaque] = ACTIONS(3439), - [anon_sym_bool] = ACTIONS(3439), - [anon_sym_int] = ACTIONS(3439), - [anon_sym_uint] = ACTIONS(3439), - [anon_sym_float] = ACTIONS(3439), - [anon_sym_range] = ACTIONS(3439), - [anon_sym_i8] = ACTIONS(3439), - [anon_sym_i16] = ACTIONS(3439), - [anon_sym_i32] = ACTIONS(3439), - [anon_sym_i64] = ACTIONS(3439), - [anon_sym_u8] = ACTIONS(3439), - [anon_sym_u16] = ACTIONS(3439), - [anon_sym_u32] = ACTIONS(3439), - [anon_sym_u64] = ACTIONS(3439), - [anon_sym_isize] = ACTIONS(3439), - [anon_sym_usize] = ACTIONS(3439), - [anon_sym_f32] = ACTIONS(3439), - [anon_sym_f64] = ACTIONS(3439), - [anon_sym_c_char] = ACTIONS(3439), - [anon_sym_c_schar] = ACTIONS(3439), - [anon_sym_c_uchar] = ACTIONS(3439), - [anon_sym_c_short] = ACTIONS(3439), - [anon_sym_c_ushort] = ACTIONS(3439), - [anon_sym_c_int] = ACTIONS(3439), - [anon_sym_c_uint] = ACTIONS(3439), - [anon_sym_c_long] = ACTIONS(3439), - [anon_sym_c_ulong] = ACTIONS(3439), - [anon_sym_c_longlong] = ACTIONS(3439), - [anon_sym_c_ulonglong] = ACTIONS(3439), - [anon_sym_c_float] = ACTIONS(3439), - [anon_sym_c_double] = ACTIONS(3439), - [anon_sym_c_longdouble] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_defer] = ACTIONS(3439), - [anon_sym_errdefer] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_expand] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [sym_none] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [sym_sink] = ACTIONS(3439), - [sym_integer] = ACTIONS(3439), - [sym_float] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_multiline_string] = ACTIONS(3437), - [sym_character] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3437), - }, - [STATE(1544)] = { - [ts_builtin_sym_end] = ACTIONS(3441), - [sym_identifier] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_test] = ACTIONS(3443), - [anon_sym_hide] = ACTIONS(3443), - [anon_sym_func] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3443), - [anon_sym_anyopaque] = ACTIONS(3443), - [anon_sym_bool] = ACTIONS(3443), - [anon_sym_int] = ACTIONS(3443), - [anon_sym_uint] = ACTIONS(3443), - [anon_sym_float] = ACTIONS(3443), - [anon_sym_range] = ACTIONS(3443), - [anon_sym_i8] = ACTIONS(3443), - [anon_sym_i16] = ACTIONS(3443), - [anon_sym_i32] = ACTIONS(3443), - [anon_sym_i64] = ACTIONS(3443), - [anon_sym_u8] = ACTIONS(3443), - [anon_sym_u16] = ACTIONS(3443), - [anon_sym_u32] = ACTIONS(3443), - [anon_sym_u64] = ACTIONS(3443), - [anon_sym_isize] = ACTIONS(3443), - [anon_sym_usize] = ACTIONS(3443), - [anon_sym_f32] = ACTIONS(3443), - [anon_sym_f64] = ACTIONS(3443), - [anon_sym_c_char] = ACTIONS(3443), - [anon_sym_c_schar] = ACTIONS(3443), - [anon_sym_c_uchar] = ACTIONS(3443), - [anon_sym_c_short] = ACTIONS(3443), - [anon_sym_c_ushort] = ACTIONS(3443), - [anon_sym_c_int] = ACTIONS(3443), - [anon_sym_c_uint] = ACTIONS(3443), - [anon_sym_c_long] = ACTIONS(3443), - [anon_sym_c_ulong] = ACTIONS(3443), - [anon_sym_c_longlong] = ACTIONS(3443), - [anon_sym_c_ulonglong] = ACTIONS(3443), - [anon_sym_c_float] = ACTIONS(3443), - [anon_sym_c_double] = ACTIONS(3443), - [anon_sym_c_longdouble] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_defer] = ACTIONS(3443), - [anon_sym_errdefer] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_expand] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_DOT] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [sym_none] = ACTIONS(3443), - [sym_undefined] = ACTIONS(3443), - [sym_sink] = ACTIONS(3443), - [sym_integer] = ACTIONS(3443), - [sym_float] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym_multiline_string] = ACTIONS(3441), - [sym_character] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3441), - }, - [STATE(1545)] = { - [ts_builtin_sym_end] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_test] = ACTIONS(3447), - [anon_sym_hide] = ACTIONS(3447), - [anon_sym_func] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_anyopaque] = ACTIONS(3447), - [anon_sym_bool] = ACTIONS(3447), - [anon_sym_int] = ACTIONS(3447), - [anon_sym_uint] = ACTIONS(3447), - [anon_sym_float] = ACTIONS(3447), - [anon_sym_range] = ACTIONS(3447), - [anon_sym_i8] = ACTIONS(3447), - [anon_sym_i16] = ACTIONS(3447), - [anon_sym_i32] = ACTIONS(3447), - [anon_sym_i64] = ACTIONS(3447), - [anon_sym_u8] = ACTIONS(3447), - [anon_sym_u16] = ACTIONS(3447), - [anon_sym_u32] = ACTIONS(3447), - [anon_sym_u64] = ACTIONS(3447), - [anon_sym_isize] = ACTIONS(3447), - [anon_sym_usize] = ACTIONS(3447), - [anon_sym_f32] = ACTIONS(3447), - [anon_sym_f64] = ACTIONS(3447), - [anon_sym_c_char] = ACTIONS(3447), - [anon_sym_c_schar] = ACTIONS(3447), - [anon_sym_c_uchar] = ACTIONS(3447), - [anon_sym_c_short] = ACTIONS(3447), - [anon_sym_c_ushort] = ACTIONS(3447), - [anon_sym_c_int] = ACTIONS(3447), - [anon_sym_c_uint] = ACTIONS(3447), - [anon_sym_c_long] = ACTIONS(3447), - [anon_sym_c_ulong] = ACTIONS(3447), - [anon_sym_c_longlong] = ACTIONS(3447), - [anon_sym_c_ulonglong] = ACTIONS(3447), - [anon_sym_c_float] = ACTIONS(3447), - [anon_sym_c_double] = ACTIONS(3447), - [anon_sym_c_longdouble] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_defer] = ACTIONS(3447), - [anon_sym_errdefer] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_expand] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3447), - [anon_sym_false] = ACTIONS(3447), - [sym_none] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [sym_sink] = ACTIONS(3447), - [sym_integer] = ACTIONS(3447), - [sym_float] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym_multiline_string] = ACTIONS(3445), - [sym_character] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3445), - }, - [STATE(1546)] = { - [ts_builtin_sym_end] = ACTIONS(3449), - [sym_identifier] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_test] = ACTIONS(3451), - [anon_sym_hide] = ACTIONS(3451), - [anon_sym_func] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_RPAREN] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_anyopaque] = ACTIONS(3451), - [anon_sym_bool] = ACTIONS(3451), - [anon_sym_int] = ACTIONS(3451), - [anon_sym_uint] = ACTIONS(3451), - [anon_sym_float] = ACTIONS(3451), - [anon_sym_range] = ACTIONS(3451), - [anon_sym_i8] = ACTIONS(3451), - [anon_sym_i16] = ACTIONS(3451), - [anon_sym_i32] = ACTIONS(3451), - [anon_sym_i64] = ACTIONS(3451), - [anon_sym_u8] = ACTIONS(3451), - [anon_sym_u16] = ACTIONS(3451), - [anon_sym_u32] = ACTIONS(3451), - [anon_sym_u64] = ACTIONS(3451), - [anon_sym_isize] = ACTIONS(3451), - [anon_sym_usize] = ACTIONS(3451), - [anon_sym_f32] = ACTIONS(3451), - [anon_sym_f64] = ACTIONS(3451), - [anon_sym_c_char] = ACTIONS(3451), - [anon_sym_c_schar] = ACTIONS(3451), - [anon_sym_c_uchar] = ACTIONS(3451), - [anon_sym_c_short] = ACTIONS(3451), - [anon_sym_c_ushort] = ACTIONS(3451), - [anon_sym_c_int] = ACTIONS(3451), - [anon_sym_c_uint] = ACTIONS(3451), - [anon_sym_c_long] = ACTIONS(3451), - [anon_sym_c_ulong] = ACTIONS(3451), - [anon_sym_c_longlong] = ACTIONS(3451), - [anon_sym_c_ulonglong] = ACTIONS(3451), - [anon_sym_c_float] = ACTIONS(3451), - [anon_sym_c_double] = ACTIONS(3451), - [anon_sym_c_longdouble] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_defer] = ACTIONS(3451), - [anon_sym_errdefer] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_expand] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_DOT] = ACTIONS(3449), - [anon_sym_true] = ACTIONS(3451), - [anon_sym_false] = ACTIONS(3451), - [sym_none] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [sym_sink] = ACTIONS(3451), - [sym_integer] = ACTIONS(3451), - [sym_float] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym_multiline_string] = ACTIONS(3449), - [sym_character] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3449), - }, - [STATE(1547)] = { - [ts_builtin_sym_end] = ACTIONS(3453), - [sym_identifier] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_test] = ACTIONS(3455), - [anon_sym_hide] = ACTIONS(3455), - [anon_sym_func] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_RPAREN] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_anyopaque] = ACTIONS(3455), - [anon_sym_bool] = ACTIONS(3455), - [anon_sym_int] = ACTIONS(3455), - [anon_sym_uint] = ACTIONS(3455), - [anon_sym_float] = ACTIONS(3455), - [anon_sym_range] = ACTIONS(3455), - [anon_sym_i8] = ACTIONS(3455), - [anon_sym_i16] = ACTIONS(3455), - [anon_sym_i32] = ACTIONS(3455), - [anon_sym_i64] = ACTIONS(3455), - [anon_sym_u8] = ACTIONS(3455), - [anon_sym_u16] = ACTIONS(3455), - [anon_sym_u32] = ACTIONS(3455), - [anon_sym_u64] = ACTIONS(3455), - [anon_sym_isize] = ACTIONS(3455), - [anon_sym_usize] = ACTIONS(3455), - [anon_sym_f32] = ACTIONS(3455), - [anon_sym_f64] = ACTIONS(3455), - [anon_sym_c_char] = ACTIONS(3455), - [anon_sym_c_schar] = ACTIONS(3455), - [anon_sym_c_uchar] = ACTIONS(3455), - [anon_sym_c_short] = ACTIONS(3455), - [anon_sym_c_ushort] = ACTIONS(3455), - [anon_sym_c_int] = ACTIONS(3455), - [anon_sym_c_uint] = ACTIONS(3455), - [anon_sym_c_long] = ACTIONS(3455), - [anon_sym_c_ulong] = ACTIONS(3455), - [anon_sym_c_longlong] = ACTIONS(3455), - [anon_sym_c_ulonglong] = ACTIONS(3455), - [anon_sym_c_float] = ACTIONS(3455), - [anon_sym_c_double] = ACTIONS(3455), - [anon_sym_c_longdouble] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_defer] = ACTIONS(3455), - [anon_sym_errdefer] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_expand] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_match] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_DOT] = ACTIONS(3453), - [anon_sym_true] = ACTIONS(3455), - [anon_sym_false] = ACTIONS(3455), - [sym_none] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [sym_sink] = ACTIONS(3455), - [sym_integer] = ACTIONS(3455), - [sym_float] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [sym_multiline_string] = ACTIONS(3453), - [sym_character] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3453), - }, - [STATE(1548)] = { - [ts_builtin_sym_end] = ACTIONS(3457), - [sym_identifier] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_test] = ACTIONS(3459), - [anon_sym_hide] = ACTIONS(3459), - [anon_sym_func] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_RPAREN] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_anyopaque] = ACTIONS(3459), - [anon_sym_bool] = ACTIONS(3459), - [anon_sym_int] = ACTIONS(3459), - [anon_sym_uint] = ACTIONS(3459), - [anon_sym_float] = ACTIONS(3459), - [anon_sym_range] = ACTIONS(3459), - [anon_sym_i8] = ACTIONS(3459), - [anon_sym_i16] = ACTIONS(3459), - [anon_sym_i32] = ACTIONS(3459), - [anon_sym_i64] = ACTIONS(3459), - [anon_sym_u8] = ACTIONS(3459), - [anon_sym_u16] = ACTIONS(3459), - [anon_sym_u32] = ACTIONS(3459), - [anon_sym_u64] = ACTIONS(3459), - [anon_sym_isize] = ACTIONS(3459), - [anon_sym_usize] = ACTIONS(3459), - [anon_sym_f32] = ACTIONS(3459), - [anon_sym_f64] = ACTIONS(3459), - [anon_sym_c_char] = ACTIONS(3459), - [anon_sym_c_schar] = ACTIONS(3459), - [anon_sym_c_uchar] = ACTIONS(3459), - [anon_sym_c_short] = ACTIONS(3459), - [anon_sym_c_ushort] = ACTIONS(3459), - [anon_sym_c_int] = ACTIONS(3459), - [anon_sym_c_uint] = ACTIONS(3459), - [anon_sym_c_long] = ACTIONS(3459), - [anon_sym_c_ulong] = ACTIONS(3459), - [anon_sym_c_longlong] = ACTIONS(3459), - [anon_sym_c_ulonglong] = ACTIONS(3459), - [anon_sym_c_float] = ACTIONS(3459), - [anon_sym_c_double] = ACTIONS(3459), - [anon_sym_c_longdouble] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_defer] = ACTIONS(3459), - [anon_sym_errdefer] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_expand] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_match] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3459), - [anon_sym_false] = ACTIONS(3459), - [sym_none] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [sym_sink] = ACTIONS(3459), - [sym_integer] = ACTIONS(3459), - [sym_float] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [sym_multiline_string] = ACTIONS(3457), - [sym_character] = ACTIONS(3457), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3457), - }, - [STATE(1549)] = { - [ts_builtin_sym_end] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3463), - [anon_sym_import] = ACTIONS(3463), - [anon_sym_test] = ACTIONS(3463), - [anon_sym_hide] = ACTIONS(3463), - [anon_sym_func] = ACTIONS(3463), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_struct] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_void] = ACTIONS(3463), - [anon_sym_anyopaque] = ACTIONS(3463), - [anon_sym_bool] = ACTIONS(3463), - [anon_sym_int] = ACTIONS(3463), - [anon_sym_uint] = ACTIONS(3463), - [anon_sym_float] = ACTIONS(3463), - [anon_sym_range] = ACTIONS(3463), - [anon_sym_i8] = ACTIONS(3463), - [anon_sym_i16] = ACTIONS(3463), - [anon_sym_i32] = ACTIONS(3463), - [anon_sym_i64] = ACTIONS(3463), - [anon_sym_u8] = ACTIONS(3463), - [anon_sym_u16] = ACTIONS(3463), - [anon_sym_u32] = ACTIONS(3463), - [anon_sym_u64] = ACTIONS(3463), - [anon_sym_isize] = ACTIONS(3463), - [anon_sym_usize] = ACTIONS(3463), - [anon_sym_f32] = ACTIONS(3463), - [anon_sym_f64] = ACTIONS(3463), - [anon_sym_c_char] = ACTIONS(3463), - [anon_sym_c_schar] = ACTIONS(3463), - [anon_sym_c_uchar] = ACTIONS(3463), - [anon_sym_c_short] = ACTIONS(3463), - [anon_sym_c_ushort] = ACTIONS(3463), - [anon_sym_c_int] = ACTIONS(3463), - [anon_sym_c_uint] = ACTIONS(3463), - [anon_sym_c_long] = ACTIONS(3463), - [anon_sym_c_ulong] = ACTIONS(3463), - [anon_sym_c_longlong] = ACTIONS(3463), - [anon_sym_c_ulonglong] = ACTIONS(3463), - [anon_sym_c_float] = ACTIONS(3463), - [anon_sym_c_double] = ACTIONS(3463), - [anon_sym_c_longdouble] = ACTIONS(3463), - [anon_sym_return] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3463), - [anon_sym_break] = ACTIONS(3463), - [anon_sym_continue] = ACTIONS(3463), - [anon_sym_defer] = ACTIONS(3463), - [anon_sym_errdefer] = ACTIONS(3463), - [anon_sym_if] = ACTIONS(3463), - [anon_sym_else] = ACTIONS(3463), - [anon_sym_while] = ACTIONS(3463), - [anon_sym_expand] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3463), - [anon_sym_match] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_true] = ACTIONS(3463), - [anon_sym_false] = ACTIONS(3463), - [sym_none] = ACTIONS(3463), - [sym_undefined] = ACTIONS(3463), - [sym_sink] = ACTIONS(3463), - [sym_integer] = ACTIONS(3463), - [sym_float] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym_multiline_string] = ACTIONS(3461), - [sym_character] = ACTIONS(3461), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3461), - }, - [STATE(1550)] = { - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3467), - [anon_sym_import] = ACTIONS(3467), - [anon_sym_test] = ACTIONS(3467), - [anon_sym_hide] = ACTIONS(3467), - [anon_sym_func] = ACTIONS(3467), - [anon_sym_BANG] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_RPAREN] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_void] = ACTIONS(3467), - [anon_sym_anyopaque] = ACTIONS(3467), - [anon_sym_bool] = ACTIONS(3467), - [anon_sym_int] = ACTIONS(3467), - [anon_sym_uint] = ACTIONS(3467), - [anon_sym_float] = ACTIONS(3467), - [anon_sym_range] = ACTIONS(3467), - [anon_sym_i8] = ACTIONS(3467), - [anon_sym_i16] = ACTIONS(3467), - [anon_sym_i32] = ACTIONS(3467), - [anon_sym_i64] = ACTIONS(3467), - [anon_sym_u8] = ACTIONS(3467), - [anon_sym_u16] = ACTIONS(3467), - [anon_sym_u32] = ACTIONS(3467), - [anon_sym_u64] = ACTIONS(3467), - [anon_sym_isize] = ACTIONS(3467), - [anon_sym_usize] = ACTIONS(3467), - [anon_sym_f32] = ACTIONS(3467), - [anon_sym_f64] = ACTIONS(3467), - [anon_sym_c_char] = ACTIONS(3467), - [anon_sym_c_schar] = ACTIONS(3467), - [anon_sym_c_uchar] = ACTIONS(3467), - [anon_sym_c_short] = ACTIONS(3467), - [anon_sym_c_ushort] = ACTIONS(3467), - [anon_sym_c_int] = ACTIONS(3467), - [anon_sym_c_uint] = ACTIONS(3467), - [anon_sym_c_long] = ACTIONS(3467), - [anon_sym_c_ulong] = ACTIONS(3467), - [anon_sym_c_longlong] = ACTIONS(3467), - [anon_sym_c_ulonglong] = ACTIONS(3467), - [anon_sym_c_float] = ACTIONS(3467), - [anon_sym_c_double] = ACTIONS(3467), - [anon_sym_c_longdouble] = ACTIONS(3467), - [anon_sym_return] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3467), - [anon_sym_break] = ACTIONS(3467), - [anon_sym_continue] = ACTIONS(3467), - [anon_sym_defer] = ACTIONS(3467), - [anon_sym_errdefer] = ACTIONS(3467), - [anon_sym_if] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3467), - [anon_sym_while] = ACTIONS(3467), - [anon_sym_expand] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3467), - [anon_sym_match] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [sym_none] = ACTIONS(3467), - [sym_undefined] = ACTIONS(3467), - [sym_sink] = ACTIONS(3467), - [sym_integer] = ACTIONS(3467), - [sym_float] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [sym_multiline_string] = ACTIONS(3465), - [sym_character] = ACTIONS(3465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3465), - }, - [STATE(1551)] = { - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3471), - [anon_sym_import] = ACTIONS(3471), - [anon_sym_test] = ACTIONS(3471), - [anon_sym_hide] = ACTIONS(3471), - [anon_sym_func] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_RPAREN] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_void] = ACTIONS(3471), - [anon_sym_anyopaque] = ACTIONS(3471), - [anon_sym_bool] = ACTIONS(3471), - [anon_sym_int] = ACTIONS(3471), - [anon_sym_uint] = ACTIONS(3471), - [anon_sym_float] = ACTIONS(3471), - [anon_sym_range] = ACTIONS(3471), - [anon_sym_i8] = ACTIONS(3471), - [anon_sym_i16] = ACTIONS(3471), - [anon_sym_i32] = ACTIONS(3471), - [anon_sym_i64] = ACTIONS(3471), - [anon_sym_u8] = ACTIONS(3471), - [anon_sym_u16] = ACTIONS(3471), - [anon_sym_u32] = ACTIONS(3471), - [anon_sym_u64] = ACTIONS(3471), - [anon_sym_isize] = ACTIONS(3471), - [anon_sym_usize] = ACTIONS(3471), - [anon_sym_f32] = ACTIONS(3471), - [anon_sym_f64] = ACTIONS(3471), - [anon_sym_c_char] = ACTIONS(3471), - [anon_sym_c_schar] = ACTIONS(3471), - [anon_sym_c_uchar] = ACTIONS(3471), - [anon_sym_c_short] = ACTIONS(3471), - [anon_sym_c_ushort] = ACTIONS(3471), - [anon_sym_c_int] = ACTIONS(3471), - [anon_sym_c_uint] = ACTIONS(3471), - [anon_sym_c_long] = ACTIONS(3471), - [anon_sym_c_ulong] = ACTIONS(3471), - [anon_sym_c_longlong] = ACTIONS(3471), - [anon_sym_c_ulonglong] = ACTIONS(3471), - [anon_sym_c_float] = ACTIONS(3471), - [anon_sym_c_double] = ACTIONS(3471), - [anon_sym_c_longdouble] = ACTIONS(3471), - [anon_sym_return] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3471), - [anon_sym_break] = ACTIONS(3471), - [anon_sym_continue] = ACTIONS(3471), - [anon_sym_defer] = ACTIONS(3471), - [anon_sym_errdefer] = ACTIONS(3471), - [anon_sym_if] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3471), - [anon_sym_while] = ACTIONS(3471), - [anon_sym_expand] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3471), - [anon_sym_match] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [sym_none] = ACTIONS(3471), - [sym_undefined] = ACTIONS(3471), - [sym_sink] = ACTIONS(3471), - [sym_integer] = ACTIONS(3471), - [sym_float] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym_multiline_string] = ACTIONS(3469), - [sym_character] = ACTIONS(3469), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3469), - }, - [STATE(1552)] = { - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3475), - [anon_sym_import] = ACTIONS(3475), - [anon_sym_test] = ACTIONS(3475), - [anon_sym_hide] = ACTIONS(3475), - [anon_sym_func] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_void] = ACTIONS(3475), - [anon_sym_anyopaque] = ACTIONS(3475), - [anon_sym_bool] = ACTIONS(3475), - [anon_sym_int] = ACTIONS(3475), - [anon_sym_uint] = ACTIONS(3475), - [anon_sym_float] = ACTIONS(3475), - [anon_sym_range] = ACTIONS(3475), - [anon_sym_i8] = ACTIONS(3475), - [anon_sym_i16] = ACTIONS(3475), - [anon_sym_i32] = ACTIONS(3475), - [anon_sym_i64] = ACTIONS(3475), - [anon_sym_u8] = ACTIONS(3475), - [anon_sym_u16] = ACTIONS(3475), - [anon_sym_u32] = ACTIONS(3475), - [anon_sym_u64] = ACTIONS(3475), - [anon_sym_isize] = ACTIONS(3475), - [anon_sym_usize] = ACTIONS(3475), - [anon_sym_f32] = ACTIONS(3475), - [anon_sym_f64] = ACTIONS(3475), - [anon_sym_c_char] = ACTIONS(3475), - [anon_sym_c_schar] = ACTIONS(3475), - [anon_sym_c_uchar] = ACTIONS(3475), - [anon_sym_c_short] = ACTIONS(3475), - [anon_sym_c_ushort] = ACTIONS(3475), - [anon_sym_c_int] = ACTIONS(3475), - [anon_sym_c_uint] = ACTIONS(3475), - [anon_sym_c_long] = ACTIONS(3475), - [anon_sym_c_ulong] = ACTIONS(3475), - [anon_sym_c_longlong] = ACTIONS(3475), - [anon_sym_c_ulonglong] = ACTIONS(3475), - [anon_sym_c_float] = ACTIONS(3475), - [anon_sym_c_double] = ACTIONS(3475), - [anon_sym_c_longdouble] = ACTIONS(3475), - [anon_sym_return] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3475), - [anon_sym_break] = ACTIONS(3475), - [anon_sym_continue] = ACTIONS(3475), - [anon_sym_defer] = ACTIONS(3475), - [anon_sym_errdefer] = ACTIONS(3475), - [anon_sym_if] = ACTIONS(3475), - [anon_sym_else] = ACTIONS(3475), - [anon_sym_while] = ACTIONS(3475), - [anon_sym_expand] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3475), - [anon_sym_match] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3475), - [anon_sym_false] = ACTIONS(3475), - [sym_none] = ACTIONS(3475), - [sym_undefined] = ACTIONS(3475), - [sym_sink] = ACTIONS(3475), - [sym_integer] = ACTIONS(3475), - [sym_float] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [sym_multiline_string] = ACTIONS(3473), - [sym_character] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3473), - }, - [STATE(1553)] = { - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3479), - [anon_sym_import] = ACTIONS(3479), - [anon_sym_test] = ACTIONS(3479), - [anon_sym_hide] = ACTIONS(3479), - [anon_sym_func] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_RPAREN] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_void] = ACTIONS(3479), - [anon_sym_anyopaque] = ACTIONS(3479), - [anon_sym_bool] = ACTIONS(3479), - [anon_sym_int] = ACTIONS(3479), - [anon_sym_uint] = ACTIONS(3479), - [anon_sym_float] = ACTIONS(3479), - [anon_sym_range] = ACTIONS(3479), - [anon_sym_i8] = ACTIONS(3479), - [anon_sym_i16] = ACTIONS(3479), - [anon_sym_i32] = ACTIONS(3479), - [anon_sym_i64] = ACTIONS(3479), - [anon_sym_u8] = ACTIONS(3479), - [anon_sym_u16] = ACTIONS(3479), - [anon_sym_u32] = ACTIONS(3479), - [anon_sym_u64] = ACTIONS(3479), - [anon_sym_isize] = ACTIONS(3479), - [anon_sym_usize] = ACTIONS(3479), - [anon_sym_f32] = ACTIONS(3479), - [anon_sym_f64] = ACTIONS(3479), - [anon_sym_c_char] = ACTIONS(3479), - [anon_sym_c_schar] = ACTIONS(3479), - [anon_sym_c_uchar] = ACTIONS(3479), - [anon_sym_c_short] = ACTIONS(3479), - [anon_sym_c_ushort] = ACTIONS(3479), - [anon_sym_c_int] = ACTIONS(3479), - [anon_sym_c_uint] = ACTIONS(3479), - [anon_sym_c_long] = ACTIONS(3479), - [anon_sym_c_ulong] = ACTIONS(3479), - [anon_sym_c_longlong] = ACTIONS(3479), - [anon_sym_c_ulonglong] = ACTIONS(3479), - [anon_sym_c_float] = ACTIONS(3479), - [anon_sym_c_double] = ACTIONS(3479), - [anon_sym_c_longdouble] = ACTIONS(3479), - [anon_sym_return] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_break] = ACTIONS(3479), - [anon_sym_continue] = ACTIONS(3479), - [anon_sym_defer] = ACTIONS(3479), - [anon_sym_errdefer] = ACTIONS(3479), - [anon_sym_if] = ACTIONS(3479), - [anon_sym_else] = ACTIONS(3479), - [anon_sym_while] = ACTIONS(3479), - [anon_sym_expand] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3479), - [anon_sym_match] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_true] = ACTIONS(3479), - [anon_sym_false] = ACTIONS(3479), - [sym_none] = ACTIONS(3479), - [sym_undefined] = ACTIONS(3479), - [sym_sink] = ACTIONS(3479), - [sym_integer] = ACTIONS(3479), - [sym_float] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym_multiline_string] = ACTIONS(3477), - [sym_character] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3477), - }, - [STATE(1554)] = { - [ts_builtin_sym_end] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3483), - [anon_sym_import] = ACTIONS(3483), - [anon_sym_test] = ACTIONS(3483), - [anon_sym_hide] = ACTIONS(3483), - [anon_sym_func] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3483), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_void] = ACTIONS(3483), - [anon_sym_anyopaque] = ACTIONS(3483), - [anon_sym_bool] = ACTIONS(3483), - [anon_sym_int] = ACTIONS(3483), - [anon_sym_uint] = ACTIONS(3483), - [anon_sym_float] = ACTIONS(3483), - [anon_sym_range] = ACTIONS(3483), - [anon_sym_i8] = ACTIONS(3483), - [anon_sym_i16] = ACTIONS(3483), - [anon_sym_i32] = ACTIONS(3483), - [anon_sym_i64] = ACTIONS(3483), - [anon_sym_u8] = ACTIONS(3483), - [anon_sym_u16] = ACTIONS(3483), - [anon_sym_u32] = ACTIONS(3483), - [anon_sym_u64] = ACTIONS(3483), - [anon_sym_isize] = ACTIONS(3483), - [anon_sym_usize] = ACTIONS(3483), - [anon_sym_f32] = ACTIONS(3483), - [anon_sym_f64] = ACTIONS(3483), - [anon_sym_c_char] = ACTIONS(3483), - [anon_sym_c_schar] = ACTIONS(3483), - [anon_sym_c_uchar] = ACTIONS(3483), - [anon_sym_c_short] = ACTIONS(3483), - [anon_sym_c_ushort] = ACTIONS(3483), - [anon_sym_c_int] = ACTIONS(3483), - [anon_sym_c_uint] = ACTIONS(3483), - [anon_sym_c_long] = ACTIONS(3483), - [anon_sym_c_ulong] = ACTIONS(3483), - [anon_sym_c_longlong] = ACTIONS(3483), - [anon_sym_c_ulonglong] = ACTIONS(3483), - [anon_sym_c_float] = ACTIONS(3483), - [anon_sym_c_double] = ACTIONS(3483), - [anon_sym_c_longdouble] = ACTIONS(3483), - [anon_sym_return] = ACTIONS(3483), - [anon_sym_yield] = ACTIONS(3483), - [anon_sym_break] = ACTIONS(3483), - [anon_sym_continue] = ACTIONS(3483), - [anon_sym_defer] = ACTIONS(3483), - [anon_sym_errdefer] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3483), - [anon_sym_else] = ACTIONS(3483), - [anon_sym_while] = ACTIONS(3483), - [anon_sym_expand] = ACTIONS(3483), - [anon_sym_for] = ACTIONS(3483), - [anon_sym_match] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3483), - [anon_sym_DOT] = ACTIONS(3481), - [anon_sym_true] = ACTIONS(3483), - [anon_sym_false] = ACTIONS(3483), - [sym_none] = ACTIONS(3483), - [sym_undefined] = ACTIONS(3483), - [sym_sink] = ACTIONS(3483), - [sym_integer] = ACTIONS(3483), - [sym_float] = ACTIONS(3481), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym_multiline_string] = ACTIONS(3481), - [sym_character] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3481), - }, - [STATE(1555)] = { - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3487), - [anon_sym_import] = ACTIONS(3487), - [anon_sym_test] = ACTIONS(3487), - [anon_sym_hide] = ACTIONS(3487), - [anon_sym_func] = ACTIONS(3487), - [anon_sym_BANG] = ACTIONS(3485), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_void] = ACTIONS(3487), - [anon_sym_anyopaque] = ACTIONS(3487), - [anon_sym_bool] = ACTIONS(3487), - [anon_sym_int] = ACTIONS(3487), - [anon_sym_uint] = ACTIONS(3487), - [anon_sym_float] = ACTIONS(3487), - [anon_sym_range] = ACTIONS(3487), - [anon_sym_i8] = ACTIONS(3487), - [anon_sym_i16] = ACTIONS(3487), - [anon_sym_i32] = ACTIONS(3487), - [anon_sym_i64] = ACTIONS(3487), - [anon_sym_u8] = ACTIONS(3487), - [anon_sym_u16] = ACTIONS(3487), - [anon_sym_u32] = ACTIONS(3487), - [anon_sym_u64] = ACTIONS(3487), - [anon_sym_isize] = ACTIONS(3487), - [anon_sym_usize] = ACTIONS(3487), - [anon_sym_f32] = ACTIONS(3487), - [anon_sym_f64] = ACTIONS(3487), - [anon_sym_c_char] = ACTIONS(3487), - [anon_sym_c_schar] = ACTIONS(3487), - [anon_sym_c_uchar] = ACTIONS(3487), - [anon_sym_c_short] = ACTIONS(3487), - [anon_sym_c_ushort] = ACTIONS(3487), - [anon_sym_c_int] = ACTIONS(3487), - [anon_sym_c_uint] = ACTIONS(3487), - [anon_sym_c_long] = ACTIONS(3487), - [anon_sym_c_ulong] = ACTIONS(3487), - [anon_sym_c_longlong] = ACTIONS(3487), - [anon_sym_c_ulonglong] = ACTIONS(3487), - [anon_sym_c_float] = ACTIONS(3487), - [anon_sym_c_double] = ACTIONS(3487), - [anon_sym_c_longdouble] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_defer] = ACTIONS(3487), - [anon_sym_errdefer] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_expand] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_match] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [sym_none] = ACTIONS(3487), - [sym_undefined] = ACTIONS(3487), - [sym_sink] = ACTIONS(3487), - [sym_integer] = ACTIONS(3487), - [sym_float] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [sym_multiline_string] = ACTIONS(3485), - [sym_character] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3485), - }, - [STATE(1556)] = { - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3491), - [anon_sym_import] = ACTIONS(3491), - [anon_sym_test] = ACTIONS(3491), - [anon_sym_hide] = ACTIONS(3491), - [anon_sym_func] = ACTIONS(3491), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_void] = ACTIONS(3491), - [anon_sym_anyopaque] = ACTIONS(3491), - [anon_sym_bool] = ACTIONS(3491), - [anon_sym_int] = ACTIONS(3491), - [anon_sym_uint] = ACTIONS(3491), - [anon_sym_float] = ACTIONS(3491), - [anon_sym_range] = ACTIONS(3491), - [anon_sym_i8] = ACTIONS(3491), - [anon_sym_i16] = ACTIONS(3491), - [anon_sym_i32] = ACTIONS(3491), - [anon_sym_i64] = ACTIONS(3491), - [anon_sym_u8] = ACTIONS(3491), - [anon_sym_u16] = ACTIONS(3491), - [anon_sym_u32] = ACTIONS(3491), - [anon_sym_u64] = ACTIONS(3491), - [anon_sym_isize] = ACTIONS(3491), - [anon_sym_usize] = ACTIONS(3491), - [anon_sym_f32] = ACTIONS(3491), - [anon_sym_f64] = ACTIONS(3491), - [anon_sym_c_char] = ACTIONS(3491), - [anon_sym_c_schar] = ACTIONS(3491), - [anon_sym_c_uchar] = ACTIONS(3491), - [anon_sym_c_short] = ACTIONS(3491), - [anon_sym_c_ushort] = ACTIONS(3491), - [anon_sym_c_int] = ACTIONS(3491), - [anon_sym_c_uint] = ACTIONS(3491), - [anon_sym_c_long] = ACTIONS(3491), - [anon_sym_c_ulong] = ACTIONS(3491), - [anon_sym_c_longlong] = ACTIONS(3491), - [anon_sym_c_ulonglong] = ACTIONS(3491), - [anon_sym_c_float] = ACTIONS(3491), - [anon_sym_c_double] = ACTIONS(3491), - [anon_sym_c_longdouble] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_defer] = ACTIONS(3491), - [anon_sym_errdefer] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_else] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_expand] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_match] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3491), - [anon_sym_false] = ACTIONS(3491), - [sym_none] = ACTIONS(3491), - [sym_undefined] = ACTIONS(3491), - [sym_sink] = ACTIONS(3491), - [sym_integer] = ACTIONS(3491), - [sym_float] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_multiline_string] = ACTIONS(3489), - [sym_character] = ACTIONS(3489), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3489), - }, - [STATE(1557)] = { - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3495), - [anon_sym_import] = ACTIONS(3495), - [anon_sym_test] = ACTIONS(3495), - [anon_sym_hide] = ACTIONS(3495), - [anon_sym_func] = ACTIONS(3495), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3493), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_void] = ACTIONS(3495), - [anon_sym_anyopaque] = ACTIONS(3495), - [anon_sym_bool] = ACTIONS(3495), - [anon_sym_int] = ACTIONS(3495), - [anon_sym_uint] = ACTIONS(3495), - [anon_sym_float] = ACTIONS(3495), - [anon_sym_range] = ACTIONS(3495), - [anon_sym_i8] = ACTIONS(3495), - [anon_sym_i16] = ACTIONS(3495), - [anon_sym_i32] = ACTIONS(3495), - [anon_sym_i64] = ACTIONS(3495), - [anon_sym_u8] = ACTIONS(3495), - [anon_sym_u16] = ACTIONS(3495), - [anon_sym_u32] = ACTIONS(3495), - [anon_sym_u64] = ACTIONS(3495), - [anon_sym_isize] = ACTIONS(3495), - [anon_sym_usize] = ACTIONS(3495), - [anon_sym_f32] = ACTIONS(3495), - [anon_sym_f64] = ACTIONS(3495), - [anon_sym_c_char] = ACTIONS(3495), - [anon_sym_c_schar] = ACTIONS(3495), - [anon_sym_c_uchar] = ACTIONS(3495), - [anon_sym_c_short] = ACTIONS(3495), - [anon_sym_c_ushort] = ACTIONS(3495), - [anon_sym_c_int] = ACTIONS(3495), - [anon_sym_c_uint] = ACTIONS(3495), - [anon_sym_c_long] = ACTIONS(3495), - [anon_sym_c_ulong] = ACTIONS(3495), - [anon_sym_c_longlong] = ACTIONS(3495), - [anon_sym_c_ulonglong] = ACTIONS(3495), - [anon_sym_c_float] = ACTIONS(3495), - [anon_sym_c_double] = ACTIONS(3495), - [anon_sym_c_longdouble] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_defer] = ACTIONS(3495), - [anon_sym_errdefer] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_else] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_expand] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_match] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_true] = ACTIONS(3495), - [anon_sym_false] = ACTIONS(3495), - [sym_none] = ACTIONS(3495), - [sym_undefined] = ACTIONS(3495), - [sym_sink] = ACTIONS(3495), - [sym_integer] = ACTIONS(3495), - [sym_float] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_multiline_string] = ACTIONS(3493), - [sym_character] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3493), - }, - [STATE(1558)] = { - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3499), - [anon_sym_import] = ACTIONS(3499), - [anon_sym_test] = ACTIONS(3499), - [anon_sym_hide] = ACTIONS(3499), - [anon_sym_func] = ACTIONS(3499), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_RPAREN] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_void] = ACTIONS(3499), - [anon_sym_anyopaque] = ACTIONS(3499), - [anon_sym_bool] = ACTIONS(3499), - [anon_sym_int] = ACTIONS(3499), - [anon_sym_uint] = ACTIONS(3499), - [anon_sym_float] = ACTIONS(3499), - [anon_sym_range] = ACTIONS(3499), - [anon_sym_i8] = ACTIONS(3499), - [anon_sym_i16] = ACTIONS(3499), - [anon_sym_i32] = ACTIONS(3499), - [anon_sym_i64] = ACTIONS(3499), - [anon_sym_u8] = ACTIONS(3499), - [anon_sym_u16] = ACTIONS(3499), - [anon_sym_u32] = ACTIONS(3499), - [anon_sym_u64] = ACTIONS(3499), - [anon_sym_isize] = ACTIONS(3499), - [anon_sym_usize] = ACTIONS(3499), - [anon_sym_f32] = ACTIONS(3499), - [anon_sym_f64] = ACTIONS(3499), - [anon_sym_c_char] = ACTIONS(3499), - [anon_sym_c_schar] = ACTIONS(3499), - [anon_sym_c_uchar] = ACTIONS(3499), - [anon_sym_c_short] = ACTIONS(3499), - [anon_sym_c_ushort] = ACTIONS(3499), - [anon_sym_c_int] = ACTIONS(3499), - [anon_sym_c_uint] = ACTIONS(3499), - [anon_sym_c_long] = ACTIONS(3499), - [anon_sym_c_ulong] = ACTIONS(3499), - [anon_sym_c_longlong] = ACTIONS(3499), - [anon_sym_c_ulonglong] = ACTIONS(3499), - [anon_sym_c_float] = ACTIONS(3499), - [anon_sym_c_double] = ACTIONS(3499), - [anon_sym_c_longdouble] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_defer] = ACTIONS(3499), - [anon_sym_errdefer] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_else] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_expand] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_true] = ACTIONS(3499), - [anon_sym_false] = ACTIONS(3499), - [sym_none] = ACTIONS(3499), - [sym_undefined] = ACTIONS(3499), - [sym_sink] = ACTIONS(3499), - [sym_integer] = ACTIONS(3499), - [sym_float] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_multiline_string] = ACTIONS(3497), - [sym_character] = ACTIONS(3497), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3497), - }, - [STATE(1559)] = { - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3503), - [anon_sym_import] = ACTIONS(3503), - [anon_sym_test] = ACTIONS(3503), - [anon_sym_hide] = ACTIONS(3503), - [anon_sym_func] = ACTIONS(3503), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_RPAREN] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_void] = ACTIONS(3503), - [anon_sym_anyopaque] = ACTIONS(3503), - [anon_sym_bool] = ACTIONS(3503), - [anon_sym_int] = ACTIONS(3503), - [anon_sym_uint] = ACTIONS(3503), - [anon_sym_float] = ACTIONS(3503), - [anon_sym_range] = ACTIONS(3503), - [anon_sym_i8] = ACTIONS(3503), - [anon_sym_i16] = ACTIONS(3503), - [anon_sym_i32] = ACTIONS(3503), - [anon_sym_i64] = ACTIONS(3503), - [anon_sym_u8] = ACTIONS(3503), - [anon_sym_u16] = ACTIONS(3503), - [anon_sym_u32] = ACTIONS(3503), - [anon_sym_u64] = ACTIONS(3503), - [anon_sym_isize] = ACTIONS(3503), - [anon_sym_usize] = ACTIONS(3503), - [anon_sym_f32] = ACTIONS(3503), - [anon_sym_f64] = ACTIONS(3503), - [anon_sym_c_char] = ACTIONS(3503), - [anon_sym_c_schar] = ACTIONS(3503), - [anon_sym_c_uchar] = ACTIONS(3503), - [anon_sym_c_short] = ACTIONS(3503), - [anon_sym_c_ushort] = ACTIONS(3503), - [anon_sym_c_int] = ACTIONS(3503), - [anon_sym_c_uint] = ACTIONS(3503), - [anon_sym_c_long] = ACTIONS(3503), - [anon_sym_c_ulong] = ACTIONS(3503), - [anon_sym_c_longlong] = ACTIONS(3503), - [anon_sym_c_ulonglong] = ACTIONS(3503), - [anon_sym_c_float] = ACTIONS(3503), - [anon_sym_c_double] = ACTIONS(3503), - [anon_sym_c_longdouble] = ACTIONS(3503), - [anon_sym_return] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3503), - [anon_sym_break] = ACTIONS(3503), - [anon_sym_continue] = ACTIONS(3503), - [anon_sym_defer] = ACTIONS(3503), - [anon_sym_errdefer] = ACTIONS(3503), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_else] = ACTIONS(3503), - [anon_sym_while] = ACTIONS(3503), - [anon_sym_expand] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3503), - [anon_sym_match] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_true] = ACTIONS(3503), - [anon_sym_false] = ACTIONS(3503), - [sym_none] = ACTIONS(3503), - [sym_undefined] = ACTIONS(3503), - [sym_sink] = ACTIONS(3503), - [sym_integer] = ACTIONS(3503), - [sym_float] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_multiline_string] = ACTIONS(3501), - [sym_character] = ACTIONS(3501), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3501), - }, - [STATE(1560)] = { - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3507), - [anon_sym_import] = ACTIONS(3507), - [anon_sym_test] = ACTIONS(3507), - [anon_sym_hide] = ACTIONS(3507), - [anon_sym_func] = ACTIONS(3507), - [anon_sym_BANG] = ACTIONS(3505), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_void] = ACTIONS(3507), - [anon_sym_anyopaque] = ACTIONS(3507), - [anon_sym_bool] = ACTIONS(3507), - [anon_sym_int] = ACTIONS(3507), - [anon_sym_uint] = ACTIONS(3507), - [anon_sym_float] = ACTIONS(3507), - [anon_sym_range] = ACTIONS(3507), - [anon_sym_i8] = ACTIONS(3507), - [anon_sym_i16] = ACTIONS(3507), - [anon_sym_i32] = ACTIONS(3507), - [anon_sym_i64] = ACTIONS(3507), - [anon_sym_u8] = ACTIONS(3507), - [anon_sym_u16] = ACTIONS(3507), - [anon_sym_u32] = ACTIONS(3507), - [anon_sym_u64] = ACTIONS(3507), - [anon_sym_isize] = ACTIONS(3507), - [anon_sym_usize] = ACTIONS(3507), - [anon_sym_f32] = ACTIONS(3507), - [anon_sym_f64] = ACTIONS(3507), - [anon_sym_c_char] = ACTIONS(3507), - [anon_sym_c_schar] = ACTIONS(3507), - [anon_sym_c_uchar] = ACTIONS(3507), - [anon_sym_c_short] = ACTIONS(3507), - [anon_sym_c_ushort] = ACTIONS(3507), - [anon_sym_c_int] = ACTIONS(3507), - [anon_sym_c_uint] = ACTIONS(3507), - [anon_sym_c_long] = ACTIONS(3507), - [anon_sym_c_ulong] = ACTIONS(3507), - [anon_sym_c_longlong] = ACTIONS(3507), - [anon_sym_c_ulonglong] = ACTIONS(3507), - [anon_sym_c_float] = ACTIONS(3507), - [anon_sym_c_double] = ACTIONS(3507), - [anon_sym_c_longdouble] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_defer] = ACTIONS(3507), - [anon_sym_errdefer] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_else] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_expand] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_match] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3507), - [anon_sym_false] = ACTIONS(3507), - [sym_none] = ACTIONS(3507), - [sym_undefined] = ACTIONS(3507), - [sym_sink] = ACTIONS(3507), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym_multiline_string] = ACTIONS(3505), - [sym_character] = ACTIONS(3505), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3505), - }, - [STATE(1561)] = { - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3511), - [anon_sym_import] = ACTIONS(3511), - [anon_sym_test] = ACTIONS(3511), - [anon_sym_hide] = ACTIONS(3511), - [anon_sym_func] = ACTIONS(3511), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_RPAREN] = ACTIONS(3509), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_DOLLAR] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_void] = ACTIONS(3511), - [anon_sym_anyopaque] = ACTIONS(3511), - [anon_sym_bool] = ACTIONS(3511), - [anon_sym_int] = ACTIONS(3511), - [anon_sym_uint] = ACTIONS(3511), - [anon_sym_float] = ACTIONS(3511), - [anon_sym_range] = ACTIONS(3511), - [anon_sym_i8] = ACTIONS(3511), - [anon_sym_i16] = ACTIONS(3511), - [anon_sym_i32] = ACTIONS(3511), - [anon_sym_i64] = ACTIONS(3511), - [anon_sym_u8] = ACTIONS(3511), - [anon_sym_u16] = ACTIONS(3511), - [anon_sym_u32] = ACTIONS(3511), - [anon_sym_u64] = ACTIONS(3511), - [anon_sym_isize] = ACTIONS(3511), - [anon_sym_usize] = ACTIONS(3511), - [anon_sym_f32] = ACTIONS(3511), - [anon_sym_f64] = ACTIONS(3511), - [anon_sym_c_char] = ACTIONS(3511), - [anon_sym_c_schar] = ACTIONS(3511), - [anon_sym_c_uchar] = ACTIONS(3511), - [anon_sym_c_short] = ACTIONS(3511), - [anon_sym_c_ushort] = ACTIONS(3511), - [anon_sym_c_int] = ACTIONS(3511), - [anon_sym_c_uint] = ACTIONS(3511), - [anon_sym_c_long] = ACTIONS(3511), - [anon_sym_c_ulong] = ACTIONS(3511), - [anon_sym_c_longlong] = ACTIONS(3511), - [anon_sym_c_ulonglong] = ACTIONS(3511), - [anon_sym_c_float] = ACTIONS(3511), - [anon_sym_c_double] = ACTIONS(3511), - [anon_sym_c_longdouble] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_defer] = ACTIONS(3511), - [anon_sym_errdefer] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_else] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_expand] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [sym_none] = ACTIONS(3511), - [sym_undefined] = ACTIONS(3511), - [sym_sink] = ACTIONS(3511), - [sym_integer] = ACTIONS(3511), - [sym_float] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_multiline_string] = ACTIONS(3509), - [sym_character] = ACTIONS(3509), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3509), - }, - [STATE(1562)] = { - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3515), - [anon_sym_import] = ACTIONS(3515), - [anon_sym_test] = ACTIONS(3515), - [anon_sym_hide] = ACTIONS(3515), - [anon_sym_func] = ACTIONS(3515), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [anon_sym_RPAREN] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_void] = ACTIONS(3515), - [anon_sym_anyopaque] = ACTIONS(3515), - [anon_sym_bool] = ACTIONS(3515), - [anon_sym_int] = ACTIONS(3515), - [anon_sym_uint] = ACTIONS(3515), - [anon_sym_float] = ACTIONS(3515), - [anon_sym_range] = ACTIONS(3515), - [anon_sym_i8] = ACTIONS(3515), - [anon_sym_i16] = ACTIONS(3515), - [anon_sym_i32] = ACTIONS(3515), - [anon_sym_i64] = ACTIONS(3515), - [anon_sym_u8] = ACTIONS(3515), - [anon_sym_u16] = ACTIONS(3515), - [anon_sym_u32] = ACTIONS(3515), - [anon_sym_u64] = ACTIONS(3515), - [anon_sym_isize] = ACTIONS(3515), - [anon_sym_usize] = ACTIONS(3515), - [anon_sym_f32] = ACTIONS(3515), - [anon_sym_f64] = ACTIONS(3515), - [anon_sym_c_char] = ACTIONS(3515), - [anon_sym_c_schar] = ACTIONS(3515), - [anon_sym_c_uchar] = ACTIONS(3515), - [anon_sym_c_short] = ACTIONS(3515), - [anon_sym_c_ushort] = ACTIONS(3515), - [anon_sym_c_int] = ACTIONS(3515), - [anon_sym_c_uint] = ACTIONS(3515), - [anon_sym_c_long] = ACTIONS(3515), - [anon_sym_c_ulong] = ACTIONS(3515), - [anon_sym_c_longlong] = ACTIONS(3515), - [anon_sym_c_ulonglong] = ACTIONS(3515), - [anon_sym_c_float] = ACTIONS(3515), - [anon_sym_c_double] = ACTIONS(3515), - [anon_sym_c_longdouble] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_defer] = ACTIONS(3515), - [anon_sym_errdefer] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_expand] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_match] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_DOT] = ACTIONS(3513), - [anon_sym_true] = ACTIONS(3515), - [anon_sym_false] = ACTIONS(3515), - [sym_none] = ACTIONS(3515), - [sym_undefined] = ACTIONS(3515), - [sym_sink] = ACTIONS(3515), - [sym_integer] = ACTIONS(3515), - [sym_float] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_multiline_string] = ACTIONS(3513), - [sym_character] = ACTIONS(3513), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3513), - }, - [STATE(1563)] = { - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3519), - [anon_sym_import] = ACTIONS(3519), - [anon_sym_test] = ACTIONS(3519), - [anon_sym_hide] = ACTIONS(3519), - [anon_sym_func] = ACTIONS(3519), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_struct] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_void] = ACTIONS(3519), - [anon_sym_anyopaque] = ACTIONS(3519), - [anon_sym_bool] = ACTIONS(3519), - [anon_sym_int] = ACTIONS(3519), - [anon_sym_uint] = ACTIONS(3519), - [anon_sym_float] = ACTIONS(3519), - [anon_sym_range] = ACTIONS(3519), - [anon_sym_i8] = ACTIONS(3519), - [anon_sym_i16] = ACTIONS(3519), - [anon_sym_i32] = ACTIONS(3519), - [anon_sym_i64] = ACTIONS(3519), - [anon_sym_u8] = ACTIONS(3519), - [anon_sym_u16] = ACTIONS(3519), - [anon_sym_u32] = ACTIONS(3519), - [anon_sym_u64] = ACTIONS(3519), - [anon_sym_isize] = ACTIONS(3519), - [anon_sym_usize] = ACTIONS(3519), - [anon_sym_f32] = ACTIONS(3519), - [anon_sym_f64] = ACTIONS(3519), - [anon_sym_c_char] = ACTIONS(3519), - [anon_sym_c_schar] = ACTIONS(3519), - [anon_sym_c_uchar] = ACTIONS(3519), - [anon_sym_c_short] = ACTIONS(3519), - [anon_sym_c_ushort] = ACTIONS(3519), - [anon_sym_c_int] = ACTIONS(3519), - [anon_sym_c_uint] = ACTIONS(3519), - [anon_sym_c_long] = ACTIONS(3519), - [anon_sym_c_ulong] = ACTIONS(3519), - [anon_sym_c_longlong] = ACTIONS(3519), - [anon_sym_c_ulonglong] = ACTIONS(3519), - [anon_sym_c_float] = ACTIONS(3519), - [anon_sym_c_double] = ACTIONS(3519), - [anon_sym_c_longdouble] = ACTIONS(3519), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_break] = ACTIONS(3519), - [anon_sym_continue] = ACTIONS(3519), - [anon_sym_defer] = ACTIONS(3519), - [anon_sym_errdefer] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_else] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_expand] = ACTIONS(3519), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_match] = ACTIONS(3519), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3519), - [anon_sym_false] = ACTIONS(3519), - [sym_none] = ACTIONS(3519), - [sym_undefined] = ACTIONS(3519), - [sym_sink] = ACTIONS(3519), - [sym_integer] = ACTIONS(3519), - [sym_float] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_multiline_string] = ACTIONS(3517), - [sym_character] = ACTIONS(3517), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3517), - }, - [STATE(1564)] = { - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3523), - [anon_sym_import] = ACTIONS(3523), - [anon_sym_test] = ACTIONS(3523), - [anon_sym_hide] = ACTIONS(3523), - [anon_sym_func] = ACTIONS(3523), - [anon_sym_BANG] = ACTIONS(3521), - [anon_sym_struct] = ACTIONS(3523), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_RPAREN] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_void] = ACTIONS(3523), - [anon_sym_anyopaque] = ACTIONS(3523), - [anon_sym_bool] = ACTIONS(3523), - [anon_sym_int] = ACTIONS(3523), - [anon_sym_uint] = ACTIONS(3523), - [anon_sym_float] = ACTIONS(3523), - [anon_sym_range] = ACTIONS(3523), - [anon_sym_i8] = ACTIONS(3523), - [anon_sym_i16] = ACTIONS(3523), - [anon_sym_i32] = ACTIONS(3523), - [anon_sym_i64] = ACTIONS(3523), - [anon_sym_u8] = ACTIONS(3523), - [anon_sym_u16] = ACTIONS(3523), - [anon_sym_u32] = ACTIONS(3523), - [anon_sym_u64] = ACTIONS(3523), - [anon_sym_isize] = ACTIONS(3523), - [anon_sym_usize] = ACTIONS(3523), - [anon_sym_f32] = ACTIONS(3523), - [anon_sym_f64] = ACTIONS(3523), - [anon_sym_c_char] = ACTIONS(3523), - [anon_sym_c_schar] = ACTIONS(3523), - [anon_sym_c_uchar] = ACTIONS(3523), - [anon_sym_c_short] = ACTIONS(3523), - [anon_sym_c_ushort] = ACTIONS(3523), - [anon_sym_c_int] = ACTIONS(3523), - [anon_sym_c_uint] = ACTIONS(3523), - [anon_sym_c_long] = ACTIONS(3523), - [anon_sym_c_ulong] = ACTIONS(3523), - [anon_sym_c_longlong] = ACTIONS(3523), - [anon_sym_c_ulonglong] = ACTIONS(3523), - [anon_sym_c_float] = ACTIONS(3523), - [anon_sym_c_double] = ACTIONS(3523), - [anon_sym_c_longdouble] = ACTIONS(3523), - [anon_sym_return] = ACTIONS(3523), - [anon_sym_yield] = ACTIONS(3523), - [anon_sym_break] = ACTIONS(3523), - [anon_sym_continue] = ACTIONS(3523), - [anon_sym_defer] = ACTIONS(3523), - [anon_sym_errdefer] = ACTIONS(3523), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_else] = ACTIONS(3523), - [anon_sym_while] = ACTIONS(3523), - [anon_sym_expand] = ACTIONS(3523), - [anon_sym_for] = ACTIONS(3523), - [anon_sym_match] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_try] = ACTIONS(3523), - [anon_sym_DOT] = ACTIONS(3521), - [anon_sym_true] = ACTIONS(3523), - [anon_sym_false] = ACTIONS(3523), - [sym_none] = ACTIONS(3523), - [sym_undefined] = ACTIONS(3523), - [sym_sink] = ACTIONS(3523), - [sym_integer] = ACTIONS(3523), - [sym_float] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3521), - [sym_multiline_string] = ACTIONS(3521), - [sym_character] = ACTIONS(3521), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3521), - }, [STATE(1565)] = { - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3527), - [anon_sym_import] = ACTIONS(3527), - [anon_sym_test] = ACTIONS(3527), - [anon_sym_hide] = ACTIONS(3527), - [anon_sym_func] = ACTIONS(3527), - [anon_sym_BANG] = ACTIONS(3525), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_DOLLAR] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_void] = ACTIONS(3527), - [anon_sym_anyopaque] = ACTIONS(3527), - [anon_sym_bool] = ACTIONS(3527), - [anon_sym_int] = ACTIONS(3527), - [anon_sym_uint] = ACTIONS(3527), - [anon_sym_float] = ACTIONS(3527), - [anon_sym_range] = ACTIONS(3527), - [anon_sym_i8] = ACTIONS(3527), - [anon_sym_i16] = ACTIONS(3527), - [anon_sym_i32] = ACTIONS(3527), - [anon_sym_i64] = ACTIONS(3527), - [anon_sym_u8] = ACTIONS(3527), - [anon_sym_u16] = ACTIONS(3527), - [anon_sym_u32] = ACTIONS(3527), - [anon_sym_u64] = ACTIONS(3527), - [anon_sym_isize] = ACTIONS(3527), - [anon_sym_usize] = ACTIONS(3527), - [anon_sym_f32] = ACTIONS(3527), - [anon_sym_f64] = ACTIONS(3527), - [anon_sym_c_char] = ACTIONS(3527), - [anon_sym_c_schar] = ACTIONS(3527), - [anon_sym_c_uchar] = ACTIONS(3527), - [anon_sym_c_short] = ACTIONS(3527), - [anon_sym_c_ushort] = ACTIONS(3527), - [anon_sym_c_int] = ACTIONS(3527), - [anon_sym_c_uint] = ACTIONS(3527), - [anon_sym_c_long] = ACTIONS(3527), - [anon_sym_c_ulong] = ACTIONS(3527), - [anon_sym_c_longlong] = ACTIONS(3527), - [anon_sym_c_ulonglong] = ACTIONS(3527), - [anon_sym_c_float] = ACTIONS(3527), - [anon_sym_c_double] = ACTIONS(3527), - [anon_sym_c_longdouble] = ACTIONS(3527), - [anon_sym_return] = ACTIONS(3527), - [anon_sym_yield] = ACTIONS(3527), - [anon_sym_break] = ACTIONS(3527), - [anon_sym_continue] = ACTIONS(3527), - [anon_sym_defer] = ACTIONS(3527), - [anon_sym_errdefer] = ACTIONS(3527), - [anon_sym_if] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3527), - [anon_sym_while] = ACTIONS(3527), - [anon_sym_expand] = ACTIONS(3527), - [anon_sym_for] = ACTIONS(3527), - [anon_sym_match] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_try] = ACTIONS(3527), - [anon_sym_DOT] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [sym_none] = ACTIONS(3527), - [sym_undefined] = ACTIONS(3527), - [sym_sink] = ACTIONS(3527), - [sym_integer] = ACTIONS(3527), - [sym_float] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3525), - [sym_multiline_string] = ACTIONS(3525), - [sym_character] = ACTIONS(3525), + [sym_type] = STATE(614), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1655), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_anyopaque] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_range] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_c_char] = ACTIONS(1675), + [anon_sym_c_schar] = ACTIONS(1675), + [anon_sym_c_uchar] = ACTIONS(1675), + [anon_sym_c_short] = ACTIONS(1675), + [anon_sym_c_ushort] = ACTIONS(1675), + [anon_sym_c_int] = ACTIONS(1675), + [anon_sym_c_uint] = ACTIONS(1675), + [anon_sym_c_long] = ACTIONS(1675), + [anon_sym_c_ulong] = ACTIONS(1675), + [anon_sym_c_longlong] = ACTIONS(1675), + [anon_sym_c_ulonglong] = ACTIONS(1675), + [anon_sym_c_float] = ACTIONS(1675), + [anon_sym_c_double] = ACTIONS(1675), + [anon_sym_c_longdouble] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3525), + [sym__newline] = ACTIONS(253), }, [STATE(1566)] = { - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3531), - [anon_sym_import] = ACTIONS(3531), - [anon_sym_test] = ACTIONS(3531), - [anon_sym_hide] = ACTIONS(3531), - [anon_sym_func] = ACTIONS(3531), - [anon_sym_BANG] = ACTIONS(3529), - [anon_sym_struct] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_RPAREN] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_DASH] = ACTIONS(3529), - [anon_sym_DOLLAR] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3529), - [anon_sym_void] = ACTIONS(3531), - [anon_sym_anyopaque] = ACTIONS(3531), - [anon_sym_bool] = ACTIONS(3531), - [anon_sym_int] = ACTIONS(3531), - [anon_sym_uint] = ACTIONS(3531), - [anon_sym_float] = ACTIONS(3531), - [anon_sym_range] = ACTIONS(3531), - [anon_sym_i8] = ACTIONS(3531), - [anon_sym_i16] = ACTIONS(3531), - [anon_sym_i32] = ACTIONS(3531), - [anon_sym_i64] = ACTIONS(3531), - [anon_sym_u8] = ACTIONS(3531), - [anon_sym_u16] = ACTIONS(3531), - [anon_sym_u32] = ACTIONS(3531), - [anon_sym_u64] = ACTIONS(3531), - [anon_sym_isize] = ACTIONS(3531), - [anon_sym_usize] = ACTIONS(3531), - [anon_sym_f32] = ACTIONS(3531), - [anon_sym_f64] = ACTIONS(3531), - [anon_sym_c_char] = ACTIONS(3531), - [anon_sym_c_schar] = ACTIONS(3531), - [anon_sym_c_uchar] = ACTIONS(3531), - [anon_sym_c_short] = ACTIONS(3531), - [anon_sym_c_ushort] = ACTIONS(3531), - [anon_sym_c_int] = ACTIONS(3531), - [anon_sym_c_uint] = ACTIONS(3531), - [anon_sym_c_long] = ACTIONS(3531), - [anon_sym_c_ulong] = ACTIONS(3531), - [anon_sym_c_longlong] = ACTIONS(3531), - [anon_sym_c_ulonglong] = ACTIONS(3531), - [anon_sym_c_float] = ACTIONS(3531), - [anon_sym_c_double] = ACTIONS(3531), - [anon_sym_c_longdouble] = ACTIONS(3531), - [anon_sym_return] = ACTIONS(3531), - [anon_sym_yield] = ACTIONS(3531), - [anon_sym_break] = ACTIONS(3531), - [anon_sym_continue] = ACTIONS(3531), - [anon_sym_defer] = ACTIONS(3531), - [anon_sym_errdefer] = ACTIONS(3531), - [anon_sym_if] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_expand] = ACTIONS(3531), - [anon_sym_for] = ACTIONS(3531), - [anon_sym_match] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_try] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [sym_none] = ACTIONS(3531), - [sym_undefined] = ACTIONS(3531), - [sym_sink] = ACTIONS(3531), - [sym_integer] = ACTIONS(3531), - [sym_float] = ACTIONS(3529), - [anon_sym_DQUOTE] = ACTIONS(3529), - [sym_multiline_string] = ACTIONS(3529), - [sym_character] = ACTIONS(3529), + [sym_type] = STATE(615), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1706), + [anon_sym_c_func] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_anyopaque] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_int] = ACTIONS(1723), + [anon_sym_uint] = ACTIONS(1723), + [anon_sym_float] = ACTIONS(1723), + [anon_sym_range] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_c_char] = ACTIONS(1723), + [anon_sym_c_schar] = ACTIONS(1723), + [anon_sym_c_uchar] = ACTIONS(1723), + [anon_sym_c_short] = ACTIONS(1723), + [anon_sym_c_ushort] = ACTIONS(1723), + [anon_sym_c_int] = ACTIONS(1723), + [anon_sym_c_uint] = ACTIONS(1723), + [anon_sym_c_long] = ACTIONS(1723), + [anon_sym_c_ulong] = ACTIONS(1723), + [anon_sym_c_longlong] = ACTIONS(1723), + [anon_sym_c_ulonglong] = ACTIONS(1723), + [anon_sym_c_float] = ACTIONS(1723), + [anon_sym_c_double] = ACTIONS(1723), + [anon_sym_c_longdouble] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3529), + [sym__newline] = ACTIONS(284), }, [STATE(1567)] = { - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3535), - [anon_sym_import] = ACTIONS(3535), - [anon_sym_test] = ACTIONS(3535), - [anon_sym_hide] = ACTIONS(3535), - [anon_sym_func] = ACTIONS(3535), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_DASH] = ACTIONS(3533), - [anon_sym_DOLLAR] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_void] = ACTIONS(3535), - [anon_sym_anyopaque] = ACTIONS(3535), - [anon_sym_bool] = ACTIONS(3535), - [anon_sym_int] = ACTIONS(3535), - [anon_sym_uint] = ACTIONS(3535), - [anon_sym_float] = ACTIONS(3535), - [anon_sym_range] = ACTIONS(3535), - [anon_sym_i8] = ACTIONS(3535), - [anon_sym_i16] = ACTIONS(3535), - [anon_sym_i32] = ACTIONS(3535), - [anon_sym_i64] = ACTIONS(3535), - [anon_sym_u8] = ACTIONS(3535), - [anon_sym_u16] = ACTIONS(3535), - [anon_sym_u32] = ACTIONS(3535), - [anon_sym_u64] = ACTIONS(3535), - [anon_sym_isize] = ACTIONS(3535), - [anon_sym_usize] = ACTIONS(3535), - [anon_sym_f32] = ACTIONS(3535), - [anon_sym_f64] = ACTIONS(3535), - [anon_sym_c_char] = ACTIONS(3535), - [anon_sym_c_schar] = ACTIONS(3535), - [anon_sym_c_uchar] = ACTIONS(3535), - [anon_sym_c_short] = ACTIONS(3535), - [anon_sym_c_ushort] = ACTIONS(3535), - [anon_sym_c_int] = ACTIONS(3535), - [anon_sym_c_uint] = ACTIONS(3535), - [anon_sym_c_long] = ACTIONS(3535), - [anon_sym_c_ulong] = ACTIONS(3535), - [anon_sym_c_longlong] = ACTIONS(3535), - [anon_sym_c_ulonglong] = ACTIONS(3535), - [anon_sym_c_float] = ACTIONS(3535), - [anon_sym_c_double] = ACTIONS(3535), - [anon_sym_c_longdouble] = ACTIONS(3535), - [anon_sym_return] = ACTIONS(3535), - [anon_sym_yield] = ACTIONS(3535), - [anon_sym_break] = ACTIONS(3535), - [anon_sym_continue] = ACTIONS(3535), - [anon_sym_defer] = ACTIONS(3535), - [anon_sym_errdefer] = ACTIONS(3535), - [anon_sym_if] = ACTIONS(3535), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_while] = ACTIONS(3535), - [anon_sym_expand] = ACTIONS(3535), - [anon_sym_for] = ACTIONS(3535), - [anon_sym_match] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_try] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [sym_none] = ACTIONS(3535), - [sym_undefined] = ACTIONS(3535), - [sym_sink] = ACTIONS(3535), - [sym_integer] = ACTIONS(3535), - [sym_float] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_multiline_string] = ACTIONS(3533), - [sym_character] = ACTIONS(3533), + [sym_struct_type] = STATE(2432), + [sym_array_type] = STATE(2432), + [sym_builtin_type] = STATE(2432), + [sym_expression] = STATE(2901), + [sym_binary_expression] = STATE(2432), + [sym_catch_expression] = STATE(2432), + [sym_unary_expression] = STATE(2432), + [sym_field_expression] = STATE(2432), + [sym_intrinsic_call_expression] = STATE(2432), + [sym_call_expression] = STATE(2432), + [sym_index_expression] = STATE(2432), + [sym_slice_expression] = STATE(2432), + [sym_postfix_expression] = STATE(2432), + [sym_struct_literal] = STATE(2432), + [sym_tuple_literal] = STATE(2432), + [sym_enum_literal] = STATE(2432), + [sym_array_literal] = STATE(2432), + [sym_parenthesized_expression] = STATE(2432), + [sym_comptime_block] = STATE(2432), + [sym_function_literal] = STATE(2432), + [sym_qualified_identifier] = STATE(3363), + [sym_boolean] = STATE(2432), + [sym_string] = STATE(2432), + [sym_identifier] = ACTIONS(1926), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(41), + [anon_sym_type] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3533), }, [STATE(1568)] = { - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3539), - [anon_sym_import] = ACTIONS(3539), - [anon_sym_test] = ACTIONS(3539), - [anon_sym_hide] = ACTIONS(3539), - [anon_sym_func] = ACTIONS(3539), - [anon_sym_BANG] = ACTIONS(3537), - [anon_sym_struct] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_DASH] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3537), - [anon_sym_void] = ACTIONS(3539), - [anon_sym_anyopaque] = ACTIONS(3539), - [anon_sym_bool] = ACTIONS(3539), - [anon_sym_int] = ACTIONS(3539), - [anon_sym_uint] = ACTIONS(3539), - [anon_sym_float] = ACTIONS(3539), - [anon_sym_range] = ACTIONS(3539), - [anon_sym_i8] = ACTIONS(3539), - [anon_sym_i16] = ACTIONS(3539), - [anon_sym_i32] = ACTIONS(3539), - [anon_sym_i64] = ACTIONS(3539), - [anon_sym_u8] = ACTIONS(3539), - [anon_sym_u16] = ACTIONS(3539), - [anon_sym_u32] = ACTIONS(3539), - [anon_sym_u64] = ACTIONS(3539), - [anon_sym_isize] = ACTIONS(3539), - [anon_sym_usize] = ACTIONS(3539), - [anon_sym_f32] = ACTIONS(3539), - [anon_sym_f64] = ACTIONS(3539), - [anon_sym_c_char] = ACTIONS(3539), - [anon_sym_c_schar] = ACTIONS(3539), - [anon_sym_c_uchar] = ACTIONS(3539), - [anon_sym_c_short] = ACTIONS(3539), - [anon_sym_c_ushort] = ACTIONS(3539), - [anon_sym_c_int] = ACTIONS(3539), - [anon_sym_c_uint] = ACTIONS(3539), - [anon_sym_c_long] = ACTIONS(3539), - [anon_sym_c_ulong] = ACTIONS(3539), - [anon_sym_c_longlong] = ACTIONS(3539), - [anon_sym_c_ulonglong] = ACTIONS(3539), - [anon_sym_c_float] = ACTIONS(3539), - [anon_sym_c_double] = ACTIONS(3539), - [anon_sym_c_longdouble] = ACTIONS(3539), - [anon_sym_return] = ACTIONS(3539), - [anon_sym_yield] = ACTIONS(3539), - [anon_sym_break] = ACTIONS(3539), - [anon_sym_continue] = ACTIONS(3539), - [anon_sym_defer] = ACTIONS(3539), - [anon_sym_errdefer] = ACTIONS(3539), - [anon_sym_if] = ACTIONS(3539), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_while] = ACTIONS(3539), - [anon_sym_expand] = ACTIONS(3539), - [anon_sym_for] = ACTIONS(3539), - [anon_sym_match] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3537), - [anon_sym_TILDE] = ACTIONS(3537), - [anon_sym_try] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [sym_none] = ACTIONS(3539), - [sym_undefined] = ACTIONS(3539), - [sym_sink] = ACTIONS(3539), - [sym_integer] = ACTIONS(3539), - [sym_float] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_multiline_string] = ACTIONS(3537), - [sym_character] = ACTIONS(3537), + [sym_type] = STATE(619), + [sym__type_atom] = STATE(655), + [sym_parenthesized_type] = STATE(655), + [sym_named_type] = STATE(655), + [sym_optional_type] = STATE(655), + [sym_pointer_type] = STATE(655), + [sym_array_type] = STATE(655), + [sym_function_type] = STATE(655), + [sym_builtin_type] = STATE(655), + [sym_qualified_identifier] = STATE(649), + [sym_identifier] = ACTIONS(1576), + [anon_sym_func] = ACTIONS(1579), + [anon_sym_c_func] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_anyopaque] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_int] = ACTIONS(1600), + [anon_sym_uint] = ACTIONS(1600), + [anon_sym_float] = ACTIONS(1600), + [anon_sym_range] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_c_char] = ACTIONS(1600), + [anon_sym_c_schar] = ACTIONS(1600), + [anon_sym_c_uchar] = ACTIONS(1600), + [anon_sym_c_short] = ACTIONS(1600), + [anon_sym_c_ushort] = ACTIONS(1600), + [anon_sym_c_int] = ACTIONS(1600), + [anon_sym_c_uint] = ACTIONS(1600), + [anon_sym_c_long] = ACTIONS(1600), + [anon_sym_c_ulong] = ACTIONS(1600), + [anon_sym_c_longlong] = ACTIONS(1600), + [anon_sym_c_ulonglong] = ACTIONS(1600), + [anon_sym_c_float] = ACTIONS(1600), + [anon_sym_c_double] = ACTIONS(1600), + [anon_sym_c_longdouble] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3537), + [sym__newline] = ACTIONS(338), }, [STATE(1569)] = { - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3543), - [anon_sym_import] = ACTIONS(3543), - [anon_sym_test] = ACTIONS(3543), - [anon_sym_hide] = ACTIONS(3543), - [anon_sym_func] = ACTIONS(3543), - [anon_sym_BANG] = ACTIONS(3541), - [anon_sym_struct] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_void] = ACTIONS(3543), - [anon_sym_anyopaque] = ACTIONS(3543), - [anon_sym_bool] = ACTIONS(3543), - [anon_sym_int] = ACTIONS(3543), - [anon_sym_uint] = ACTIONS(3543), - [anon_sym_float] = ACTIONS(3543), - [anon_sym_range] = ACTIONS(3543), - [anon_sym_i8] = ACTIONS(3543), - [anon_sym_i16] = ACTIONS(3543), - [anon_sym_i32] = ACTIONS(3543), - [anon_sym_i64] = ACTIONS(3543), - [anon_sym_u8] = ACTIONS(3543), - [anon_sym_u16] = ACTIONS(3543), - [anon_sym_u32] = ACTIONS(3543), - [anon_sym_u64] = ACTIONS(3543), - [anon_sym_isize] = ACTIONS(3543), - [anon_sym_usize] = ACTIONS(3543), - [anon_sym_f32] = ACTIONS(3543), - [anon_sym_f64] = ACTIONS(3543), - [anon_sym_c_char] = ACTIONS(3543), - [anon_sym_c_schar] = ACTIONS(3543), - [anon_sym_c_uchar] = ACTIONS(3543), - [anon_sym_c_short] = ACTIONS(3543), - [anon_sym_c_ushort] = ACTIONS(3543), - [anon_sym_c_int] = ACTIONS(3543), - [anon_sym_c_uint] = ACTIONS(3543), - [anon_sym_c_long] = ACTIONS(3543), - [anon_sym_c_ulong] = ACTIONS(3543), - [anon_sym_c_longlong] = ACTIONS(3543), - [anon_sym_c_ulonglong] = ACTIONS(3543), - [anon_sym_c_float] = ACTIONS(3543), - [anon_sym_c_double] = ACTIONS(3543), - [anon_sym_c_longdouble] = ACTIONS(3543), - [anon_sym_return] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3543), - [anon_sym_break] = ACTIONS(3543), - [anon_sym_continue] = ACTIONS(3543), - [anon_sym_defer] = ACTIONS(3543), - [anon_sym_errdefer] = ACTIONS(3543), - [anon_sym_if] = ACTIONS(3543), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_while] = ACTIONS(3543), - [anon_sym_expand] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3543), - [anon_sym_match] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [sym_none] = ACTIONS(3543), - [sym_undefined] = ACTIONS(3543), - [sym_sink] = ACTIONS(3543), - [sym_integer] = ACTIONS(3543), - [sym_float] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_multiline_string] = ACTIONS(3541), - [sym_character] = ACTIONS(3541), + [sym_type] = STATE(2758), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_orelse] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_or] = ACTIONS(316), + [anon_sym_and] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_xor] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_LT_LT_PIPE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3541), + [sym__newline] = ACTIONS(311), }, [STATE(1570)] = { - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3547), - [anon_sym_import] = ACTIONS(3547), - [anon_sym_test] = ACTIONS(3547), - [anon_sym_hide] = ACTIONS(3547), - [anon_sym_func] = ACTIONS(3547), - [anon_sym_BANG] = ACTIONS(3545), - [anon_sym_struct] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_void] = ACTIONS(3547), - [anon_sym_anyopaque] = ACTIONS(3547), - [anon_sym_bool] = ACTIONS(3547), - [anon_sym_int] = ACTIONS(3547), - [anon_sym_uint] = ACTIONS(3547), - [anon_sym_float] = ACTIONS(3547), - [anon_sym_range] = ACTIONS(3547), - [anon_sym_i8] = ACTIONS(3547), - [anon_sym_i16] = ACTIONS(3547), - [anon_sym_i32] = ACTIONS(3547), - [anon_sym_i64] = ACTIONS(3547), - [anon_sym_u8] = ACTIONS(3547), - [anon_sym_u16] = ACTIONS(3547), - [anon_sym_u32] = ACTIONS(3547), - [anon_sym_u64] = ACTIONS(3547), - [anon_sym_isize] = ACTIONS(3547), - [anon_sym_usize] = ACTIONS(3547), - [anon_sym_f32] = ACTIONS(3547), - [anon_sym_f64] = ACTIONS(3547), - [anon_sym_c_char] = ACTIONS(3547), - [anon_sym_c_schar] = ACTIONS(3547), - [anon_sym_c_uchar] = ACTIONS(3547), - [anon_sym_c_short] = ACTIONS(3547), - [anon_sym_c_ushort] = ACTIONS(3547), - [anon_sym_c_int] = ACTIONS(3547), - [anon_sym_c_uint] = ACTIONS(3547), - [anon_sym_c_long] = ACTIONS(3547), - [anon_sym_c_ulong] = ACTIONS(3547), - [anon_sym_c_longlong] = ACTIONS(3547), - [anon_sym_c_ulonglong] = ACTIONS(3547), - [anon_sym_c_float] = ACTIONS(3547), - [anon_sym_c_double] = ACTIONS(3547), - [anon_sym_c_longdouble] = ACTIONS(3547), - [anon_sym_return] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3547), - [anon_sym_break] = ACTIONS(3547), - [anon_sym_continue] = ACTIONS(3547), - [anon_sym_defer] = ACTIONS(3547), - [anon_sym_errdefer] = ACTIONS(3547), - [anon_sym_if] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_while] = ACTIONS(3547), - [anon_sym_expand] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3547), - [anon_sym_match] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [sym_none] = ACTIONS(3547), - [sym_undefined] = ACTIONS(3547), - [sym_sink] = ACTIONS(3547), - [sym_integer] = ACTIONS(3547), - [sym_float] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_multiline_string] = ACTIONS(3545), - [sym_character] = ACTIONS(3545), + [sym_type] = STATE(2731), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_mut] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(253), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3545), + [sym__newline] = ACTIONS(253), }, [STATE(1571)] = { - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3551), - [anon_sym_import] = ACTIONS(3551), - [anon_sym_test] = ACTIONS(3551), - [anon_sym_hide] = ACTIONS(3551), - [anon_sym_func] = ACTIONS(3551), - [anon_sym_BANG] = ACTIONS(3549), - [anon_sym_struct] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_DASH] = ACTIONS(3549), - [anon_sym_DOLLAR] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_void] = ACTIONS(3551), - [anon_sym_anyopaque] = ACTIONS(3551), - [anon_sym_bool] = ACTIONS(3551), - [anon_sym_int] = ACTIONS(3551), - [anon_sym_uint] = ACTIONS(3551), - [anon_sym_float] = ACTIONS(3551), - [anon_sym_range] = ACTIONS(3551), - [anon_sym_i8] = ACTIONS(3551), - [anon_sym_i16] = ACTIONS(3551), - [anon_sym_i32] = ACTIONS(3551), - [anon_sym_i64] = ACTIONS(3551), - [anon_sym_u8] = ACTIONS(3551), - [anon_sym_u16] = ACTIONS(3551), - [anon_sym_u32] = ACTIONS(3551), - [anon_sym_u64] = ACTIONS(3551), - [anon_sym_isize] = ACTIONS(3551), - [anon_sym_usize] = ACTIONS(3551), - [anon_sym_f32] = ACTIONS(3551), - [anon_sym_f64] = ACTIONS(3551), - [anon_sym_c_char] = ACTIONS(3551), - [anon_sym_c_schar] = ACTIONS(3551), - [anon_sym_c_uchar] = ACTIONS(3551), - [anon_sym_c_short] = ACTIONS(3551), - [anon_sym_c_ushort] = ACTIONS(3551), - [anon_sym_c_int] = ACTIONS(3551), - [anon_sym_c_uint] = ACTIONS(3551), - [anon_sym_c_long] = ACTIONS(3551), - [anon_sym_c_ulong] = ACTIONS(3551), - [anon_sym_c_longlong] = ACTIONS(3551), - [anon_sym_c_ulonglong] = ACTIONS(3551), - [anon_sym_c_float] = ACTIONS(3551), - [anon_sym_c_double] = ACTIONS(3551), - [anon_sym_c_longdouble] = ACTIONS(3551), - [anon_sym_return] = ACTIONS(3551), - [anon_sym_yield] = ACTIONS(3551), - [anon_sym_break] = ACTIONS(3551), - [anon_sym_continue] = ACTIONS(3551), - [anon_sym_defer] = ACTIONS(3551), - [anon_sym_errdefer] = ACTIONS(3551), - [anon_sym_if] = ACTIONS(3551), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_while] = ACTIONS(3551), - [anon_sym_expand] = ACTIONS(3551), - [anon_sym_for] = ACTIONS(3551), - [anon_sym_match] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [sym_none] = ACTIONS(3551), - [sym_undefined] = ACTIONS(3551), - [sym_sink] = ACTIONS(3551), - [sym_integer] = ACTIONS(3551), - [sym_float] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_multiline_string] = ACTIONS(3549), - [sym_character] = ACTIONS(3549), + [sym_type] = STATE(2737), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_mut] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(253), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3549), + [sym__newline] = ACTIONS(253), }, [STATE(1572)] = { - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3555), - [anon_sym_import] = ACTIONS(3555), - [anon_sym_test] = ACTIONS(3555), - [anon_sym_hide] = ACTIONS(3555), - [anon_sym_func] = ACTIONS(3555), - [anon_sym_BANG] = ACTIONS(3553), - [anon_sym_struct] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3553), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_DASH] = ACTIONS(3553), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3553), - [anon_sym_void] = ACTIONS(3555), - [anon_sym_anyopaque] = ACTIONS(3555), - [anon_sym_bool] = ACTIONS(3555), - [anon_sym_int] = ACTIONS(3555), - [anon_sym_uint] = ACTIONS(3555), - [anon_sym_float] = ACTIONS(3555), - [anon_sym_range] = ACTIONS(3555), - [anon_sym_i8] = ACTIONS(3555), - [anon_sym_i16] = ACTIONS(3555), - [anon_sym_i32] = ACTIONS(3555), - [anon_sym_i64] = ACTIONS(3555), - [anon_sym_u8] = ACTIONS(3555), - [anon_sym_u16] = ACTIONS(3555), - [anon_sym_u32] = ACTIONS(3555), - [anon_sym_u64] = ACTIONS(3555), - [anon_sym_isize] = ACTIONS(3555), - [anon_sym_usize] = ACTIONS(3555), - [anon_sym_f32] = ACTIONS(3555), - [anon_sym_f64] = ACTIONS(3555), - [anon_sym_c_char] = ACTIONS(3555), - [anon_sym_c_schar] = ACTIONS(3555), - [anon_sym_c_uchar] = ACTIONS(3555), - [anon_sym_c_short] = ACTIONS(3555), - [anon_sym_c_ushort] = ACTIONS(3555), - [anon_sym_c_int] = ACTIONS(3555), - [anon_sym_c_uint] = ACTIONS(3555), - [anon_sym_c_long] = ACTIONS(3555), - [anon_sym_c_ulong] = ACTIONS(3555), - [anon_sym_c_longlong] = ACTIONS(3555), - [anon_sym_c_ulonglong] = ACTIONS(3555), - [anon_sym_c_float] = ACTIONS(3555), - [anon_sym_c_double] = ACTIONS(3555), - [anon_sym_c_longdouble] = ACTIONS(3555), - [anon_sym_return] = ACTIONS(3555), - [anon_sym_yield] = ACTIONS(3555), - [anon_sym_break] = ACTIONS(3555), - [anon_sym_continue] = ACTIONS(3555), - [anon_sym_defer] = ACTIONS(3555), - [anon_sym_errdefer] = ACTIONS(3555), - [anon_sym_if] = ACTIONS(3555), - [anon_sym_else] = ACTIONS(3555), - [anon_sym_while] = ACTIONS(3555), - [anon_sym_expand] = ACTIONS(3555), - [anon_sym_for] = ACTIONS(3555), - [anon_sym_match] = ACTIONS(3555), - [anon_sym_AMP] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3553), - [anon_sym_try] = ACTIONS(3555), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [sym_none] = ACTIONS(3555), - [sym_undefined] = ACTIONS(3555), - [sym_sink] = ACTIONS(3555), - [sym_integer] = ACTIONS(3555), - [sym_float] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_multiline_string] = ACTIONS(3553), - [sym_character] = ACTIONS(3553), + [sym_type] = STATE(2748), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_mut] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3553), + [sym__newline] = ACTIONS(338), }, [STATE(1573)] = { - [ts_builtin_sym_end] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3559), - [anon_sym_import] = ACTIONS(3559), - [anon_sym_test] = ACTIONS(3559), - [anon_sym_hide] = ACTIONS(3559), - [anon_sym_func] = ACTIONS(3559), - [anon_sym_BANG] = ACTIONS(3557), - [anon_sym_struct] = ACTIONS(3559), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_RPAREN] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_void] = ACTIONS(3559), - [anon_sym_anyopaque] = ACTIONS(3559), - [anon_sym_bool] = ACTIONS(3559), - [anon_sym_int] = ACTIONS(3559), - [anon_sym_uint] = ACTIONS(3559), - [anon_sym_float] = ACTIONS(3559), - [anon_sym_range] = ACTIONS(3559), - [anon_sym_i8] = ACTIONS(3559), - [anon_sym_i16] = ACTIONS(3559), - [anon_sym_i32] = ACTIONS(3559), - [anon_sym_i64] = ACTIONS(3559), - [anon_sym_u8] = ACTIONS(3559), - [anon_sym_u16] = ACTIONS(3559), - [anon_sym_u32] = ACTIONS(3559), - [anon_sym_u64] = ACTIONS(3559), - [anon_sym_isize] = ACTIONS(3559), - [anon_sym_usize] = ACTIONS(3559), - [anon_sym_f32] = ACTIONS(3559), - [anon_sym_f64] = ACTIONS(3559), - [anon_sym_c_char] = ACTIONS(3559), - [anon_sym_c_schar] = ACTIONS(3559), - [anon_sym_c_uchar] = ACTIONS(3559), - [anon_sym_c_short] = ACTIONS(3559), - [anon_sym_c_ushort] = ACTIONS(3559), - [anon_sym_c_int] = ACTIONS(3559), - [anon_sym_c_uint] = ACTIONS(3559), - [anon_sym_c_long] = ACTIONS(3559), - [anon_sym_c_ulong] = ACTIONS(3559), - [anon_sym_c_longlong] = ACTIONS(3559), - [anon_sym_c_ulonglong] = ACTIONS(3559), - [anon_sym_c_float] = ACTIONS(3559), - [anon_sym_c_double] = ACTIONS(3559), - [anon_sym_c_longdouble] = ACTIONS(3559), - [anon_sym_return] = ACTIONS(3559), - [anon_sym_yield] = ACTIONS(3559), - [anon_sym_break] = ACTIONS(3559), - [anon_sym_continue] = ACTIONS(3559), - [anon_sym_defer] = ACTIONS(3559), - [anon_sym_errdefer] = ACTIONS(3559), - [anon_sym_if] = ACTIONS(3559), - [anon_sym_else] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3559), - [anon_sym_expand] = ACTIONS(3559), - [anon_sym_for] = ACTIONS(3559), - [anon_sym_match] = ACTIONS(3559), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_try] = ACTIONS(3559), - [anon_sym_DOT] = ACTIONS(3557), - [anon_sym_true] = ACTIONS(3559), - [anon_sym_false] = ACTIONS(3559), - [sym_none] = ACTIONS(3559), - [sym_undefined] = ACTIONS(3559), - [sym_sink] = ACTIONS(3559), - [sym_integer] = ACTIONS(3559), - [sym_float] = ACTIONS(3557), - [anon_sym_DQUOTE] = ACTIONS(3557), - [sym_multiline_string] = ACTIONS(3557), - [sym_character] = ACTIONS(3557), + [sym_type] = STATE(2718), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_mut] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(284), + [anon_sym_orelse] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_or] = ACTIONS(289), + [anon_sym_and] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_xor] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_LT_LT_PIPE] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(284), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3557), + [sym__newline] = ACTIONS(284), }, [STATE(1574)] = { - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3563), - [anon_sym_import] = ACTIONS(3563), - [anon_sym_test] = ACTIONS(3563), - [anon_sym_hide] = ACTIONS(3563), - [anon_sym_func] = ACTIONS(3563), - [anon_sym_BANG] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_RPAREN] = ACTIONS(3561), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_DOLLAR] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_void] = ACTIONS(3563), - [anon_sym_anyopaque] = ACTIONS(3563), - [anon_sym_bool] = ACTIONS(3563), - [anon_sym_int] = ACTIONS(3563), - [anon_sym_uint] = ACTIONS(3563), - [anon_sym_float] = ACTIONS(3563), - [anon_sym_range] = ACTIONS(3563), - [anon_sym_i8] = ACTIONS(3563), - [anon_sym_i16] = ACTIONS(3563), - [anon_sym_i32] = ACTIONS(3563), - [anon_sym_i64] = ACTIONS(3563), - [anon_sym_u8] = ACTIONS(3563), - [anon_sym_u16] = ACTIONS(3563), - [anon_sym_u32] = ACTIONS(3563), - [anon_sym_u64] = ACTIONS(3563), - [anon_sym_isize] = ACTIONS(3563), - [anon_sym_usize] = ACTIONS(3563), - [anon_sym_f32] = ACTIONS(3563), - [anon_sym_f64] = ACTIONS(3563), - [anon_sym_c_char] = ACTIONS(3563), - [anon_sym_c_schar] = ACTIONS(3563), - [anon_sym_c_uchar] = ACTIONS(3563), - [anon_sym_c_short] = ACTIONS(3563), - [anon_sym_c_ushort] = ACTIONS(3563), - [anon_sym_c_int] = ACTIONS(3563), - [anon_sym_c_uint] = ACTIONS(3563), - [anon_sym_c_long] = ACTIONS(3563), - [anon_sym_c_ulong] = ACTIONS(3563), - [anon_sym_c_longlong] = ACTIONS(3563), - [anon_sym_c_ulonglong] = ACTIONS(3563), - [anon_sym_c_float] = ACTIONS(3563), - [anon_sym_c_double] = ACTIONS(3563), - [anon_sym_c_longdouble] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(3563), - [anon_sym_yield] = ACTIONS(3563), - [anon_sym_break] = ACTIONS(3563), - [anon_sym_continue] = ACTIONS(3563), - [anon_sym_defer] = ACTIONS(3563), - [anon_sym_errdefer] = ACTIONS(3563), - [anon_sym_if] = ACTIONS(3563), - [anon_sym_else] = ACTIONS(3563), - [anon_sym_while] = ACTIONS(3563), - [anon_sym_expand] = ACTIONS(3563), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_match] = ACTIONS(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_try] = ACTIONS(3563), - [anon_sym_DOT] = ACTIONS(3561), - [anon_sym_true] = ACTIONS(3563), - [anon_sym_false] = ACTIONS(3563), - [sym_none] = ACTIONS(3563), - [sym_undefined] = ACTIONS(3563), - [sym_sink] = ACTIONS(3563), - [sym_integer] = ACTIONS(3563), - [sym_float] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [sym_multiline_string] = ACTIONS(3561), - [sym_character] = ACTIONS(3561), + [sym_type] = STATE(2769), + [sym__type_atom] = STATE(2661), + [sym_parenthesized_type] = STATE(2661), + [sym_named_type] = STATE(2661), + [sym_optional_type] = STATE(2661), + [sym_pointer_type] = STATE(2661), + [sym_array_type] = STATE(2661), + [sym_function_type] = STATE(2661), + [sym_builtin_type] = STATE(2661), + [sym_qualified_identifier] = STATE(2689), + [sym_identifier] = ACTIONS(3342), + [anon_sym_func] = ACTIONS(3344), + [anon_sym_c_func] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_mut] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_anyopaque] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), + [anon_sym_float] = ACTIONS(2575), + [anon_sym_range] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_c_char] = ACTIONS(2575), + [anon_sym_c_schar] = ACTIONS(2575), + [anon_sym_c_uchar] = ACTIONS(2575), + [anon_sym_c_short] = ACTIONS(2575), + [anon_sym_c_ushort] = ACTIONS(2575), + [anon_sym_c_int] = ACTIONS(2575), + [anon_sym_c_uint] = ACTIONS(2575), + [anon_sym_c_long] = ACTIONS(2575), + [anon_sym_c_ulong] = ACTIONS(2575), + [anon_sym_c_longlong] = ACTIONS(2575), + [anon_sym_c_ulonglong] = ACTIONS(2575), + [anon_sym_c_float] = ACTIONS(2575), + [anon_sym_c_double] = ACTIONS(2575), + [anon_sym_c_longdouble] = ACTIONS(2575), + [anon_sym_PIPE2] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(338), + [anon_sym_orelse] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(343), + [anon_sym_or] = ACTIONS(343), + [anon_sym_and] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(338), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3561), + [sym__newline] = ACTIONS(338), }, [STATE(1575)] = { - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3567), - [anon_sym_import] = ACTIONS(3567), - [anon_sym_test] = ACTIONS(3567), - [anon_sym_hide] = ACTIONS(3567), - [anon_sym_func] = ACTIONS(3567), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_struct] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_DOLLAR] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_void] = ACTIONS(3567), - [anon_sym_anyopaque] = ACTIONS(3567), - [anon_sym_bool] = ACTIONS(3567), - [anon_sym_int] = ACTIONS(3567), - [anon_sym_uint] = ACTIONS(3567), - [anon_sym_float] = ACTIONS(3567), - [anon_sym_range] = ACTIONS(3567), - [anon_sym_i8] = ACTIONS(3567), - [anon_sym_i16] = ACTIONS(3567), - [anon_sym_i32] = ACTIONS(3567), - [anon_sym_i64] = ACTIONS(3567), - [anon_sym_u8] = ACTIONS(3567), - [anon_sym_u16] = ACTIONS(3567), - [anon_sym_u32] = ACTIONS(3567), - [anon_sym_u64] = ACTIONS(3567), - [anon_sym_isize] = ACTIONS(3567), - [anon_sym_usize] = ACTIONS(3567), - [anon_sym_f32] = ACTIONS(3567), - [anon_sym_f64] = ACTIONS(3567), - [anon_sym_c_char] = ACTIONS(3567), - [anon_sym_c_schar] = ACTIONS(3567), - [anon_sym_c_uchar] = ACTIONS(3567), - [anon_sym_c_short] = ACTIONS(3567), - [anon_sym_c_ushort] = ACTIONS(3567), - [anon_sym_c_int] = ACTIONS(3567), - [anon_sym_c_uint] = ACTIONS(3567), - [anon_sym_c_long] = ACTIONS(3567), - [anon_sym_c_ulong] = ACTIONS(3567), - [anon_sym_c_longlong] = ACTIONS(3567), - [anon_sym_c_ulonglong] = ACTIONS(3567), - [anon_sym_c_float] = ACTIONS(3567), - [anon_sym_c_double] = ACTIONS(3567), - [anon_sym_c_longdouble] = ACTIONS(3567), - [anon_sym_return] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3567), - [anon_sym_break] = ACTIONS(3567), - [anon_sym_continue] = ACTIONS(3567), - [anon_sym_defer] = ACTIONS(3567), - [anon_sym_errdefer] = ACTIONS(3567), - [anon_sym_if] = ACTIONS(3567), - [anon_sym_else] = ACTIONS(3567), - [anon_sym_while] = ACTIONS(3567), - [anon_sym_expand] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3567), - [anon_sym_match] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_true] = ACTIONS(3567), - [anon_sym_false] = ACTIONS(3567), - [sym_none] = ACTIONS(3567), - [sym_undefined] = ACTIONS(3567), - [sym_sink] = ACTIONS(3567), - [sym_integer] = ACTIONS(3567), - [sym_float] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(3565), - [sym_multiline_string] = ACTIONS(3565), - [sym_character] = ACTIONS(3565), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_test] = ACTIONS(3410), + [anon_sym_hide] = ACTIONS(3410), + [anon_sym_func] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_RPAREN] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_DOLLAR] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_anyopaque] = ACTIONS(3410), + [anon_sym_bool] = ACTIONS(3410), + [anon_sym_int] = ACTIONS(3410), + [anon_sym_uint] = ACTIONS(3410), + [anon_sym_float] = ACTIONS(3410), + [anon_sym_range] = ACTIONS(3410), + [anon_sym_i8] = ACTIONS(3410), + [anon_sym_i16] = ACTIONS(3410), + [anon_sym_i32] = ACTIONS(3410), + [anon_sym_i64] = ACTIONS(3410), + [anon_sym_u8] = ACTIONS(3410), + [anon_sym_u16] = ACTIONS(3410), + [anon_sym_u32] = ACTIONS(3410), + [anon_sym_u64] = ACTIONS(3410), + [anon_sym_isize] = ACTIONS(3410), + [anon_sym_usize] = ACTIONS(3410), + [anon_sym_f32] = ACTIONS(3410), + [anon_sym_f64] = ACTIONS(3410), + [anon_sym_c_char] = ACTIONS(3410), + [anon_sym_c_schar] = ACTIONS(3410), + [anon_sym_c_uchar] = ACTIONS(3410), + [anon_sym_c_short] = ACTIONS(3410), + [anon_sym_c_ushort] = ACTIONS(3410), + [anon_sym_c_int] = ACTIONS(3410), + [anon_sym_c_uint] = ACTIONS(3410), + [anon_sym_c_long] = ACTIONS(3410), + [anon_sym_c_ulong] = ACTIONS(3410), + [anon_sym_c_longlong] = ACTIONS(3410), + [anon_sym_c_ulonglong] = ACTIONS(3410), + [anon_sym_c_float] = ACTIONS(3410), + [anon_sym_c_double] = ACTIONS(3410), + [anon_sym_c_longdouble] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_COLON] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_defer] = ACTIONS(3410), + [anon_sym_errdefer] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_else] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_expand] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_true] = ACTIONS(3410), + [anon_sym_false] = ACTIONS(3410), + [sym_none] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [sym_sink] = ACTIONS(3410), + [sym_integer] = ACTIONS(3410), + [sym_float] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_multiline_string] = ACTIONS(3408), + [sym_character] = ACTIONS(3408), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3565), + [sym__newline] = ACTIONS(3408), }, [STATE(1576)] = { - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3571), - [anon_sym_import] = ACTIONS(3571), - [anon_sym_test] = ACTIONS(3571), - [anon_sym_hide] = ACTIONS(3571), - [anon_sym_func] = ACTIONS(3571), - [anon_sym_BANG] = ACTIONS(3569), - [anon_sym_struct] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_RPAREN] = ACTIONS(3569), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_void] = ACTIONS(3571), - [anon_sym_anyopaque] = ACTIONS(3571), - [anon_sym_bool] = ACTIONS(3571), - [anon_sym_int] = ACTIONS(3571), - [anon_sym_uint] = ACTIONS(3571), - [anon_sym_float] = ACTIONS(3571), - [anon_sym_range] = ACTIONS(3571), - [anon_sym_i8] = ACTIONS(3571), - [anon_sym_i16] = ACTIONS(3571), - [anon_sym_i32] = ACTIONS(3571), - [anon_sym_i64] = ACTIONS(3571), - [anon_sym_u8] = ACTIONS(3571), - [anon_sym_u16] = ACTIONS(3571), - [anon_sym_u32] = ACTIONS(3571), - [anon_sym_u64] = ACTIONS(3571), - [anon_sym_isize] = ACTIONS(3571), - [anon_sym_usize] = ACTIONS(3571), - [anon_sym_f32] = ACTIONS(3571), - [anon_sym_f64] = ACTIONS(3571), - [anon_sym_c_char] = ACTIONS(3571), - [anon_sym_c_schar] = ACTIONS(3571), - [anon_sym_c_uchar] = ACTIONS(3571), - [anon_sym_c_short] = ACTIONS(3571), - [anon_sym_c_ushort] = ACTIONS(3571), - [anon_sym_c_int] = ACTIONS(3571), - [anon_sym_c_uint] = ACTIONS(3571), - [anon_sym_c_long] = ACTIONS(3571), - [anon_sym_c_ulong] = ACTIONS(3571), - [anon_sym_c_longlong] = ACTIONS(3571), - [anon_sym_c_ulonglong] = ACTIONS(3571), - [anon_sym_c_float] = ACTIONS(3571), - [anon_sym_c_double] = ACTIONS(3571), - [anon_sym_c_longdouble] = ACTIONS(3571), - [anon_sym_return] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3571), - [anon_sym_break] = ACTIONS(3571), - [anon_sym_continue] = ACTIONS(3571), - [anon_sym_defer] = ACTIONS(3571), - [anon_sym_errdefer] = ACTIONS(3571), - [anon_sym_if] = ACTIONS(3571), - [anon_sym_else] = ACTIONS(3571), - [anon_sym_while] = ACTIONS(3571), - [anon_sym_expand] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3571), - [anon_sym_match] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3571), - [anon_sym_DOT] = ACTIONS(3569), - [anon_sym_true] = ACTIONS(3571), - [anon_sym_false] = ACTIONS(3571), - [sym_none] = ACTIONS(3571), - [sym_undefined] = ACTIONS(3571), - [sym_sink] = ACTIONS(3571), - [sym_integer] = ACTIONS(3571), - [sym_float] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [sym_multiline_string] = ACTIONS(3569), - [sym_character] = ACTIONS(3569), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3416), + [anon_sym_import] = ACTIONS(3416), + [anon_sym_test] = ACTIONS(3416), + [anon_sym_hide] = ACTIONS(3416), + [anon_sym_func] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_DOLLAR] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_void] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_anyopaque] = ACTIONS(3416), + [anon_sym_bool] = ACTIONS(3416), + [anon_sym_int] = ACTIONS(3416), + [anon_sym_uint] = ACTIONS(3416), + [anon_sym_float] = ACTIONS(3416), + [anon_sym_range] = ACTIONS(3416), + [anon_sym_i8] = ACTIONS(3416), + [anon_sym_i16] = ACTIONS(3416), + [anon_sym_i32] = ACTIONS(3416), + [anon_sym_i64] = ACTIONS(3416), + [anon_sym_u8] = ACTIONS(3416), + [anon_sym_u16] = ACTIONS(3416), + [anon_sym_u32] = ACTIONS(3416), + [anon_sym_u64] = ACTIONS(3416), + [anon_sym_isize] = ACTIONS(3416), + [anon_sym_usize] = ACTIONS(3416), + [anon_sym_f32] = ACTIONS(3416), + [anon_sym_f64] = ACTIONS(3416), + [anon_sym_c_char] = ACTIONS(3416), + [anon_sym_c_schar] = ACTIONS(3416), + [anon_sym_c_uchar] = ACTIONS(3416), + [anon_sym_c_short] = ACTIONS(3416), + [anon_sym_c_ushort] = ACTIONS(3416), + [anon_sym_c_int] = ACTIONS(3416), + [anon_sym_c_uint] = ACTIONS(3416), + [anon_sym_c_long] = ACTIONS(3416), + [anon_sym_c_ulong] = ACTIONS(3416), + [anon_sym_c_longlong] = ACTIONS(3416), + [anon_sym_c_ulonglong] = ACTIONS(3416), + [anon_sym_c_float] = ACTIONS(3416), + [anon_sym_c_double] = ACTIONS(3416), + [anon_sym_c_longdouble] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_COLON] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_defer] = ACTIONS(3416), + [anon_sym_errdefer] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_else] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_expand] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3416), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_true] = ACTIONS(3416), + [anon_sym_false] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_undefined] = ACTIONS(3416), + [sym_sink] = ACTIONS(3416), + [sym_integer] = ACTIONS(3416), + [sym_float] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [sym_multiline_string] = ACTIONS(3414), + [sym_character] = ACTIONS(3414), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3569), + [sym__newline] = ACTIONS(3414), }, [STATE(1577)] = { - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3575), - [anon_sym_import] = ACTIONS(3575), - [anon_sym_test] = ACTIONS(3575), - [anon_sym_hide] = ACTIONS(3575), - [anon_sym_func] = ACTIONS(3575), - [anon_sym_BANG] = ACTIONS(3573), - [anon_sym_struct] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_void] = ACTIONS(3575), - [anon_sym_anyopaque] = ACTIONS(3575), - [anon_sym_bool] = ACTIONS(3575), - [anon_sym_int] = ACTIONS(3575), - [anon_sym_uint] = ACTIONS(3575), - [anon_sym_float] = ACTIONS(3575), - [anon_sym_range] = ACTIONS(3575), - [anon_sym_i8] = ACTIONS(3575), - [anon_sym_i16] = ACTIONS(3575), - [anon_sym_i32] = ACTIONS(3575), - [anon_sym_i64] = ACTIONS(3575), - [anon_sym_u8] = ACTIONS(3575), - [anon_sym_u16] = ACTIONS(3575), - [anon_sym_u32] = ACTIONS(3575), - [anon_sym_u64] = ACTIONS(3575), - [anon_sym_isize] = ACTIONS(3575), - [anon_sym_usize] = ACTIONS(3575), - [anon_sym_f32] = ACTIONS(3575), - [anon_sym_f64] = ACTIONS(3575), - [anon_sym_c_char] = ACTIONS(3575), - [anon_sym_c_schar] = ACTIONS(3575), - [anon_sym_c_uchar] = ACTIONS(3575), - [anon_sym_c_short] = ACTIONS(3575), - [anon_sym_c_ushort] = ACTIONS(3575), - [anon_sym_c_int] = ACTIONS(3575), - [anon_sym_c_uint] = ACTIONS(3575), - [anon_sym_c_long] = ACTIONS(3575), - [anon_sym_c_ulong] = ACTIONS(3575), - [anon_sym_c_longlong] = ACTIONS(3575), - [anon_sym_c_ulonglong] = ACTIONS(3575), - [anon_sym_c_float] = ACTIONS(3575), - [anon_sym_c_double] = ACTIONS(3575), - [anon_sym_c_longdouble] = ACTIONS(3575), - [anon_sym_return] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3575), - [anon_sym_break] = ACTIONS(3575), - [anon_sym_continue] = ACTIONS(3575), - [anon_sym_defer] = ACTIONS(3575), - [anon_sym_errdefer] = ACTIONS(3575), - [anon_sym_if] = ACTIONS(3575), - [anon_sym_else] = ACTIONS(3575), - [anon_sym_while] = ACTIONS(3575), - [anon_sym_expand] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3575), - [anon_sym_match] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3575), - [anon_sym_DOT] = ACTIONS(3573), - [anon_sym_true] = ACTIONS(3575), - [anon_sym_false] = ACTIONS(3575), - [sym_none] = ACTIONS(3575), - [sym_undefined] = ACTIONS(3575), - [sym_sink] = ACTIONS(3575), - [sym_integer] = ACTIONS(3575), - [sym_float] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [sym_multiline_string] = ACTIONS(3573), - [sym_character] = ACTIONS(3573), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_test] = ACTIONS(3422), + [anon_sym_hide] = ACTIONS(3422), + [anon_sym_func] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_DOLLAR] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_anyopaque] = ACTIONS(3422), + [anon_sym_bool] = ACTIONS(3422), + [anon_sym_int] = ACTIONS(3422), + [anon_sym_uint] = ACTIONS(3422), + [anon_sym_float] = ACTIONS(3422), + [anon_sym_range] = ACTIONS(3422), + [anon_sym_i8] = ACTIONS(3422), + [anon_sym_i16] = ACTIONS(3422), + [anon_sym_i32] = ACTIONS(3422), + [anon_sym_i64] = ACTIONS(3422), + [anon_sym_u8] = ACTIONS(3422), + [anon_sym_u16] = ACTIONS(3422), + [anon_sym_u32] = ACTIONS(3422), + [anon_sym_u64] = ACTIONS(3422), + [anon_sym_isize] = ACTIONS(3422), + [anon_sym_usize] = ACTIONS(3422), + [anon_sym_f32] = ACTIONS(3422), + [anon_sym_f64] = ACTIONS(3422), + [anon_sym_c_char] = ACTIONS(3422), + [anon_sym_c_schar] = ACTIONS(3422), + [anon_sym_c_uchar] = ACTIONS(3422), + [anon_sym_c_short] = ACTIONS(3422), + [anon_sym_c_ushort] = ACTIONS(3422), + [anon_sym_c_int] = ACTIONS(3422), + [anon_sym_c_uint] = ACTIONS(3422), + [anon_sym_c_long] = ACTIONS(3422), + [anon_sym_c_ulong] = ACTIONS(3422), + [anon_sym_c_longlong] = ACTIONS(3422), + [anon_sym_c_ulonglong] = ACTIONS(3422), + [anon_sym_c_float] = ACTIONS(3422), + [anon_sym_c_double] = ACTIONS(3422), + [anon_sym_c_longdouble] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_defer] = ACTIONS(3422), + [anon_sym_errdefer] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_expand] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [sym_sink] = ACTIONS(3422), + [sym_integer] = ACTIONS(3422), + [sym_float] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [sym_multiline_string] = ACTIONS(3420), + [sym_character] = ACTIONS(3420), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3573), + [sym__newline] = ACTIONS(3420), }, [STATE(1578)] = { - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3579), - [anon_sym_import] = ACTIONS(3579), - [anon_sym_test] = ACTIONS(3579), - [anon_sym_hide] = ACTIONS(3579), - [anon_sym_func] = ACTIONS(3579), - [anon_sym_BANG] = ACTIONS(3577), - [anon_sym_struct] = ACTIONS(3579), - [anon_sym_LPAREN] = ACTIONS(3577), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_DOLLAR] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_void] = ACTIONS(3579), - [anon_sym_anyopaque] = ACTIONS(3579), - [anon_sym_bool] = ACTIONS(3579), - [anon_sym_int] = ACTIONS(3579), - [anon_sym_uint] = ACTIONS(3579), - [anon_sym_float] = ACTIONS(3579), - [anon_sym_range] = ACTIONS(3579), - [anon_sym_i8] = ACTIONS(3579), - [anon_sym_i16] = ACTIONS(3579), - [anon_sym_i32] = ACTIONS(3579), - [anon_sym_i64] = ACTIONS(3579), - [anon_sym_u8] = ACTIONS(3579), - [anon_sym_u16] = ACTIONS(3579), - [anon_sym_u32] = ACTIONS(3579), - [anon_sym_u64] = ACTIONS(3579), - [anon_sym_isize] = ACTIONS(3579), - [anon_sym_usize] = ACTIONS(3579), - [anon_sym_f32] = ACTIONS(3579), - [anon_sym_f64] = ACTIONS(3579), - [anon_sym_c_char] = ACTIONS(3579), - [anon_sym_c_schar] = ACTIONS(3579), - [anon_sym_c_uchar] = ACTIONS(3579), - [anon_sym_c_short] = ACTIONS(3579), - [anon_sym_c_ushort] = ACTIONS(3579), - [anon_sym_c_int] = ACTIONS(3579), - [anon_sym_c_uint] = ACTIONS(3579), - [anon_sym_c_long] = ACTIONS(3579), - [anon_sym_c_ulong] = ACTIONS(3579), - [anon_sym_c_longlong] = ACTIONS(3579), - [anon_sym_c_ulonglong] = ACTIONS(3579), - [anon_sym_c_float] = ACTIONS(3579), - [anon_sym_c_double] = ACTIONS(3579), - [anon_sym_c_longdouble] = ACTIONS(3579), - [anon_sym_return] = ACTIONS(3579), - [anon_sym_yield] = ACTIONS(3579), - [anon_sym_break] = ACTIONS(3579), - [anon_sym_continue] = ACTIONS(3579), - [anon_sym_defer] = ACTIONS(3579), - [anon_sym_errdefer] = ACTIONS(3579), - [anon_sym_if] = ACTIONS(3579), - [anon_sym_else] = ACTIONS(3579), - [anon_sym_while] = ACTIONS(3579), - [anon_sym_expand] = ACTIONS(3579), - [anon_sym_for] = ACTIONS(3579), - [anon_sym_match] = ACTIONS(3579), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_try] = ACTIONS(3579), - [anon_sym_DOT] = ACTIONS(3577), - [anon_sym_true] = ACTIONS(3579), - [anon_sym_false] = ACTIONS(3579), - [sym_none] = ACTIONS(3579), - [sym_undefined] = ACTIONS(3579), - [sym_sink] = ACTIONS(3579), - [sym_integer] = ACTIONS(3579), - [sym_float] = ACTIONS(3577), - [anon_sym_DQUOTE] = ACTIONS(3577), - [sym_multiline_string] = ACTIONS(3577), - [sym_character] = ACTIONS(3577), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_test] = ACTIONS(3426), + [anon_sym_hide] = ACTIONS(3426), + [anon_sym_func] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_anyopaque] = ACTIONS(3426), + [anon_sym_bool] = ACTIONS(3426), + [anon_sym_int] = ACTIONS(3426), + [anon_sym_uint] = ACTIONS(3426), + [anon_sym_float] = ACTIONS(3426), + [anon_sym_range] = ACTIONS(3426), + [anon_sym_i8] = ACTIONS(3426), + [anon_sym_i16] = ACTIONS(3426), + [anon_sym_i32] = ACTIONS(3426), + [anon_sym_i64] = ACTIONS(3426), + [anon_sym_u8] = ACTIONS(3426), + [anon_sym_u16] = ACTIONS(3426), + [anon_sym_u32] = ACTIONS(3426), + [anon_sym_u64] = ACTIONS(3426), + [anon_sym_isize] = ACTIONS(3426), + [anon_sym_usize] = ACTIONS(3426), + [anon_sym_f32] = ACTIONS(3426), + [anon_sym_f64] = ACTIONS(3426), + [anon_sym_c_char] = ACTIONS(3426), + [anon_sym_c_schar] = ACTIONS(3426), + [anon_sym_c_uchar] = ACTIONS(3426), + [anon_sym_c_short] = ACTIONS(3426), + [anon_sym_c_ushort] = ACTIONS(3426), + [anon_sym_c_int] = ACTIONS(3426), + [anon_sym_c_uint] = ACTIONS(3426), + [anon_sym_c_long] = ACTIONS(3426), + [anon_sym_c_ulong] = ACTIONS(3426), + [anon_sym_c_longlong] = ACTIONS(3426), + [anon_sym_c_ulonglong] = ACTIONS(3426), + [anon_sym_c_float] = ACTIONS(3426), + [anon_sym_c_double] = ACTIONS(3426), + [anon_sym_c_longdouble] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_defer] = ACTIONS(3426), + [anon_sym_errdefer] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_expand] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3426), + [anon_sym_false] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [sym_sink] = ACTIONS(3426), + [sym_integer] = ACTIONS(3426), + [sym_float] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [sym_multiline_string] = ACTIONS(3424), + [sym_character] = ACTIONS(3424), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3577), + [sym__newline] = ACTIONS(3424), }, [STATE(1579)] = { - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3583), - [anon_sym_import] = ACTIONS(3583), - [anon_sym_test] = ACTIONS(3583), - [anon_sym_hide] = ACTIONS(3583), - [anon_sym_func] = ACTIONS(3583), - [anon_sym_BANG] = ACTIONS(3581), - [anon_sym_struct] = ACTIONS(3583), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_RBRACE] = ACTIONS(3581), - [anon_sym_DASH] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_void] = ACTIONS(3583), - [anon_sym_anyopaque] = ACTIONS(3583), - [anon_sym_bool] = ACTIONS(3583), - [anon_sym_int] = ACTIONS(3583), - [anon_sym_uint] = ACTIONS(3583), - [anon_sym_float] = ACTIONS(3583), - [anon_sym_range] = ACTIONS(3583), - [anon_sym_i8] = ACTIONS(3583), - [anon_sym_i16] = ACTIONS(3583), - [anon_sym_i32] = ACTIONS(3583), - [anon_sym_i64] = ACTIONS(3583), - [anon_sym_u8] = ACTIONS(3583), - [anon_sym_u16] = ACTIONS(3583), - [anon_sym_u32] = ACTIONS(3583), - [anon_sym_u64] = ACTIONS(3583), - [anon_sym_isize] = ACTIONS(3583), - [anon_sym_usize] = ACTIONS(3583), - [anon_sym_f32] = ACTIONS(3583), - [anon_sym_f64] = ACTIONS(3583), - [anon_sym_c_char] = ACTIONS(3583), - [anon_sym_c_schar] = ACTIONS(3583), - [anon_sym_c_uchar] = ACTIONS(3583), - [anon_sym_c_short] = ACTIONS(3583), - [anon_sym_c_ushort] = ACTIONS(3583), - [anon_sym_c_int] = ACTIONS(3583), - [anon_sym_c_uint] = ACTIONS(3583), - [anon_sym_c_long] = ACTIONS(3583), - [anon_sym_c_ulong] = ACTIONS(3583), - [anon_sym_c_longlong] = ACTIONS(3583), - [anon_sym_c_ulonglong] = ACTIONS(3583), - [anon_sym_c_float] = ACTIONS(3583), - [anon_sym_c_double] = ACTIONS(3583), - [anon_sym_c_longdouble] = ACTIONS(3583), - [anon_sym_return] = ACTIONS(3583), - [anon_sym_yield] = ACTIONS(3583), - [anon_sym_break] = ACTIONS(3583), - [anon_sym_continue] = ACTIONS(3583), - [anon_sym_defer] = ACTIONS(3583), - [anon_sym_errdefer] = ACTIONS(3583), - [anon_sym_if] = ACTIONS(3583), - [anon_sym_else] = ACTIONS(3583), - [anon_sym_while] = ACTIONS(3583), - [anon_sym_expand] = ACTIONS(3583), - [anon_sym_for] = ACTIONS(3583), - [anon_sym_match] = ACTIONS(3583), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3581), - [anon_sym_try] = ACTIONS(3583), - [anon_sym_DOT] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [sym_none] = ACTIONS(3583), - [sym_undefined] = ACTIONS(3583), - [sym_sink] = ACTIONS(3583), - [sym_integer] = ACTIONS(3583), - [sym_float] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym_multiline_string] = ACTIONS(3581), - [sym_character] = ACTIONS(3581), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_import] = ACTIONS(3430), + [anon_sym_test] = ACTIONS(3430), + [anon_sym_hide] = ACTIONS(3430), + [anon_sym_func] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_DOLLAR] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_anyopaque] = ACTIONS(3430), + [anon_sym_bool] = ACTIONS(3430), + [anon_sym_int] = ACTIONS(3430), + [anon_sym_uint] = ACTIONS(3430), + [anon_sym_float] = ACTIONS(3430), + [anon_sym_range] = ACTIONS(3430), + [anon_sym_i8] = ACTIONS(3430), + [anon_sym_i16] = ACTIONS(3430), + [anon_sym_i32] = ACTIONS(3430), + [anon_sym_i64] = ACTIONS(3430), + [anon_sym_u8] = ACTIONS(3430), + [anon_sym_u16] = ACTIONS(3430), + [anon_sym_u32] = ACTIONS(3430), + [anon_sym_u64] = ACTIONS(3430), + [anon_sym_isize] = ACTIONS(3430), + [anon_sym_usize] = ACTIONS(3430), + [anon_sym_f32] = ACTIONS(3430), + [anon_sym_f64] = ACTIONS(3430), + [anon_sym_c_char] = ACTIONS(3430), + [anon_sym_c_schar] = ACTIONS(3430), + [anon_sym_c_uchar] = ACTIONS(3430), + [anon_sym_c_short] = ACTIONS(3430), + [anon_sym_c_ushort] = ACTIONS(3430), + [anon_sym_c_int] = ACTIONS(3430), + [anon_sym_c_uint] = ACTIONS(3430), + [anon_sym_c_long] = ACTIONS(3430), + [anon_sym_c_ulong] = ACTIONS(3430), + [anon_sym_c_longlong] = ACTIONS(3430), + [anon_sym_c_ulonglong] = ACTIONS(3430), + [anon_sym_c_float] = ACTIONS(3430), + [anon_sym_c_double] = ACTIONS(3430), + [anon_sym_c_longdouble] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_yield] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_defer] = ACTIONS(3430), + [anon_sym_errdefer] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_else] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3430), + [anon_sym_expand] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3430), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_true] = ACTIONS(3430), + [anon_sym_false] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_undefined] = ACTIONS(3430), + [sym_sink] = ACTIONS(3430), + [sym_integer] = ACTIONS(3430), + [sym_float] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [sym_multiline_string] = ACTIONS(3428), + [sym_character] = ACTIONS(3428), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3581), + [sym__newline] = ACTIONS(3428), }, [STATE(1580)] = { - [ts_builtin_sym_end] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3587), - [anon_sym_import] = ACTIONS(3587), - [anon_sym_test] = ACTIONS(3587), - [anon_sym_hide] = ACTIONS(3587), - [anon_sym_func] = ACTIONS(3587), - [anon_sym_BANG] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3585), - [anon_sym_RPAREN] = ACTIONS(3585), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_RBRACE] = ACTIONS(3585), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_DOLLAR] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3585), - [anon_sym_void] = ACTIONS(3587), - [anon_sym_anyopaque] = ACTIONS(3587), - [anon_sym_bool] = ACTIONS(3587), - [anon_sym_int] = ACTIONS(3587), - [anon_sym_uint] = ACTIONS(3587), - [anon_sym_float] = ACTIONS(3587), - [anon_sym_range] = ACTIONS(3587), - [anon_sym_i8] = ACTIONS(3587), - [anon_sym_i16] = ACTIONS(3587), - [anon_sym_i32] = ACTIONS(3587), - [anon_sym_i64] = ACTIONS(3587), - [anon_sym_u8] = ACTIONS(3587), - [anon_sym_u16] = ACTIONS(3587), - [anon_sym_u32] = ACTIONS(3587), - [anon_sym_u64] = ACTIONS(3587), - [anon_sym_isize] = ACTIONS(3587), - [anon_sym_usize] = ACTIONS(3587), - [anon_sym_f32] = ACTIONS(3587), - [anon_sym_f64] = ACTIONS(3587), - [anon_sym_c_char] = ACTIONS(3587), - [anon_sym_c_schar] = ACTIONS(3587), - [anon_sym_c_uchar] = ACTIONS(3587), - [anon_sym_c_short] = ACTIONS(3587), - [anon_sym_c_ushort] = ACTIONS(3587), - [anon_sym_c_int] = ACTIONS(3587), - [anon_sym_c_uint] = ACTIONS(3587), - [anon_sym_c_long] = ACTIONS(3587), - [anon_sym_c_ulong] = ACTIONS(3587), - [anon_sym_c_longlong] = ACTIONS(3587), - [anon_sym_c_ulonglong] = ACTIONS(3587), - [anon_sym_c_float] = ACTIONS(3587), - [anon_sym_c_double] = ACTIONS(3587), - [anon_sym_c_longdouble] = ACTIONS(3587), - [anon_sym_return] = ACTIONS(3587), - [anon_sym_yield] = ACTIONS(3587), - [anon_sym_break] = ACTIONS(3587), - [anon_sym_continue] = ACTIONS(3587), - [anon_sym_defer] = ACTIONS(3587), - [anon_sym_errdefer] = ACTIONS(3587), - [anon_sym_if] = ACTIONS(3587), - [anon_sym_else] = ACTIONS(3587), - [anon_sym_while] = ACTIONS(3587), - [anon_sym_expand] = ACTIONS(3587), - [anon_sym_for] = ACTIONS(3587), - [anon_sym_match] = ACTIONS(3587), - [anon_sym_AMP] = ACTIONS(3585), - [anon_sym_TILDE] = ACTIONS(3585), - [anon_sym_try] = ACTIONS(3587), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_true] = ACTIONS(3587), - [anon_sym_false] = ACTIONS(3587), - [sym_none] = ACTIONS(3587), - [sym_undefined] = ACTIONS(3587), - [sym_sink] = ACTIONS(3587), - [sym_integer] = ACTIONS(3587), - [sym_float] = ACTIONS(3585), - [anon_sym_DQUOTE] = ACTIONS(3585), - [sym_multiline_string] = ACTIONS(3585), - [sym_character] = ACTIONS(3585), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_test] = ACTIONS(3434), + [anon_sym_hide] = ACTIONS(3434), + [anon_sym_func] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_DOLLAR] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_anyopaque] = ACTIONS(3434), + [anon_sym_bool] = ACTIONS(3434), + [anon_sym_int] = ACTIONS(3434), + [anon_sym_uint] = ACTIONS(3434), + [anon_sym_float] = ACTIONS(3434), + [anon_sym_range] = ACTIONS(3434), + [anon_sym_i8] = ACTIONS(3434), + [anon_sym_i16] = ACTIONS(3434), + [anon_sym_i32] = ACTIONS(3434), + [anon_sym_i64] = ACTIONS(3434), + [anon_sym_u8] = ACTIONS(3434), + [anon_sym_u16] = ACTIONS(3434), + [anon_sym_u32] = ACTIONS(3434), + [anon_sym_u64] = ACTIONS(3434), + [anon_sym_isize] = ACTIONS(3434), + [anon_sym_usize] = ACTIONS(3434), + [anon_sym_f32] = ACTIONS(3434), + [anon_sym_f64] = ACTIONS(3434), + [anon_sym_c_char] = ACTIONS(3434), + [anon_sym_c_schar] = ACTIONS(3434), + [anon_sym_c_uchar] = ACTIONS(3434), + [anon_sym_c_short] = ACTIONS(3434), + [anon_sym_c_ushort] = ACTIONS(3434), + [anon_sym_c_int] = ACTIONS(3434), + [anon_sym_c_uint] = ACTIONS(3434), + [anon_sym_c_long] = ACTIONS(3434), + [anon_sym_c_ulong] = ACTIONS(3434), + [anon_sym_c_longlong] = ACTIONS(3434), + [anon_sym_c_ulonglong] = ACTIONS(3434), + [anon_sym_c_float] = ACTIONS(3434), + [anon_sym_c_double] = ACTIONS(3434), + [anon_sym_c_longdouble] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_defer] = ACTIONS(3434), + [anon_sym_errdefer] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_expand] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_true] = ACTIONS(3434), + [anon_sym_false] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [sym_sink] = ACTIONS(3434), + [sym_integer] = ACTIONS(3434), + [sym_float] = ACTIONS(3432), + [anon_sym_DQUOTE] = ACTIONS(3432), + [sym_multiline_string] = ACTIONS(3432), + [sym_character] = ACTIONS(3432), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3585), + [sym__newline] = ACTIONS(3432), }, [STATE(1581)] = { - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3591), - [anon_sym_import] = ACTIONS(3591), - [anon_sym_test] = ACTIONS(3591), - [anon_sym_hide] = ACTIONS(3591), - [anon_sym_func] = ACTIONS(3591), - [anon_sym_BANG] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3591), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_RPAREN] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_DASH] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_void] = ACTIONS(3591), - [anon_sym_anyopaque] = ACTIONS(3591), - [anon_sym_bool] = ACTIONS(3591), - [anon_sym_int] = ACTIONS(3591), - [anon_sym_uint] = ACTIONS(3591), - [anon_sym_float] = ACTIONS(3591), - [anon_sym_range] = ACTIONS(3591), - [anon_sym_i8] = ACTIONS(3591), - [anon_sym_i16] = ACTIONS(3591), - [anon_sym_i32] = ACTIONS(3591), - [anon_sym_i64] = ACTIONS(3591), - [anon_sym_u8] = ACTIONS(3591), - [anon_sym_u16] = ACTIONS(3591), - [anon_sym_u32] = ACTIONS(3591), - [anon_sym_u64] = ACTIONS(3591), - [anon_sym_isize] = ACTIONS(3591), - [anon_sym_usize] = ACTIONS(3591), - [anon_sym_f32] = ACTIONS(3591), - [anon_sym_f64] = ACTIONS(3591), - [anon_sym_c_char] = ACTIONS(3591), - [anon_sym_c_schar] = ACTIONS(3591), - [anon_sym_c_uchar] = ACTIONS(3591), - [anon_sym_c_short] = ACTIONS(3591), - [anon_sym_c_ushort] = ACTIONS(3591), - [anon_sym_c_int] = ACTIONS(3591), - [anon_sym_c_uint] = ACTIONS(3591), - [anon_sym_c_long] = ACTIONS(3591), - [anon_sym_c_ulong] = ACTIONS(3591), - [anon_sym_c_longlong] = ACTIONS(3591), - [anon_sym_c_ulonglong] = ACTIONS(3591), - [anon_sym_c_float] = ACTIONS(3591), - [anon_sym_c_double] = ACTIONS(3591), - [anon_sym_c_longdouble] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_yield] = ACTIONS(3591), - [anon_sym_break] = ACTIONS(3591), - [anon_sym_continue] = ACTIONS(3591), - [anon_sym_defer] = ACTIONS(3591), - [anon_sym_errdefer] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_else] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_expand] = ACTIONS(3591), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_match] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3589), - [anon_sym_TILDE] = ACTIONS(3589), - [anon_sym_try] = ACTIONS(3591), - [anon_sym_DOT] = ACTIONS(3589), - [anon_sym_true] = ACTIONS(3591), - [anon_sym_false] = ACTIONS(3591), - [sym_none] = ACTIONS(3591), - [sym_undefined] = ACTIONS(3591), - [sym_sink] = ACTIONS(3591), - [sym_integer] = ACTIONS(3591), - [sym_float] = ACTIONS(3589), - [anon_sym_DQUOTE] = ACTIONS(3589), - [sym_multiline_string] = ACTIONS(3589), - [sym_character] = ACTIONS(3589), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_test] = ACTIONS(3438), + [anon_sym_hide] = ACTIONS(3438), + [anon_sym_func] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_RPAREN] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_DOLLAR] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_anyopaque] = ACTIONS(3438), + [anon_sym_bool] = ACTIONS(3438), + [anon_sym_int] = ACTIONS(3438), + [anon_sym_uint] = ACTIONS(3438), + [anon_sym_float] = ACTIONS(3438), + [anon_sym_range] = ACTIONS(3438), + [anon_sym_i8] = ACTIONS(3438), + [anon_sym_i16] = ACTIONS(3438), + [anon_sym_i32] = ACTIONS(3438), + [anon_sym_i64] = ACTIONS(3438), + [anon_sym_u8] = ACTIONS(3438), + [anon_sym_u16] = ACTIONS(3438), + [anon_sym_u32] = ACTIONS(3438), + [anon_sym_u64] = ACTIONS(3438), + [anon_sym_isize] = ACTIONS(3438), + [anon_sym_usize] = ACTIONS(3438), + [anon_sym_f32] = ACTIONS(3438), + [anon_sym_f64] = ACTIONS(3438), + [anon_sym_c_char] = ACTIONS(3438), + [anon_sym_c_schar] = ACTIONS(3438), + [anon_sym_c_uchar] = ACTIONS(3438), + [anon_sym_c_short] = ACTIONS(3438), + [anon_sym_c_ushort] = ACTIONS(3438), + [anon_sym_c_int] = ACTIONS(3438), + [anon_sym_c_uint] = ACTIONS(3438), + [anon_sym_c_long] = ACTIONS(3438), + [anon_sym_c_ulong] = ACTIONS(3438), + [anon_sym_c_longlong] = ACTIONS(3438), + [anon_sym_c_ulonglong] = ACTIONS(3438), + [anon_sym_c_float] = ACTIONS(3438), + [anon_sym_c_double] = ACTIONS(3438), + [anon_sym_c_longdouble] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_defer] = ACTIONS(3438), + [anon_sym_errdefer] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_expand] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3436), + [anon_sym_true] = ACTIONS(3438), + [anon_sym_false] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [sym_sink] = ACTIONS(3438), + [sym_integer] = ACTIONS(3438), + [sym_float] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_multiline_string] = ACTIONS(3436), + [sym_character] = ACTIONS(3436), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3589), + [sym__newline] = ACTIONS(3436), }, [STATE(1582)] = { - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3595), - [anon_sym_import] = ACTIONS(3595), - [anon_sym_test] = ACTIONS(3595), - [anon_sym_hide] = ACTIONS(3595), - [anon_sym_func] = ACTIONS(3595), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_struct] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3593), - [anon_sym_RPAREN] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_DASH] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_void] = ACTIONS(3595), - [anon_sym_anyopaque] = ACTIONS(3595), - [anon_sym_bool] = ACTIONS(3595), - [anon_sym_int] = ACTIONS(3595), - [anon_sym_uint] = ACTIONS(3595), - [anon_sym_float] = ACTIONS(3595), - [anon_sym_range] = ACTIONS(3595), - [anon_sym_i8] = ACTIONS(3595), - [anon_sym_i16] = ACTIONS(3595), - [anon_sym_i32] = ACTIONS(3595), - [anon_sym_i64] = ACTIONS(3595), - [anon_sym_u8] = ACTIONS(3595), - [anon_sym_u16] = ACTIONS(3595), - [anon_sym_u32] = ACTIONS(3595), - [anon_sym_u64] = ACTIONS(3595), - [anon_sym_isize] = ACTIONS(3595), - [anon_sym_usize] = ACTIONS(3595), - [anon_sym_f32] = ACTIONS(3595), - [anon_sym_f64] = ACTIONS(3595), - [anon_sym_c_char] = ACTIONS(3595), - [anon_sym_c_schar] = ACTIONS(3595), - [anon_sym_c_uchar] = ACTIONS(3595), - [anon_sym_c_short] = ACTIONS(3595), - [anon_sym_c_ushort] = ACTIONS(3595), - [anon_sym_c_int] = ACTIONS(3595), - [anon_sym_c_uint] = ACTIONS(3595), - [anon_sym_c_long] = ACTIONS(3595), - [anon_sym_c_ulong] = ACTIONS(3595), - [anon_sym_c_longlong] = ACTIONS(3595), - [anon_sym_c_ulonglong] = ACTIONS(3595), - [anon_sym_c_float] = ACTIONS(3595), - [anon_sym_c_double] = ACTIONS(3595), - [anon_sym_c_longdouble] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_yield] = ACTIONS(3595), - [anon_sym_break] = ACTIONS(3595), - [anon_sym_continue] = ACTIONS(3595), - [anon_sym_defer] = ACTIONS(3595), - [anon_sym_errdefer] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_else] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_expand] = ACTIONS(3595), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_match] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_try] = ACTIONS(3595), - [anon_sym_DOT] = ACTIONS(3593), - [anon_sym_true] = ACTIONS(3595), - [anon_sym_false] = ACTIONS(3595), - [sym_none] = ACTIONS(3595), - [sym_undefined] = ACTIONS(3595), - [sym_sink] = ACTIONS(3595), - [sym_integer] = ACTIONS(3595), - [sym_float] = ACTIONS(3593), - [anon_sym_DQUOTE] = ACTIONS(3593), - [sym_multiline_string] = ACTIONS(3593), - [sym_character] = ACTIONS(3593), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_test] = ACTIONS(3442), + [anon_sym_hide] = ACTIONS(3442), + [anon_sym_func] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_anyopaque] = ACTIONS(3442), + [anon_sym_bool] = ACTIONS(3442), + [anon_sym_int] = ACTIONS(3442), + [anon_sym_uint] = ACTIONS(3442), + [anon_sym_float] = ACTIONS(3442), + [anon_sym_range] = ACTIONS(3442), + [anon_sym_i8] = ACTIONS(3442), + [anon_sym_i16] = ACTIONS(3442), + [anon_sym_i32] = ACTIONS(3442), + [anon_sym_i64] = ACTIONS(3442), + [anon_sym_u8] = ACTIONS(3442), + [anon_sym_u16] = ACTIONS(3442), + [anon_sym_u32] = ACTIONS(3442), + [anon_sym_u64] = ACTIONS(3442), + [anon_sym_isize] = ACTIONS(3442), + [anon_sym_usize] = ACTIONS(3442), + [anon_sym_f32] = ACTIONS(3442), + [anon_sym_f64] = ACTIONS(3442), + [anon_sym_c_char] = ACTIONS(3442), + [anon_sym_c_schar] = ACTIONS(3442), + [anon_sym_c_uchar] = ACTIONS(3442), + [anon_sym_c_short] = ACTIONS(3442), + [anon_sym_c_ushort] = ACTIONS(3442), + [anon_sym_c_int] = ACTIONS(3442), + [anon_sym_c_uint] = ACTIONS(3442), + [anon_sym_c_long] = ACTIONS(3442), + [anon_sym_c_ulong] = ACTIONS(3442), + [anon_sym_c_longlong] = ACTIONS(3442), + [anon_sym_c_ulonglong] = ACTIONS(3442), + [anon_sym_c_float] = ACTIONS(3442), + [anon_sym_c_double] = ACTIONS(3442), + [anon_sym_c_longdouble] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_defer] = ACTIONS(3442), + [anon_sym_errdefer] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_expand] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_true] = ACTIONS(3442), + [anon_sym_false] = ACTIONS(3442), + [sym_none] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [sym_sink] = ACTIONS(3442), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_multiline_string] = ACTIONS(3440), + [sym_character] = ACTIONS(3440), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3593), + [sym__newline] = ACTIONS(3440), }, [STATE(1583)] = { - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3599), - [anon_sym_import] = ACTIONS(3599), - [anon_sym_test] = ACTIONS(3599), - [anon_sym_hide] = ACTIONS(3599), - [anon_sym_func] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_struct] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_DASH] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3597), - [anon_sym_void] = ACTIONS(3599), - [anon_sym_anyopaque] = ACTIONS(3599), - [anon_sym_bool] = ACTIONS(3599), - [anon_sym_int] = ACTIONS(3599), - [anon_sym_uint] = ACTIONS(3599), - [anon_sym_float] = ACTIONS(3599), - [anon_sym_range] = ACTIONS(3599), - [anon_sym_i8] = ACTIONS(3599), - [anon_sym_i16] = ACTIONS(3599), - [anon_sym_i32] = ACTIONS(3599), - [anon_sym_i64] = ACTIONS(3599), - [anon_sym_u8] = ACTIONS(3599), - [anon_sym_u16] = ACTIONS(3599), - [anon_sym_u32] = ACTIONS(3599), - [anon_sym_u64] = ACTIONS(3599), - [anon_sym_isize] = ACTIONS(3599), - [anon_sym_usize] = ACTIONS(3599), - [anon_sym_f32] = ACTIONS(3599), - [anon_sym_f64] = ACTIONS(3599), - [anon_sym_c_char] = ACTIONS(3599), - [anon_sym_c_schar] = ACTIONS(3599), - [anon_sym_c_uchar] = ACTIONS(3599), - [anon_sym_c_short] = ACTIONS(3599), - [anon_sym_c_ushort] = ACTIONS(3599), - [anon_sym_c_int] = ACTIONS(3599), - [anon_sym_c_uint] = ACTIONS(3599), - [anon_sym_c_long] = ACTIONS(3599), - [anon_sym_c_ulong] = ACTIONS(3599), - [anon_sym_c_longlong] = ACTIONS(3599), - [anon_sym_c_ulonglong] = ACTIONS(3599), - [anon_sym_c_float] = ACTIONS(3599), - [anon_sym_c_double] = ACTIONS(3599), - [anon_sym_c_longdouble] = ACTIONS(3599), - [anon_sym_return] = ACTIONS(3599), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_break] = ACTIONS(3599), - [anon_sym_continue] = ACTIONS(3599), - [anon_sym_defer] = ACTIONS(3599), - [anon_sym_errdefer] = ACTIONS(3599), - [anon_sym_if] = ACTIONS(3599), - [anon_sym_else] = ACTIONS(3599), - [anon_sym_while] = ACTIONS(3599), - [anon_sym_expand] = ACTIONS(3599), - [anon_sym_for] = ACTIONS(3599), - [anon_sym_match] = ACTIONS(3599), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_try] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3597), - [anon_sym_true] = ACTIONS(3599), - [anon_sym_false] = ACTIONS(3599), - [sym_none] = ACTIONS(3599), - [sym_undefined] = ACTIONS(3599), - [sym_sink] = ACTIONS(3599), - [sym_integer] = ACTIONS(3599), - [sym_float] = ACTIONS(3597), - [anon_sym_DQUOTE] = ACTIONS(3597), - [sym_multiline_string] = ACTIONS(3597), - [sym_character] = ACTIONS(3597), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_test] = ACTIONS(3446), + [anon_sym_hide] = ACTIONS(3446), + [anon_sym_func] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_RPAREN] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_anyopaque] = ACTIONS(3446), + [anon_sym_bool] = ACTIONS(3446), + [anon_sym_int] = ACTIONS(3446), + [anon_sym_uint] = ACTIONS(3446), + [anon_sym_float] = ACTIONS(3446), + [anon_sym_range] = ACTIONS(3446), + [anon_sym_i8] = ACTIONS(3446), + [anon_sym_i16] = ACTIONS(3446), + [anon_sym_i32] = ACTIONS(3446), + [anon_sym_i64] = ACTIONS(3446), + [anon_sym_u8] = ACTIONS(3446), + [anon_sym_u16] = ACTIONS(3446), + [anon_sym_u32] = ACTIONS(3446), + [anon_sym_u64] = ACTIONS(3446), + [anon_sym_isize] = ACTIONS(3446), + [anon_sym_usize] = ACTIONS(3446), + [anon_sym_f32] = ACTIONS(3446), + [anon_sym_f64] = ACTIONS(3446), + [anon_sym_c_char] = ACTIONS(3446), + [anon_sym_c_schar] = ACTIONS(3446), + [anon_sym_c_uchar] = ACTIONS(3446), + [anon_sym_c_short] = ACTIONS(3446), + [anon_sym_c_ushort] = ACTIONS(3446), + [anon_sym_c_int] = ACTIONS(3446), + [anon_sym_c_uint] = ACTIONS(3446), + [anon_sym_c_long] = ACTIONS(3446), + [anon_sym_c_ulong] = ACTIONS(3446), + [anon_sym_c_longlong] = ACTIONS(3446), + [anon_sym_c_ulonglong] = ACTIONS(3446), + [anon_sym_c_float] = ACTIONS(3446), + [anon_sym_c_double] = ACTIONS(3446), + [anon_sym_c_longdouble] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_defer] = ACTIONS(3446), + [anon_sym_errdefer] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_expand] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_match] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_DOT] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [sym_none] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [sym_sink] = ACTIONS(3446), + [sym_integer] = ACTIONS(3446), + [sym_float] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_multiline_string] = ACTIONS(3444), + [sym_character] = ACTIONS(3444), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3597), + [sym__newline] = ACTIONS(3444), }, [STATE(1584)] = { - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3603), - [anon_sym_import] = ACTIONS(3603), - [anon_sym_test] = ACTIONS(3603), - [anon_sym_hide] = ACTIONS(3603), - [anon_sym_func] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_struct] = ACTIONS(3603), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_DASH] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_void] = ACTIONS(3603), - [anon_sym_anyopaque] = ACTIONS(3603), - [anon_sym_bool] = ACTIONS(3603), - [anon_sym_int] = ACTIONS(3603), - [anon_sym_uint] = ACTIONS(3603), - [anon_sym_float] = ACTIONS(3603), - [anon_sym_range] = ACTIONS(3603), - [anon_sym_i8] = ACTIONS(3603), - [anon_sym_i16] = ACTIONS(3603), - [anon_sym_i32] = ACTIONS(3603), - [anon_sym_i64] = ACTIONS(3603), - [anon_sym_u8] = ACTIONS(3603), - [anon_sym_u16] = ACTIONS(3603), - [anon_sym_u32] = ACTIONS(3603), - [anon_sym_u64] = ACTIONS(3603), - [anon_sym_isize] = ACTIONS(3603), - [anon_sym_usize] = ACTIONS(3603), - [anon_sym_f32] = ACTIONS(3603), - [anon_sym_f64] = ACTIONS(3603), - [anon_sym_c_char] = ACTIONS(3603), - [anon_sym_c_schar] = ACTIONS(3603), - [anon_sym_c_uchar] = ACTIONS(3603), - [anon_sym_c_short] = ACTIONS(3603), - [anon_sym_c_ushort] = ACTIONS(3603), - [anon_sym_c_int] = ACTIONS(3603), - [anon_sym_c_uint] = ACTIONS(3603), - [anon_sym_c_long] = ACTIONS(3603), - [anon_sym_c_ulong] = ACTIONS(3603), - [anon_sym_c_longlong] = ACTIONS(3603), - [anon_sym_c_ulonglong] = ACTIONS(3603), - [anon_sym_c_float] = ACTIONS(3603), - [anon_sym_c_double] = ACTIONS(3603), - [anon_sym_c_longdouble] = ACTIONS(3603), - [anon_sym_return] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_break] = ACTIONS(3603), - [anon_sym_continue] = ACTIONS(3603), - [anon_sym_defer] = ACTIONS(3603), - [anon_sym_errdefer] = ACTIONS(3603), - [anon_sym_if] = ACTIONS(3603), - [anon_sym_else] = ACTIONS(3603), - [anon_sym_while] = ACTIONS(3603), - [anon_sym_expand] = ACTIONS(3603), - [anon_sym_for] = ACTIONS(3603), - [anon_sym_match] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3601), - [anon_sym_try] = ACTIONS(3603), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_true] = ACTIONS(3603), - [anon_sym_false] = ACTIONS(3603), - [sym_none] = ACTIONS(3603), - [sym_undefined] = ACTIONS(3603), - [sym_sink] = ACTIONS(3603), - [sym_integer] = ACTIONS(3603), - [sym_float] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym_multiline_string] = ACTIONS(3601), - [sym_character] = ACTIONS(3601), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_test] = ACTIONS(3450), + [anon_sym_hide] = ACTIONS(3450), + [anon_sym_func] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_DOLLAR] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_anyopaque] = ACTIONS(3450), + [anon_sym_bool] = ACTIONS(3450), + [anon_sym_int] = ACTIONS(3450), + [anon_sym_uint] = ACTIONS(3450), + [anon_sym_float] = ACTIONS(3450), + [anon_sym_range] = ACTIONS(3450), + [anon_sym_i8] = ACTIONS(3450), + [anon_sym_i16] = ACTIONS(3450), + [anon_sym_i32] = ACTIONS(3450), + [anon_sym_i64] = ACTIONS(3450), + [anon_sym_u8] = ACTIONS(3450), + [anon_sym_u16] = ACTIONS(3450), + [anon_sym_u32] = ACTIONS(3450), + [anon_sym_u64] = ACTIONS(3450), + [anon_sym_isize] = ACTIONS(3450), + [anon_sym_usize] = ACTIONS(3450), + [anon_sym_f32] = ACTIONS(3450), + [anon_sym_f64] = ACTIONS(3450), + [anon_sym_c_char] = ACTIONS(3450), + [anon_sym_c_schar] = ACTIONS(3450), + [anon_sym_c_uchar] = ACTIONS(3450), + [anon_sym_c_short] = ACTIONS(3450), + [anon_sym_c_ushort] = ACTIONS(3450), + [anon_sym_c_int] = ACTIONS(3450), + [anon_sym_c_uint] = ACTIONS(3450), + [anon_sym_c_long] = ACTIONS(3450), + [anon_sym_c_ulong] = ACTIONS(3450), + [anon_sym_c_longlong] = ACTIONS(3450), + [anon_sym_c_ulonglong] = ACTIONS(3450), + [anon_sym_c_float] = ACTIONS(3450), + [anon_sym_c_double] = ACTIONS(3450), + [anon_sym_c_longdouble] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_defer] = ACTIONS(3450), + [anon_sym_errdefer] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_expand] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_match] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_DOT] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3450), + [anon_sym_false] = ACTIONS(3450), + [sym_none] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [sym_sink] = ACTIONS(3450), + [sym_integer] = ACTIONS(3450), + [sym_float] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [sym_multiline_string] = ACTIONS(3448), + [sym_character] = ACTIONS(3448), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3601), + [sym__newline] = ACTIONS(3448), }, [STATE(1585)] = { - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3607), - [anon_sym_import] = ACTIONS(3607), - [anon_sym_test] = ACTIONS(3607), - [anon_sym_hide] = ACTIONS(3607), - [anon_sym_func] = ACTIONS(3607), - [anon_sym_BANG] = ACTIONS(3605), - [anon_sym_struct] = ACTIONS(3607), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_void] = ACTIONS(3607), - [anon_sym_anyopaque] = ACTIONS(3607), - [anon_sym_bool] = ACTIONS(3607), - [anon_sym_int] = ACTIONS(3607), - [anon_sym_uint] = ACTIONS(3607), - [anon_sym_float] = ACTIONS(3607), - [anon_sym_range] = ACTIONS(3607), - [anon_sym_i8] = ACTIONS(3607), - [anon_sym_i16] = ACTIONS(3607), - [anon_sym_i32] = ACTIONS(3607), - [anon_sym_i64] = ACTIONS(3607), - [anon_sym_u8] = ACTIONS(3607), - [anon_sym_u16] = ACTIONS(3607), - [anon_sym_u32] = ACTIONS(3607), - [anon_sym_u64] = ACTIONS(3607), - [anon_sym_isize] = ACTIONS(3607), - [anon_sym_usize] = ACTIONS(3607), - [anon_sym_f32] = ACTIONS(3607), - [anon_sym_f64] = ACTIONS(3607), - [anon_sym_c_char] = ACTIONS(3607), - [anon_sym_c_schar] = ACTIONS(3607), - [anon_sym_c_uchar] = ACTIONS(3607), - [anon_sym_c_short] = ACTIONS(3607), - [anon_sym_c_ushort] = ACTIONS(3607), - [anon_sym_c_int] = ACTIONS(3607), - [anon_sym_c_uint] = ACTIONS(3607), - [anon_sym_c_long] = ACTIONS(3607), - [anon_sym_c_ulong] = ACTIONS(3607), - [anon_sym_c_longlong] = ACTIONS(3607), - [anon_sym_c_ulonglong] = ACTIONS(3607), - [anon_sym_c_float] = ACTIONS(3607), - [anon_sym_c_double] = ACTIONS(3607), - [anon_sym_c_longdouble] = ACTIONS(3607), - [anon_sym_return] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3607), - [anon_sym_break] = ACTIONS(3607), - [anon_sym_continue] = ACTIONS(3607), - [anon_sym_defer] = ACTIONS(3607), - [anon_sym_errdefer] = ACTIONS(3607), - [anon_sym_if] = ACTIONS(3607), - [anon_sym_else] = ACTIONS(3607), - [anon_sym_while] = ACTIONS(3607), - [anon_sym_expand] = ACTIONS(3607), - [anon_sym_for] = ACTIONS(3607), - [anon_sym_match] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3607), - [anon_sym_DOT] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [sym_none] = ACTIONS(3607), - [sym_undefined] = ACTIONS(3607), - [sym_sink] = ACTIONS(3607), - [sym_integer] = ACTIONS(3607), - [sym_float] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [sym_multiline_string] = ACTIONS(3605), - [sym_character] = ACTIONS(3605), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_test] = ACTIONS(3454), + [anon_sym_hide] = ACTIONS(3454), + [anon_sym_func] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_DOLLAR] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_anyopaque] = ACTIONS(3454), + [anon_sym_bool] = ACTIONS(3454), + [anon_sym_int] = ACTIONS(3454), + [anon_sym_uint] = ACTIONS(3454), + [anon_sym_float] = ACTIONS(3454), + [anon_sym_range] = ACTIONS(3454), + [anon_sym_i8] = ACTIONS(3454), + [anon_sym_i16] = ACTIONS(3454), + [anon_sym_i32] = ACTIONS(3454), + [anon_sym_i64] = ACTIONS(3454), + [anon_sym_u8] = ACTIONS(3454), + [anon_sym_u16] = ACTIONS(3454), + [anon_sym_u32] = ACTIONS(3454), + [anon_sym_u64] = ACTIONS(3454), + [anon_sym_isize] = ACTIONS(3454), + [anon_sym_usize] = ACTIONS(3454), + [anon_sym_f32] = ACTIONS(3454), + [anon_sym_f64] = ACTIONS(3454), + [anon_sym_c_char] = ACTIONS(3454), + [anon_sym_c_schar] = ACTIONS(3454), + [anon_sym_c_uchar] = ACTIONS(3454), + [anon_sym_c_short] = ACTIONS(3454), + [anon_sym_c_ushort] = ACTIONS(3454), + [anon_sym_c_int] = ACTIONS(3454), + [anon_sym_c_uint] = ACTIONS(3454), + [anon_sym_c_long] = ACTIONS(3454), + [anon_sym_c_ulong] = ACTIONS(3454), + [anon_sym_c_longlong] = ACTIONS(3454), + [anon_sym_c_ulonglong] = ACTIONS(3454), + [anon_sym_c_float] = ACTIONS(3454), + [anon_sym_c_double] = ACTIONS(3454), + [anon_sym_c_longdouble] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_defer] = ACTIONS(3454), + [anon_sym_errdefer] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_expand] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_match] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [sym_none] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [sym_sink] = ACTIONS(3454), + [sym_integer] = ACTIONS(3454), + [sym_float] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [sym_multiline_string] = ACTIONS(3452), + [sym_character] = ACTIONS(3452), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3605), + [sym__newline] = ACTIONS(3452), }, [STATE(1586)] = { - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3611), - [anon_sym_import] = ACTIONS(3611), - [anon_sym_test] = ACTIONS(3611), - [anon_sym_hide] = ACTIONS(3611), - [anon_sym_func] = ACTIONS(3611), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_struct] = ACTIONS(3611), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_RBRACE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_DOLLAR] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_void] = ACTIONS(3611), - [anon_sym_anyopaque] = ACTIONS(3611), - [anon_sym_bool] = ACTIONS(3611), - [anon_sym_int] = ACTIONS(3611), - [anon_sym_uint] = ACTIONS(3611), - [anon_sym_float] = ACTIONS(3611), - [anon_sym_range] = ACTIONS(3611), - [anon_sym_i8] = ACTIONS(3611), - [anon_sym_i16] = ACTIONS(3611), - [anon_sym_i32] = ACTIONS(3611), - [anon_sym_i64] = ACTIONS(3611), - [anon_sym_u8] = ACTIONS(3611), - [anon_sym_u16] = ACTIONS(3611), - [anon_sym_u32] = ACTIONS(3611), - [anon_sym_u64] = ACTIONS(3611), - [anon_sym_isize] = ACTIONS(3611), - [anon_sym_usize] = ACTIONS(3611), - [anon_sym_f32] = ACTIONS(3611), - [anon_sym_f64] = ACTIONS(3611), - [anon_sym_c_char] = ACTIONS(3611), - [anon_sym_c_schar] = ACTIONS(3611), - [anon_sym_c_uchar] = ACTIONS(3611), - [anon_sym_c_short] = ACTIONS(3611), - [anon_sym_c_ushort] = ACTIONS(3611), - [anon_sym_c_int] = ACTIONS(3611), - [anon_sym_c_uint] = ACTIONS(3611), - [anon_sym_c_long] = ACTIONS(3611), - [anon_sym_c_ulong] = ACTIONS(3611), - [anon_sym_c_longlong] = ACTIONS(3611), - [anon_sym_c_ulonglong] = ACTIONS(3611), - [anon_sym_c_float] = ACTIONS(3611), - [anon_sym_c_double] = ACTIONS(3611), - [anon_sym_c_longdouble] = ACTIONS(3611), - [anon_sym_return] = ACTIONS(3611), - [anon_sym_yield] = ACTIONS(3611), - [anon_sym_break] = ACTIONS(3611), - [anon_sym_continue] = ACTIONS(3611), - [anon_sym_defer] = ACTIONS(3611), - [anon_sym_errdefer] = ACTIONS(3611), - [anon_sym_if] = ACTIONS(3611), - [anon_sym_else] = ACTIONS(3611), - [anon_sym_while] = ACTIONS(3611), - [anon_sym_expand] = ACTIONS(3611), - [anon_sym_for] = ACTIONS(3611), - [anon_sym_match] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_try] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3609), - [anon_sym_true] = ACTIONS(3611), - [anon_sym_false] = ACTIONS(3611), - [sym_none] = ACTIONS(3611), - [sym_undefined] = ACTIONS(3611), - [sym_sink] = ACTIONS(3611), - [sym_integer] = ACTIONS(3611), - [sym_float] = ACTIONS(3609), - [anon_sym_DQUOTE] = ACTIONS(3609), - [sym_multiline_string] = ACTIONS(3609), - [sym_character] = ACTIONS(3609), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_test] = ACTIONS(3458), + [anon_sym_hide] = ACTIONS(3458), + [anon_sym_func] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_RPAREN] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_DOLLAR] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_anyopaque] = ACTIONS(3458), + [anon_sym_bool] = ACTIONS(3458), + [anon_sym_int] = ACTIONS(3458), + [anon_sym_uint] = ACTIONS(3458), + [anon_sym_float] = ACTIONS(3458), + [anon_sym_range] = ACTIONS(3458), + [anon_sym_i8] = ACTIONS(3458), + [anon_sym_i16] = ACTIONS(3458), + [anon_sym_i32] = ACTIONS(3458), + [anon_sym_i64] = ACTIONS(3458), + [anon_sym_u8] = ACTIONS(3458), + [anon_sym_u16] = ACTIONS(3458), + [anon_sym_u32] = ACTIONS(3458), + [anon_sym_u64] = ACTIONS(3458), + [anon_sym_isize] = ACTIONS(3458), + [anon_sym_usize] = ACTIONS(3458), + [anon_sym_f32] = ACTIONS(3458), + [anon_sym_f64] = ACTIONS(3458), + [anon_sym_c_char] = ACTIONS(3458), + [anon_sym_c_schar] = ACTIONS(3458), + [anon_sym_c_uchar] = ACTIONS(3458), + [anon_sym_c_short] = ACTIONS(3458), + [anon_sym_c_ushort] = ACTIONS(3458), + [anon_sym_c_int] = ACTIONS(3458), + [anon_sym_c_uint] = ACTIONS(3458), + [anon_sym_c_long] = ACTIONS(3458), + [anon_sym_c_ulong] = ACTIONS(3458), + [anon_sym_c_longlong] = ACTIONS(3458), + [anon_sym_c_ulonglong] = ACTIONS(3458), + [anon_sym_c_float] = ACTIONS(3458), + [anon_sym_c_double] = ACTIONS(3458), + [anon_sym_c_longdouble] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_defer] = ACTIONS(3458), + [anon_sym_errdefer] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_expand] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_match] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_DOT] = ACTIONS(3456), + [anon_sym_true] = ACTIONS(3458), + [anon_sym_false] = ACTIONS(3458), + [sym_none] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [sym_sink] = ACTIONS(3458), + [sym_integer] = ACTIONS(3458), + [sym_float] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [sym_multiline_string] = ACTIONS(3456), + [sym_character] = ACTIONS(3456), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3609), + [sym__newline] = ACTIONS(3456), }, [STATE(1587)] = { - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3615), - [anon_sym_import] = ACTIONS(3615), - [anon_sym_test] = ACTIONS(3615), - [anon_sym_hide] = ACTIONS(3615), - [anon_sym_func] = ACTIONS(3615), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_struct] = ACTIONS(3615), - [anon_sym_LPAREN] = ACTIONS(3613), - [anon_sym_RPAREN] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3613), - [anon_sym_RBRACE] = ACTIONS(3613), - [anon_sym_DASH] = ACTIONS(3613), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(3613), - [anon_sym_void] = ACTIONS(3615), - [anon_sym_anyopaque] = ACTIONS(3615), - [anon_sym_bool] = ACTIONS(3615), - [anon_sym_int] = ACTIONS(3615), - [anon_sym_uint] = ACTIONS(3615), - [anon_sym_float] = ACTIONS(3615), - [anon_sym_range] = ACTIONS(3615), - [anon_sym_i8] = ACTIONS(3615), - [anon_sym_i16] = ACTIONS(3615), - [anon_sym_i32] = ACTIONS(3615), - [anon_sym_i64] = ACTIONS(3615), - [anon_sym_u8] = ACTIONS(3615), - [anon_sym_u16] = ACTIONS(3615), - [anon_sym_u32] = ACTIONS(3615), - [anon_sym_u64] = ACTIONS(3615), - [anon_sym_isize] = ACTIONS(3615), - [anon_sym_usize] = ACTIONS(3615), - [anon_sym_f32] = ACTIONS(3615), - [anon_sym_f64] = ACTIONS(3615), - [anon_sym_c_char] = ACTIONS(3615), - [anon_sym_c_schar] = ACTIONS(3615), - [anon_sym_c_uchar] = ACTIONS(3615), - [anon_sym_c_short] = ACTIONS(3615), - [anon_sym_c_ushort] = ACTIONS(3615), - [anon_sym_c_int] = ACTIONS(3615), - [anon_sym_c_uint] = ACTIONS(3615), - [anon_sym_c_long] = ACTIONS(3615), - [anon_sym_c_ulong] = ACTIONS(3615), - [anon_sym_c_longlong] = ACTIONS(3615), - [anon_sym_c_ulonglong] = ACTIONS(3615), - [anon_sym_c_float] = ACTIONS(3615), - [anon_sym_c_double] = ACTIONS(3615), - [anon_sym_c_longdouble] = ACTIONS(3615), - [anon_sym_return] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3615), - [anon_sym_break] = ACTIONS(3615), - [anon_sym_continue] = ACTIONS(3615), - [anon_sym_defer] = ACTIONS(3615), - [anon_sym_errdefer] = ACTIONS(3615), - [anon_sym_if] = ACTIONS(3615), - [anon_sym_else] = ACTIONS(3615), - [anon_sym_while] = ACTIONS(3615), - [anon_sym_expand] = ACTIONS(3615), - [anon_sym_for] = ACTIONS(3615), - [anon_sym_match] = ACTIONS(3615), - [anon_sym_AMP] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(3613), - [anon_sym_try] = ACTIONS(3615), - [anon_sym_DOT] = ACTIONS(3613), - [anon_sym_true] = ACTIONS(3615), - [anon_sym_false] = ACTIONS(3615), - [sym_none] = ACTIONS(3615), - [sym_undefined] = ACTIONS(3615), - [sym_sink] = ACTIONS(3615), - [sym_integer] = ACTIONS(3615), - [sym_float] = ACTIONS(3613), - [anon_sym_DQUOTE] = ACTIONS(3613), - [sym_multiline_string] = ACTIONS(3613), - [sym_character] = ACTIONS(3613), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_test] = ACTIONS(3462), + [anon_sym_hide] = ACTIONS(3462), + [anon_sym_func] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3460), + [anon_sym_RPAREN] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3460), + [anon_sym_RBRACE] = ACTIONS(3460), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_DOLLAR] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_anyopaque] = ACTIONS(3462), + [anon_sym_bool] = ACTIONS(3462), + [anon_sym_int] = ACTIONS(3462), + [anon_sym_uint] = ACTIONS(3462), + [anon_sym_float] = ACTIONS(3462), + [anon_sym_range] = ACTIONS(3462), + [anon_sym_i8] = ACTIONS(3462), + [anon_sym_i16] = ACTIONS(3462), + [anon_sym_i32] = ACTIONS(3462), + [anon_sym_i64] = ACTIONS(3462), + [anon_sym_u8] = ACTIONS(3462), + [anon_sym_u16] = ACTIONS(3462), + [anon_sym_u32] = ACTIONS(3462), + [anon_sym_u64] = ACTIONS(3462), + [anon_sym_isize] = ACTIONS(3462), + [anon_sym_usize] = ACTIONS(3462), + [anon_sym_f32] = ACTIONS(3462), + [anon_sym_f64] = ACTIONS(3462), + [anon_sym_c_char] = ACTIONS(3462), + [anon_sym_c_schar] = ACTIONS(3462), + [anon_sym_c_uchar] = ACTIONS(3462), + [anon_sym_c_short] = ACTIONS(3462), + [anon_sym_c_ushort] = ACTIONS(3462), + [anon_sym_c_int] = ACTIONS(3462), + [anon_sym_c_uint] = ACTIONS(3462), + [anon_sym_c_long] = ACTIONS(3462), + [anon_sym_c_ulong] = ACTIONS(3462), + [anon_sym_c_longlong] = ACTIONS(3462), + [anon_sym_c_ulonglong] = ACTIONS(3462), + [anon_sym_c_float] = ACTIONS(3462), + [anon_sym_c_double] = ACTIONS(3462), + [anon_sym_c_longdouble] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_defer] = ACTIONS(3462), + [anon_sym_errdefer] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_expand] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_match] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_TILDE] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_DOT] = ACTIONS(3460), + [anon_sym_true] = ACTIONS(3462), + [anon_sym_false] = ACTIONS(3462), + [sym_none] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [sym_sink] = ACTIONS(3462), + [sym_integer] = ACTIONS(3462), + [sym_float] = ACTIONS(3460), + [anon_sym_DQUOTE] = ACTIONS(3460), + [sym_multiline_string] = ACTIONS(3460), + [sym_character] = ACTIONS(3460), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3613), + [sym__newline] = ACTIONS(3460), }, [STATE(1588)] = { - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3619), - [anon_sym_import] = ACTIONS(3619), - [anon_sym_test] = ACTIONS(3619), - [anon_sym_hide] = ACTIONS(3619), - [anon_sym_func] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_struct] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3617), - [anon_sym_RPAREN] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_RBRACE] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DOLLAR] = ACTIONS(3617), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_void] = ACTIONS(3619), - [anon_sym_anyopaque] = ACTIONS(3619), - [anon_sym_bool] = ACTIONS(3619), - [anon_sym_int] = ACTIONS(3619), - [anon_sym_uint] = ACTIONS(3619), - [anon_sym_float] = ACTIONS(3619), - [anon_sym_range] = ACTIONS(3619), - [anon_sym_i8] = ACTIONS(3619), - [anon_sym_i16] = ACTIONS(3619), - [anon_sym_i32] = ACTIONS(3619), - [anon_sym_i64] = ACTIONS(3619), - [anon_sym_u8] = ACTIONS(3619), - [anon_sym_u16] = ACTIONS(3619), - [anon_sym_u32] = ACTIONS(3619), - [anon_sym_u64] = ACTIONS(3619), - [anon_sym_isize] = ACTIONS(3619), - [anon_sym_usize] = ACTIONS(3619), - [anon_sym_f32] = ACTIONS(3619), - [anon_sym_f64] = ACTIONS(3619), - [anon_sym_c_char] = ACTIONS(3619), - [anon_sym_c_schar] = ACTIONS(3619), - [anon_sym_c_uchar] = ACTIONS(3619), - [anon_sym_c_short] = ACTIONS(3619), - [anon_sym_c_ushort] = ACTIONS(3619), - [anon_sym_c_int] = ACTIONS(3619), - [anon_sym_c_uint] = ACTIONS(3619), - [anon_sym_c_long] = ACTIONS(3619), - [anon_sym_c_ulong] = ACTIONS(3619), - [anon_sym_c_longlong] = ACTIONS(3619), - [anon_sym_c_ulonglong] = ACTIONS(3619), - [anon_sym_c_float] = ACTIONS(3619), - [anon_sym_c_double] = ACTIONS(3619), - [anon_sym_c_longdouble] = ACTIONS(3619), - [anon_sym_return] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_break] = ACTIONS(3619), - [anon_sym_continue] = ACTIONS(3619), - [anon_sym_defer] = ACTIONS(3619), - [anon_sym_errdefer] = ACTIONS(3619), - [anon_sym_if] = ACTIONS(3619), - [anon_sym_else] = ACTIONS(3619), - [anon_sym_while] = ACTIONS(3619), - [anon_sym_expand] = ACTIONS(3619), - [anon_sym_for] = ACTIONS(3619), - [anon_sym_match] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3617), - [anon_sym_try] = ACTIONS(3619), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_true] = ACTIONS(3619), - [anon_sym_false] = ACTIONS(3619), - [sym_none] = ACTIONS(3619), - [sym_undefined] = ACTIONS(3619), - [sym_sink] = ACTIONS(3619), - [sym_integer] = ACTIONS(3619), - [sym_float] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3617), - [sym_multiline_string] = ACTIONS(3617), - [sym_character] = ACTIONS(3617), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_test] = ACTIONS(3466), + [anon_sym_hide] = ACTIONS(3466), + [anon_sym_func] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_RPAREN] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_DOLLAR] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_anyopaque] = ACTIONS(3466), + [anon_sym_bool] = ACTIONS(3466), + [anon_sym_int] = ACTIONS(3466), + [anon_sym_uint] = ACTIONS(3466), + [anon_sym_float] = ACTIONS(3466), + [anon_sym_range] = ACTIONS(3466), + [anon_sym_i8] = ACTIONS(3466), + [anon_sym_i16] = ACTIONS(3466), + [anon_sym_i32] = ACTIONS(3466), + [anon_sym_i64] = ACTIONS(3466), + [anon_sym_u8] = ACTIONS(3466), + [anon_sym_u16] = ACTIONS(3466), + [anon_sym_u32] = ACTIONS(3466), + [anon_sym_u64] = ACTIONS(3466), + [anon_sym_isize] = ACTIONS(3466), + [anon_sym_usize] = ACTIONS(3466), + [anon_sym_f32] = ACTIONS(3466), + [anon_sym_f64] = ACTIONS(3466), + [anon_sym_c_char] = ACTIONS(3466), + [anon_sym_c_schar] = ACTIONS(3466), + [anon_sym_c_uchar] = ACTIONS(3466), + [anon_sym_c_short] = ACTIONS(3466), + [anon_sym_c_ushort] = ACTIONS(3466), + [anon_sym_c_int] = ACTIONS(3466), + [anon_sym_c_uint] = ACTIONS(3466), + [anon_sym_c_long] = ACTIONS(3466), + [anon_sym_c_ulong] = ACTIONS(3466), + [anon_sym_c_longlong] = ACTIONS(3466), + [anon_sym_c_ulonglong] = ACTIONS(3466), + [anon_sym_c_float] = ACTIONS(3466), + [anon_sym_c_double] = ACTIONS(3466), + [anon_sym_c_longdouble] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_defer] = ACTIONS(3466), + [anon_sym_errdefer] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_expand] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_match] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_DOT] = ACTIONS(3464), + [anon_sym_true] = ACTIONS(3466), + [anon_sym_false] = ACTIONS(3466), + [sym_none] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [sym_sink] = ACTIONS(3466), + [sym_integer] = ACTIONS(3466), + [sym_float] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [sym_multiline_string] = ACTIONS(3464), + [sym_character] = ACTIONS(3464), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3617), + [sym__newline] = ACTIONS(3464), }, [STATE(1589)] = { - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3623), - [anon_sym_import] = ACTIONS(3623), - [anon_sym_test] = ACTIONS(3623), - [anon_sym_hide] = ACTIONS(3623), - [anon_sym_func] = ACTIONS(3623), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_struct] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_RPAREN] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_RBRACE] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_void] = ACTIONS(3623), - [anon_sym_anyopaque] = ACTIONS(3623), - [anon_sym_bool] = ACTIONS(3623), - [anon_sym_int] = ACTIONS(3623), - [anon_sym_uint] = ACTIONS(3623), - [anon_sym_float] = ACTIONS(3623), - [anon_sym_range] = ACTIONS(3623), - [anon_sym_i8] = ACTIONS(3623), - [anon_sym_i16] = ACTIONS(3623), - [anon_sym_i32] = ACTIONS(3623), - [anon_sym_i64] = ACTIONS(3623), - [anon_sym_u8] = ACTIONS(3623), - [anon_sym_u16] = ACTIONS(3623), - [anon_sym_u32] = ACTIONS(3623), - [anon_sym_u64] = ACTIONS(3623), - [anon_sym_isize] = ACTIONS(3623), - [anon_sym_usize] = ACTIONS(3623), - [anon_sym_f32] = ACTIONS(3623), - [anon_sym_f64] = ACTIONS(3623), - [anon_sym_c_char] = ACTIONS(3623), - [anon_sym_c_schar] = ACTIONS(3623), - [anon_sym_c_uchar] = ACTIONS(3623), - [anon_sym_c_short] = ACTIONS(3623), - [anon_sym_c_ushort] = ACTIONS(3623), - [anon_sym_c_int] = ACTIONS(3623), - [anon_sym_c_uint] = ACTIONS(3623), - [anon_sym_c_long] = ACTIONS(3623), - [anon_sym_c_ulong] = ACTIONS(3623), - [anon_sym_c_longlong] = ACTIONS(3623), - [anon_sym_c_ulonglong] = ACTIONS(3623), - [anon_sym_c_float] = ACTIONS(3623), - [anon_sym_c_double] = ACTIONS(3623), - [anon_sym_c_longdouble] = ACTIONS(3623), - [anon_sym_return] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3623), - [anon_sym_break] = ACTIONS(3623), - [anon_sym_continue] = ACTIONS(3623), - [anon_sym_defer] = ACTIONS(3623), - [anon_sym_errdefer] = ACTIONS(3623), - [anon_sym_if] = ACTIONS(3623), - [anon_sym_else] = ACTIONS(3623), - [anon_sym_while] = ACTIONS(3623), - [anon_sym_expand] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3623), - [anon_sym_match] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_true] = ACTIONS(3623), - [anon_sym_false] = ACTIONS(3623), - [sym_none] = ACTIONS(3623), - [sym_undefined] = ACTIONS(3623), - [sym_sink] = ACTIONS(3623), - [sym_integer] = ACTIONS(3623), - [sym_float] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym_multiline_string] = ACTIONS(3621), - [sym_character] = ACTIONS(3621), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_test] = ACTIONS(3470), + [anon_sym_hide] = ACTIONS(3470), + [anon_sym_func] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_RPAREN] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_DOLLAR] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_anyopaque] = ACTIONS(3470), + [anon_sym_bool] = ACTIONS(3470), + [anon_sym_int] = ACTIONS(3470), + [anon_sym_uint] = ACTIONS(3470), + [anon_sym_float] = ACTIONS(3470), + [anon_sym_range] = ACTIONS(3470), + [anon_sym_i8] = ACTIONS(3470), + [anon_sym_i16] = ACTIONS(3470), + [anon_sym_i32] = ACTIONS(3470), + [anon_sym_i64] = ACTIONS(3470), + [anon_sym_u8] = ACTIONS(3470), + [anon_sym_u16] = ACTIONS(3470), + [anon_sym_u32] = ACTIONS(3470), + [anon_sym_u64] = ACTIONS(3470), + [anon_sym_isize] = ACTIONS(3470), + [anon_sym_usize] = ACTIONS(3470), + [anon_sym_f32] = ACTIONS(3470), + [anon_sym_f64] = ACTIONS(3470), + [anon_sym_c_char] = ACTIONS(3470), + [anon_sym_c_schar] = ACTIONS(3470), + [anon_sym_c_uchar] = ACTIONS(3470), + [anon_sym_c_short] = ACTIONS(3470), + [anon_sym_c_ushort] = ACTIONS(3470), + [anon_sym_c_int] = ACTIONS(3470), + [anon_sym_c_uint] = ACTIONS(3470), + [anon_sym_c_long] = ACTIONS(3470), + [anon_sym_c_ulong] = ACTIONS(3470), + [anon_sym_c_longlong] = ACTIONS(3470), + [anon_sym_c_ulonglong] = ACTIONS(3470), + [anon_sym_c_float] = ACTIONS(3470), + [anon_sym_c_double] = ACTIONS(3470), + [anon_sym_c_longdouble] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_defer] = ACTIONS(3470), + [anon_sym_errdefer] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_expand] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_match] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_DOT] = ACTIONS(3468), + [anon_sym_true] = ACTIONS(3470), + [anon_sym_false] = ACTIONS(3470), + [sym_none] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [sym_sink] = ACTIONS(3470), + [sym_integer] = ACTIONS(3470), + [sym_float] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [sym_multiline_string] = ACTIONS(3468), + [sym_character] = ACTIONS(3468), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3621), + [sym__newline] = ACTIONS(3468), }, [STATE(1590)] = { - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3627), - [anon_sym_import] = ACTIONS(3627), - [anon_sym_test] = ACTIONS(3627), - [anon_sym_hide] = ACTIONS(3627), - [anon_sym_func] = ACTIONS(3627), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_struct] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3625), - [anon_sym_RPAREN] = ACTIONS(3625), - [anon_sym_LBRACE] = ACTIONS(3625), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_DOLLAR] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3625), - [anon_sym_void] = ACTIONS(3627), - [anon_sym_anyopaque] = ACTIONS(3627), - [anon_sym_bool] = ACTIONS(3627), - [anon_sym_int] = ACTIONS(3627), - [anon_sym_uint] = ACTIONS(3627), - [anon_sym_float] = ACTIONS(3627), - [anon_sym_range] = ACTIONS(3627), - [anon_sym_i8] = ACTIONS(3627), - [anon_sym_i16] = ACTIONS(3627), - [anon_sym_i32] = ACTIONS(3627), - [anon_sym_i64] = ACTIONS(3627), - [anon_sym_u8] = ACTIONS(3627), - [anon_sym_u16] = ACTIONS(3627), - [anon_sym_u32] = ACTIONS(3627), - [anon_sym_u64] = ACTIONS(3627), - [anon_sym_isize] = ACTIONS(3627), - [anon_sym_usize] = ACTIONS(3627), - [anon_sym_f32] = ACTIONS(3627), - [anon_sym_f64] = ACTIONS(3627), - [anon_sym_c_char] = ACTIONS(3627), - [anon_sym_c_schar] = ACTIONS(3627), - [anon_sym_c_uchar] = ACTIONS(3627), - [anon_sym_c_short] = ACTIONS(3627), - [anon_sym_c_ushort] = ACTIONS(3627), - [anon_sym_c_int] = ACTIONS(3627), - [anon_sym_c_uint] = ACTIONS(3627), - [anon_sym_c_long] = ACTIONS(3627), - [anon_sym_c_ulong] = ACTIONS(3627), - [anon_sym_c_longlong] = ACTIONS(3627), - [anon_sym_c_ulonglong] = ACTIONS(3627), - [anon_sym_c_float] = ACTIONS(3627), - [anon_sym_c_double] = ACTIONS(3627), - [anon_sym_c_longdouble] = ACTIONS(3627), - [anon_sym_return] = ACTIONS(3627), - [anon_sym_yield] = ACTIONS(3627), - [anon_sym_break] = ACTIONS(3627), - [anon_sym_continue] = ACTIONS(3627), - [anon_sym_defer] = ACTIONS(3627), - [anon_sym_errdefer] = ACTIONS(3627), - [anon_sym_if] = ACTIONS(3627), - [anon_sym_else] = ACTIONS(3627), - [anon_sym_while] = ACTIONS(3627), - [anon_sym_expand] = ACTIONS(3627), - [anon_sym_for] = ACTIONS(3627), - [anon_sym_match] = ACTIONS(3627), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_TILDE] = ACTIONS(3625), - [anon_sym_try] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [sym_none] = ACTIONS(3627), - [sym_undefined] = ACTIONS(3627), - [sym_sink] = ACTIONS(3627), - [sym_integer] = ACTIONS(3627), - [sym_float] = ACTIONS(3625), - [anon_sym_DQUOTE] = ACTIONS(3625), - [sym_multiline_string] = ACTIONS(3625), - [sym_character] = ACTIONS(3625), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_test] = ACTIONS(3474), + [anon_sym_hide] = ACTIONS(3474), + [anon_sym_func] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_RPAREN] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_DOLLAR] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_anyopaque] = ACTIONS(3474), + [anon_sym_bool] = ACTIONS(3474), + [anon_sym_int] = ACTIONS(3474), + [anon_sym_uint] = ACTIONS(3474), + [anon_sym_float] = ACTIONS(3474), + [anon_sym_range] = ACTIONS(3474), + [anon_sym_i8] = ACTIONS(3474), + [anon_sym_i16] = ACTIONS(3474), + [anon_sym_i32] = ACTIONS(3474), + [anon_sym_i64] = ACTIONS(3474), + [anon_sym_u8] = ACTIONS(3474), + [anon_sym_u16] = ACTIONS(3474), + [anon_sym_u32] = ACTIONS(3474), + [anon_sym_u64] = ACTIONS(3474), + [anon_sym_isize] = ACTIONS(3474), + [anon_sym_usize] = ACTIONS(3474), + [anon_sym_f32] = ACTIONS(3474), + [anon_sym_f64] = ACTIONS(3474), + [anon_sym_c_char] = ACTIONS(3474), + [anon_sym_c_schar] = ACTIONS(3474), + [anon_sym_c_uchar] = ACTIONS(3474), + [anon_sym_c_short] = ACTIONS(3474), + [anon_sym_c_ushort] = ACTIONS(3474), + [anon_sym_c_int] = ACTIONS(3474), + [anon_sym_c_uint] = ACTIONS(3474), + [anon_sym_c_long] = ACTIONS(3474), + [anon_sym_c_ulong] = ACTIONS(3474), + [anon_sym_c_longlong] = ACTIONS(3474), + [anon_sym_c_ulonglong] = ACTIONS(3474), + [anon_sym_c_float] = ACTIONS(3474), + [anon_sym_c_double] = ACTIONS(3474), + [anon_sym_c_longdouble] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_defer] = ACTIONS(3474), + [anon_sym_errdefer] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_expand] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_match] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_DOT] = ACTIONS(3472), + [anon_sym_true] = ACTIONS(3474), + [anon_sym_false] = ACTIONS(3474), + [sym_none] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [sym_sink] = ACTIONS(3474), + [sym_integer] = ACTIONS(3474), + [sym_float] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [sym_multiline_string] = ACTIONS(3472), + [sym_character] = ACTIONS(3472), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3625), + [sym__newline] = ACTIONS(3472), }, [STATE(1591)] = { - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3631), - [anon_sym_import] = ACTIONS(3631), - [anon_sym_test] = ACTIONS(3631), - [anon_sym_hide] = ACTIONS(3631), - [anon_sym_func] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_struct] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3629), - [anon_sym_void] = ACTIONS(3631), - [anon_sym_anyopaque] = ACTIONS(3631), - [anon_sym_bool] = ACTIONS(3631), - [anon_sym_int] = ACTIONS(3631), - [anon_sym_uint] = ACTIONS(3631), - [anon_sym_float] = ACTIONS(3631), - [anon_sym_range] = ACTIONS(3631), - [anon_sym_i8] = ACTIONS(3631), - [anon_sym_i16] = ACTIONS(3631), - [anon_sym_i32] = ACTIONS(3631), - [anon_sym_i64] = ACTIONS(3631), - [anon_sym_u8] = ACTIONS(3631), - [anon_sym_u16] = ACTIONS(3631), - [anon_sym_u32] = ACTIONS(3631), - [anon_sym_u64] = ACTIONS(3631), - [anon_sym_isize] = ACTIONS(3631), - [anon_sym_usize] = ACTIONS(3631), - [anon_sym_f32] = ACTIONS(3631), - [anon_sym_f64] = ACTIONS(3631), - [anon_sym_c_char] = ACTIONS(3631), - [anon_sym_c_schar] = ACTIONS(3631), - [anon_sym_c_uchar] = ACTIONS(3631), - [anon_sym_c_short] = ACTIONS(3631), - [anon_sym_c_ushort] = ACTIONS(3631), - [anon_sym_c_int] = ACTIONS(3631), - [anon_sym_c_uint] = ACTIONS(3631), - [anon_sym_c_long] = ACTIONS(3631), - [anon_sym_c_ulong] = ACTIONS(3631), - [anon_sym_c_longlong] = ACTIONS(3631), - [anon_sym_c_ulonglong] = ACTIONS(3631), - [anon_sym_c_float] = ACTIONS(3631), - [anon_sym_c_double] = ACTIONS(3631), - [anon_sym_c_longdouble] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_break] = ACTIONS(3631), - [anon_sym_continue] = ACTIONS(3631), - [anon_sym_defer] = ACTIONS(3631), - [anon_sym_errdefer] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_else] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_expand] = ACTIONS(3631), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_DOT] = ACTIONS(3629), - [anon_sym_true] = ACTIONS(3631), - [anon_sym_false] = ACTIONS(3631), - [sym_none] = ACTIONS(3631), - [sym_undefined] = ACTIONS(3631), - [sym_sink] = ACTIONS(3631), - [sym_integer] = ACTIONS(3631), - [sym_float] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3629), - [sym_multiline_string] = ACTIONS(3629), - [sym_character] = ACTIONS(3629), + [ts_builtin_sym_end] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_test] = ACTIONS(3478), + [anon_sym_hide] = ACTIONS(3478), + [anon_sym_func] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_DOLLAR] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_anyopaque] = ACTIONS(3478), + [anon_sym_bool] = ACTIONS(3478), + [anon_sym_int] = ACTIONS(3478), + [anon_sym_uint] = ACTIONS(3478), + [anon_sym_float] = ACTIONS(3478), + [anon_sym_range] = ACTIONS(3478), + [anon_sym_i8] = ACTIONS(3478), + [anon_sym_i16] = ACTIONS(3478), + [anon_sym_i32] = ACTIONS(3478), + [anon_sym_i64] = ACTIONS(3478), + [anon_sym_u8] = ACTIONS(3478), + [anon_sym_u16] = ACTIONS(3478), + [anon_sym_u32] = ACTIONS(3478), + [anon_sym_u64] = ACTIONS(3478), + [anon_sym_isize] = ACTIONS(3478), + [anon_sym_usize] = ACTIONS(3478), + [anon_sym_f32] = ACTIONS(3478), + [anon_sym_f64] = ACTIONS(3478), + [anon_sym_c_char] = ACTIONS(3478), + [anon_sym_c_schar] = ACTIONS(3478), + [anon_sym_c_uchar] = ACTIONS(3478), + [anon_sym_c_short] = ACTIONS(3478), + [anon_sym_c_ushort] = ACTIONS(3478), + [anon_sym_c_int] = ACTIONS(3478), + [anon_sym_c_uint] = ACTIONS(3478), + [anon_sym_c_long] = ACTIONS(3478), + [anon_sym_c_ulong] = ACTIONS(3478), + [anon_sym_c_longlong] = ACTIONS(3478), + [anon_sym_c_ulonglong] = ACTIONS(3478), + [anon_sym_c_float] = ACTIONS(3478), + [anon_sym_c_double] = ACTIONS(3478), + [anon_sym_c_longdouble] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_defer] = ACTIONS(3478), + [anon_sym_errdefer] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_expand] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_match] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_DOT] = ACTIONS(3476), + [anon_sym_true] = ACTIONS(3478), + [anon_sym_false] = ACTIONS(3478), + [sym_none] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [sym_sink] = ACTIONS(3478), + [sym_integer] = ACTIONS(3478), + [sym_float] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_multiline_string] = ACTIONS(3476), + [sym_character] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3629), + [sym__newline] = ACTIONS(3476), }, [STATE(1592)] = { - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3635), - [anon_sym_import] = ACTIONS(3635), - [anon_sym_test] = ACTIONS(3635), - [anon_sym_hide] = ACTIONS(3635), - [anon_sym_func] = ACTIONS(3635), - [anon_sym_BANG] = ACTIONS(3633), - [anon_sym_struct] = ACTIONS(3635), - [anon_sym_LPAREN] = ACTIONS(3633), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(3633), - [anon_sym_void] = ACTIONS(3635), - [anon_sym_anyopaque] = ACTIONS(3635), - [anon_sym_bool] = ACTIONS(3635), - [anon_sym_int] = ACTIONS(3635), - [anon_sym_uint] = ACTIONS(3635), - [anon_sym_float] = ACTIONS(3635), - [anon_sym_range] = ACTIONS(3635), - [anon_sym_i8] = ACTIONS(3635), - [anon_sym_i16] = ACTIONS(3635), - [anon_sym_i32] = ACTIONS(3635), - [anon_sym_i64] = ACTIONS(3635), - [anon_sym_u8] = ACTIONS(3635), - [anon_sym_u16] = ACTIONS(3635), - [anon_sym_u32] = ACTIONS(3635), - [anon_sym_u64] = ACTIONS(3635), - [anon_sym_isize] = ACTIONS(3635), - [anon_sym_usize] = ACTIONS(3635), - [anon_sym_f32] = ACTIONS(3635), - [anon_sym_f64] = ACTIONS(3635), - [anon_sym_c_char] = ACTIONS(3635), - [anon_sym_c_schar] = ACTIONS(3635), - [anon_sym_c_uchar] = ACTIONS(3635), - [anon_sym_c_short] = ACTIONS(3635), - [anon_sym_c_ushort] = ACTIONS(3635), - [anon_sym_c_int] = ACTIONS(3635), - [anon_sym_c_uint] = ACTIONS(3635), - [anon_sym_c_long] = ACTIONS(3635), - [anon_sym_c_ulong] = ACTIONS(3635), - [anon_sym_c_longlong] = ACTIONS(3635), - [anon_sym_c_ulonglong] = ACTIONS(3635), - [anon_sym_c_float] = ACTIONS(3635), - [anon_sym_c_double] = ACTIONS(3635), - [anon_sym_c_longdouble] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_break] = ACTIONS(3635), - [anon_sym_continue] = ACTIONS(3635), - [anon_sym_defer] = ACTIONS(3635), - [anon_sym_errdefer] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_else] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_expand] = ACTIONS(3635), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_AMP] = ACTIONS(3633), - [anon_sym_TILDE] = ACTIONS(3633), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [sym_none] = ACTIONS(3635), - [sym_undefined] = ACTIONS(3635), - [sym_sink] = ACTIONS(3635), - [sym_integer] = ACTIONS(3635), - [sym_float] = ACTIONS(3633), - [anon_sym_DQUOTE] = ACTIONS(3633), - [sym_multiline_string] = ACTIONS(3633), - [sym_character] = ACTIONS(3633), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_test] = ACTIONS(3482), + [anon_sym_hide] = ACTIONS(3482), + [anon_sym_func] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_RPAREN] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_DOLLAR] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_anyopaque] = ACTIONS(3482), + [anon_sym_bool] = ACTIONS(3482), + [anon_sym_int] = ACTIONS(3482), + [anon_sym_uint] = ACTIONS(3482), + [anon_sym_float] = ACTIONS(3482), + [anon_sym_range] = ACTIONS(3482), + [anon_sym_i8] = ACTIONS(3482), + [anon_sym_i16] = ACTIONS(3482), + [anon_sym_i32] = ACTIONS(3482), + [anon_sym_i64] = ACTIONS(3482), + [anon_sym_u8] = ACTIONS(3482), + [anon_sym_u16] = ACTIONS(3482), + [anon_sym_u32] = ACTIONS(3482), + [anon_sym_u64] = ACTIONS(3482), + [anon_sym_isize] = ACTIONS(3482), + [anon_sym_usize] = ACTIONS(3482), + [anon_sym_f32] = ACTIONS(3482), + [anon_sym_f64] = ACTIONS(3482), + [anon_sym_c_char] = ACTIONS(3482), + [anon_sym_c_schar] = ACTIONS(3482), + [anon_sym_c_uchar] = ACTIONS(3482), + [anon_sym_c_short] = ACTIONS(3482), + [anon_sym_c_ushort] = ACTIONS(3482), + [anon_sym_c_int] = ACTIONS(3482), + [anon_sym_c_uint] = ACTIONS(3482), + [anon_sym_c_long] = ACTIONS(3482), + [anon_sym_c_ulong] = ACTIONS(3482), + [anon_sym_c_longlong] = ACTIONS(3482), + [anon_sym_c_ulonglong] = ACTIONS(3482), + [anon_sym_c_float] = ACTIONS(3482), + [anon_sym_c_double] = ACTIONS(3482), + [anon_sym_c_longdouble] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_defer] = ACTIONS(3482), + [anon_sym_errdefer] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_expand] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_match] = ACTIONS(3482), + [anon_sym_AMP] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_true] = ACTIONS(3482), + [anon_sym_false] = ACTIONS(3482), + [sym_none] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [sym_sink] = ACTIONS(3482), + [sym_integer] = ACTIONS(3482), + [sym_float] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_multiline_string] = ACTIONS(3480), + [sym_character] = ACTIONS(3480), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3633), + [sym__newline] = ACTIONS(3480), }, [STATE(1593)] = { - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3639), - [anon_sym_import] = ACTIONS(3639), - [anon_sym_test] = ACTIONS(3639), - [anon_sym_hide] = ACTIONS(3639), - [anon_sym_func] = ACTIONS(3639), - [anon_sym_BANG] = ACTIONS(3637), - [anon_sym_struct] = ACTIONS(3639), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_RPAREN] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_RBRACE] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_LBRACK] = ACTIONS(3637), - [anon_sym_void] = ACTIONS(3639), - [anon_sym_anyopaque] = ACTIONS(3639), - [anon_sym_bool] = ACTIONS(3639), - [anon_sym_int] = ACTIONS(3639), - [anon_sym_uint] = ACTIONS(3639), - [anon_sym_float] = ACTIONS(3639), - [anon_sym_range] = ACTIONS(3639), - [anon_sym_i8] = ACTIONS(3639), - [anon_sym_i16] = ACTIONS(3639), - [anon_sym_i32] = ACTIONS(3639), - [anon_sym_i64] = ACTIONS(3639), - [anon_sym_u8] = ACTIONS(3639), - [anon_sym_u16] = ACTIONS(3639), - [anon_sym_u32] = ACTIONS(3639), - [anon_sym_u64] = ACTIONS(3639), - [anon_sym_isize] = ACTIONS(3639), - [anon_sym_usize] = ACTIONS(3639), - [anon_sym_f32] = ACTIONS(3639), - [anon_sym_f64] = ACTIONS(3639), - [anon_sym_c_char] = ACTIONS(3639), - [anon_sym_c_schar] = ACTIONS(3639), - [anon_sym_c_uchar] = ACTIONS(3639), - [anon_sym_c_short] = ACTIONS(3639), - [anon_sym_c_ushort] = ACTIONS(3639), - [anon_sym_c_int] = ACTIONS(3639), - [anon_sym_c_uint] = ACTIONS(3639), - [anon_sym_c_long] = ACTIONS(3639), - [anon_sym_c_ulong] = ACTIONS(3639), - [anon_sym_c_longlong] = ACTIONS(3639), - [anon_sym_c_ulonglong] = ACTIONS(3639), - [anon_sym_c_float] = ACTIONS(3639), - [anon_sym_c_double] = ACTIONS(3639), - [anon_sym_c_longdouble] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_break] = ACTIONS(3639), - [anon_sym_continue] = ACTIONS(3639), - [anon_sym_defer] = ACTIONS(3639), - [anon_sym_errdefer] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_else] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_expand] = ACTIONS(3639), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_DOT] = ACTIONS(3637), - [anon_sym_true] = ACTIONS(3639), - [anon_sym_false] = ACTIONS(3639), - [sym_none] = ACTIONS(3639), - [sym_undefined] = ACTIONS(3639), - [sym_sink] = ACTIONS(3639), - [sym_integer] = ACTIONS(3639), - [sym_float] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [sym_multiline_string] = ACTIONS(3637), - [sym_character] = ACTIONS(3637), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_test] = ACTIONS(3486), + [anon_sym_hide] = ACTIONS(3486), + [anon_sym_func] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_DOLLAR] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_anyopaque] = ACTIONS(3486), + [anon_sym_bool] = ACTIONS(3486), + [anon_sym_int] = ACTIONS(3486), + [anon_sym_uint] = ACTIONS(3486), + [anon_sym_float] = ACTIONS(3486), + [anon_sym_range] = ACTIONS(3486), + [anon_sym_i8] = ACTIONS(3486), + [anon_sym_i16] = ACTIONS(3486), + [anon_sym_i32] = ACTIONS(3486), + [anon_sym_i64] = ACTIONS(3486), + [anon_sym_u8] = ACTIONS(3486), + [anon_sym_u16] = ACTIONS(3486), + [anon_sym_u32] = ACTIONS(3486), + [anon_sym_u64] = ACTIONS(3486), + [anon_sym_isize] = ACTIONS(3486), + [anon_sym_usize] = ACTIONS(3486), + [anon_sym_f32] = ACTIONS(3486), + [anon_sym_f64] = ACTIONS(3486), + [anon_sym_c_char] = ACTIONS(3486), + [anon_sym_c_schar] = ACTIONS(3486), + [anon_sym_c_uchar] = ACTIONS(3486), + [anon_sym_c_short] = ACTIONS(3486), + [anon_sym_c_ushort] = ACTIONS(3486), + [anon_sym_c_int] = ACTIONS(3486), + [anon_sym_c_uint] = ACTIONS(3486), + [anon_sym_c_long] = ACTIONS(3486), + [anon_sym_c_ulong] = ACTIONS(3486), + [anon_sym_c_longlong] = ACTIONS(3486), + [anon_sym_c_ulonglong] = ACTIONS(3486), + [anon_sym_c_float] = ACTIONS(3486), + [anon_sym_c_double] = ACTIONS(3486), + [anon_sym_c_longdouble] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_defer] = ACTIONS(3486), + [anon_sym_errdefer] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_expand] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_match] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_DOT] = ACTIONS(3484), + [anon_sym_true] = ACTIONS(3486), + [anon_sym_false] = ACTIONS(3486), + [sym_none] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [sym_sink] = ACTIONS(3486), + [sym_integer] = ACTIONS(3486), + [sym_float] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_multiline_string] = ACTIONS(3484), + [sym_character] = ACTIONS(3484), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3637), + [sym__newline] = ACTIONS(3484), }, [STATE(1594)] = { - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3643), - [anon_sym_import] = ACTIONS(3643), - [anon_sym_test] = ACTIONS(3643), - [anon_sym_hide] = ACTIONS(3643), - [anon_sym_func] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3641), - [anon_sym_struct] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_DASH] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_void] = ACTIONS(3643), - [anon_sym_anyopaque] = ACTIONS(3643), - [anon_sym_bool] = ACTIONS(3643), - [anon_sym_int] = ACTIONS(3643), - [anon_sym_uint] = ACTIONS(3643), - [anon_sym_float] = ACTIONS(3643), - [anon_sym_range] = ACTIONS(3643), - [anon_sym_i8] = ACTIONS(3643), - [anon_sym_i16] = ACTIONS(3643), - [anon_sym_i32] = ACTIONS(3643), - [anon_sym_i64] = ACTIONS(3643), - [anon_sym_u8] = ACTIONS(3643), - [anon_sym_u16] = ACTIONS(3643), - [anon_sym_u32] = ACTIONS(3643), - [anon_sym_u64] = ACTIONS(3643), - [anon_sym_isize] = ACTIONS(3643), - [anon_sym_usize] = ACTIONS(3643), - [anon_sym_f32] = ACTIONS(3643), - [anon_sym_f64] = ACTIONS(3643), - [anon_sym_c_char] = ACTIONS(3643), - [anon_sym_c_schar] = ACTIONS(3643), - [anon_sym_c_uchar] = ACTIONS(3643), - [anon_sym_c_short] = ACTIONS(3643), - [anon_sym_c_ushort] = ACTIONS(3643), - [anon_sym_c_int] = ACTIONS(3643), - [anon_sym_c_uint] = ACTIONS(3643), - [anon_sym_c_long] = ACTIONS(3643), - [anon_sym_c_ulong] = ACTIONS(3643), - [anon_sym_c_longlong] = ACTIONS(3643), - [anon_sym_c_ulonglong] = ACTIONS(3643), - [anon_sym_c_float] = ACTIONS(3643), - [anon_sym_c_double] = ACTIONS(3643), - [anon_sym_c_longdouble] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_break] = ACTIONS(3643), - [anon_sym_continue] = ACTIONS(3643), - [anon_sym_defer] = ACTIONS(3643), - [anon_sym_errdefer] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_else] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_expand] = ACTIONS(3643), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3641), - [anon_sym_TILDE] = ACTIONS(3641), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_DOT] = ACTIONS(3641), - [anon_sym_true] = ACTIONS(3643), - [anon_sym_false] = ACTIONS(3643), - [sym_none] = ACTIONS(3643), - [sym_undefined] = ACTIONS(3643), - [sym_sink] = ACTIONS(3643), - [sym_integer] = ACTIONS(3643), - [sym_float] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_multiline_string] = ACTIONS(3641), - [sym_character] = ACTIONS(3641), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_test] = ACTIONS(3490), + [anon_sym_hide] = ACTIONS(3490), + [anon_sym_func] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_DOLLAR] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_anyopaque] = ACTIONS(3490), + [anon_sym_bool] = ACTIONS(3490), + [anon_sym_int] = ACTIONS(3490), + [anon_sym_uint] = ACTIONS(3490), + [anon_sym_float] = ACTIONS(3490), + [anon_sym_range] = ACTIONS(3490), + [anon_sym_i8] = ACTIONS(3490), + [anon_sym_i16] = ACTIONS(3490), + [anon_sym_i32] = ACTIONS(3490), + [anon_sym_i64] = ACTIONS(3490), + [anon_sym_u8] = ACTIONS(3490), + [anon_sym_u16] = ACTIONS(3490), + [anon_sym_u32] = ACTIONS(3490), + [anon_sym_u64] = ACTIONS(3490), + [anon_sym_isize] = ACTIONS(3490), + [anon_sym_usize] = ACTIONS(3490), + [anon_sym_f32] = ACTIONS(3490), + [anon_sym_f64] = ACTIONS(3490), + [anon_sym_c_char] = ACTIONS(3490), + [anon_sym_c_schar] = ACTIONS(3490), + [anon_sym_c_uchar] = ACTIONS(3490), + [anon_sym_c_short] = ACTIONS(3490), + [anon_sym_c_ushort] = ACTIONS(3490), + [anon_sym_c_int] = ACTIONS(3490), + [anon_sym_c_uint] = ACTIONS(3490), + [anon_sym_c_long] = ACTIONS(3490), + [anon_sym_c_ulong] = ACTIONS(3490), + [anon_sym_c_longlong] = ACTIONS(3490), + [anon_sym_c_ulonglong] = ACTIONS(3490), + [anon_sym_c_float] = ACTIONS(3490), + [anon_sym_c_double] = ACTIONS(3490), + [anon_sym_c_longdouble] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_defer] = ACTIONS(3490), + [anon_sym_errdefer] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_expand] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_match] = ACTIONS(3490), + [anon_sym_AMP] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_DOT] = ACTIONS(3488), + [anon_sym_true] = ACTIONS(3490), + [anon_sym_false] = ACTIONS(3490), + [sym_none] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [sym_sink] = ACTIONS(3490), + [sym_integer] = ACTIONS(3490), + [sym_float] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_multiline_string] = ACTIONS(3488), + [sym_character] = ACTIONS(3488), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3641), + [sym__newline] = ACTIONS(3488), }, [STATE(1595)] = { - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3647), - [anon_sym_import] = ACTIONS(3647), - [anon_sym_test] = ACTIONS(3647), - [anon_sym_hide] = ACTIONS(3647), - [anon_sym_func] = ACTIONS(3647), - [anon_sym_BANG] = ACTIONS(3645), - [anon_sym_struct] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_RPAREN] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_void] = ACTIONS(3647), - [anon_sym_anyopaque] = ACTIONS(3647), - [anon_sym_bool] = ACTIONS(3647), - [anon_sym_int] = ACTIONS(3647), - [anon_sym_uint] = ACTIONS(3647), - [anon_sym_float] = ACTIONS(3647), - [anon_sym_range] = ACTIONS(3647), - [anon_sym_i8] = ACTIONS(3647), - [anon_sym_i16] = ACTIONS(3647), - [anon_sym_i32] = ACTIONS(3647), - [anon_sym_i64] = ACTIONS(3647), - [anon_sym_u8] = ACTIONS(3647), - [anon_sym_u16] = ACTIONS(3647), - [anon_sym_u32] = ACTIONS(3647), - [anon_sym_u64] = ACTIONS(3647), - [anon_sym_isize] = ACTIONS(3647), - [anon_sym_usize] = ACTIONS(3647), - [anon_sym_f32] = ACTIONS(3647), - [anon_sym_f64] = ACTIONS(3647), - [anon_sym_c_char] = ACTIONS(3647), - [anon_sym_c_schar] = ACTIONS(3647), - [anon_sym_c_uchar] = ACTIONS(3647), - [anon_sym_c_short] = ACTIONS(3647), - [anon_sym_c_ushort] = ACTIONS(3647), - [anon_sym_c_int] = ACTIONS(3647), - [anon_sym_c_uint] = ACTIONS(3647), - [anon_sym_c_long] = ACTIONS(3647), - [anon_sym_c_ulong] = ACTIONS(3647), - [anon_sym_c_longlong] = ACTIONS(3647), - [anon_sym_c_ulonglong] = ACTIONS(3647), - [anon_sym_c_float] = ACTIONS(3647), - [anon_sym_c_double] = ACTIONS(3647), - [anon_sym_c_longdouble] = ACTIONS(3647), - [anon_sym_return] = ACTIONS(3647), - [anon_sym_yield] = ACTIONS(3647), - [anon_sym_break] = ACTIONS(3647), - [anon_sym_continue] = ACTIONS(3647), - [anon_sym_defer] = ACTIONS(3647), - [anon_sym_errdefer] = ACTIONS(3647), - [anon_sym_if] = ACTIONS(3647), - [anon_sym_else] = ACTIONS(3647), - [anon_sym_while] = ACTIONS(3647), - [anon_sym_expand] = ACTIONS(3647), - [anon_sym_for] = ACTIONS(3647), - [anon_sym_match] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_TILDE] = ACTIONS(3645), - [anon_sym_try] = ACTIONS(3647), - [anon_sym_DOT] = ACTIONS(3645), - [anon_sym_true] = ACTIONS(3647), - [anon_sym_false] = ACTIONS(3647), - [sym_none] = ACTIONS(3647), - [sym_undefined] = ACTIONS(3647), - [sym_sink] = ACTIONS(3647), - [sym_integer] = ACTIONS(3647), - [sym_float] = ACTIONS(3645), - [anon_sym_DQUOTE] = ACTIONS(3645), - [sym_multiline_string] = ACTIONS(3645), - [sym_character] = ACTIONS(3645), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_test] = ACTIONS(3494), + [anon_sym_hide] = ACTIONS(3494), + [anon_sym_func] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_DOLLAR] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_anyopaque] = ACTIONS(3494), + [anon_sym_bool] = ACTIONS(3494), + [anon_sym_int] = ACTIONS(3494), + [anon_sym_uint] = ACTIONS(3494), + [anon_sym_float] = ACTIONS(3494), + [anon_sym_range] = ACTIONS(3494), + [anon_sym_i8] = ACTIONS(3494), + [anon_sym_i16] = ACTIONS(3494), + [anon_sym_i32] = ACTIONS(3494), + [anon_sym_i64] = ACTIONS(3494), + [anon_sym_u8] = ACTIONS(3494), + [anon_sym_u16] = ACTIONS(3494), + [anon_sym_u32] = ACTIONS(3494), + [anon_sym_u64] = ACTIONS(3494), + [anon_sym_isize] = ACTIONS(3494), + [anon_sym_usize] = ACTIONS(3494), + [anon_sym_f32] = ACTIONS(3494), + [anon_sym_f64] = ACTIONS(3494), + [anon_sym_c_char] = ACTIONS(3494), + [anon_sym_c_schar] = ACTIONS(3494), + [anon_sym_c_uchar] = ACTIONS(3494), + [anon_sym_c_short] = ACTIONS(3494), + [anon_sym_c_ushort] = ACTIONS(3494), + [anon_sym_c_int] = ACTIONS(3494), + [anon_sym_c_uint] = ACTIONS(3494), + [anon_sym_c_long] = ACTIONS(3494), + [anon_sym_c_ulong] = ACTIONS(3494), + [anon_sym_c_longlong] = ACTIONS(3494), + [anon_sym_c_ulonglong] = ACTIONS(3494), + [anon_sym_c_float] = ACTIONS(3494), + [anon_sym_c_double] = ACTIONS(3494), + [anon_sym_c_longdouble] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_defer] = ACTIONS(3494), + [anon_sym_errdefer] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_expand] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_match] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_DOT] = ACTIONS(3492), + [anon_sym_true] = ACTIONS(3494), + [anon_sym_false] = ACTIONS(3494), + [sym_none] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [sym_sink] = ACTIONS(3494), + [sym_integer] = ACTIONS(3494), + [sym_float] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_multiline_string] = ACTIONS(3492), + [sym_character] = ACTIONS(3492), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3645), + [sym__newline] = ACTIONS(3492), }, [STATE(1596)] = { - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3651), - [anon_sym_import] = ACTIONS(3651), - [anon_sym_test] = ACTIONS(3651), - [anon_sym_hide] = ACTIONS(3651), - [anon_sym_func] = ACTIONS(3651), - [anon_sym_BANG] = ACTIONS(3649), - [anon_sym_struct] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3649), - [anon_sym_RPAREN] = ACTIONS(3649), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_DASH] = ACTIONS(3649), - [anon_sym_DOLLAR] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_void] = ACTIONS(3651), - [anon_sym_anyopaque] = ACTIONS(3651), - [anon_sym_bool] = ACTIONS(3651), - [anon_sym_int] = ACTIONS(3651), - [anon_sym_uint] = ACTIONS(3651), - [anon_sym_float] = ACTIONS(3651), - [anon_sym_range] = ACTIONS(3651), - [anon_sym_i8] = ACTIONS(3651), - [anon_sym_i16] = ACTIONS(3651), - [anon_sym_i32] = ACTIONS(3651), - [anon_sym_i64] = ACTIONS(3651), - [anon_sym_u8] = ACTIONS(3651), - [anon_sym_u16] = ACTIONS(3651), - [anon_sym_u32] = ACTIONS(3651), - [anon_sym_u64] = ACTIONS(3651), - [anon_sym_isize] = ACTIONS(3651), - [anon_sym_usize] = ACTIONS(3651), - [anon_sym_f32] = ACTIONS(3651), - [anon_sym_f64] = ACTIONS(3651), - [anon_sym_c_char] = ACTIONS(3651), - [anon_sym_c_schar] = ACTIONS(3651), - [anon_sym_c_uchar] = ACTIONS(3651), - [anon_sym_c_short] = ACTIONS(3651), - [anon_sym_c_ushort] = ACTIONS(3651), - [anon_sym_c_int] = ACTIONS(3651), - [anon_sym_c_uint] = ACTIONS(3651), - [anon_sym_c_long] = ACTIONS(3651), - [anon_sym_c_ulong] = ACTIONS(3651), - [anon_sym_c_longlong] = ACTIONS(3651), - [anon_sym_c_ulonglong] = ACTIONS(3651), - [anon_sym_c_float] = ACTIONS(3651), - [anon_sym_c_double] = ACTIONS(3651), - [anon_sym_c_longdouble] = ACTIONS(3651), - [anon_sym_return] = ACTIONS(3651), - [anon_sym_yield] = ACTIONS(3651), - [anon_sym_break] = ACTIONS(3651), - [anon_sym_continue] = ACTIONS(3651), - [anon_sym_defer] = ACTIONS(3651), - [anon_sym_errdefer] = ACTIONS(3651), - [anon_sym_if] = ACTIONS(3651), - [anon_sym_else] = ACTIONS(3651), - [anon_sym_while] = ACTIONS(3651), - [anon_sym_expand] = ACTIONS(3651), - [anon_sym_for] = ACTIONS(3651), - [anon_sym_match] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_TILDE] = ACTIONS(3649), - [anon_sym_try] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_true] = ACTIONS(3651), - [anon_sym_false] = ACTIONS(3651), - [sym_none] = ACTIONS(3651), - [sym_undefined] = ACTIONS(3651), - [sym_sink] = ACTIONS(3651), - [sym_integer] = ACTIONS(3651), - [sym_float] = ACTIONS(3649), - [anon_sym_DQUOTE] = ACTIONS(3649), - [sym_multiline_string] = ACTIONS(3649), - [sym_character] = ACTIONS(3649), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_test] = ACTIONS(3498), + [anon_sym_hide] = ACTIONS(3498), + [anon_sym_func] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_RPAREN] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_DOLLAR] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_anyopaque] = ACTIONS(3498), + [anon_sym_bool] = ACTIONS(3498), + [anon_sym_int] = ACTIONS(3498), + [anon_sym_uint] = ACTIONS(3498), + [anon_sym_float] = ACTIONS(3498), + [anon_sym_range] = ACTIONS(3498), + [anon_sym_i8] = ACTIONS(3498), + [anon_sym_i16] = ACTIONS(3498), + [anon_sym_i32] = ACTIONS(3498), + [anon_sym_i64] = ACTIONS(3498), + [anon_sym_u8] = ACTIONS(3498), + [anon_sym_u16] = ACTIONS(3498), + [anon_sym_u32] = ACTIONS(3498), + [anon_sym_u64] = ACTIONS(3498), + [anon_sym_isize] = ACTIONS(3498), + [anon_sym_usize] = ACTIONS(3498), + [anon_sym_f32] = ACTIONS(3498), + [anon_sym_f64] = ACTIONS(3498), + [anon_sym_c_char] = ACTIONS(3498), + [anon_sym_c_schar] = ACTIONS(3498), + [anon_sym_c_uchar] = ACTIONS(3498), + [anon_sym_c_short] = ACTIONS(3498), + [anon_sym_c_ushort] = ACTIONS(3498), + [anon_sym_c_int] = ACTIONS(3498), + [anon_sym_c_uint] = ACTIONS(3498), + [anon_sym_c_long] = ACTIONS(3498), + [anon_sym_c_ulong] = ACTIONS(3498), + [anon_sym_c_longlong] = ACTIONS(3498), + [anon_sym_c_ulonglong] = ACTIONS(3498), + [anon_sym_c_float] = ACTIONS(3498), + [anon_sym_c_double] = ACTIONS(3498), + [anon_sym_c_longdouble] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_defer] = ACTIONS(3498), + [anon_sym_errdefer] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_expand] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_match] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_DOT] = ACTIONS(3496), + [anon_sym_true] = ACTIONS(3498), + [anon_sym_false] = ACTIONS(3498), + [sym_none] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [sym_sink] = ACTIONS(3498), + [sym_integer] = ACTIONS(3498), + [sym_float] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_multiline_string] = ACTIONS(3496), + [sym_character] = ACTIONS(3496), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3649), + [sym__newline] = ACTIONS(3496), }, [STATE(1597)] = { - [ts_builtin_sym_end] = ACTIONS(3653), - [sym_identifier] = ACTIONS(3655), - [anon_sym_import] = ACTIONS(3655), - [anon_sym_test] = ACTIONS(3655), - [anon_sym_hide] = ACTIONS(3655), - [anon_sym_func] = ACTIONS(3655), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_struct] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_void] = ACTIONS(3655), - [anon_sym_anyopaque] = ACTIONS(3655), - [anon_sym_bool] = ACTIONS(3655), - [anon_sym_int] = ACTIONS(3655), - [anon_sym_uint] = ACTIONS(3655), - [anon_sym_float] = ACTIONS(3655), - [anon_sym_range] = ACTIONS(3655), - [anon_sym_i8] = ACTIONS(3655), - [anon_sym_i16] = ACTIONS(3655), - [anon_sym_i32] = ACTIONS(3655), - [anon_sym_i64] = ACTIONS(3655), - [anon_sym_u8] = ACTIONS(3655), - [anon_sym_u16] = ACTIONS(3655), - [anon_sym_u32] = ACTIONS(3655), - [anon_sym_u64] = ACTIONS(3655), - [anon_sym_isize] = ACTIONS(3655), - [anon_sym_usize] = ACTIONS(3655), - [anon_sym_f32] = ACTIONS(3655), - [anon_sym_f64] = ACTIONS(3655), - [anon_sym_c_char] = ACTIONS(3655), - [anon_sym_c_schar] = ACTIONS(3655), - [anon_sym_c_uchar] = ACTIONS(3655), - [anon_sym_c_short] = ACTIONS(3655), - [anon_sym_c_ushort] = ACTIONS(3655), - [anon_sym_c_int] = ACTIONS(3655), - [anon_sym_c_uint] = ACTIONS(3655), - [anon_sym_c_long] = ACTIONS(3655), - [anon_sym_c_ulong] = ACTIONS(3655), - [anon_sym_c_longlong] = ACTIONS(3655), - [anon_sym_c_ulonglong] = ACTIONS(3655), - [anon_sym_c_float] = ACTIONS(3655), - [anon_sym_c_double] = ACTIONS(3655), - [anon_sym_c_longdouble] = ACTIONS(3655), - [anon_sym_return] = ACTIONS(3655), - [anon_sym_yield] = ACTIONS(3655), - [anon_sym_break] = ACTIONS(3655), - [anon_sym_continue] = ACTIONS(3655), - [anon_sym_defer] = ACTIONS(3655), - [anon_sym_errdefer] = ACTIONS(3655), - [anon_sym_if] = ACTIONS(3655), - [anon_sym_else] = ACTIONS(3655), - [anon_sym_while] = ACTIONS(3655), - [anon_sym_expand] = ACTIONS(3655), - [anon_sym_for] = ACTIONS(3655), - [anon_sym_match] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_TILDE] = ACTIONS(3653), - [anon_sym_try] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_true] = ACTIONS(3655), - [anon_sym_false] = ACTIONS(3655), - [sym_none] = ACTIONS(3655), - [sym_undefined] = ACTIONS(3655), - [sym_sink] = ACTIONS(3655), - [sym_integer] = ACTIONS(3655), - [sym_float] = ACTIONS(3653), - [anon_sym_DQUOTE] = ACTIONS(3653), - [sym_multiline_string] = ACTIONS(3653), - [sym_character] = ACTIONS(3653), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_test] = ACTIONS(3502), + [anon_sym_hide] = ACTIONS(3502), + [anon_sym_func] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_RPAREN] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_DOLLAR] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_anyopaque] = ACTIONS(3502), + [anon_sym_bool] = ACTIONS(3502), + [anon_sym_int] = ACTIONS(3502), + [anon_sym_uint] = ACTIONS(3502), + [anon_sym_float] = ACTIONS(3502), + [anon_sym_range] = ACTIONS(3502), + [anon_sym_i8] = ACTIONS(3502), + [anon_sym_i16] = ACTIONS(3502), + [anon_sym_i32] = ACTIONS(3502), + [anon_sym_i64] = ACTIONS(3502), + [anon_sym_u8] = ACTIONS(3502), + [anon_sym_u16] = ACTIONS(3502), + [anon_sym_u32] = ACTIONS(3502), + [anon_sym_u64] = ACTIONS(3502), + [anon_sym_isize] = ACTIONS(3502), + [anon_sym_usize] = ACTIONS(3502), + [anon_sym_f32] = ACTIONS(3502), + [anon_sym_f64] = ACTIONS(3502), + [anon_sym_c_char] = ACTIONS(3502), + [anon_sym_c_schar] = ACTIONS(3502), + [anon_sym_c_uchar] = ACTIONS(3502), + [anon_sym_c_short] = ACTIONS(3502), + [anon_sym_c_ushort] = ACTIONS(3502), + [anon_sym_c_int] = ACTIONS(3502), + [anon_sym_c_uint] = ACTIONS(3502), + [anon_sym_c_long] = ACTIONS(3502), + [anon_sym_c_ulong] = ACTIONS(3502), + [anon_sym_c_longlong] = ACTIONS(3502), + [anon_sym_c_ulonglong] = ACTIONS(3502), + [anon_sym_c_float] = ACTIONS(3502), + [anon_sym_c_double] = ACTIONS(3502), + [anon_sym_c_longdouble] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_defer] = ACTIONS(3502), + [anon_sym_errdefer] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_expand] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_match] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_DOT] = ACTIONS(3500), + [anon_sym_true] = ACTIONS(3502), + [anon_sym_false] = ACTIONS(3502), + [sym_none] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [sym_sink] = ACTIONS(3502), + [sym_integer] = ACTIONS(3502), + [sym_float] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_multiline_string] = ACTIONS(3500), + [sym_character] = ACTIONS(3500), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3653), + [sym__newline] = ACTIONS(3500), }, [STATE(1598)] = { - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3659), - [anon_sym_import] = ACTIONS(3659), - [anon_sym_test] = ACTIONS(3659), - [anon_sym_hide] = ACTIONS(3659), - [anon_sym_func] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3657), - [anon_sym_struct] = ACTIONS(3659), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_RPAREN] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DOLLAR] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_void] = ACTIONS(3659), - [anon_sym_anyopaque] = ACTIONS(3659), - [anon_sym_bool] = ACTIONS(3659), - [anon_sym_int] = ACTIONS(3659), - [anon_sym_uint] = ACTIONS(3659), - [anon_sym_float] = ACTIONS(3659), - [anon_sym_range] = ACTIONS(3659), - [anon_sym_i8] = ACTIONS(3659), - [anon_sym_i16] = ACTIONS(3659), - [anon_sym_i32] = ACTIONS(3659), - [anon_sym_i64] = ACTIONS(3659), - [anon_sym_u8] = ACTIONS(3659), - [anon_sym_u16] = ACTIONS(3659), - [anon_sym_u32] = ACTIONS(3659), - [anon_sym_u64] = ACTIONS(3659), - [anon_sym_isize] = ACTIONS(3659), - [anon_sym_usize] = ACTIONS(3659), - [anon_sym_f32] = ACTIONS(3659), - [anon_sym_f64] = ACTIONS(3659), - [anon_sym_c_char] = ACTIONS(3659), - [anon_sym_c_schar] = ACTIONS(3659), - [anon_sym_c_uchar] = ACTIONS(3659), - [anon_sym_c_short] = ACTIONS(3659), - [anon_sym_c_ushort] = ACTIONS(3659), - [anon_sym_c_int] = ACTIONS(3659), - [anon_sym_c_uint] = ACTIONS(3659), - [anon_sym_c_long] = ACTIONS(3659), - [anon_sym_c_ulong] = ACTIONS(3659), - [anon_sym_c_longlong] = ACTIONS(3659), - [anon_sym_c_ulonglong] = ACTIONS(3659), - [anon_sym_c_float] = ACTIONS(3659), - [anon_sym_c_double] = ACTIONS(3659), - [anon_sym_c_longdouble] = ACTIONS(3659), - [anon_sym_return] = ACTIONS(3659), - [anon_sym_yield] = ACTIONS(3659), - [anon_sym_break] = ACTIONS(3659), - [anon_sym_continue] = ACTIONS(3659), - [anon_sym_defer] = ACTIONS(3659), - [anon_sym_errdefer] = ACTIONS(3659), - [anon_sym_if] = ACTIONS(3659), - [anon_sym_else] = ACTIONS(3659), - [anon_sym_while] = ACTIONS(3659), - [anon_sym_expand] = ACTIONS(3659), - [anon_sym_for] = ACTIONS(3659), - [anon_sym_match] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_TILDE] = ACTIONS(3657), - [anon_sym_try] = ACTIONS(3659), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_true] = ACTIONS(3659), - [anon_sym_false] = ACTIONS(3659), - [sym_none] = ACTIONS(3659), - [sym_undefined] = ACTIONS(3659), - [sym_sink] = ACTIONS(3659), - [sym_integer] = ACTIONS(3659), - [sym_float] = ACTIONS(3657), - [anon_sym_DQUOTE] = ACTIONS(3657), - [sym_multiline_string] = ACTIONS(3657), - [sym_character] = ACTIONS(3657), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_test] = ACTIONS(3506), + [anon_sym_hide] = ACTIONS(3506), + [anon_sym_func] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_RPAREN] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_DOLLAR] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_anyopaque] = ACTIONS(3506), + [anon_sym_bool] = ACTIONS(3506), + [anon_sym_int] = ACTIONS(3506), + [anon_sym_uint] = ACTIONS(3506), + [anon_sym_float] = ACTIONS(3506), + [anon_sym_range] = ACTIONS(3506), + [anon_sym_i8] = ACTIONS(3506), + [anon_sym_i16] = ACTIONS(3506), + [anon_sym_i32] = ACTIONS(3506), + [anon_sym_i64] = ACTIONS(3506), + [anon_sym_u8] = ACTIONS(3506), + [anon_sym_u16] = ACTIONS(3506), + [anon_sym_u32] = ACTIONS(3506), + [anon_sym_u64] = ACTIONS(3506), + [anon_sym_isize] = ACTIONS(3506), + [anon_sym_usize] = ACTIONS(3506), + [anon_sym_f32] = ACTIONS(3506), + [anon_sym_f64] = ACTIONS(3506), + [anon_sym_c_char] = ACTIONS(3506), + [anon_sym_c_schar] = ACTIONS(3506), + [anon_sym_c_uchar] = ACTIONS(3506), + [anon_sym_c_short] = ACTIONS(3506), + [anon_sym_c_ushort] = ACTIONS(3506), + [anon_sym_c_int] = ACTIONS(3506), + [anon_sym_c_uint] = ACTIONS(3506), + [anon_sym_c_long] = ACTIONS(3506), + [anon_sym_c_ulong] = ACTIONS(3506), + [anon_sym_c_longlong] = ACTIONS(3506), + [anon_sym_c_ulonglong] = ACTIONS(3506), + [anon_sym_c_float] = ACTIONS(3506), + [anon_sym_c_double] = ACTIONS(3506), + [anon_sym_c_longdouble] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_defer] = ACTIONS(3506), + [anon_sym_errdefer] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_expand] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_match] = ACTIONS(3506), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_true] = ACTIONS(3506), + [anon_sym_false] = ACTIONS(3506), + [sym_none] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [sym_sink] = ACTIONS(3506), + [sym_integer] = ACTIONS(3506), + [sym_float] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_multiline_string] = ACTIONS(3504), + [sym_character] = ACTIONS(3504), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3657), + [sym__newline] = ACTIONS(3504), }, [STATE(1599)] = { - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3663), - [anon_sym_import] = ACTIONS(3663), - [anon_sym_test] = ACTIONS(3663), - [anon_sym_hide] = ACTIONS(3663), - [anon_sym_func] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3661), - [anon_sym_struct] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym_DASH] = ACTIONS(3661), - [anon_sym_DOLLAR] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_void] = ACTIONS(3663), - [anon_sym_anyopaque] = ACTIONS(3663), - [anon_sym_bool] = ACTIONS(3663), - [anon_sym_int] = ACTIONS(3663), - [anon_sym_uint] = ACTIONS(3663), - [anon_sym_float] = ACTIONS(3663), - [anon_sym_range] = ACTIONS(3663), - [anon_sym_i8] = ACTIONS(3663), - [anon_sym_i16] = ACTIONS(3663), - [anon_sym_i32] = ACTIONS(3663), - [anon_sym_i64] = ACTIONS(3663), - [anon_sym_u8] = ACTIONS(3663), - [anon_sym_u16] = ACTIONS(3663), - [anon_sym_u32] = ACTIONS(3663), - [anon_sym_u64] = ACTIONS(3663), - [anon_sym_isize] = ACTIONS(3663), - [anon_sym_usize] = ACTIONS(3663), - [anon_sym_f32] = ACTIONS(3663), - [anon_sym_f64] = ACTIONS(3663), - [anon_sym_c_char] = ACTIONS(3663), - [anon_sym_c_schar] = ACTIONS(3663), - [anon_sym_c_uchar] = ACTIONS(3663), - [anon_sym_c_short] = ACTIONS(3663), - [anon_sym_c_ushort] = ACTIONS(3663), - [anon_sym_c_int] = ACTIONS(3663), - [anon_sym_c_uint] = ACTIONS(3663), - [anon_sym_c_long] = ACTIONS(3663), - [anon_sym_c_ulong] = ACTIONS(3663), - [anon_sym_c_longlong] = ACTIONS(3663), - [anon_sym_c_ulonglong] = ACTIONS(3663), - [anon_sym_c_float] = ACTIONS(3663), - [anon_sym_c_double] = ACTIONS(3663), - [anon_sym_c_longdouble] = ACTIONS(3663), - [anon_sym_return] = ACTIONS(3663), - [anon_sym_yield] = ACTIONS(3663), - [anon_sym_break] = ACTIONS(3663), - [anon_sym_continue] = ACTIONS(3663), - [anon_sym_defer] = ACTIONS(3663), - [anon_sym_errdefer] = ACTIONS(3663), - [anon_sym_if] = ACTIONS(3663), - [anon_sym_else] = ACTIONS(3663), - [anon_sym_while] = ACTIONS(3663), - [anon_sym_expand] = ACTIONS(3663), - [anon_sym_for] = ACTIONS(3663), - [anon_sym_match] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_TILDE] = ACTIONS(3661), - [anon_sym_try] = ACTIONS(3663), - [anon_sym_DOT] = ACTIONS(3661), - [anon_sym_true] = ACTIONS(3663), - [anon_sym_false] = ACTIONS(3663), - [sym_none] = ACTIONS(3663), - [sym_undefined] = ACTIONS(3663), - [sym_sink] = ACTIONS(3663), - [sym_integer] = ACTIONS(3663), - [sym_float] = ACTIONS(3661), - [anon_sym_DQUOTE] = ACTIONS(3661), - [sym_multiline_string] = ACTIONS(3661), - [sym_character] = ACTIONS(3661), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_test] = ACTIONS(3510), + [anon_sym_hide] = ACTIONS(3510), + [anon_sym_func] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_RPAREN] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_DOLLAR] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_anyopaque] = ACTIONS(3510), + [anon_sym_bool] = ACTIONS(3510), + [anon_sym_int] = ACTIONS(3510), + [anon_sym_uint] = ACTIONS(3510), + [anon_sym_float] = ACTIONS(3510), + [anon_sym_range] = ACTIONS(3510), + [anon_sym_i8] = ACTIONS(3510), + [anon_sym_i16] = ACTIONS(3510), + [anon_sym_i32] = ACTIONS(3510), + [anon_sym_i64] = ACTIONS(3510), + [anon_sym_u8] = ACTIONS(3510), + [anon_sym_u16] = ACTIONS(3510), + [anon_sym_u32] = ACTIONS(3510), + [anon_sym_u64] = ACTIONS(3510), + [anon_sym_isize] = ACTIONS(3510), + [anon_sym_usize] = ACTIONS(3510), + [anon_sym_f32] = ACTIONS(3510), + [anon_sym_f64] = ACTIONS(3510), + [anon_sym_c_char] = ACTIONS(3510), + [anon_sym_c_schar] = ACTIONS(3510), + [anon_sym_c_uchar] = ACTIONS(3510), + [anon_sym_c_short] = ACTIONS(3510), + [anon_sym_c_ushort] = ACTIONS(3510), + [anon_sym_c_int] = ACTIONS(3510), + [anon_sym_c_uint] = ACTIONS(3510), + [anon_sym_c_long] = ACTIONS(3510), + [anon_sym_c_ulong] = ACTIONS(3510), + [anon_sym_c_longlong] = ACTIONS(3510), + [anon_sym_c_ulonglong] = ACTIONS(3510), + [anon_sym_c_float] = ACTIONS(3510), + [anon_sym_c_double] = ACTIONS(3510), + [anon_sym_c_longdouble] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_defer] = ACTIONS(3510), + [anon_sym_errdefer] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_expand] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_match] = ACTIONS(3510), + [anon_sym_AMP] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3508), + [anon_sym_true] = ACTIONS(3510), + [anon_sym_false] = ACTIONS(3510), + [sym_none] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [sym_sink] = ACTIONS(3510), + [sym_integer] = ACTIONS(3510), + [sym_float] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_multiline_string] = ACTIONS(3508), + [sym_character] = ACTIONS(3508), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3661), + [sym__newline] = ACTIONS(3508), }, [STATE(1600)] = { - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3667), - [anon_sym_import] = ACTIONS(3667), - [anon_sym_test] = ACTIONS(3667), - [anon_sym_hide] = ACTIONS(3667), - [anon_sym_func] = ACTIONS(3667), - [anon_sym_BANG] = ACTIONS(3665), - [anon_sym_struct] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_DASH] = ACTIONS(3665), - [anon_sym_DOLLAR] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_void] = ACTIONS(3667), - [anon_sym_anyopaque] = ACTIONS(3667), - [anon_sym_bool] = ACTIONS(3667), - [anon_sym_int] = ACTIONS(3667), - [anon_sym_uint] = ACTIONS(3667), - [anon_sym_float] = ACTIONS(3667), - [anon_sym_range] = ACTIONS(3667), - [anon_sym_i8] = ACTIONS(3667), - [anon_sym_i16] = ACTIONS(3667), - [anon_sym_i32] = ACTIONS(3667), - [anon_sym_i64] = ACTIONS(3667), - [anon_sym_u8] = ACTIONS(3667), - [anon_sym_u16] = ACTIONS(3667), - [anon_sym_u32] = ACTIONS(3667), - [anon_sym_u64] = ACTIONS(3667), - [anon_sym_isize] = ACTIONS(3667), - [anon_sym_usize] = ACTIONS(3667), - [anon_sym_f32] = ACTIONS(3667), - [anon_sym_f64] = ACTIONS(3667), - [anon_sym_c_char] = ACTIONS(3667), - [anon_sym_c_schar] = ACTIONS(3667), - [anon_sym_c_uchar] = ACTIONS(3667), - [anon_sym_c_short] = ACTIONS(3667), - [anon_sym_c_ushort] = ACTIONS(3667), - [anon_sym_c_int] = ACTIONS(3667), - [anon_sym_c_uint] = ACTIONS(3667), - [anon_sym_c_long] = ACTIONS(3667), - [anon_sym_c_ulong] = ACTIONS(3667), - [anon_sym_c_longlong] = ACTIONS(3667), - [anon_sym_c_ulonglong] = ACTIONS(3667), - [anon_sym_c_float] = ACTIONS(3667), - [anon_sym_c_double] = ACTIONS(3667), - [anon_sym_c_longdouble] = ACTIONS(3667), - [anon_sym_return] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3667), - [anon_sym_break] = ACTIONS(3667), - [anon_sym_continue] = ACTIONS(3667), - [anon_sym_defer] = ACTIONS(3667), - [anon_sym_errdefer] = ACTIONS(3667), - [anon_sym_if] = ACTIONS(3667), - [anon_sym_else] = ACTIONS(3667), - [anon_sym_while] = ACTIONS(3667), - [anon_sym_expand] = ACTIONS(3667), - [anon_sym_for] = ACTIONS(3667), - [anon_sym_match] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3665), - [anon_sym_try] = ACTIONS(3667), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_true] = ACTIONS(3667), - [anon_sym_false] = ACTIONS(3667), - [sym_none] = ACTIONS(3667), - [sym_undefined] = ACTIONS(3667), - [sym_sink] = ACTIONS(3667), - [sym_integer] = ACTIONS(3667), - [sym_float] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym_multiline_string] = ACTIONS(3665), - [sym_character] = ACTIONS(3665), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_test] = ACTIONS(3514), + [anon_sym_hide] = ACTIONS(3514), + [anon_sym_func] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_RPAREN] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_anyopaque] = ACTIONS(3514), + [anon_sym_bool] = ACTIONS(3514), + [anon_sym_int] = ACTIONS(3514), + [anon_sym_uint] = ACTIONS(3514), + [anon_sym_float] = ACTIONS(3514), + [anon_sym_range] = ACTIONS(3514), + [anon_sym_i8] = ACTIONS(3514), + [anon_sym_i16] = ACTIONS(3514), + [anon_sym_i32] = ACTIONS(3514), + [anon_sym_i64] = ACTIONS(3514), + [anon_sym_u8] = ACTIONS(3514), + [anon_sym_u16] = ACTIONS(3514), + [anon_sym_u32] = ACTIONS(3514), + [anon_sym_u64] = ACTIONS(3514), + [anon_sym_isize] = ACTIONS(3514), + [anon_sym_usize] = ACTIONS(3514), + [anon_sym_f32] = ACTIONS(3514), + [anon_sym_f64] = ACTIONS(3514), + [anon_sym_c_char] = ACTIONS(3514), + [anon_sym_c_schar] = ACTIONS(3514), + [anon_sym_c_uchar] = ACTIONS(3514), + [anon_sym_c_short] = ACTIONS(3514), + [anon_sym_c_ushort] = ACTIONS(3514), + [anon_sym_c_int] = ACTIONS(3514), + [anon_sym_c_uint] = ACTIONS(3514), + [anon_sym_c_long] = ACTIONS(3514), + [anon_sym_c_ulong] = ACTIONS(3514), + [anon_sym_c_longlong] = ACTIONS(3514), + [anon_sym_c_ulonglong] = ACTIONS(3514), + [anon_sym_c_float] = ACTIONS(3514), + [anon_sym_c_double] = ACTIONS(3514), + [anon_sym_c_longdouble] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_defer] = ACTIONS(3514), + [anon_sym_errdefer] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_expand] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_match] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_DOT] = ACTIONS(3512), + [anon_sym_true] = ACTIONS(3514), + [anon_sym_false] = ACTIONS(3514), + [sym_none] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [sym_sink] = ACTIONS(3514), + [sym_integer] = ACTIONS(3514), + [sym_float] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_multiline_string] = ACTIONS(3512), + [sym_character] = ACTIONS(3512), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3665), + [sym__newline] = ACTIONS(3512), }, [STATE(1601)] = { - [ts_builtin_sym_end] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3671), - [anon_sym_import] = ACTIONS(3671), - [anon_sym_test] = ACTIONS(3671), - [anon_sym_hide] = ACTIONS(3671), - [anon_sym_func] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_struct] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_RPAREN] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_DOLLAR] = ACTIONS(3669), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_void] = ACTIONS(3671), - [anon_sym_anyopaque] = ACTIONS(3671), - [anon_sym_bool] = ACTIONS(3671), - [anon_sym_int] = ACTIONS(3671), - [anon_sym_uint] = ACTIONS(3671), - [anon_sym_float] = ACTIONS(3671), - [anon_sym_range] = ACTIONS(3671), - [anon_sym_i8] = ACTIONS(3671), - [anon_sym_i16] = ACTIONS(3671), - [anon_sym_i32] = ACTIONS(3671), - [anon_sym_i64] = ACTIONS(3671), - [anon_sym_u8] = ACTIONS(3671), - [anon_sym_u16] = ACTIONS(3671), - [anon_sym_u32] = ACTIONS(3671), - [anon_sym_u64] = ACTIONS(3671), - [anon_sym_isize] = ACTIONS(3671), - [anon_sym_usize] = ACTIONS(3671), - [anon_sym_f32] = ACTIONS(3671), - [anon_sym_f64] = ACTIONS(3671), - [anon_sym_c_char] = ACTIONS(3671), - [anon_sym_c_schar] = ACTIONS(3671), - [anon_sym_c_uchar] = ACTIONS(3671), - [anon_sym_c_short] = ACTIONS(3671), - [anon_sym_c_ushort] = ACTIONS(3671), - [anon_sym_c_int] = ACTIONS(3671), - [anon_sym_c_uint] = ACTIONS(3671), - [anon_sym_c_long] = ACTIONS(3671), - [anon_sym_c_ulong] = ACTIONS(3671), - [anon_sym_c_longlong] = ACTIONS(3671), - [anon_sym_c_ulonglong] = ACTIONS(3671), - [anon_sym_c_float] = ACTIONS(3671), - [anon_sym_c_double] = ACTIONS(3671), - [anon_sym_c_longdouble] = ACTIONS(3671), - [anon_sym_return] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_break] = ACTIONS(3671), - [anon_sym_continue] = ACTIONS(3671), - [anon_sym_defer] = ACTIONS(3671), - [anon_sym_errdefer] = ACTIONS(3671), - [anon_sym_if] = ACTIONS(3671), - [anon_sym_else] = ACTIONS(3671), - [anon_sym_while] = ACTIONS(3671), - [anon_sym_expand] = ACTIONS(3671), - [anon_sym_for] = ACTIONS(3671), - [anon_sym_match] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_TILDE] = ACTIONS(3669), - [anon_sym_try] = ACTIONS(3671), - [anon_sym_DOT] = ACTIONS(3669), - [anon_sym_true] = ACTIONS(3671), - [anon_sym_false] = ACTIONS(3671), - [sym_none] = ACTIONS(3671), - [sym_undefined] = ACTIONS(3671), - [sym_sink] = ACTIONS(3671), - [sym_integer] = ACTIONS(3671), - [sym_float] = ACTIONS(3669), - [anon_sym_DQUOTE] = ACTIONS(3669), - [sym_multiline_string] = ACTIONS(3669), - [sym_character] = ACTIONS(3669), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_test] = ACTIONS(3518), + [anon_sym_hide] = ACTIONS(3518), + [anon_sym_func] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_RPAREN] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_DOLLAR] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_anyopaque] = ACTIONS(3518), + [anon_sym_bool] = ACTIONS(3518), + [anon_sym_int] = ACTIONS(3518), + [anon_sym_uint] = ACTIONS(3518), + [anon_sym_float] = ACTIONS(3518), + [anon_sym_range] = ACTIONS(3518), + [anon_sym_i8] = ACTIONS(3518), + [anon_sym_i16] = ACTIONS(3518), + [anon_sym_i32] = ACTIONS(3518), + [anon_sym_i64] = ACTIONS(3518), + [anon_sym_u8] = ACTIONS(3518), + [anon_sym_u16] = ACTIONS(3518), + [anon_sym_u32] = ACTIONS(3518), + [anon_sym_u64] = ACTIONS(3518), + [anon_sym_isize] = ACTIONS(3518), + [anon_sym_usize] = ACTIONS(3518), + [anon_sym_f32] = ACTIONS(3518), + [anon_sym_f64] = ACTIONS(3518), + [anon_sym_c_char] = ACTIONS(3518), + [anon_sym_c_schar] = ACTIONS(3518), + [anon_sym_c_uchar] = ACTIONS(3518), + [anon_sym_c_short] = ACTIONS(3518), + [anon_sym_c_ushort] = ACTIONS(3518), + [anon_sym_c_int] = ACTIONS(3518), + [anon_sym_c_uint] = ACTIONS(3518), + [anon_sym_c_long] = ACTIONS(3518), + [anon_sym_c_ulong] = ACTIONS(3518), + [anon_sym_c_longlong] = ACTIONS(3518), + [anon_sym_c_ulonglong] = ACTIONS(3518), + [anon_sym_c_float] = ACTIONS(3518), + [anon_sym_c_double] = ACTIONS(3518), + [anon_sym_c_longdouble] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_defer] = ACTIONS(3518), + [anon_sym_errdefer] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_expand] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_match] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_DOT] = ACTIONS(3516), + [anon_sym_true] = ACTIONS(3518), + [anon_sym_false] = ACTIONS(3518), + [sym_none] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [sym_sink] = ACTIONS(3518), + [sym_integer] = ACTIONS(3518), + [sym_float] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_multiline_string] = ACTIONS(3516), + [sym_character] = ACTIONS(3516), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3669), + [sym__newline] = ACTIONS(3516), }, [STATE(1602)] = { - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3675), - [anon_sym_import] = ACTIONS(3675), - [anon_sym_test] = ACTIONS(3675), - [anon_sym_hide] = ACTIONS(3675), - [anon_sym_func] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3673), - [anon_sym_struct] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DOLLAR] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_void] = ACTIONS(3675), - [anon_sym_anyopaque] = ACTIONS(3675), - [anon_sym_bool] = ACTIONS(3675), - [anon_sym_int] = ACTIONS(3675), - [anon_sym_uint] = ACTIONS(3675), - [anon_sym_float] = ACTIONS(3675), - [anon_sym_range] = ACTIONS(3675), - [anon_sym_i8] = ACTIONS(3675), - [anon_sym_i16] = ACTIONS(3675), - [anon_sym_i32] = ACTIONS(3675), - [anon_sym_i64] = ACTIONS(3675), - [anon_sym_u8] = ACTIONS(3675), - [anon_sym_u16] = ACTIONS(3675), - [anon_sym_u32] = ACTIONS(3675), - [anon_sym_u64] = ACTIONS(3675), - [anon_sym_isize] = ACTIONS(3675), - [anon_sym_usize] = ACTIONS(3675), - [anon_sym_f32] = ACTIONS(3675), - [anon_sym_f64] = ACTIONS(3675), - [anon_sym_c_char] = ACTIONS(3675), - [anon_sym_c_schar] = ACTIONS(3675), - [anon_sym_c_uchar] = ACTIONS(3675), - [anon_sym_c_short] = ACTIONS(3675), - [anon_sym_c_ushort] = ACTIONS(3675), - [anon_sym_c_int] = ACTIONS(3675), - [anon_sym_c_uint] = ACTIONS(3675), - [anon_sym_c_long] = ACTIONS(3675), - [anon_sym_c_ulong] = ACTIONS(3675), - [anon_sym_c_longlong] = ACTIONS(3675), - [anon_sym_c_ulonglong] = ACTIONS(3675), - [anon_sym_c_float] = ACTIONS(3675), - [anon_sym_c_double] = ACTIONS(3675), - [anon_sym_c_longdouble] = ACTIONS(3675), - [anon_sym_return] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_break] = ACTIONS(3675), - [anon_sym_continue] = ACTIONS(3675), - [anon_sym_defer] = ACTIONS(3675), - [anon_sym_errdefer] = ACTIONS(3675), - [anon_sym_if] = ACTIONS(3675), - [anon_sym_else] = ACTIONS(3675), - [anon_sym_while] = ACTIONS(3675), - [anon_sym_expand] = ACTIONS(3675), - [anon_sym_for] = ACTIONS(3675), - [anon_sym_match] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_TILDE] = ACTIONS(3673), - [anon_sym_try] = ACTIONS(3675), - [anon_sym_DOT] = ACTIONS(3673), - [anon_sym_true] = ACTIONS(3675), - [anon_sym_false] = ACTIONS(3675), - [sym_none] = ACTIONS(3675), - [sym_undefined] = ACTIONS(3675), - [sym_sink] = ACTIONS(3675), - [sym_integer] = ACTIONS(3675), - [sym_float] = ACTIONS(3673), - [anon_sym_DQUOTE] = ACTIONS(3673), - [sym_multiline_string] = ACTIONS(3673), - [sym_character] = ACTIONS(3673), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_test] = ACTIONS(3522), + [anon_sym_hide] = ACTIONS(3522), + [anon_sym_func] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_DOLLAR] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_anyopaque] = ACTIONS(3522), + [anon_sym_bool] = ACTIONS(3522), + [anon_sym_int] = ACTIONS(3522), + [anon_sym_uint] = ACTIONS(3522), + [anon_sym_float] = ACTIONS(3522), + [anon_sym_range] = ACTIONS(3522), + [anon_sym_i8] = ACTIONS(3522), + [anon_sym_i16] = ACTIONS(3522), + [anon_sym_i32] = ACTIONS(3522), + [anon_sym_i64] = ACTIONS(3522), + [anon_sym_u8] = ACTIONS(3522), + [anon_sym_u16] = ACTIONS(3522), + [anon_sym_u32] = ACTIONS(3522), + [anon_sym_u64] = ACTIONS(3522), + [anon_sym_isize] = ACTIONS(3522), + [anon_sym_usize] = ACTIONS(3522), + [anon_sym_f32] = ACTIONS(3522), + [anon_sym_f64] = ACTIONS(3522), + [anon_sym_c_char] = ACTIONS(3522), + [anon_sym_c_schar] = ACTIONS(3522), + [anon_sym_c_uchar] = ACTIONS(3522), + [anon_sym_c_short] = ACTIONS(3522), + [anon_sym_c_ushort] = ACTIONS(3522), + [anon_sym_c_int] = ACTIONS(3522), + [anon_sym_c_uint] = ACTIONS(3522), + [anon_sym_c_long] = ACTIONS(3522), + [anon_sym_c_ulong] = ACTIONS(3522), + [anon_sym_c_longlong] = ACTIONS(3522), + [anon_sym_c_ulonglong] = ACTIONS(3522), + [anon_sym_c_float] = ACTIONS(3522), + [anon_sym_c_double] = ACTIONS(3522), + [anon_sym_c_longdouble] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_defer] = ACTIONS(3522), + [anon_sym_errdefer] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_expand] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_match] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_DOT] = ACTIONS(3520), + [anon_sym_true] = ACTIONS(3522), + [anon_sym_false] = ACTIONS(3522), + [sym_none] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [sym_sink] = ACTIONS(3522), + [sym_integer] = ACTIONS(3522), + [sym_float] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_multiline_string] = ACTIONS(3520), + [sym_character] = ACTIONS(3520), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3673), + [sym__newline] = ACTIONS(3520), }, [STATE(1603)] = { - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3679), - [anon_sym_import] = ACTIONS(3679), - [anon_sym_test] = ACTIONS(3679), - [anon_sym_hide] = ACTIONS(3679), - [anon_sym_func] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3677), - [anon_sym_struct] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_DASH] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_void] = ACTIONS(3679), - [anon_sym_anyopaque] = ACTIONS(3679), - [anon_sym_bool] = ACTIONS(3679), - [anon_sym_int] = ACTIONS(3679), - [anon_sym_uint] = ACTIONS(3679), - [anon_sym_float] = ACTIONS(3679), - [anon_sym_range] = ACTIONS(3679), - [anon_sym_i8] = ACTIONS(3679), - [anon_sym_i16] = ACTIONS(3679), - [anon_sym_i32] = ACTIONS(3679), - [anon_sym_i64] = ACTIONS(3679), - [anon_sym_u8] = ACTIONS(3679), - [anon_sym_u16] = ACTIONS(3679), - [anon_sym_u32] = ACTIONS(3679), - [anon_sym_u64] = ACTIONS(3679), - [anon_sym_isize] = ACTIONS(3679), - [anon_sym_usize] = ACTIONS(3679), - [anon_sym_f32] = ACTIONS(3679), - [anon_sym_f64] = ACTIONS(3679), - [anon_sym_c_char] = ACTIONS(3679), - [anon_sym_c_schar] = ACTIONS(3679), - [anon_sym_c_uchar] = ACTIONS(3679), - [anon_sym_c_short] = ACTIONS(3679), - [anon_sym_c_ushort] = ACTIONS(3679), - [anon_sym_c_int] = ACTIONS(3679), - [anon_sym_c_uint] = ACTIONS(3679), - [anon_sym_c_long] = ACTIONS(3679), - [anon_sym_c_ulong] = ACTIONS(3679), - [anon_sym_c_longlong] = ACTIONS(3679), - [anon_sym_c_ulonglong] = ACTIONS(3679), - [anon_sym_c_float] = ACTIONS(3679), - [anon_sym_c_double] = ACTIONS(3679), - [anon_sym_c_longdouble] = ACTIONS(3679), - [anon_sym_return] = ACTIONS(3679), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_break] = ACTIONS(3679), - [anon_sym_continue] = ACTIONS(3679), - [anon_sym_defer] = ACTIONS(3679), - [anon_sym_errdefer] = ACTIONS(3679), - [anon_sym_if] = ACTIONS(3679), - [anon_sym_else] = ACTIONS(3679), - [anon_sym_while] = ACTIONS(3679), - [anon_sym_expand] = ACTIONS(3679), - [anon_sym_for] = ACTIONS(3679), - [anon_sym_match] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_TILDE] = ACTIONS(3677), - [anon_sym_try] = ACTIONS(3679), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_true] = ACTIONS(3679), - [anon_sym_false] = ACTIONS(3679), - [sym_none] = ACTIONS(3679), - [sym_undefined] = ACTIONS(3679), - [sym_sink] = ACTIONS(3679), - [sym_integer] = ACTIONS(3679), - [sym_float] = ACTIONS(3677), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym_multiline_string] = ACTIONS(3677), - [sym_character] = ACTIONS(3677), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_test] = ACTIONS(3526), + [anon_sym_hide] = ACTIONS(3526), + [anon_sym_func] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_RPAREN] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_DOLLAR] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_anyopaque] = ACTIONS(3526), + [anon_sym_bool] = ACTIONS(3526), + [anon_sym_int] = ACTIONS(3526), + [anon_sym_uint] = ACTIONS(3526), + [anon_sym_float] = ACTIONS(3526), + [anon_sym_range] = ACTIONS(3526), + [anon_sym_i8] = ACTIONS(3526), + [anon_sym_i16] = ACTIONS(3526), + [anon_sym_i32] = ACTIONS(3526), + [anon_sym_i64] = ACTIONS(3526), + [anon_sym_u8] = ACTIONS(3526), + [anon_sym_u16] = ACTIONS(3526), + [anon_sym_u32] = ACTIONS(3526), + [anon_sym_u64] = ACTIONS(3526), + [anon_sym_isize] = ACTIONS(3526), + [anon_sym_usize] = ACTIONS(3526), + [anon_sym_f32] = ACTIONS(3526), + [anon_sym_f64] = ACTIONS(3526), + [anon_sym_c_char] = ACTIONS(3526), + [anon_sym_c_schar] = ACTIONS(3526), + [anon_sym_c_uchar] = ACTIONS(3526), + [anon_sym_c_short] = ACTIONS(3526), + [anon_sym_c_ushort] = ACTIONS(3526), + [anon_sym_c_int] = ACTIONS(3526), + [anon_sym_c_uint] = ACTIONS(3526), + [anon_sym_c_long] = ACTIONS(3526), + [anon_sym_c_ulong] = ACTIONS(3526), + [anon_sym_c_longlong] = ACTIONS(3526), + [anon_sym_c_ulonglong] = ACTIONS(3526), + [anon_sym_c_float] = ACTIONS(3526), + [anon_sym_c_double] = ACTIONS(3526), + [anon_sym_c_longdouble] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_defer] = ACTIONS(3526), + [anon_sym_errdefer] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_expand] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_match] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_DOT] = ACTIONS(3524), + [anon_sym_true] = ACTIONS(3526), + [anon_sym_false] = ACTIONS(3526), + [sym_none] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [sym_sink] = ACTIONS(3526), + [sym_integer] = ACTIONS(3526), + [sym_float] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_multiline_string] = ACTIONS(3524), + [sym_character] = ACTIONS(3524), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3677), + [sym__newline] = ACTIONS(3524), }, [STATE(1604)] = { - [ts_builtin_sym_end] = ACTIONS(3681), - [sym_identifier] = ACTIONS(3683), - [anon_sym_import] = ACTIONS(3683), - [anon_sym_test] = ACTIONS(3683), - [anon_sym_hide] = ACTIONS(3683), - [anon_sym_func] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3681), - [anon_sym_struct] = ACTIONS(3683), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_void] = ACTIONS(3683), - [anon_sym_anyopaque] = ACTIONS(3683), - [anon_sym_bool] = ACTIONS(3683), - [anon_sym_int] = ACTIONS(3683), - [anon_sym_uint] = ACTIONS(3683), - [anon_sym_float] = ACTIONS(3683), - [anon_sym_range] = ACTIONS(3683), - [anon_sym_i8] = ACTIONS(3683), - [anon_sym_i16] = ACTIONS(3683), - [anon_sym_i32] = ACTIONS(3683), - [anon_sym_i64] = ACTIONS(3683), - [anon_sym_u8] = ACTIONS(3683), - [anon_sym_u16] = ACTIONS(3683), - [anon_sym_u32] = ACTIONS(3683), - [anon_sym_u64] = ACTIONS(3683), - [anon_sym_isize] = ACTIONS(3683), - [anon_sym_usize] = ACTIONS(3683), - [anon_sym_f32] = ACTIONS(3683), - [anon_sym_f64] = ACTIONS(3683), - [anon_sym_c_char] = ACTIONS(3683), - [anon_sym_c_schar] = ACTIONS(3683), - [anon_sym_c_uchar] = ACTIONS(3683), - [anon_sym_c_short] = ACTIONS(3683), - [anon_sym_c_ushort] = ACTIONS(3683), - [anon_sym_c_int] = ACTIONS(3683), - [anon_sym_c_uint] = ACTIONS(3683), - [anon_sym_c_long] = ACTIONS(3683), - [anon_sym_c_ulong] = ACTIONS(3683), - [anon_sym_c_longlong] = ACTIONS(3683), - [anon_sym_c_ulonglong] = ACTIONS(3683), - [anon_sym_c_float] = ACTIONS(3683), - [anon_sym_c_double] = ACTIONS(3683), - [anon_sym_c_longdouble] = ACTIONS(3683), - [anon_sym_return] = ACTIONS(3683), - [anon_sym_yield] = ACTIONS(3683), - [anon_sym_break] = ACTIONS(3683), - [anon_sym_continue] = ACTIONS(3683), - [anon_sym_defer] = ACTIONS(3683), - [anon_sym_errdefer] = ACTIONS(3683), - [anon_sym_if] = ACTIONS(3683), - [anon_sym_else] = ACTIONS(3683), - [anon_sym_while] = ACTIONS(3683), - [anon_sym_expand] = ACTIONS(3683), - [anon_sym_for] = ACTIONS(3683), - [anon_sym_match] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_TILDE] = ACTIONS(3681), - [anon_sym_try] = ACTIONS(3683), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_true] = ACTIONS(3683), - [anon_sym_false] = ACTIONS(3683), - [sym_none] = ACTIONS(3683), - [sym_undefined] = ACTIONS(3683), - [sym_sink] = ACTIONS(3683), - [sym_integer] = ACTIONS(3683), - [sym_float] = ACTIONS(3681), - [anon_sym_DQUOTE] = ACTIONS(3681), - [sym_multiline_string] = ACTIONS(3681), - [sym_character] = ACTIONS(3681), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_test] = ACTIONS(3530), + [anon_sym_hide] = ACTIONS(3530), + [anon_sym_func] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_RPAREN] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_DOLLAR] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_anyopaque] = ACTIONS(3530), + [anon_sym_bool] = ACTIONS(3530), + [anon_sym_int] = ACTIONS(3530), + [anon_sym_uint] = ACTIONS(3530), + [anon_sym_float] = ACTIONS(3530), + [anon_sym_range] = ACTIONS(3530), + [anon_sym_i8] = ACTIONS(3530), + [anon_sym_i16] = ACTIONS(3530), + [anon_sym_i32] = ACTIONS(3530), + [anon_sym_i64] = ACTIONS(3530), + [anon_sym_u8] = ACTIONS(3530), + [anon_sym_u16] = ACTIONS(3530), + [anon_sym_u32] = ACTIONS(3530), + [anon_sym_u64] = ACTIONS(3530), + [anon_sym_isize] = ACTIONS(3530), + [anon_sym_usize] = ACTIONS(3530), + [anon_sym_f32] = ACTIONS(3530), + [anon_sym_f64] = ACTIONS(3530), + [anon_sym_c_char] = ACTIONS(3530), + [anon_sym_c_schar] = ACTIONS(3530), + [anon_sym_c_uchar] = ACTIONS(3530), + [anon_sym_c_short] = ACTIONS(3530), + [anon_sym_c_ushort] = ACTIONS(3530), + [anon_sym_c_int] = ACTIONS(3530), + [anon_sym_c_uint] = ACTIONS(3530), + [anon_sym_c_long] = ACTIONS(3530), + [anon_sym_c_ulong] = ACTIONS(3530), + [anon_sym_c_longlong] = ACTIONS(3530), + [anon_sym_c_ulonglong] = ACTIONS(3530), + [anon_sym_c_float] = ACTIONS(3530), + [anon_sym_c_double] = ACTIONS(3530), + [anon_sym_c_longdouble] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_defer] = ACTIONS(3530), + [anon_sym_errdefer] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_expand] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_match] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_DOT] = ACTIONS(3528), + [anon_sym_true] = ACTIONS(3530), + [anon_sym_false] = ACTIONS(3530), + [sym_none] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [sym_sink] = ACTIONS(3530), + [sym_integer] = ACTIONS(3530), + [sym_float] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_multiline_string] = ACTIONS(3528), + [sym_character] = ACTIONS(3528), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3681), + [sym__newline] = ACTIONS(3528), }, [STATE(1605)] = { - [ts_builtin_sym_end] = ACTIONS(3685), - [sym_identifier] = ACTIONS(3687), - [anon_sym_import] = ACTIONS(3687), - [anon_sym_test] = ACTIONS(3687), - [anon_sym_hide] = ACTIONS(3687), - [anon_sym_func] = ACTIONS(3687), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_struct] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3685), - [anon_sym_RPAREN] = ACTIONS(3685), - [anon_sym_LBRACE] = ACTIONS(3685), - [anon_sym_RBRACE] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_DOLLAR] = ACTIONS(3685), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_void] = ACTIONS(3687), - [anon_sym_anyopaque] = ACTIONS(3687), - [anon_sym_bool] = ACTIONS(3687), - [anon_sym_int] = ACTIONS(3687), - [anon_sym_uint] = ACTIONS(3687), - [anon_sym_float] = ACTIONS(3687), - [anon_sym_range] = ACTIONS(3687), - [anon_sym_i8] = ACTIONS(3687), - [anon_sym_i16] = ACTIONS(3687), - [anon_sym_i32] = ACTIONS(3687), - [anon_sym_i64] = ACTIONS(3687), - [anon_sym_u8] = ACTIONS(3687), - [anon_sym_u16] = ACTIONS(3687), - [anon_sym_u32] = ACTIONS(3687), - [anon_sym_u64] = ACTIONS(3687), - [anon_sym_isize] = ACTIONS(3687), - [anon_sym_usize] = ACTIONS(3687), - [anon_sym_f32] = ACTIONS(3687), - [anon_sym_f64] = ACTIONS(3687), - [anon_sym_c_char] = ACTIONS(3687), - [anon_sym_c_schar] = ACTIONS(3687), - [anon_sym_c_uchar] = ACTIONS(3687), - [anon_sym_c_short] = ACTIONS(3687), - [anon_sym_c_ushort] = ACTIONS(3687), - [anon_sym_c_int] = ACTIONS(3687), - [anon_sym_c_uint] = ACTIONS(3687), - [anon_sym_c_long] = ACTIONS(3687), - [anon_sym_c_ulong] = ACTIONS(3687), - [anon_sym_c_longlong] = ACTIONS(3687), - [anon_sym_c_ulonglong] = ACTIONS(3687), - [anon_sym_c_float] = ACTIONS(3687), - [anon_sym_c_double] = ACTIONS(3687), - [anon_sym_c_longdouble] = ACTIONS(3687), - [anon_sym_return] = ACTIONS(3687), - [anon_sym_yield] = ACTIONS(3687), - [anon_sym_break] = ACTIONS(3687), - [anon_sym_continue] = ACTIONS(3687), - [anon_sym_defer] = ACTIONS(3687), - [anon_sym_errdefer] = ACTIONS(3687), - [anon_sym_if] = ACTIONS(3687), - [anon_sym_else] = ACTIONS(3687), - [anon_sym_while] = ACTIONS(3687), - [anon_sym_expand] = ACTIONS(3687), - [anon_sym_for] = ACTIONS(3687), - [anon_sym_match] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_TILDE] = ACTIONS(3685), - [anon_sym_try] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_true] = ACTIONS(3687), - [anon_sym_false] = ACTIONS(3687), - [sym_none] = ACTIONS(3687), - [sym_undefined] = ACTIONS(3687), - [sym_sink] = ACTIONS(3687), - [sym_integer] = ACTIONS(3687), - [sym_float] = ACTIONS(3685), - [anon_sym_DQUOTE] = ACTIONS(3685), - [sym_multiline_string] = ACTIONS(3685), - [sym_character] = ACTIONS(3685), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_test] = ACTIONS(3534), + [anon_sym_hide] = ACTIONS(3534), + [anon_sym_func] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_RPAREN] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_DOLLAR] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_anyopaque] = ACTIONS(3534), + [anon_sym_bool] = ACTIONS(3534), + [anon_sym_int] = ACTIONS(3534), + [anon_sym_uint] = ACTIONS(3534), + [anon_sym_float] = ACTIONS(3534), + [anon_sym_range] = ACTIONS(3534), + [anon_sym_i8] = ACTIONS(3534), + [anon_sym_i16] = ACTIONS(3534), + [anon_sym_i32] = ACTIONS(3534), + [anon_sym_i64] = ACTIONS(3534), + [anon_sym_u8] = ACTIONS(3534), + [anon_sym_u16] = ACTIONS(3534), + [anon_sym_u32] = ACTIONS(3534), + [anon_sym_u64] = ACTIONS(3534), + [anon_sym_isize] = ACTIONS(3534), + [anon_sym_usize] = ACTIONS(3534), + [anon_sym_f32] = ACTIONS(3534), + [anon_sym_f64] = ACTIONS(3534), + [anon_sym_c_char] = ACTIONS(3534), + [anon_sym_c_schar] = ACTIONS(3534), + [anon_sym_c_uchar] = ACTIONS(3534), + [anon_sym_c_short] = ACTIONS(3534), + [anon_sym_c_ushort] = ACTIONS(3534), + [anon_sym_c_int] = ACTIONS(3534), + [anon_sym_c_uint] = ACTIONS(3534), + [anon_sym_c_long] = ACTIONS(3534), + [anon_sym_c_ulong] = ACTIONS(3534), + [anon_sym_c_longlong] = ACTIONS(3534), + [anon_sym_c_ulonglong] = ACTIONS(3534), + [anon_sym_c_float] = ACTIONS(3534), + [anon_sym_c_double] = ACTIONS(3534), + [anon_sym_c_longdouble] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_defer] = ACTIONS(3534), + [anon_sym_errdefer] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_expand] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_match] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_DOT] = ACTIONS(3532), + [anon_sym_true] = ACTIONS(3534), + [anon_sym_false] = ACTIONS(3534), + [sym_none] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [sym_sink] = ACTIONS(3534), + [sym_integer] = ACTIONS(3534), + [sym_float] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_multiline_string] = ACTIONS(3532), + [sym_character] = ACTIONS(3532), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3685), + [sym__newline] = ACTIONS(3532), }, [STATE(1606)] = { - [ts_builtin_sym_end] = ACTIONS(3689), - [sym_identifier] = ACTIONS(3691), - [anon_sym_import] = ACTIONS(3691), - [anon_sym_test] = ACTIONS(3691), - [anon_sym_hide] = ACTIONS(3691), - [anon_sym_func] = ACTIONS(3691), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_struct] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3689), - [anon_sym_RPAREN] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3689), - [anon_sym_RBRACE] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_DOLLAR] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_void] = ACTIONS(3691), - [anon_sym_anyopaque] = ACTIONS(3691), - [anon_sym_bool] = ACTIONS(3691), - [anon_sym_int] = ACTIONS(3691), - [anon_sym_uint] = ACTIONS(3691), - [anon_sym_float] = ACTIONS(3691), - [anon_sym_range] = ACTIONS(3691), - [anon_sym_i8] = ACTIONS(3691), - [anon_sym_i16] = ACTIONS(3691), - [anon_sym_i32] = ACTIONS(3691), - [anon_sym_i64] = ACTIONS(3691), - [anon_sym_u8] = ACTIONS(3691), - [anon_sym_u16] = ACTIONS(3691), - [anon_sym_u32] = ACTIONS(3691), - [anon_sym_u64] = ACTIONS(3691), - [anon_sym_isize] = ACTIONS(3691), - [anon_sym_usize] = ACTIONS(3691), - [anon_sym_f32] = ACTIONS(3691), - [anon_sym_f64] = ACTIONS(3691), - [anon_sym_c_char] = ACTIONS(3691), - [anon_sym_c_schar] = ACTIONS(3691), - [anon_sym_c_uchar] = ACTIONS(3691), - [anon_sym_c_short] = ACTIONS(3691), - [anon_sym_c_ushort] = ACTIONS(3691), - [anon_sym_c_int] = ACTIONS(3691), - [anon_sym_c_uint] = ACTIONS(3691), - [anon_sym_c_long] = ACTIONS(3691), - [anon_sym_c_ulong] = ACTIONS(3691), - [anon_sym_c_longlong] = ACTIONS(3691), - [anon_sym_c_ulonglong] = ACTIONS(3691), - [anon_sym_c_float] = ACTIONS(3691), - [anon_sym_c_double] = ACTIONS(3691), - [anon_sym_c_longdouble] = ACTIONS(3691), - [anon_sym_return] = ACTIONS(3691), - [anon_sym_yield] = ACTIONS(3691), - [anon_sym_break] = ACTIONS(3691), - [anon_sym_continue] = ACTIONS(3691), - [anon_sym_defer] = ACTIONS(3691), - [anon_sym_errdefer] = ACTIONS(3691), - [anon_sym_if] = ACTIONS(3691), - [anon_sym_else] = ACTIONS(3691), - [anon_sym_while] = ACTIONS(3691), - [anon_sym_expand] = ACTIONS(3691), - [anon_sym_for] = ACTIONS(3691), - [anon_sym_match] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_TILDE] = ACTIONS(3689), - [anon_sym_try] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_true] = ACTIONS(3691), - [anon_sym_false] = ACTIONS(3691), - [sym_none] = ACTIONS(3691), - [sym_undefined] = ACTIONS(3691), - [sym_sink] = ACTIONS(3691), - [sym_integer] = ACTIONS(3691), - [sym_float] = ACTIONS(3689), - [anon_sym_DQUOTE] = ACTIONS(3689), - [sym_multiline_string] = ACTIONS(3689), - [sym_character] = ACTIONS(3689), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_test] = ACTIONS(3538), + [anon_sym_hide] = ACTIONS(3538), + [anon_sym_func] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_RPAREN] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_DOLLAR] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_anyopaque] = ACTIONS(3538), + [anon_sym_bool] = ACTIONS(3538), + [anon_sym_int] = ACTIONS(3538), + [anon_sym_uint] = ACTIONS(3538), + [anon_sym_float] = ACTIONS(3538), + [anon_sym_range] = ACTIONS(3538), + [anon_sym_i8] = ACTIONS(3538), + [anon_sym_i16] = ACTIONS(3538), + [anon_sym_i32] = ACTIONS(3538), + [anon_sym_i64] = ACTIONS(3538), + [anon_sym_u8] = ACTIONS(3538), + [anon_sym_u16] = ACTIONS(3538), + [anon_sym_u32] = ACTIONS(3538), + [anon_sym_u64] = ACTIONS(3538), + [anon_sym_isize] = ACTIONS(3538), + [anon_sym_usize] = ACTIONS(3538), + [anon_sym_f32] = ACTIONS(3538), + [anon_sym_f64] = ACTIONS(3538), + [anon_sym_c_char] = ACTIONS(3538), + [anon_sym_c_schar] = ACTIONS(3538), + [anon_sym_c_uchar] = ACTIONS(3538), + [anon_sym_c_short] = ACTIONS(3538), + [anon_sym_c_ushort] = ACTIONS(3538), + [anon_sym_c_int] = ACTIONS(3538), + [anon_sym_c_uint] = ACTIONS(3538), + [anon_sym_c_long] = ACTIONS(3538), + [anon_sym_c_ulong] = ACTIONS(3538), + [anon_sym_c_longlong] = ACTIONS(3538), + [anon_sym_c_ulonglong] = ACTIONS(3538), + [anon_sym_c_float] = ACTIONS(3538), + [anon_sym_c_double] = ACTIONS(3538), + [anon_sym_c_longdouble] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_defer] = ACTIONS(3538), + [anon_sym_errdefer] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_expand] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_match] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_DOT] = ACTIONS(3536), + [anon_sym_true] = ACTIONS(3538), + [anon_sym_false] = ACTIONS(3538), + [sym_none] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [sym_sink] = ACTIONS(3538), + [sym_integer] = ACTIONS(3538), + [sym_float] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_multiline_string] = ACTIONS(3536), + [sym_character] = ACTIONS(3536), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3689), + [sym__newline] = ACTIONS(3536), }, [STATE(1607)] = { - [ts_builtin_sym_end] = ACTIONS(3693), - [sym_identifier] = ACTIONS(3695), - [anon_sym_import] = ACTIONS(3695), - [anon_sym_test] = ACTIONS(3695), - [anon_sym_hide] = ACTIONS(3695), - [anon_sym_func] = ACTIONS(3695), - [anon_sym_BANG] = ACTIONS(3693), - [anon_sym_struct] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3693), - [anon_sym_RPAREN] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(3693), - [anon_sym_RBRACE] = ACTIONS(3693), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_DOLLAR] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_void] = ACTIONS(3695), - [anon_sym_anyopaque] = ACTIONS(3695), - [anon_sym_bool] = ACTIONS(3695), - [anon_sym_int] = ACTIONS(3695), - [anon_sym_uint] = ACTIONS(3695), - [anon_sym_float] = ACTIONS(3695), - [anon_sym_range] = ACTIONS(3695), - [anon_sym_i8] = ACTIONS(3695), - [anon_sym_i16] = ACTIONS(3695), - [anon_sym_i32] = ACTIONS(3695), - [anon_sym_i64] = ACTIONS(3695), - [anon_sym_u8] = ACTIONS(3695), - [anon_sym_u16] = ACTIONS(3695), - [anon_sym_u32] = ACTIONS(3695), - [anon_sym_u64] = ACTIONS(3695), - [anon_sym_isize] = ACTIONS(3695), - [anon_sym_usize] = ACTIONS(3695), - [anon_sym_f32] = ACTIONS(3695), - [anon_sym_f64] = ACTIONS(3695), - [anon_sym_c_char] = ACTIONS(3695), - [anon_sym_c_schar] = ACTIONS(3695), - [anon_sym_c_uchar] = ACTIONS(3695), - [anon_sym_c_short] = ACTIONS(3695), - [anon_sym_c_ushort] = ACTIONS(3695), - [anon_sym_c_int] = ACTIONS(3695), - [anon_sym_c_uint] = ACTIONS(3695), - [anon_sym_c_long] = ACTIONS(3695), - [anon_sym_c_ulong] = ACTIONS(3695), - [anon_sym_c_longlong] = ACTIONS(3695), - [anon_sym_c_ulonglong] = ACTIONS(3695), - [anon_sym_c_float] = ACTIONS(3695), - [anon_sym_c_double] = ACTIONS(3695), - [anon_sym_c_longdouble] = ACTIONS(3695), - [anon_sym_return] = ACTIONS(3695), - [anon_sym_yield] = ACTIONS(3695), - [anon_sym_break] = ACTIONS(3695), - [anon_sym_continue] = ACTIONS(3695), - [anon_sym_defer] = ACTIONS(3695), - [anon_sym_errdefer] = ACTIONS(3695), - [anon_sym_if] = ACTIONS(3695), - [anon_sym_else] = ACTIONS(3695), - [anon_sym_while] = ACTIONS(3695), - [anon_sym_expand] = ACTIONS(3695), - [anon_sym_for] = ACTIONS(3695), - [anon_sym_match] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_TILDE] = ACTIONS(3693), - [anon_sym_try] = ACTIONS(3695), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_true] = ACTIONS(3695), - [anon_sym_false] = ACTIONS(3695), - [sym_none] = ACTIONS(3695), - [sym_undefined] = ACTIONS(3695), - [sym_sink] = ACTIONS(3695), - [sym_integer] = ACTIONS(3695), - [sym_float] = ACTIONS(3693), - [anon_sym_DQUOTE] = ACTIONS(3693), - [sym_multiline_string] = ACTIONS(3693), - [sym_character] = ACTIONS(3693), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_test] = ACTIONS(3542), + [anon_sym_hide] = ACTIONS(3542), + [anon_sym_func] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_RPAREN] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_DOLLAR] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_anyopaque] = ACTIONS(3542), + [anon_sym_bool] = ACTIONS(3542), + [anon_sym_int] = ACTIONS(3542), + [anon_sym_uint] = ACTIONS(3542), + [anon_sym_float] = ACTIONS(3542), + [anon_sym_range] = ACTIONS(3542), + [anon_sym_i8] = ACTIONS(3542), + [anon_sym_i16] = ACTIONS(3542), + [anon_sym_i32] = ACTIONS(3542), + [anon_sym_i64] = ACTIONS(3542), + [anon_sym_u8] = ACTIONS(3542), + [anon_sym_u16] = ACTIONS(3542), + [anon_sym_u32] = ACTIONS(3542), + [anon_sym_u64] = ACTIONS(3542), + [anon_sym_isize] = ACTIONS(3542), + [anon_sym_usize] = ACTIONS(3542), + [anon_sym_f32] = ACTIONS(3542), + [anon_sym_f64] = ACTIONS(3542), + [anon_sym_c_char] = ACTIONS(3542), + [anon_sym_c_schar] = ACTIONS(3542), + [anon_sym_c_uchar] = ACTIONS(3542), + [anon_sym_c_short] = ACTIONS(3542), + [anon_sym_c_ushort] = ACTIONS(3542), + [anon_sym_c_int] = ACTIONS(3542), + [anon_sym_c_uint] = ACTIONS(3542), + [anon_sym_c_long] = ACTIONS(3542), + [anon_sym_c_ulong] = ACTIONS(3542), + [anon_sym_c_longlong] = ACTIONS(3542), + [anon_sym_c_ulonglong] = ACTIONS(3542), + [anon_sym_c_float] = ACTIONS(3542), + [anon_sym_c_double] = ACTIONS(3542), + [anon_sym_c_longdouble] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_defer] = ACTIONS(3542), + [anon_sym_errdefer] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_expand] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_true] = ACTIONS(3542), + [anon_sym_false] = ACTIONS(3542), + [sym_none] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [sym_sink] = ACTIONS(3542), + [sym_integer] = ACTIONS(3542), + [sym_float] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_multiline_string] = ACTIONS(3540), + [sym_character] = ACTIONS(3540), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3693), + [sym__newline] = ACTIONS(3540), }, [STATE(1608)] = { - [ts_builtin_sym_end] = ACTIONS(3697), - [sym_identifier] = ACTIONS(3699), - [anon_sym_import] = ACTIONS(3699), - [anon_sym_test] = ACTIONS(3699), - [anon_sym_hide] = ACTIONS(3699), - [anon_sym_func] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_struct] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_void] = ACTIONS(3699), - [anon_sym_anyopaque] = ACTIONS(3699), - [anon_sym_bool] = ACTIONS(3699), - [anon_sym_int] = ACTIONS(3699), - [anon_sym_uint] = ACTIONS(3699), - [anon_sym_float] = ACTIONS(3699), - [anon_sym_range] = ACTIONS(3699), - [anon_sym_i8] = ACTIONS(3699), - [anon_sym_i16] = ACTIONS(3699), - [anon_sym_i32] = ACTIONS(3699), - [anon_sym_i64] = ACTIONS(3699), - [anon_sym_u8] = ACTIONS(3699), - [anon_sym_u16] = ACTIONS(3699), - [anon_sym_u32] = ACTIONS(3699), - [anon_sym_u64] = ACTIONS(3699), - [anon_sym_isize] = ACTIONS(3699), - [anon_sym_usize] = ACTIONS(3699), - [anon_sym_f32] = ACTIONS(3699), - [anon_sym_f64] = ACTIONS(3699), - [anon_sym_c_char] = ACTIONS(3699), - [anon_sym_c_schar] = ACTIONS(3699), - [anon_sym_c_uchar] = ACTIONS(3699), - [anon_sym_c_short] = ACTIONS(3699), - [anon_sym_c_ushort] = ACTIONS(3699), - [anon_sym_c_int] = ACTIONS(3699), - [anon_sym_c_uint] = ACTIONS(3699), - [anon_sym_c_long] = ACTIONS(3699), - [anon_sym_c_ulong] = ACTIONS(3699), - [anon_sym_c_longlong] = ACTIONS(3699), - [anon_sym_c_ulonglong] = ACTIONS(3699), - [anon_sym_c_float] = ACTIONS(3699), - [anon_sym_c_double] = ACTIONS(3699), - [anon_sym_c_longdouble] = ACTIONS(3699), - [anon_sym_return] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_break] = ACTIONS(3699), - [anon_sym_continue] = ACTIONS(3699), - [anon_sym_defer] = ACTIONS(3699), - [anon_sym_errdefer] = ACTIONS(3699), - [anon_sym_if] = ACTIONS(3699), - [anon_sym_else] = ACTIONS(3699), - [anon_sym_while] = ACTIONS(3699), - [anon_sym_expand] = ACTIONS(3699), - [anon_sym_for] = ACTIONS(3699), - [anon_sym_match] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_TILDE] = ACTIONS(3697), - [anon_sym_try] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_true] = ACTIONS(3699), - [anon_sym_false] = ACTIONS(3699), - [sym_none] = ACTIONS(3699), - [sym_undefined] = ACTIONS(3699), - [sym_sink] = ACTIONS(3699), - [sym_integer] = ACTIONS(3699), - [sym_float] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(3697), - [sym_multiline_string] = ACTIONS(3697), - [sym_character] = ACTIONS(3697), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_test] = ACTIONS(3546), + [anon_sym_hide] = ACTIONS(3546), + [anon_sym_func] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_RPAREN] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_anyopaque] = ACTIONS(3546), + [anon_sym_bool] = ACTIONS(3546), + [anon_sym_int] = ACTIONS(3546), + [anon_sym_uint] = ACTIONS(3546), + [anon_sym_float] = ACTIONS(3546), + [anon_sym_range] = ACTIONS(3546), + [anon_sym_i8] = ACTIONS(3546), + [anon_sym_i16] = ACTIONS(3546), + [anon_sym_i32] = ACTIONS(3546), + [anon_sym_i64] = ACTIONS(3546), + [anon_sym_u8] = ACTIONS(3546), + [anon_sym_u16] = ACTIONS(3546), + [anon_sym_u32] = ACTIONS(3546), + [anon_sym_u64] = ACTIONS(3546), + [anon_sym_isize] = ACTIONS(3546), + [anon_sym_usize] = ACTIONS(3546), + [anon_sym_f32] = ACTIONS(3546), + [anon_sym_f64] = ACTIONS(3546), + [anon_sym_c_char] = ACTIONS(3546), + [anon_sym_c_schar] = ACTIONS(3546), + [anon_sym_c_uchar] = ACTIONS(3546), + [anon_sym_c_short] = ACTIONS(3546), + [anon_sym_c_ushort] = ACTIONS(3546), + [anon_sym_c_int] = ACTIONS(3546), + [anon_sym_c_uint] = ACTIONS(3546), + [anon_sym_c_long] = ACTIONS(3546), + [anon_sym_c_ulong] = ACTIONS(3546), + [anon_sym_c_longlong] = ACTIONS(3546), + [anon_sym_c_ulonglong] = ACTIONS(3546), + [anon_sym_c_float] = ACTIONS(3546), + [anon_sym_c_double] = ACTIONS(3546), + [anon_sym_c_longdouble] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_defer] = ACTIONS(3546), + [anon_sym_errdefer] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_else] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_expand] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_match] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_true] = ACTIONS(3546), + [anon_sym_false] = ACTIONS(3546), + [sym_none] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [sym_sink] = ACTIONS(3546), + [sym_integer] = ACTIONS(3546), + [sym_float] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_multiline_string] = ACTIONS(3544), + [sym_character] = ACTIONS(3544), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3697), + [sym__newline] = ACTIONS(3544), }, [STATE(1609)] = { - [ts_builtin_sym_end] = ACTIONS(3701), - [sym_identifier] = ACTIONS(3703), - [anon_sym_import] = ACTIONS(3703), - [anon_sym_test] = ACTIONS(3703), - [anon_sym_hide] = ACTIONS(3703), - [anon_sym_func] = ACTIONS(3703), - [anon_sym_BANG] = ACTIONS(3701), - [anon_sym_struct] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3701), - [anon_sym_RPAREN] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3701), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym_DASH] = ACTIONS(3701), - [anon_sym_DOLLAR] = ACTIONS(3701), - [anon_sym_LBRACK] = ACTIONS(3701), - [anon_sym_void] = ACTIONS(3703), - [anon_sym_anyopaque] = ACTIONS(3703), - [anon_sym_bool] = ACTIONS(3703), - [anon_sym_int] = ACTIONS(3703), - [anon_sym_uint] = ACTIONS(3703), - [anon_sym_float] = ACTIONS(3703), - [anon_sym_range] = ACTIONS(3703), - [anon_sym_i8] = ACTIONS(3703), - [anon_sym_i16] = ACTIONS(3703), - [anon_sym_i32] = ACTIONS(3703), - [anon_sym_i64] = ACTIONS(3703), - [anon_sym_u8] = ACTIONS(3703), - [anon_sym_u16] = ACTIONS(3703), - [anon_sym_u32] = ACTIONS(3703), - [anon_sym_u64] = ACTIONS(3703), - [anon_sym_isize] = ACTIONS(3703), - [anon_sym_usize] = ACTIONS(3703), - [anon_sym_f32] = ACTIONS(3703), - [anon_sym_f64] = ACTIONS(3703), - [anon_sym_c_char] = ACTIONS(3703), - [anon_sym_c_schar] = ACTIONS(3703), - [anon_sym_c_uchar] = ACTIONS(3703), - [anon_sym_c_short] = ACTIONS(3703), - [anon_sym_c_ushort] = ACTIONS(3703), - [anon_sym_c_int] = ACTIONS(3703), - [anon_sym_c_uint] = ACTIONS(3703), - [anon_sym_c_long] = ACTIONS(3703), - [anon_sym_c_ulong] = ACTIONS(3703), - [anon_sym_c_longlong] = ACTIONS(3703), - [anon_sym_c_ulonglong] = ACTIONS(3703), - [anon_sym_c_float] = ACTIONS(3703), - [anon_sym_c_double] = ACTIONS(3703), - [anon_sym_c_longdouble] = ACTIONS(3703), - [anon_sym_return] = ACTIONS(3703), - [anon_sym_yield] = ACTIONS(3703), - [anon_sym_break] = ACTIONS(3703), - [anon_sym_continue] = ACTIONS(3703), - [anon_sym_defer] = ACTIONS(3703), - [anon_sym_errdefer] = ACTIONS(3703), - [anon_sym_if] = ACTIONS(3703), - [anon_sym_else] = ACTIONS(3703), - [anon_sym_while] = ACTIONS(3703), - [anon_sym_expand] = ACTIONS(3703), - [anon_sym_for] = ACTIONS(3703), - [anon_sym_match] = ACTIONS(3703), - [anon_sym_AMP] = ACTIONS(3701), - [anon_sym_TILDE] = ACTIONS(3701), - [anon_sym_try] = ACTIONS(3703), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_true] = ACTIONS(3703), - [anon_sym_false] = ACTIONS(3703), - [sym_none] = ACTIONS(3703), - [sym_undefined] = ACTIONS(3703), - [sym_sink] = ACTIONS(3703), - [sym_integer] = ACTIONS(3703), - [sym_float] = ACTIONS(3701), - [anon_sym_DQUOTE] = ACTIONS(3701), - [sym_multiline_string] = ACTIONS(3701), - [sym_character] = ACTIONS(3701), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_test] = ACTIONS(3550), + [anon_sym_hide] = ACTIONS(3550), + [anon_sym_func] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_DOLLAR] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_anyopaque] = ACTIONS(3550), + [anon_sym_bool] = ACTIONS(3550), + [anon_sym_int] = ACTIONS(3550), + [anon_sym_uint] = ACTIONS(3550), + [anon_sym_float] = ACTIONS(3550), + [anon_sym_range] = ACTIONS(3550), + [anon_sym_i8] = ACTIONS(3550), + [anon_sym_i16] = ACTIONS(3550), + [anon_sym_i32] = ACTIONS(3550), + [anon_sym_i64] = ACTIONS(3550), + [anon_sym_u8] = ACTIONS(3550), + [anon_sym_u16] = ACTIONS(3550), + [anon_sym_u32] = ACTIONS(3550), + [anon_sym_u64] = ACTIONS(3550), + [anon_sym_isize] = ACTIONS(3550), + [anon_sym_usize] = ACTIONS(3550), + [anon_sym_f32] = ACTIONS(3550), + [anon_sym_f64] = ACTIONS(3550), + [anon_sym_c_char] = ACTIONS(3550), + [anon_sym_c_schar] = ACTIONS(3550), + [anon_sym_c_uchar] = ACTIONS(3550), + [anon_sym_c_short] = ACTIONS(3550), + [anon_sym_c_ushort] = ACTIONS(3550), + [anon_sym_c_int] = ACTIONS(3550), + [anon_sym_c_uint] = ACTIONS(3550), + [anon_sym_c_long] = ACTIONS(3550), + [anon_sym_c_ulong] = ACTIONS(3550), + [anon_sym_c_longlong] = ACTIONS(3550), + [anon_sym_c_ulonglong] = ACTIONS(3550), + [anon_sym_c_float] = ACTIONS(3550), + [anon_sym_c_double] = ACTIONS(3550), + [anon_sym_c_longdouble] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_defer] = ACTIONS(3550), + [anon_sym_errdefer] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_else] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_expand] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_DOT] = ACTIONS(3548), + [anon_sym_true] = ACTIONS(3550), + [anon_sym_false] = ACTIONS(3550), + [sym_none] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [sym_sink] = ACTIONS(3550), + [sym_integer] = ACTIONS(3550), + [sym_float] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [sym_multiline_string] = ACTIONS(3548), + [sym_character] = ACTIONS(3548), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3701), + [sym__newline] = ACTIONS(3548), }, [STATE(1610)] = { - [ts_builtin_sym_end] = ACTIONS(3705), - [sym_identifier] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_test] = ACTIONS(3707), - [anon_sym_hide] = ACTIONS(3707), - [anon_sym_func] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_struct] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_RBRACE] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_anyopaque] = ACTIONS(3707), - [anon_sym_bool] = ACTIONS(3707), - [anon_sym_int] = ACTIONS(3707), - [anon_sym_uint] = ACTIONS(3707), - [anon_sym_float] = ACTIONS(3707), - [anon_sym_range] = ACTIONS(3707), - [anon_sym_i8] = ACTIONS(3707), - [anon_sym_i16] = ACTIONS(3707), - [anon_sym_i32] = ACTIONS(3707), - [anon_sym_i64] = ACTIONS(3707), - [anon_sym_u8] = ACTIONS(3707), - [anon_sym_u16] = ACTIONS(3707), - [anon_sym_u32] = ACTIONS(3707), - [anon_sym_u64] = ACTIONS(3707), - [anon_sym_isize] = ACTIONS(3707), - [anon_sym_usize] = ACTIONS(3707), - [anon_sym_f32] = ACTIONS(3707), - [anon_sym_f64] = ACTIONS(3707), - [anon_sym_c_char] = ACTIONS(3707), - [anon_sym_c_schar] = ACTIONS(3707), - [anon_sym_c_uchar] = ACTIONS(3707), - [anon_sym_c_short] = ACTIONS(3707), - [anon_sym_c_ushort] = ACTIONS(3707), - [anon_sym_c_int] = ACTIONS(3707), - [anon_sym_c_uint] = ACTIONS(3707), - [anon_sym_c_long] = ACTIONS(3707), - [anon_sym_c_ulong] = ACTIONS(3707), - [anon_sym_c_longlong] = ACTIONS(3707), - [anon_sym_c_ulonglong] = ACTIONS(3707), - [anon_sym_c_float] = ACTIONS(3707), - [anon_sym_c_double] = ACTIONS(3707), - [anon_sym_c_longdouble] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_defer] = ACTIONS(3707), - [anon_sym_errdefer] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_else] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_expand] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_match] = ACTIONS(3707), - [anon_sym_AMP] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_DOT] = ACTIONS(3705), - [anon_sym_true] = ACTIONS(3707), - [anon_sym_false] = ACTIONS(3707), - [sym_none] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [sym_sink] = ACTIONS(3707), - [sym_integer] = ACTIONS(3707), - [sym_float] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym_multiline_string] = ACTIONS(3705), - [sym_character] = ACTIONS(3705), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_test] = ACTIONS(3554), + [anon_sym_hide] = ACTIONS(3554), + [anon_sym_func] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_RPAREN] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_DOLLAR] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_anyopaque] = ACTIONS(3554), + [anon_sym_bool] = ACTIONS(3554), + [anon_sym_int] = ACTIONS(3554), + [anon_sym_uint] = ACTIONS(3554), + [anon_sym_float] = ACTIONS(3554), + [anon_sym_range] = ACTIONS(3554), + [anon_sym_i8] = ACTIONS(3554), + [anon_sym_i16] = ACTIONS(3554), + [anon_sym_i32] = ACTIONS(3554), + [anon_sym_i64] = ACTIONS(3554), + [anon_sym_u8] = ACTIONS(3554), + [anon_sym_u16] = ACTIONS(3554), + [anon_sym_u32] = ACTIONS(3554), + [anon_sym_u64] = ACTIONS(3554), + [anon_sym_isize] = ACTIONS(3554), + [anon_sym_usize] = ACTIONS(3554), + [anon_sym_f32] = ACTIONS(3554), + [anon_sym_f64] = ACTIONS(3554), + [anon_sym_c_char] = ACTIONS(3554), + [anon_sym_c_schar] = ACTIONS(3554), + [anon_sym_c_uchar] = ACTIONS(3554), + [anon_sym_c_short] = ACTIONS(3554), + [anon_sym_c_ushort] = ACTIONS(3554), + [anon_sym_c_int] = ACTIONS(3554), + [anon_sym_c_uint] = ACTIONS(3554), + [anon_sym_c_long] = ACTIONS(3554), + [anon_sym_c_ulong] = ACTIONS(3554), + [anon_sym_c_longlong] = ACTIONS(3554), + [anon_sym_c_ulonglong] = ACTIONS(3554), + [anon_sym_c_float] = ACTIONS(3554), + [anon_sym_c_double] = ACTIONS(3554), + [anon_sym_c_longdouble] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_defer] = ACTIONS(3554), + [anon_sym_errdefer] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_else] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_expand] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_AMP] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3552), + [anon_sym_true] = ACTIONS(3554), + [anon_sym_false] = ACTIONS(3554), + [sym_none] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [sym_sink] = ACTIONS(3554), + [sym_integer] = ACTIONS(3554), + [sym_float] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [sym_multiline_string] = ACTIONS(3552), + [sym_character] = ACTIONS(3552), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3705), + [sym__newline] = ACTIONS(3552), }, [STATE(1611)] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_import] = ACTIONS(1095), - [anon_sym_test] = ACTIONS(1095), - [anon_sym_hide] = ACTIONS(1095), - [anon_sym_func] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1095), - [anon_sym_anyopaque] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_int] = ACTIONS(1095), - [anon_sym_uint] = ACTIONS(1095), - [anon_sym_float] = ACTIONS(1095), - [anon_sym_range] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_c_char] = ACTIONS(1095), - [anon_sym_c_schar] = ACTIONS(1095), - [anon_sym_c_uchar] = ACTIONS(1095), - [anon_sym_c_short] = ACTIONS(1095), - [anon_sym_c_ushort] = ACTIONS(1095), - [anon_sym_c_int] = ACTIONS(1095), - [anon_sym_c_uint] = ACTIONS(1095), - [anon_sym_c_long] = ACTIONS(1095), - [anon_sym_c_ulong] = ACTIONS(1095), - [anon_sym_c_longlong] = ACTIONS(1095), - [anon_sym_c_ulonglong] = ACTIONS(1095), - [anon_sym_c_float] = ACTIONS(1095), - [anon_sym_c_double] = ACTIONS(1095), - [anon_sym_c_longdouble] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_defer] = ACTIONS(1095), - [anon_sym_errdefer] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_expand] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [sym_none] = ACTIONS(1095), - [sym_undefined] = ACTIONS(1095), - [sym_sink] = ACTIONS(1095), - [sym_integer] = ACTIONS(1095), - [sym_float] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [sym_multiline_string] = ACTIONS(1093), - [sym_character] = ACTIONS(1093), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_test] = ACTIONS(3558), + [anon_sym_hide] = ACTIONS(3558), + [anon_sym_func] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_RPAREN] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_anyopaque] = ACTIONS(3558), + [anon_sym_bool] = ACTIONS(3558), + [anon_sym_int] = ACTIONS(3558), + [anon_sym_uint] = ACTIONS(3558), + [anon_sym_float] = ACTIONS(3558), + [anon_sym_range] = ACTIONS(3558), + [anon_sym_i8] = ACTIONS(3558), + [anon_sym_i16] = ACTIONS(3558), + [anon_sym_i32] = ACTIONS(3558), + [anon_sym_i64] = ACTIONS(3558), + [anon_sym_u8] = ACTIONS(3558), + [anon_sym_u16] = ACTIONS(3558), + [anon_sym_u32] = ACTIONS(3558), + [anon_sym_u64] = ACTIONS(3558), + [anon_sym_isize] = ACTIONS(3558), + [anon_sym_usize] = ACTIONS(3558), + [anon_sym_f32] = ACTIONS(3558), + [anon_sym_f64] = ACTIONS(3558), + [anon_sym_c_char] = ACTIONS(3558), + [anon_sym_c_schar] = ACTIONS(3558), + [anon_sym_c_uchar] = ACTIONS(3558), + [anon_sym_c_short] = ACTIONS(3558), + [anon_sym_c_ushort] = ACTIONS(3558), + [anon_sym_c_int] = ACTIONS(3558), + [anon_sym_c_uint] = ACTIONS(3558), + [anon_sym_c_long] = ACTIONS(3558), + [anon_sym_c_ulong] = ACTIONS(3558), + [anon_sym_c_longlong] = ACTIONS(3558), + [anon_sym_c_ulonglong] = ACTIONS(3558), + [anon_sym_c_float] = ACTIONS(3558), + [anon_sym_c_double] = ACTIONS(3558), + [anon_sym_c_longdouble] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_defer] = ACTIONS(3558), + [anon_sym_errdefer] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_expand] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_match] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_DOT] = ACTIONS(3556), + [anon_sym_true] = ACTIONS(3558), + [anon_sym_false] = ACTIONS(3558), + [sym_none] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [sym_sink] = ACTIONS(3558), + [sym_integer] = ACTIONS(3558), + [sym_float] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [sym_multiline_string] = ACTIONS(3556), + [sym_character] = ACTIONS(3556), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1093), + [sym__newline] = ACTIONS(3556), }, [STATE(1612)] = { - [ts_builtin_sym_end] = ACTIONS(3709), - [sym_identifier] = ACTIONS(3711), - [anon_sym_import] = ACTIONS(3711), - [anon_sym_test] = ACTIONS(3711), - [anon_sym_hide] = ACTIONS(3711), - [anon_sym_func] = ACTIONS(3711), - [anon_sym_BANG] = ACTIONS(3709), - [anon_sym_struct] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_RPAREN] = ACTIONS(3709), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_RBRACE] = ACTIONS(3709), - [anon_sym_DASH] = ACTIONS(3709), - [anon_sym_DOLLAR] = ACTIONS(3709), - [anon_sym_LBRACK] = ACTIONS(3709), - [anon_sym_void] = ACTIONS(3711), - [anon_sym_anyopaque] = ACTIONS(3711), - [anon_sym_bool] = ACTIONS(3711), - [anon_sym_int] = ACTIONS(3711), - [anon_sym_uint] = ACTIONS(3711), - [anon_sym_float] = ACTIONS(3711), - [anon_sym_range] = ACTIONS(3711), - [anon_sym_i8] = ACTIONS(3711), - [anon_sym_i16] = ACTIONS(3711), - [anon_sym_i32] = ACTIONS(3711), - [anon_sym_i64] = ACTIONS(3711), - [anon_sym_u8] = ACTIONS(3711), - [anon_sym_u16] = ACTIONS(3711), - [anon_sym_u32] = ACTIONS(3711), - [anon_sym_u64] = ACTIONS(3711), - [anon_sym_isize] = ACTIONS(3711), - [anon_sym_usize] = ACTIONS(3711), - [anon_sym_f32] = ACTIONS(3711), - [anon_sym_f64] = ACTIONS(3711), - [anon_sym_c_char] = ACTIONS(3711), - [anon_sym_c_schar] = ACTIONS(3711), - [anon_sym_c_uchar] = ACTIONS(3711), - [anon_sym_c_short] = ACTIONS(3711), - [anon_sym_c_ushort] = ACTIONS(3711), - [anon_sym_c_int] = ACTIONS(3711), - [anon_sym_c_uint] = ACTIONS(3711), - [anon_sym_c_long] = ACTIONS(3711), - [anon_sym_c_ulong] = ACTIONS(3711), - [anon_sym_c_longlong] = ACTIONS(3711), - [anon_sym_c_ulonglong] = ACTIONS(3711), - [anon_sym_c_float] = ACTIONS(3711), - [anon_sym_c_double] = ACTIONS(3711), - [anon_sym_c_longdouble] = ACTIONS(3711), - [anon_sym_return] = ACTIONS(3711), - [anon_sym_yield] = ACTIONS(3711), - [anon_sym_break] = ACTIONS(3711), - [anon_sym_continue] = ACTIONS(3711), - [anon_sym_defer] = ACTIONS(3711), - [anon_sym_errdefer] = ACTIONS(3711), - [anon_sym_if] = ACTIONS(3711), - [anon_sym_else] = ACTIONS(3711), - [anon_sym_while] = ACTIONS(3711), - [anon_sym_expand] = ACTIONS(3711), - [anon_sym_for] = ACTIONS(3711), - [anon_sym_match] = ACTIONS(3711), - [anon_sym_AMP] = ACTIONS(3709), - [anon_sym_TILDE] = ACTIONS(3709), - [anon_sym_try] = ACTIONS(3711), - [anon_sym_DOT] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [sym_none] = ACTIONS(3711), - [sym_undefined] = ACTIONS(3711), - [sym_sink] = ACTIONS(3711), - [sym_integer] = ACTIONS(3711), - [sym_float] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(3709), - [sym_multiline_string] = ACTIONS(3709), - [sym_character] = ACTIONS(3709), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_test] = ACTIONS(3562), + [anon_sym_hide] = ACTIONS(3562), + [anon_sym_func] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_anyopaque] = ACTIONS(3562), + [anon_sym_bool] = ACTIONS(3562), + [anon_sym_int] = ACTIONS(3562), + [anon_sym_uint] = ACTIONS(3562), + [anon_sym_float] = ACTIONS(3562), + [anon_sym_range] = ACTIONS(3562), + [anon_sym_i8] = ACTIONS(3562), + [anon_sym_i16] = ACTIONS(3562), + [anon_sym_i32] = ACTIONS(3562), + [anon_sym_i64] = ACTIONS(3562), + [anon_sym_u8] = ACTIONS(3562), + [anon_sym_u16] = ACTIONS(3562), + [anon_sym_u32] = ACTIONS(3562), + [anon_sym_u64] = ACTIONS(3562), + [anon_sym_isize] = ACTIONS(3562), + [anon_sym_usize] = ACTIONS(3562), + [anon_sym_f32] = ACTIONS(3562), + [anon_sym_f64] = ACTIONS(3562), + [anon_sym_c_char] = ACTIONS(3562), + [anon_sym_c_schar] = ACTIONS(3562), + [anon_sym_c_uchar] = ACTIONS(3562), + [anon_sym_c_short] = ACTIONS(3562), + [anon_sym_c_ushort] = ACTIONS(3562), + [anon_sym_c_int] = ACTIONS(3562), + [anon_sym_c_uint] = ACTIONS(3562), + [anon_sym_c_long] = ACTIONS(3562), + [anon_sym_c_ulong] = ACTIONS(3562), + [anon_sym_c_longlong] = ACTIONS(3562), + [anon_sym_c_ulonglong] = ACTIONS(3562), + [anon_sym_c_float] = ACTIONS(3562), + [anon_sym_c_double] = ACTIONS(3562), + [anon_sym_c_longdouble] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_defer] = ACTIONS(3562), + [anon_sym_errdefer] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_expand] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_match] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_DOT] = ACTIONS(3560), + [anon_sym_true] = ACTIONS(3562), + [anon_sym_false] = ACTIONS(3562), + [sym_none] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [sym_sink] = ACTIONS(3562), + [sym_integer] = ACTIONS(3562), + [sym_float] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_multiline_string] = ACTIONS(3560), + [sym_character] = ACTIONS(3560), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3709), + [sym__newline] = ACTIONS(3560), }, [STATE(1613)] = { - [ts_builtin_sym_end] = ACTIONS(3713), - [sym_identifier] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_test] = ACTIONS(3715), - [anon_sym_hide] = ACTIONS(3715), - [anon_sym_func] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3713), - [anon_sym_struct] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3713), - [anon_sym_RPAREN] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym_DASH] = ACTIONS(3713), - [anon_sym_DOLLAR] = ACTIONS(3713), - [anon_sym_LBRACK] = ACTIONS(3713), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_anyopaque] = ACTIONS(3715), - [anon_sym_bool] = ACTIONS(3715), - [anon_sym_int] = ACTIONS(3715), - [anon_sym_uint] = ACTIONS(3715), - [anon_sym_float] = ACTIONS(3715), - [anon_sym_range] = ACTIONS(3715), - [anon_sym_i8] = ACTIONS(3715), - [anon_sym_i16] = ACTIONS(3715), - [anon_sym_i32] = ACTIONS(3715), - [anon_sym_i64] = ACTIONS(3715), - [anon_sym_u8] = ACTIONS(3715), - [anon_sym_u16] = ACTIONS(3715), - [anon_sym_u32] = ACTIONS(3715), - [anon_sym_u64] = ACTIONS(3715), - [anon_sym_isize] = ACTIONS(3715), - [anon_sym_usize] = ACTIONS(3715), - [anon_sym_f32] = ACTIONS(3715), - [anon_sym_f64] = ACTIONS(3715), - [anon_sym_c_char] = ACTIONS(3715), - [anon_sym_c_schar] = ACTIONS(3715), - [anon_sym_c_uchar] = ACTIONS(3715), - [anon_sym_c_short] = ACTIONS(3715), - [anon_sym_c_ushort] = ACTIONS(3715), - [anon_sym_c_int] = ACTIONS(3715), - [anon_sym_c_uint] = ACTIONS(3715), - [anon_sym_c_long] = ACTIONS(3715), - [anon_sym_c_ulong] = ACTIONS(3715), - [anon_sym_c_longlong] = ACTIONS(3715), - [anon_sym_c_ulonglong] = ACTIONS(3715), - [anon_sym_c_float] = ACTIONS(3715), - [anon_sym_c_double] = ACTIONS(3715), - [anon_sym_c_longdouble] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_defer] = ACTIONS(3715), - [anon_sym_errdefer] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_else] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_expand] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_match] = ACTIONS(3715), - [anon_sym_AMP] = ACTIONS(3713), - [anon_sym_TILDE] = ACTIONS(3713), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_DOT] = ACTIONS(3713), - [anon_sym_true] = ACTIONS(3715), - [anon_sym_false] = ACTIONS(3715), - [sym_none] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [sym_sink] = ACTIONS(3715), - [sym_integer] = ACTIONS(3715), - [sym_float] = ACTIONS(3713), - [anon_sym_DQUOTE] = ACTIONS(3713), - [sym_multiline_string] = ACTIONS(3713), - [sym_character] = ACTIONS(3713), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_test] = ACTIONS(3566), + [anon_sym_hide] = ACTIONS(3566), + [anon_sym_func] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_RPAREN] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_DOLLAR] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_anyopaque] = ACTIONS(3566), + [anon_sym_bool] = ACTIONS(3566), + [anon_sym_int] = ACTIONS(3566), + [anon_sym_uint] = ACTIONS(3566), + [anon_sym_float] = ACTIONS(3566), + [anon_sym_range] = ACTIONS(3566), + [anon_sym_i8] = ACTIONS(3566), + [anon_sym_i16] = ACTIONS(3566), + [anon_sym_i32] = ACTIONS(3566), + [anon_sym_i64] = ACTIONS(3566), + [anon_sym_u8] = ACTIONS(3566), + [anon_sym_u16] = ACTIONS(3566), + [anon_sym_u32] = ACTIONS(3566), + [anon_sym_u64] = ACTIONS(3566), + [anon_sym_isize] = ACTIONS(3566), + [anon_sym_usize] = ACTIONS(3566), + [anon_sym_f32] = ACTIONS(3566), + [anon_sym_f64] = ACTIONS(3566), + [anon_sym_c_char] = ACTIONS(3566), + [anon_sym_c_schar] = ACTIONS(3566), + [anon_sym_c_uchar] = ACTIONS(3566), + [anon_sym_c_short] = ACTIONS(3566), + [anon_sym_c_ushort] = ACTIONS(3566), + [anon_sym_c_int] = ACTIONS(3566), + [anon_sym_c_uint] = ACTIONS(3566), + [anon_sym_c_long] = ACTIONS(3566), + [anon_sym_c_ulong] = ACTIONS(3566), + [anon_sym_c_longlong] = ACTIONS(3566), + [anon_sym_c_ulonglong] = ACTIONS(3566), + [anon_sym_c_float] = ACTIONS(3566), + [anon_sym_c_double] = ACTIONS(3566), + [anon_sym_c_longdouble] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_defer] = ACTIONS(3566), + [anon_sym_errdefer] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_expand] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_DOT] = ACTIONS(3564), + [anon_sym_true] = ACTIONS(3566), + [anon_sym_false] = ACTIONS(3566), + [sym_none] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [sym_sink] = ACTIONS(3566), + [sym_integer] = ACTIONS(3566), + [sym_float] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_multiline_string] = ACTIONS(3564), + [sym_character] = ACTIONS(3564), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3713), + [sym__newline] = ACTIONS(3564), }, [STATE(1614)] = { - [ts_builtin_sym_end] = ACTIONS(3717), - [sym_identifier] = ACTIONS(3719), - [anon_sym_import] = ACTIONS(3719), - [anon_sym_test] = ACTIONS(3719), - [anon_sym_hide] = ACTIONS(3719), - [anon_sym_func] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_struct] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_DOLLAR] = ACTIONS(3717), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_void] = ACTIONS(3719), - [anon_sym_anyopaque] = ACTIONS(3719), - [anon_sym_bool] = ACTIONS(3719), - [anon_sym_int] = ACTIONS(3719), - [anon_sym_uint] = ACTIONS(3719), - [anon_sym_float] = ACTIONS(3719), - [anon_sym_range] = ACTIONS(3719), - [anon_sym_i8] = ACTIONS(3719), - [anon_sym_i16] = ACTIONS(3719), - [anon_sym_i32] = ACTIONS(3719), - [anon_sym_i64] = ACTIONS(3719), - [anon_sym_u8] = ACTIONS(3719), - [anon_sym_u16] = ACTIONS(3719), - [anon_sym_u32] = ACTIONS(3719), - [anon_sym_u64] = ACTIONS(3719), - [anon_sym_isize] = ACTIONS(3719), - [anon_sym_usize] = ACTIONS(3719), - [anon_sym_f32] = ACTIONS(3719), - [anon_sym_f64] = ACTIONS(3719), - [anon_sym_c_char] = ACTIONS(3719), - [anon_sym_c_schar] = ACTIONS(3719), - [anon_sym_c_uchar] = ACTIONS(3719), - [anon_sym_c_short] = ACTIONS(3719), - [anon_sym_c_ushort] = ACTIONS(3719), - [anon_sym_c_int] = ACTIONS(3719), - [anon_sym_c_uint] = ACTIONS(3719), - [anon_sym_c_long] = ACTIONS(3719), - [anon_sym_c_ulong] = ACTIONS(3719), - [anon_sym_c_longlong] = ACTIONS(3719), - [anon_sym_c_ulonglong] = ACTIONS(3719), - [anon_sym_c_float] = ACTIONS(3719), - [anon_sym_c_double] = ACTIONS(3719), - [anon_sym_c_longdouble] = ACTIONS(3719), - [anon_sym_return] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_break] = ACTIONS(3719), - [anon_sym_continue] = ACTIONS(3719), - [anon_sym_defer] = ACTIONS(3719), - [anon_sym_errdefer] = ACTIONS(3719), - [anon_sym_if] = ACTIONS(3719), - [anon_sym_else] = ACTIONS(3719), - [anon_sym_while] = ACTIONS(3719), - [anon_sym_expand] = ACTIONS(3719), - [anon_sym_for] = ACTIONS(3719), - [anon_sym_match] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3717), - [anon_sym_TILDE] = ACTIONS(3717), - [anon_sym_try] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [sym_none] = ACTIONS(3719), - [sym_undefined] = ACTIONS(3719), - [sym_sink] = ACTIONS(3719), - [sym_integer] = ACTIONS(3719), - [sym_float] = ACTIONS(3717), - [anon_sym_DQUOTE] = ACTIONS(3717), - [sym_multiline_string] = ACTIONS(3717), - [sym_character] = ACTIONS(3717), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_test] = ACTIONS(3570), + [anon_sym_hide] = ACTIONS(3570), + [anon_sym_func] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_RPAREN] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_void] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_anyopaque] = ACTIONS(3570), + [anon_sym_bool] = ACTIONS(3570), + [anon_sym_int] = ACTIONS(3570), + [anon_sym_uint] = ACTIONS(3570), + [anon_sym_float] = ACTIONS(3570), + [anon_sym_range] = ACTIONS(3570), + [anon_sym_i8] = ACTIONS(3570), + [anon_sym_i16] = ACTIONS(3570), + [anon_sym_i32] = ACTIONS(3570), + [anon_sym_i64] = ACTIONS(3570), + [anon_sym_u8] = ACTIONS(3570), + [anon_sym_u16] = ACTIONS(3570), + [anon_sym_u32] = ACTIONS(3570), + [anon_sym_u64] = ACTIONS(3570), + [anon_sym_isize] = ACTIONS(3570), + [anon_sym_usize] = ACTIONS(3570), + [anon_sym_f32] = ACTIONS(3570), + [anon_sym_f64] = ACTIONS(3570), + [anon_sym_c_char] = ACTIONS(3570), + [anon_sym_c_schar] = ACTIONS(3570), + [anon_sym_c_uchar] = ACTIONS(3570), + [anon_sym_c_short] = ACTIONS(3570), + [anon_sym_c_ushort] = ACTIONS(3570), + [anon_sym_c_int] = ACTIONS(3570), + [anon_sym_c_uint] = ACTIONS(3570), + [anon_sym_c_long] = ACTIONS(3570), + [anon_sym_c_ulong] = ACTIONS(3570), + [anon_sym_c_longlong] = ACTIONS(3570), + [anon_sym_c_ulonglong] = ACTIONS(3570), + [anon_sym_c_float] = ACTIONS(3570), + [anon_sym_c_double] = ACTIONS(3570), + [anon_sym_c_longdouble] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_defer] = ACTIONS(3570), + [anon_sym_errdefer] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_expand] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_match] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3568), + [anon_sym_true] = ACTIONS(3570), + [anon_sym_false] = ACTIONS(3570), + [sym_none] = ACTIONS(3570), + [sym_undefined] = ACTIONS(3570), + [sym_sink] = ACTIONS(3570), + [sym_integer] = ACTIONS(3570), + [sym_float] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [sym_multiline_string] = ACTIONS(3568), + [sym_character] = ACTIONS(3568), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3717), + [sym__newline] = ACTIONS(3568), }, [STATE(1615)] = { - [ts_builtin_sym_end] = ACTIONS(3721), - [sym_identifier] = ACTIONS(3723), - [anon_sym_import] = ACTIONS(3723), - [anon_sym_test] = ACTIONS(3723), - [anon_sym_hide] = ACTIONS(3723), - [anon_sym_func] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3721), - [anon_sym_struct] = ACTIONS(3723), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_DASH] = ACTIONS(3721), - [anon_sym_DOLLAR] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_void] = ACTIONS(3723), - [anon_sym_anyopaque] = ACTIONS(3723), - [anon_sym_bool] = ACTIONS(3723), - [anon_sym_int] = ACTIONS(3723), - [anon_sym_uint] = ACTIONS(3723), - [anon_sym_float] = ACTIONS(3723), - [anon_sym_range] = ACTIONS(3723), - [anon_sym_i8] = ACTIONS(3723), - [anon_sym_i16] = ACTIONS(3723), - [anon_sym_i32] = ACTIONS(3723), - [anon_sym_i64] = ACTIONS(3723), - [anon_sym_u8] = ACTIONS(3723), - [anon_sym_u16] = ACTIONS(3723), - [anon_sym_u32] = ACTIONS(3723), - [anon_sym_u64] = ACTIONS(3723), - [anon_sym_isize] = ACTIONS(3723), - [anon_sym_usize] = ACTIONS(3723), - [anon_sym_f32] = ACTIONS(3723), - [anon_sym_f64] = ACTIONS(3723), - [anon_sym_c_char] = ACTIONS(3723), - [anon_sym_c_schar] = ACTIONS(3723), - [anon_sym_c_uchar] = ACTIONS(3723), - [anon_sym_c_short] = ACTIONS(3723), - [anon_sym_c_ushort] = ACTIONS(3723), - [anon_sym_c_int] = ACTIONS(3723), - [anon_sym_c_uint] = ACTIONS(3723), - [anon_sym_c_long] = ACTIONS(3723), - [anon_sym_c_ulong] = ACTIONS(3723), - [anon_sym_c_longlong] = ACTIONS(3723), - [anon_sym_c_ulonglong] = ACTIONS(3723), - [anon_sym_c_float] = ACTIONS(3723), - [anon_sym_c_double] = ACTIONS(3723), - [anon_sym_c_longdouble] = ACTIONS(3723), - [anon_sym_return] = ACTIONS(3723), - [anon_sym_yield] = ACTIONS(3723), - [anon_sym_break] = ACTIONS(3723), - [anon_sym_continue] = ACTIONS(3723), - [anon_sym_defer] = ACTIONS(3723), - [anon_sym_errdefer] = ACTIONS(3723), - [anon_sym_if] = ACTIONS(3723), - [anon_sym_else] = ACTIONS(3723), - [anon_sym_while] = ACTIONS(3723), - [anon_sym_expand] = ACTIONS(3723), - [anon_sym_for] = ACTIONS(3723), - [anon_sym_match] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3721), - [anon_sym_TILDE] = ACTIONS(3721), - [anon_sym_try] = ACTIONS(3723), - [anon_sym_DOT] = ACTIONS(3721), - [anon_sym_true] = ACTIONS(3723), - [anon_sym_false] = ACTIONS(3723), - [sym_none] = ACTIONS(3723), - [sym_undefined] = ACTIONS(3723), - [sym_sink] = ACTIONS(3723), - [sym_integer] = ACTIONS(3723), - [sym_float] = ACTIONS(3721), - [anon_sym_DQUOTE] = ACTIONS(3721), - [sym_multiline_string] = ACTIONS(3721), - [sym_character] = ACTIONS(3721), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_test] = ACTIONS(3574), + [anon_sym_hide] = ACTIONS(3574), + [anon_sym_func] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_RPAREN] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_DOLLAR] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_anyopaque] = ACTIONS(3574), + [anon_sym_bool] = ACTIONS(3574), + [anon_sym_int] = ACTIONS(3574), + [anon_sym_uint] = ACTIONS(3574), + [anon_sym_float] = ACTIONS(3574), + [anon_sym_range] = ACTIONS(3574), + [anon_sym_i8] = ACTIONS(3574), + [anon_sym_i16] = ACTIONS(3574), + [anon_sym_i32] = ACTIONS(3574), + [anon_sym_i64] = ACTIONS(3574), + [anon_sym_u8] = ACTIONS(3574), + [anon_sym_u16] = ACTIONS(3574), + [anon_sym_u32] = ACTIONS(3574), + [anon_sym_u64] = ACTIONS(3574), + [anon_sym_isize] = ACTIONS(3574), + [anon_sym_usize] = ACTIONS(3574), + [anon_sym_f32] = ACTIONS(3574), + [anon_sym_f64] = ACTIONS(3574), + [anon_sym_c_char] = ACTIONS(3574), + [anon_sym_c_schar] = ACTIONS(3574), + [anon_sym_c_uchar] = ACTIONS(3574), + [anon_sym_c_short] = ACTIONS(3574), + [anon_sym_c_ushort] = ACTIONS(3574), + [anon_sym_c_int] = ACTIONS(3574), + [anon_sym_c_uint] = ACTIONS(3574), + [anon_sym_c_long] = ACTIONS(3574), + [anon_sym_c_ulong] = ACTIONS(3574), + [anon_sym_c_longlong] = ACTIONS(3574), + [anon_sym_c_ulonglong] = ACTIONS(3574), + [anon_sym_c_float] = ACTIONS(3574), + [anon_sym_c_double] = ACTIONS(3574), + [anon_sym_c_longdouble] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_defer] = ACTIONS(3574), + [anon_sym_errdefer] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_expand] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_true] = ACTIONS(3574), + [anon_sym_false] = ACTIONS(3574), + [sym_none] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [sym_sink] = ACTIONS(3574), + [sym_integer] = ACTIONS(3574), + [sym_float] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_multiline_string] = ACTIONS(3572), + [sym_character] = ACTIONS(3572), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3721), + [sym__newline] = ACTIONS(3572), }, [STATE(1616)] = { - [ts_builtin_sym_end] = ACTIONS(3725), - [sym_identifier] = ACTIONS(3727), - [anon_sym_import] = ACTIONS(3727), - [anon_sym_test] = ACTIONS(3727), - [anon_sym_hide] = ACTIONS(3727), - [anon_sym_func] = ACTIONS(3727), - [anon_sym_BANG] = ACTIONS(3725), - [anon_sym_struct] = ACTIONS(3727), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3725), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_DOLLAR] = ACTIONS(3725), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_void] = ACTIONS(3727), - [anon_sym_anyopaque] = ACTIONS(3727), - [anon_sym_bool] = ACTIONS(3727), - [anon_sym_int] = ACTIONS(3727), - [anon_sym_uint] = ACTIONS(3727), - [anon_sym_float] = ACTIONS(3727), - [anon_sym_range] = ACTIONS(3727), - [anon_sym_i8] = ACTIONS(3727), - [anon_sym_i16] = ACTIONS(3727), - [anon_sym_i32] = ACTIONS(3727), - [anon_sym_i64] = ACTIONS(3727), - [anon_sym_u8] = ACTIONS(3727), - [anon_sym_u16] = ACTIONS(3727), - [anon_sym_u32] = ACTIONS(3727), - [anon_sym_u64] = ACTIONS(3727), - [anon_sym_isize] = ACTIONS(3727), - [anon_sym_usize] = ACTIONS(3727), - [anon_sym_f32] = ACTIONS(3727), - [anon_sym_f64] = ACTIONS(3727), - [anon_sym_c_char] = ACTIONS(3727), - [anon_sym_c_schar] = ACTIONS(3727), - [anon_sym_c_uchar] = ACTIONS(3727), - [anon_sym_c_short] = ACTIONS(3727), - [anon_sym_c_ushort] = ACTIONS(3727), - [anon_sym_c_int] = ACTIONS(3727), - [anon_sym_c_uint] = ACTIONS(3727), - [anon_sym_c_long] = ACTIONS(3727), - [anon_sym_c_ulong] = ACTIONS(3727), - [anon_sym_c_longlong] = ACTIONS(3727), - [anon_sym_c_ulonglong] = ACTIONS(3727), - [anon_sym_c_float] = ACTIONS(3727), - [anon_sym_c_double] = ACTIONS(3727), - [anon_sym_c_longdouble] = ACTIONS(3727), - [anon_sym_return] = ACTIONS(3727), - [anon_sym_yield] = ACTIONS(3727), - [anon_sym_break] = ACTIONS(3727), - [anon_sym_continue] = ACTIONS(3727), - [anon_sym_defer] = ACTIONS(3727), - [anon_sym_errdefer] = ACTIONS(3727), - [anon_sym_if] = ACTIONS(3727), - [anon_sym_else] = ACTIONS(3727), - [anon_sym_while] = ACTIONS(3727), - [anon_sym_expand] = ACTIONS(3727), - [anon_sym_for] = ACTIONS(3727), - [anon_sym_match] = ACTIONS(3727), - [anon_sym_AMP] = ACTIONS(3725), - [anon_sym_TILDE] = ACTIONS(3725), - [anon_sym_try] = ACTIONS(3727), - [anon_sym_DOT] = ACTIONS(3725), - [anon_sym_true] = ACTIONS(3727), - [anon_sym_false] = ACTIONS(3727), - [sym_none] = ACTIONS(3727), - [sym_undefined] = ACTIONS(3727), - [sym_sink] = ACTIONS(3727), - [sym_integer] = ACTIONS(3727), - [sym_float] = ACTIONS(3725), - [anon_sym_DQUOTE] = ACTIONS(3725), - [sym_multiline_string] = ACTIONS(3725), - [sym_character] = ACTIONS(3725), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3578), + [anon_sym_import] = ACTIONS(3578), + [anon_sym_test] = ACTIONS(3578), + [anon_sym_hide] = ACTIONS(3578), + [anon_sym_func] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_DOLLAR] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_anyopaque] = ACTIONS(3578), + [anon_sym_bool] = ACTIONS(3578), + [anon_sym_int] = ACTIONS(3578), + [anon_sym_uint] = ACTIONS(3578), + [anon_sym_float] = ACTIONS(3578), + [anon_sym_range] = ACTIONS(3578), + [anon_sym_i8] = ACTIONS(3578), + [anon_sym_i16] = ACTIONS(3578), + [anon_sym_i32] = ACTIONS(3578), + [anon_sym_i64] = ACTIONS(3578), + [anon_sym_u8] = ACTIONS(3578), + [anon_sym_u16] = ACTIONS(3578), + [anon_sym_u32] = ACTIONS(3578), + [anon_sym_u64] = ACTIONS(3578), + [anon_sym_isize] = ACTIONS(3578), + [anon_sym_usize] = ACTIONS(3578), + [anon_sym_f32] = ACTIONS(3578), + [anon_sym_f64] = ACTIONS(3578), + [anon_sym_c_char] = ACTIONS(3578), + [anon_sym_c_schar] = ACTIONS(3578), + [anon_sym_c_uchar] = ACTIONS(3578), + [anon_sym_c_short] = ACTIONS(3578), + [anon_sym_c_ushort] = ACTIONS(3578), + [anon_sym_c_int] = ACTIONS(3578), + [anon_sym_c_uint] = ACTIONS(3578), + [anon_sym_c_long] = ACTIONS(3578), + [anon_sym_c_ulong] = ACTIONS(3578), + [anon_sym_c_longlong] = ACTIONS(3578), + [anon_sym_c_ulonglong] = ACTIONS(3578), + [anon_sym_c_float] = ACTIONS(3578), + [anon_sym_c_double] = ACTIONS(3578), + [anon_sym_c_longdouble] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_break] = ACTIONS(3578), + [anon_sym_continue] = ACTIONS(3578), + [anon_sym_defer] = ACTIONS(3578), + [anon_sym_errdefer] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_else] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_expand] = ACTIONS(3578), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_match] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_true] = ACTIONS(3578), + [anon_sym_false] = ACTIONS(3578), + [sym_none] = ACTIONS(3578), + [sym_undefined] = ACTIONS(3578), + [sym_sink] = ACTIONS(3578), + [sym_integer] = ACTIONS(3578), + [sym_float] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [sym_multiline_string] = ACTIONS(3576), + [sym_character] = ACTIONS(3576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3725), + [sym__newline] = ACTIONS(3576), }, [STATE(1617)] = { - [ts_builtin_sym_end] = ACTIONS(3729), - [sym_identifier] = ACTIONS(3731), - [anon_sym_import] = ACTIONS(3731), - [anon_sym_test] = ACTIONS(3731), - [anon_sym_hide] = ACTIONS(3731), - [anon_sym_func] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3729), - [anon_sym_struct] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3729), - [anon_sym_RPAREN] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(3729), - [anon_sym_RBRACE] = ACTIONS(3729), - [anon_sym_DASH] = ACTIONS(3729), - [anon_sym_DOLLAR] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3729), - [anon_sym_void] = ACTIONS(3731), - [anon_sym_anyopaque] = ACTIONS(3731), - [anon_sym_bool] = ACTIONS(3731), - [anon_sym_int] = ACTIONS(3731), - [anon_sym_uint] = ACTIONS(3731), - [anon_sym_float] = ACTIONS(3731), - [anon_sym_range] = ACTIONS(3731), - [anon_sym_i8] = ACTIONS(3731), - [anon_sym_i16] = ACTIONS(3731), - [anon_sym_i32] = ACTIONS(3731), - [anon_sym_i64] = ACTIONS(3731), - [anon_sym_u8] = ACTIONS(3731), - [anon_sym_u16] = ACTIONS(3731), - [anon_sym_u32] = ACTIONS(3731), - [anon_sym_u64] = ACTIONS(3731), - [anon_sym_isize] = ACTIONS(3731), - [anon_sym_usize] = ACTIONS(3731), - [anon_sym_f32] = ACTIONS(3731), - [anon_sym_f64] = ACTIONS(3731), - [anon_sym_c_char] = ACTIONS(3731), - [anon_sym_c_schar] = ACTIONS(3731), - [anon_sym_c_uchar] = ACTIONS(3731), - [anon_sym_c_short] = ACTIONS(3731), - [anon_sym_c_ushort] = ACTIONS(3731), - [anon_sym_c_int] = ACTIONS(3731), - [anon_sym_c_uint] = ACTIONS(3731), - [anon_sym_c_long] = ACTIONS(3731), - [anon_sym_c_ulong] = ACTIONS(3731), - [anon_sym_c_longlong] = ACTIONS(3731), - [anon_sym_c_ulonglong] = ACTIONS(3731), - [anon_sym_c_float] = ACTIONS(3731), - [anon_sym_c_double] = ACTIONS(3731), - [anon_sym_c_longdouble] = ACTIONS(3731), - [anon_sym_return] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_break] = ACTIONS(3731), - [anon_sym_continue] = ACTIONS(3731), - [anon_sym_defer] = ACTIONS(3731), - [anon_sym_errdefer] = ACTIONS(3731), - [anon_sym_if] = ACTIONS(3731), - [anon_sym_else] = ACTIONS(3731), - [anon_sym_while] = ACTIONS(3731), - [anon_sym_expand] = ACTIONS(3731), - [anon_sym_for] = ACTIONS(3731), - [anon_sym_match] = ACTIONS(3731), - [anon_sym_AMP] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3729), - [anon_sym_try] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3729), - [anon_sym_true] = ACTIONS(3731), - [anon_sym_false] = ACTIONS(3731), - [sym_none] = ACTIONS(3731), - [sym_undefined] = ACTIONS(3731), - [sym_sink] = ACTIONS(3731), - [sym_integer] = ACTIONS(3731), - [sym_float] = ACTIONS(3729), - [anon_sym_DQUOTE] = ACTIONS(3729), - [sym_multiline_string] = ACTIONS(3729), - [sym_character] = ACTIONS(3729), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_test] = ACTIONS(3582), + [anon_sym_hide] = ACTIONS(3582), + [anon_sym_func] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_RPAREN] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_anyopaque] = ACTIONS(3582), + [anon_sym_bool] = ACTIONS(3582), + [anon_sym_int] = ACTIONS(3582), + [anon_sym_uint] = ACTIONS(3582), + [anon_sym_float] = ACTIONS(3582), + [anon_sym_range] = ACTIONS(3582), + [anon_sym_i8] = ACTIONS(3582), + [anon_sym_i16] = ACTIONS(3582), + [anon_sym_i32] = ACTIONS(3582), + [anon_sym_i64] = ACTIONS(3582), + [anon_sym_u8] = ACTIONS(3582), + [anon_sym_u16] = ACTIONS(3582), + [anon_sym_u32] = ACTIONS(3582), + [anon_sym_u64] = ACTIONS(3582), + [anon_sym_isize] = ACTIONS(3582), + [anon_sym_usize] = ACTIONS(3582), + [anon_sym_f32] = ACTIONS(3582), + [anon_sym_f64] = ACTIONS(3582), + [anon_sym_c_char] = ACTIONS(3582), + [anon_sym_c_schar] = ACTIONS(3582), + [anon_sym_c_uchar] = ACTIONS(3582), + [anon_sym_c_short] = ACTIONS(3582), + [anon_sym_c_ushort] = ACTIONS(3582), + [anon_sym_c_int] = ACTIONS(3582), + [anon_sym_c_uint] = ACTIONS(3582), + [anon_sym_c_long] = ACTIONS(3582), + [anon_sym_c_ulong] = ACTIONS(3582), + [anon_sym_c_longlong] = ACTIONS(3582), + [anon_sym_c_ulonglong] = ACTIONS(3582), + [anon_sym_c_float] = ACTIONS(3582), + [anon_sym_c_double] = ACTIONS(3582), + [anon_sym_c_longdouble] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_defer] = ACTIONS(3582), + [anon_sym_errdefer] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_expand] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_match] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_true] = ACTIONS(3582), + [anon_sym_false] = ACTIONS(3582), + [sym_none] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [sym_sink] = ACTIONS(3582), + [sym_integer] = ACTIONS(3582), + [sym_float] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [sym_multiline_string] = ACTIONS(3580), + [sym_character] = ACTIONS(3580), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3729), + [sym__newline] = ACTIONS(3580), }, [STATE(1618)] = { - [ts_builtin_sym_end] = ACTIONS(3733), - [sym_identifier] = ACTIONS(3735), - [anon_sym_import] = ACTIONS(3735), - [anon_sym_test] = ACTIONS(3735), - [anon_sym_hide] = ACTIONS(3735), - [anon_sym_func] = ACTIONS(3735), - [anon_sym_BANG] = ACTIONS(3733), - [anon_sym_struct] = ACTIONS(3735), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_DOLLAR] = ACTIONS(3733), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_void] = ACTIONS(3735), - [anon_sym_anyopaque] = ACTIONS(3735), - [anon_sym_bool] = ACTIONS(3735), - [anon_sym_int] = ACTIONS(3735), - [anon_sym_uint] = ACTIONS(3735), - [anon_sym_float] = ACTIONS(3735), - [anon_sym_range] = ACTIONS(3735), - [anon_sym_i8] = ACTIONS(3735), - [anon_sym_i16] = ACTIONS(3735), - [anon_sym_i32] = ACTIONS(3735), - [anon_sym_i64] = ACTIONS(3735), - [anon_sym_u8] = ACTIONS(3735), - [anon_sym_u16] = ACTIONS(3735), - [anon_sym_u32] = ACTIONS(3735), - [anon_sym_u64] = ACTIONS(3735), - [anon_sym_isize] = ACTIONS(3735), - [anon_sym_usize] = ACTIONS(3735), - [anon_sym_f32] = ACTIONS(3735), - [anon_sym_f64] = ACTIONS(3735), - [anon_sym_c_char] = ACTIONS(3735), - [anon_sym_c_schar] = ACTIONS(3735), - [anon_sym_c_uchar] = ACTIONS(3735), - [anon_sym_c_short] = ACTIONS(3735), - [anon_sym_c_ushort] = ACTIONS(3735), - [anon_sym_c_int] = ACTIONS(3735), - [anon_sym_c_uint] = ACTIONS(3735), - [anon_sym_c_long] = ACTIONS(3735), - [anon_sym_c_ulong] = ACTIONS(3735), - [anon_sym_c_longlong] = ACTIONS(3735), - [anon_sym_c_ulonglong] = ACTIONS(3735), - [anon_sym_c_float] = ACTIONS(3735), - [anon_sym_c_double] = ACTIONS(3735), - [anon_sym_c_longdouble] = ACTIONS(3735), - [anon_sym_return] = ACTIONS(3735), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_break] = ACTIONS(3735), - [anon_sym_continue] = ACTIONS(3735), - [anon_sym_defer] = ACTIONS(3735), - [anon_sym_errdefer] = ACTIONS(3735), - [anon_sym_if] = ACTIONS(3735), - [anon_sym_else] = ACTIONS(3735), - [anon_sym_while] = ACTIONS(3735), - [anon_sym_expand] = ACTIONS(3735), - [anon_sym_for] = ACTIONS(3735), - [anon_sym_match] = ACTIONS(3735), - [anon_sym_AMP] = ACTIONS(3733), - [anon_sym_TILDE] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3735), - [anon_sym_DOT] = ACTIONS(3733), - [anon_sym_true] = ACTIONS(3735), - [anon_sym_false] = ACTIONS(3735), - [sym_none] = ACTIONS(3735), - [sym_undefined] = ACTIONS(3735), - [sym_sink] = ACTIONS(3735), - [sym_integer] = ACTIONS(3735), - [sym_float] = ACTIONS(3733), - [anon_sym_DQUOTE] = ACTIONS(3733), - [sym_multiline_string] = ACTIONS(3733), - [sym_character] = ACTIONS(3733), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_test] = ACTIONS(3586), + [anon_sym_hide] = ACTIONS(3586), + [anon_sym_func] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_struct] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_RPAREN] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_DOLLAR] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_anyopaque] = ACTIONS(3586), + [anon_sym_bool] = ACTIONS(3586), + [anon_sym_int] = ACTIONS(3586), + [anon_sym_uint] = ACTIONS(3586), + [anon_sym_float] = ACTIONS(3586), + [anon_sym_range] = ACTIONS(3586), + [anon_sym_i8] = ACTIONS(3586), + [anon_sym_i16] = ACTIONS(3586), + [anon_sym_i32] = ACTIONS(3586), + [anon_sym_i64] = ACTIONS(3586), + [anon_sym_u8] = ACTIONS(3586), + [anon_sym_u16] = ACTIONS(3586), + [anon_sym_u32] = ACTIONS(3586), + [anon_sym_u64] = ACTIONS(3586), + [anon_sym_isize] = ACTIONS(3586), + [anon_sym_usize] = ACTIONS(3586), + [anon_sym_f32] = ACTIONS(3586), + [anon_sym_f64] = ACTIONS(3586), + [anon_sym_c_char] = ACTIONS(3586), + [anon_sym_c_schar] = ACTIONS(3586), + [anon_sym_c_uchar] = ACTIONS(3586), + [anon_sym_c_short] = ACTIONS(3586), + [anon_sym_c_ushort] = ACTIONS(3586), + [anon_sym_c_int] = ACTIONS(3586), + [anon_sym_c_uint] = ACTIONS(3586), + [anon_sym_c_long] = ACTIONS(3586), + [anon_sym_c_ulong] = ACTIONS(3586), + [anon_sym_c_longlong] = ACTIONS(3586), + [anon_sym_c_ulonglong] = ACTIONS(3586), + [anon_sym_c_float] = ACTIONS(3586), + [anon_sym_c_double] = ACTIONS(3586), + [anon_sym_c_longdouble] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_defer] = ACTIONS(3586), + [anon_sym_errdefer] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_else] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_expand] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_match] = ACTIONS(3586), + [anon_sym_AMP] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_true] = ACTIONS(3586), + [anon_sym_false] = ACTIONS(3586), + [sym_none] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [sym_sink] = ACTIONS(3586), + [sym_integer] = ACTIONS(3586), + [sym_float] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_multiline_string] = ACTIONS(3584), + [sym_character] = ACTIONS(3584), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3733), + [sym__newline] = ACTIONS(3584), }, [STATE(1619)] = { - [ts_builtin_sym_end] = ACTIONS(3737), - [sym_identifier] = ACTIONS(3739), - [anon_sym_import] = ACTIONS(3739), - [anon_sym_test] = ACTIONS(3739), - [anon_sym_hide] = ACTIONS(3739), - [anon_sym_func] = ACTIONS(3739), - [anon_sym_BANG] = ACTIONS(3737), - [anon_sym_struct] = ACTIONS(3739), - [anon_sym_LPAREN] = ACTIONS(3737), - [anon_sym_RPAREN] = ACTIONS(3737), - [anon_sym_LBRACE] = ACTIONS(3737), - [anon_sym_RBRACE] = ACTIONS(3737), - [anon_sym_DASH] = ACTIONS(3737), - [anon_sym_DOLLAR] = ACTIONS(3737), - [anon_sym_LBRACK] = ACTIONS(3737), - [anon_sym_void] = ACTIONS(3739), - [anon_sym_anyopaque] = ACTIONS(3739), - [anon_sym_bool] = ACTIONS(3739), - [anon_sym_int] = ACTIONS(3739), - [anon_sym_uint] = ACTIONS(3739), - [anon_sym_float] = ACTIONS(3739), - [anon_sym_range] = ACTIONS(3739), - [anon_sym_i8] = ACTIONS(3739), - [anon_sym_i16] = ACTIONS(3739), - [anon_sym_i32] = ACTIONS(3739), - [anon_sym_i64] = ACTIONS(3739), - [anon_sym_u8] = ACTIONS(3739), - [anon_sym_u16] = ACTIONS(3739), - [anon_sym_u32] = ACTIONS(3739), - [anon_sym_u64] = ACTIONS(3739), - [anon_sym_isize] = ACTIONS(3739), - [anon_sym_usize] = ACTIONS(3739), - [anon_sym_f32] = ACTIONS(3739), - [anon_sym_f64] = ACTIONS(3739), - [anon_sym_c_char] = ACTIONS(3739), - [anon_sym_c_schar] = ACTIONS(3739), - [anon_sym_c_uchar] = ACTIONS(3739), - [anon_sym_c_short] = ACTIONS(3739), - [anon_sym_c_ushort] = ACTIONS(3739), - [anon_sym_c_int] = ACTIONS(3739), - [anon_sym_c_uint] = ACTIONS(3739), - [anon_sym_c_long] = ACTIONS(3739), - [anon_sym_c_ulong] = ACTIONS(3739), - [anon_sym_c_longlong] = ACTIONS(3739), - [anon_sym_c_ulonglong] = ACTIONS(3739), - [anon_sym_c_float] = ACTIONS(3739), - [anon_sym_c_double] = ACTIONS(3739), - [anon_sym_c_longdouble] = ACTIONS(3739), - [anon_sym_return] = ACTIONS(3739), - [anon_sym_yield] = ACTIONS(3739), - [anon_sym_break] = ACTIONS(3739), - [anon_sym_continue] = ACTIONS(3739), - [anon_sym_defer] = ACTIONS(3739), - [anon_sym_errdefer] = ACTIONS(3739), - [anon_sym_if] = ACTIONS(3739), - [anon_sym_else] = ACTIONS(3739), - [anon_sym_while] = ACTIONS(3739), - [anon_sym_expand] = ACTIONS(3739), - [anon_sym_for] = ACTIONS(3739), - [anon_sym_match] = ACTIONS(3739), - [anon_sym_AMP] = ACTIONS(3737), - [anon_sym_TILDE] = ACTIONS(3737), - [anon_sym_try] = ACTIONS(3739), - [anon_sym_DOT] = ACTIONS(3737), - [anon_sym_true] = ACTIONS(3739), - [anon_sym_false] = ACTIONS(3739), - [sym_none] = ACTIONS(3739), - [sym_undefined] = ACTIONS(3739), - [sym_sink] = ACTIONS(3739), - [sym_integer] = ACTIONS(3739), - [sym_float] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(3737), - [sym_multiline_string] = ACTIONS(3737), - [sym_character] = ACTIONS(3737), + [ts_builtin_sym_end] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_test] = ACTIONS(3590), + [anon_sym_hide] = ACTIONS(3590), + [anon_sym_func] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_DOLLAR] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_anyopaque] = ACTIONS(3590), + [anon_sym_bool] = ACTIONS(3590), + [anon_sym_int] = ACTIONS(3590), + [anon_sym_uint] = ACTIONS(3590), + [anon_sym_float] = ACTIONS(3590), + [anon_sym_range] = ACTIONS(3590), + [anon_sym_i8] = ACTIONS(3590), + [anon_sym_i16] = ACTIONS(3590), + [anon_sym_i32] = ACTIONS(3590), + [anon_sym_i64] = ACTIONS(3590), + [anon_sym_u8] = ACTIONS(3590), + [anon_sym_u16] = ACTIONS(3590), + [anon_sym_u32] = ACTIONS(3590), + [anon_sym_u64] = ACTIONS(3590), + [anon_sym_isize] = ACTIONS(3590), + [anon_sym_usize] = ACTIONS(3590), + [anon_sym_f32] = ACTIONS(3590), + [anon_sym_f64] = ACTIONS(3590), + [anon_sym_c_char] = ACTIONS(3590), + [anon_sym_c_schar] = ACTIONS(3590), + [anon_sym_c_uchar] = ACTIONS(3590), + [anon_sym_c_short] = ACTIONS(3590), + [anon_sym_c_ushort] = ACTIONS(3590), + [anon_sym_c_int] = ACTIONS(3590), + [anon_sym_c_uint] = ACTIONS(3590), + [anon_sym_c_long] = ACTIONS(3590), + [anon_sym_c_ulong] = ACTIONS(3590), + [anon_sym_c_longlong] = ACTIONS(3590), + [anon_sym_c_ulonglong] = ACTIONS(3590), + [anon_sym_c_float] = ACTIONS(3590), + [anon_sym_c_double] = ACTIONS(3590), + [anon_sym_c_longdouble] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_defer] = ACTIONS(3590), + [anon_sym_errdefer] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_expand] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_match] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_true] = ACTIONS(3590), + [anon_sym_false] = ACTIONS(3590), + [sym_none] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [sym_sink] = ACTIONS(3590), + [sym_integer] = ACTIONS(3590), + [sym_float] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [sym_multiline_string] = ACTIONS(3588), + [sym_character] = ACTIONS(3588), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3737), + [sym__newline] = ACTIONS(3588), }, [STATE(1620)] = { - [ts_builtin_sym_end] = ACTIONS(3741), - [sym_identifier] = ACTIONS(3743), - [anon_sym_import] = ACTIONS(3743), - [anon_sym_test] = ACTIONS(3743), - [anon_sym_hide] = ACTIONS(3743), - [anon_sym_func] = ACTIONS(3743), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3741), - [anon_sym_RPAREN] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3741), - [anon_sym_DASH] = ACTIONS(3741), - [anon_sym_DOLLAR] = ACTIONS(3741), - [anon_sym_LBRACK] = ACTIONS(3741), - [anon_sym_void] = ACTIONS(3743), - [anon_sym_anyopaque] = ACTIONS(3743), - [anon_sym_bool] = ACTIONS(3743), - [anon_sym_int] = ACTIONS(3743), - [anon_sym_uint] = ACTIONS(3743), - [anon_sym_float] = ACTIONS(3743), - [anon_sym_range] = ACTIONS(3743), - [anon_sym_i8] = ACTIONS(3743), - [anon_sym_i16] = ACTIONS(3743), - [anon_sym_i32] = ACTIONS(3743), - [anon_sym_i64] = ACTIONS(3743), - [anon_sym_u8] = ACTIONS(3743), - [anon_sym_u16] = ACTIONS(3743), - [anon_sym_u32] = ACTIONS(3743), - [anon_sym_u64] = ACTIONS(3743), - [anon_sym_isize] = ACTIONS(3743), - [anon_sym_usize] = ACTIONS(3743), - [anon_sym_f32] = ACTIONS(3743), - [anon_sym_f64] = ACTIONS(3743), - [anon_sym_c_char] = ACTIONS(3743), - [anon_sym_c_schar] = ACTIONS(3743), - [anon_sym_c_uchar] = ACTIONS(3743), - [anon_sym_c_short] = ACTIONS(3743), - [anon_sym_c_ushort] = ACTIONS(3743), - [anon_sym_c_int] = ACTIONS(3743), - [anon_sym_c_uint] = ACTIONS(3743), - [anon_sym_c_long] = ACTIONS(3743), - [anon_sym_c_ulong] = ACTIONS(3743), - [anon_sym_c_longlong] = ACTIONS(3743), - [anon_sym_c_ulonglong] = ACTIONS(3743), - [anon_sym_c_float] = ACTIONS(3743), - [anon_sym_c_double] = ACTIONS(3743), - [anon_sym_c_longdouble] = ACTIONS(3743), - [anon_sym_return] = ACTIONS(3743), - [anon_sym_yield] = ACTIONS(3743), - [anon_sym_break] = ACTIONS(3743), - [anon_sym_continue] = ACTIONS(3743), - [anon_sym_defer] = ACTIONS(3743), - [anon_sym_errdefer] = ACTIONS(3743), - [anon_sym_if] = ACTIONS(3743), - [anon_sym_else] = ACTIONS(3743), - [anon_sym_while] = ACTIONS(3743), - [anon_sym_expand] = ACTIONS(3743), - [anon_sym_for] = ACTIONS(3743), - [anon_sym_match] = ACTIONS(3743), - [anon_sym_AMP] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3741), - [anon_sym_try] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(3741), - [anon_sym_true] = ACTIONS(3743), - [anon_sym_false] = ACTIONS(3743), - [sym_none] = ACTIONS(3743), - [sym_undefined] = ACTIONS(3743), - [sym_sink] = ACTIONS(3743), - [sym_integer] = ACTIONS(3743), - [sym_float] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3741), - [sym_multiline_string] = ACTIONS(3741), - [sym_character] = ACTIONS(3741), + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_test] = ACTIONS(3594), + [anon_sym_hide] = ACTIONS(3594), + [anon_sym_func] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_RPAREN] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_DOLLAR] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_anyopaque] = ACTIONS(3594), + [anon_sym_bool] = ACTIONS(3594), + [anon_sym_int] = ACTIONS(3594), + [anon_sym_uint] = ACTIONS(3594), + [anon_sym_float] = ACTIONS(3594), + [anon_sym_range] = ACTIONS(3594), + [anon_sym_i8] = ACTIONS(3594), + [anon_sym_i16] = ACTIONS(3594), + [anon_sym_i32] = ACTIONS(3594), + [anon_sym_i64] = ACTIONS(3594), + [anon_sym_u8] = ACTIONS(3594), + [anon_sym_u16] = ACTIONS(3594), + [anon_sym_u32] = ACTIONS(3594), + [anon_sym_u64] = ACTIONS(3594), + [anon_sym_isize] = ACTIONS(3594), + [anon_sym_usize] = ACTIONS(3594), + [anon_sym_f32] = ACTIONS(3594), + [anon_sym_f64] = ACTIONS(3594), + [anon_sym_c_char] = ACTIONS(3594), + [anon_sym_c_schar] = ACTIONS(3594), + [anon_sym_c_uchar] = ACTIONS(3594), + [anon_sym_c_short] = ACTIONS(3594), + [anon_sym_c_ushort] = ACTIONS(3594), + [anon_sym_c_int] = ACTIONS(3594), + [anon_sym_c_uint] = ACTIONS(3594), + [anon_sym_c_long] = ACTIONS(3594), + [anon_sym_c_ulong] = ACTIONS(3594), + [anon_sym_c_longlong] = ACTIONS(3594), + [anon_sym_c_ulonglong] = ACTIONS(3594), + [anon_sym_c_float] = ACTIONS(3594), + [anon_sym_c_double] = ACTIONS(3594), + [anon_sym_c_longdouble] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_defer] = ACTIONS(3594), + [anon_sym_errdefer] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_else] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_expand] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_match] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_DOT] = ACTIONS(3592), + [anon_sym_true] = ACTIONS(3594), + [anon_sym_false] = ACTIONS(3594), + [sym_none] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [sym_sink] = ACTIONS(3594), + [sym_integer] = ACTIONS(3594), + [sym_float] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_multiline_string] = ACTIONS(3592), + [sym_character] = ACTIONS(3592), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3741), + [sym__newline] = ACTIONS(3592), }, [STATE(1621)] = { - [ts_builtin_sym_end] = ACTIONS(3745), - [sym_identifier] = ACTIONS(3747), - [anon_sym_import] = ACTIONS(3747), - [anon_sym_test] = ACTIONS(3747), - [anon_sym_hide] = ACTIONS(3747), - [anon_sym_func] = ACTIONS(3747), - [anon_sym_BANG] = ACTIONS(3745), - [anon_sym_struct] = ACTIONS(3747), - [anon_sym_LPAREN] = ACTIONS(3745), - [anon_sym_RPAREN] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_RBRACE] = ACTIONS(3745), - [anon_sym_DASH] = ACTIONS(3745), - [anon_sym_DOLLAR] = ACTIONS(3745), - [anon_sym_LBRACK] = ACTIONS(3745), - [anon_sym_void] = ACTIONS(3747), - [anon_sym_anyopaque] = ACTIONS(3747), - [anon_sym_bool] = ACTIONS(3747), - [anon_sym_int] = ACTIONS(3747), - [anon_sym_uint] = ACTIONS(3747), - [anon_sym_float] = ACTIONS(3747), - [anon_sym_range] = ACTIONS(3747), - [anon_sym_i8] = ACTIONS(3747), - [anon_sym_i16] = ACTIONS(3747), - [anon_sym_i32] = ACTIONS(3747), - [anon_sym_i64] = ACTIONS(3747), - [anon_sym_u8] = ACTIONS(3747), - [anon_sym_u16] = ACTIONS(3747), - [anon_sym_u32] = ACTIONS(3747), - [anon_sym_u64] = ACTIONS(3747), - [anon_sym_isize] = ACTIONS(3747), - [anon_sym_usize] = ACTIONS(3747), - [anon_sym_f32] = ACTIONS(3747), - [anon_sym_f64] = ACTIONS(3747), - [anon_sym_c_char] = ACTIONS(3747), - [anon_sym_c_schar] = ACTIONS(3747), - [anon_sym_c_uchar] = ACTIONS(3747), - [anon_sym_c_short] = ACTIONS(3747), - [anon_sym_c_ushort] = ACTIONS(3747), - [anon_sym_c_int] = ACTIONS(3747), - [anon_sym_c_uint] = ACTIONS(3747), - [anon_sym_c_long] = ACTIONS(3747), - [anon_sym_c_ulong] = ACTIONS(3747), - [anon_sym_c_longlong] = ACTIONS(3747), - [anon_sym_c_ulonglong] = ACTIONS(3747), - [anon_sym_c_float] = ACTIONS(3747), - [anon_sym_c_double] = ACTIONS(3747), - [anon_sym_c_longdouble] = ACTIONS(3747), - [anon_sym_return] = ACTIONS(3747), - [anon_sym_yield] = ACTIONS(3747), - [anon_sym_break] = ACTIONS(3747), - [anon_sym_continue] = ACTIONS(3747), - [anon_sym_defer] = ACTIONS(3747), - [anon_sym_errdefer] = ACTIONS(3747), - [anon_sym_if] = ACTIONS(3747), - [anon_sym_else] = ACTIONS(3747), - [anon_sym_while] = ACTIONS(3747), - [anon_sym_expand] = ACTIONS(3747), - [anon_sym_for] = ACTIONS(3747), - [anon_sym_match] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3745), - [anon_sym_TILDE] = ACTIONS(3745), - [anon_sym_try] = ACTIONS(3747), - [anon_sym_DOT] = ACTIONS(3745), - [anon_sym_true] = ACTIONS(3747), - [anon_sym_false] = ACTIONS(3747), - [sym_none] = ACTIONS(3747), - [sym_undefined] = ACTIONS(3747), - [sym_sink] = ACTIONS(3747), - [sym_integer] = ACTIONS(3747), - [sym_float] = ACTIONS(3745), - [anon_sym_DQUOTE] = ACTIONS(3745), - [sym_multiline_string] = ACTIONS(3745), - [sym_character] = ACTIONS(3745), + [ts_builtin_sym_end] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3598), + [anon_sym_import] = ACTIONS(3598), + [anon_sym_test] = ACTIONS(3598), + [anon_sym_hide] = ACTIONS(3598), + [anon_sym_func] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_RPAREN] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_DOLLAR] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3598), + [anon_sym_type] = ACTIONS(3598), + [anon_sym_anyopaque] = ACTIONS(3598), + [anon_sym_bool] = ACTIONS(3598), + [anon_sym_int] = ACTIONS(3598), + [anon_sym_uint] = ACTIONS(3598), + [anon_sym_float] = ACTIONS(3598), + [anon_sym_range] = ACTIONS(3598), + [anon_sym_i8] = ACTIONS(3598), + [anon_sym_i16] = ACTIONS(3598), + [anon_sym_i32] = ACTIONS(3598), + [anon_sym_i64] = ACTIONS(3598), + [anon_sym_u8] = ACTIONS(3598), + [anon_sym_u16] = ACTIONS(3598), + [anon_sym_u32] = ACTIONS(3598), + [anon_sym_u64] = ACTIONS(3598), + [anon_sym_isize] = ACTIONS(3598), + [anon_sym_usize] = ACTIONS(3598), + [anon_sym_f32] = ACTIONS(3598), + [anon_sym_f64] = ACTIONS(3598), + [anon_sym_c_char] = ACTIONS(3598), + [anon_sym_c_schar] = ACTIONS(3598), + [anon_sym_c_uchar] = ACTIONS(3598), + [anon_sym_c_short] = ACTIONS(3598), + [anon_sym_c_ushort] = ACTIONS(3598), + [anon_sym_c_int] = ACTIONS(3598), + [anon_sym_c_uint] = ACTIONS(3598), + [anon_sym_c_long] = ACTIONS(3598), + [anon_sym_c_ulong] = ACTIONS(3598), + [anon_sym_c_longlong] = ACTIONS(3598), + [anon_sym_c_ulonglong] = ACTIONS(3598), + [anon_sym_c_float] = ACTIONS(3598), + [anon_sym_c_double] = ACTIONS(3598), + [anon_sym_c_longdouble] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_break] = ACTIONS(3598), + [anon_sym_continue] = ACTIONS(3598), + [anon_sym_defer] = ACTIONS(3598), + [anon_sym_errdefer] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_else] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_expand] = ACTIONS(3598), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3596), + [anon_sym_true] = ACTIONS(3598), + [anon_sym_false] = ACTIONS(3598), + [sym_none] = ACTIONS(3598), + [sym_undefined] = ACTIONS(3598), + [sym_sink] = ACTIONS(3598), + [sym_integer] = ACTIONS(3598), + [sym_float] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [sym_multiline_string] = ACTIONS(3596), + [sym_character] = ACTIONS(3596), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3745), + [sym__newline] = ACTIONS(3596), }, [STATE(1622)] = { - [ts_builtin_sym_end] = ACTIONS(3749), - [sym_identifier] = ACTIONS(3751), - [anon_sym_import] = ACTIONS(3751), - [anon_sym_test] = ACTIONS(3751), - [anon_sym_hide] = ACTIONS(3751), - [anon_sym_func] = ACTIONS(3751), - [anon_sym_BANG] = ACTIONS(3749), - [anon_sym_struct] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3749), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3749), - [anon_sym_RBRACE] = ACTIONS(3749), - [anon_sym_DASH] = ACTIONS(3749), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_LBRACK] = ACTIONS(3749), - [anon_sym_void] = ACTIONS(3751), - [anon_sym_anyopaque] = ACTIONS(3751), - [anon_sym_bool] = ACTIONS(3751), - [anon_sym_int] = ACTIONS(3751), - [anon_sym_uint] = ACTIONS(3751), - [anon_sym_float] = ACTIONS(3751), - [anon_sym_range] = ACTIONS(3751), - [anon_sym_i8] = ACTIONS(3751), - [anon_sym_i16] = ACTIONS(3751), - [anon_sym_i32] = ACTIONS(3751), - [anon_sym_i64] = ACTIONS(3751), - [anon_sym_u8] = ACTIONS(3751), - [anon_sym_u16] = ACTIONS(3751), - [anon_sym_u32] = ACTIONS(3751), - [anon_sym_u64] = ACTIONS(3751), - [anon_sym_isize] = ACTIONS(3751), - [anon_sym_usize] = ACTIONS(3751), - [anon_sym_f32] = ACTIONS(3751), - [anon_sym_f64] = ACTIONS(3751), - [anon_sym_c_char] = ACTIONS(3751), - [anon_sym_c_schar] = ACTIONS(3751), - [anon_sym_c_uchar] = ACTIONS(3751), - [anon_sym_c_short] = ACTIONS(3751), - [anon_sym_c_ushort] = ACTIONS(3751), - [anon_sym_c_int] = ACTIONS(3751), - [anon_sym_c_uint] = ACTIONS(3751), - [anon_sym_c_long] = ACTIONS(3751), - [anon_sym_c_ulong] = ACTIONS(3751), - [anon_sym_c_longlong] = ACTIONS(3751), - [anon_sym_c_ulonglong] = ACTIONS(3751), - [anon_sym_c_float] = ACTIONS(3751), - [anon_sym_c_double] = ACTIONS(3751), - [anon_sym_c_longdouble] = ACTIONS(3751), - [anon_sym_return] = ACTIONS(3751), - [anon_sym_yield] = ACTIONS(3751), - [anon_sym_break] = ACTIONS(3751), - [anon_sym_continue] = ACTIONS(3751), - [anon_sym_defer] = ACTIONS(3751), - [anon_sym_errdefer] = ACTIONS(3751), - [anon_sym_if] = ACTIONS(3751), - [anon_sym_else] = ACTIONS(3751), - [anon_sym_while] = ACTIONS(3751), - [anon_sym_expand] = ACTIONS(3751), - [anon_sym_for] = ACTIONS(3751), - [anon_sym_match] = ACTIONS(3751), - [anon_sym_AMP] = ACTIONS(3749), - [anon_sym_TILDE] = ACTIONS(3749), - [anon_sym_try] = ACTIONS(3751), - [anon_sym_DOT] = ACTIONS(3749), - [anon_sym_true] = ACTIONS(3751), - [anon_sym_false] = ACTIONS(3751), - [sym_none] = ACTIONS(3751), - [sym_undefined] = ACTIONS(3751), - [sym_sink] = ACTIONS(3751), - [sym_integer] = ACTIONS(3751), - [sym_float] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3749), - [sym_multiline_string] = ACTIONS(3749), - [sym_character] = ACTIONS(3749), + [ts_builtin_sym_end] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3602), + [anon_sym_import] = ACTIONS(3602), + [anon_sym_test] = ACTIONS(3602), + [anon_sym_hide] = ACTIONS(3602), + [anon_sym_func] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_anyopaque] = ACTIONS(3602), + [anon_sym_bool] = ACTIONS(3602), + [anon_sym_int] = ACTIONS(3602), + [anon_sym_uint] = ACTIONS(3602), + [anon_sym_float] = ACTIONS(3602), + [anon_sym_range] = ACTIONS(3602), + [anon_sym_i8] = ACTIONS(3602), + [anon_sym_i16] = ACTIONS(3602), + [anon_sym_i32] = ACTIONS(3602), + [anon_sym_i64] = ACTIONS(3602), + [anon_sym_u8] = ACTIONS(3602), + [anon_sym_u16] = ACTIONS(3602), + [anon_sym_u32] = ACTIONS(3602), + [anon_sym_u64] = ACTIONS(3602), + [anon_sym_isize] = ACTIONS(3602), + [anon_sym_usize] = ACTIONS(3602), + [anon_sym_f32] = ACTIONS(3602), + [anon_sym_f64] = ACTIONS(3602), + [anon_sym_c_char] = ACTIONS(3602), + [anon_sym_c_schar] = ACTIONS(3602), + [anon_sym_c_uchar] = ACTIONS(3602), + [anon_sym_c_short] = ACTIONS(3602), + [anon_sym_c_ushort] = ACTIONS(3602), + [anon_sym_c_int] = ACTIONS(3602), + [anon_sym_c_uint] = ACTIONS(3602), + [anon_sym_c_long] = ACTIONS(3602), + [anon_sym_c_ulong] = ACTIONS(3602), + [anon_sym_c_longlong] = ACTIONS(3602), + [anon_sym_c_ulonglong] = ACTIONS(3602), + [anon_sym_c_float] = ACTIONS(3602), + [anon_sym_c_double] = ACTIONS(3602), + [anon_sym_c_longdouble] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_break] = ACTIONS(3602), + [anon_sym_continue] = ACTIONS(3602), + [anon_sym_defer] = ACTIONS(3602), + [anon_sym_errdefer] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_else] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_expand] = ACTIONS(3602), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3600), + [anon_sym_true] = ACTIONS(3602), + [anon_sym_false] = ACTIONS(3602), + [sym_none] = ACTIONS(3602), + [sym_undefined] = ACTIONS(3602), + [sym_sink] = ACTIONS(3602), + [sym_integer] = ACTIONS(3602), + [sym_float] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [sym_multiline_string] = ACTIONS(3600), + [sym_character] = ACTIONS(3600), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3749), + [sym__newline] = ACTIONS(3600), }, [STATE(1623)] = { - [ts_builtin_sym_end] = ACTIONS(3753), - [sym_identifier] = ACTIONS(3755), - [anon_sym_import] = ACTIONS(3755), - [anon_sym_test] = ACTIONS(3755), - [anon_sym_hide] = ACTIONS(3755), - [anon_sym_func] = ACTIONS(3755), - [anon_sym_BANG] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(3755), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_RPAREN] = ACTIONS(3753), - [anon_sym_LBRACE] = ACTIONS(3753), - [anon_sym_RBRACE] = ACTIONS(3753), - [anon_sym_DASH] = ACTIONS(3753), - [anon_sym_DOLLAR] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_void] = ACTIONS(3755), - [anon_sym_anyopaque] = ACTIONS(3755), - [anon_sym_bool] = ACTIONS(3755), - [anon_sym_int] = ACTIONS(3755), - [anon_sym_uint] = ACTIONS(3755), - [anon_sym_float] = ACTIONS(3755), - [anon_sym_range] = ACTIONS(3755), - [anon_sym_i8] = ACTIONS(3755), - [anon_sym_i16] = ACTIONS(3755), - [anon_sym_i32] = ACTIONS(3755), - [anon_sym_i64] = ACTIONS(3755), - [anon_sym_u8] = ACTIONS(3755), - [anon_sym_u16] = ACTIONS(3755), - [anon_sym_u32] = ACTIONS(3755), - [anon_sym_u64] = ACTIONS(3755), - [anon_sym_isize] = ACTIONS(3755), - [anon_sym_usize] = ACTIONS(3755), - [anon_sym_f32] = ACTIONS(3755), - [anon_sym_f64] = ACTIONS(3755), - [anon_sym_c_char] = ACTIONS(3755), - [anon_sym_c_schar] = ACTIONS(3755), - [anon_sym_c_uchar] = ACTIONS(3755), - [anon_sym_c_short] = ACTIONS(3755), - [anon_sym_c_ushort] = ACTIONS(3755), - [anon_sym_c_int] = ACTIONS(3755), - [anon_sym_c_uint] = ACTIONS(3755), - [anon_sym_c_long] = ACTIONS(3755), - [anon_sym_c_ulong] = ACTIONS(3755), - [anon_sym_c_longlong] = ACTIONS(3755), - [anon_sym_c_ulonglong] = ACTIONS(3755), - [anon_sym_c_float] = ACTIONS(3755), - [anon_sym_c_double] = ACTIONS(3755), - [anon_sym_c_longdouble] = ACTIONS(3755), - [anon_sym_return] = ACTIONS(3755), - [anon_sym_yield] = ACTIONS(3755), - [anon_sym_break] = ACTIONS(3755), - [anon_sym_continue] = ACTIONS(3755), - [anon_sym_defer] = ACTIONS(3755), - [anon_sym_errdefer] = ACTIONS(3755), - [anon_sym_if] = ACTIONS(3755), - [anon_sym_else] = ACTIONS(3755), - [anon_sym_while] = ACTIONS(3755), - [anon_sym_expand] = ACTIONS(3755), - [anon_sym_for] = ACTIONS(3755), - [anon_sym_match] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3753), - [anon_sym_TILDE] = ACTIONS(3753), - [anon_sym_try] = ACTIONS(3755), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_true] = ACTIONS(3755), - [anon_sym_false] = ACTIONS(3755), - [sym_none] = ACTIONS(3755), - [sym_undefined] = ACTIONS(3755), - [sym_sink] = ACTIONS(3755), - [sym_integer] = ACTIONS(3755), - [sym_float] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3753), - [sym_multiline_string] = ACTIONS(3753), - [sym_character] = ACTIONS(3753), + [ts_builtin_sym_end] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_test] = ACTIONS(3606), + [anon_sym_hide] = ACTIONS(3606), + [anon_sym_func] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_RPAREN] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_anyopaque] = ACTIONS(3606), + [anon_sym_bool] = ACTIONS(3606), + [anon_sym_int] = ACTIONS(3606), + [anon_sym_uint] = ACTIONS(3606), + [anon_sym_float] = ACTIONS(3606), + [anon_sym_range] = ACTIONS(3606), + [anon_sym_i8] = ACTIONS(3606), + [anon_sym_i16] = ACTIONS(3606), + [anon_sym_i32] = ACTIONS(3606), + [anon_sym_i64] = ACTIONS(3606), + [anon_sym_u8] = ACTIONS(3606), + [anon_sym_u16] = ACTIONS(3606), + [anon_sym_u32] = ACTIONS(3606), + [anon_sym_u64] = ACTIONS(3606), + [anon_sym_isize] = ACTIONS(3606), + [anon_sym_usize] = ACTIONS(3606), + [anon_sym_f32] = ACTIONS(3606), + [anon_sym_f64] = ACTIONS(3606), + [anon_sym_c_char] = ACTIONS(3606), + [anon_sym_c_schar] = ACTIONS(3606), + [anon_sym_c_uchar] = ACTIONS(3606), + [anon_sym_c_short] = ACTIONS(3606), + [anon_sym_c_ushort] = ACTIONS(3606), + [anon_sym_c_int] = ACTIONS(3606), + [anon_sym_c_uint] = ACTIONS(3606), + [anon_sym_c_long] = ACTIONS(3606), + [anon_sym_c_ulong] = ACTIONS(3606), + [anon_sym_c_longlong] = ACTIONS(3606), + [anon_sym_c_ulonglong] = ACTIONS(3606), + [anon_sym_c_float] = ACTIONS(3606), + [anon_sym_c_double] = ACTIONS(3606), + [anon_sym_c_longdouble] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_defer] = ACTIONS(3606), + [anon_sym_errdefer] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_expand] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_match] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_true] = ACTIONS(3606), + [anon_sym_false] = ACTIONS(3606), + [sym_none] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [sym_sink] = ACTIONS(3606), + [sym_integer] = ACTIONS(3606), + [sym_float] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [sym_multiline_string] = ACTIONS(3604), + [sym_character] = ACTIONS(3604), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3753), + [sym__newline] = ACTIONS(3604), }, [STATE(1624)] = { - [ts_builtin_sym_end] = ACTIONS(3757), - [sym_identifier] = ACTIONS(3759), - [anon_sym_import] = ACTIONS(3759), - [anon_sym_test] = ACTIONS(3759), - [anon_sym_hide] = ACTIONS(3759), - [anon_sym_func] = ACTIONS(3759), - [anon_sym_BANG] = ACTIONS(3757), - [anon_sym_struct] = ACTIONS(3759), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_RPAREN] = ACTIONS(3757), - [anon_sym_LBRACE] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3757), - [anon_sym_DOLLAR] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3757), - [anon_sym_void] = ACTIONS(3759), - [anon_sym_anyopaque] = ACTIONS(3759), - [anon_sym_bool] = ACTIONS(3759), - [anon_sym_int] = ACTIONS(3759), - [anon_sym_uint] = ACTIONS(3759), - [anon_sym_float] = ACTIONS(3759), - [anon_sym_range] = ACTIONS(3759), - [anon_sym_i8] = ACTIONS(3759), - [anon_sym_i16] = ACTIONS(3759), - [anon_sym_i32] = ACTIONS(3759), - [anon_sym_i64] = ACTIONS(3759), - [anon_sym_u8] = ACTIONS(3759), - [anon_sym_u16] = ACTIONS(3759), - [anon_sym_u32] = ACTIONS(3759), - [anon_sym_u64] = ACTIONS(3759), - [anon_sym_isize] = ACTIONS(3759), - [anon_sym_usize] = ACTIONS(3759), - [anon_sym_f32] = ACTIONS(3759), - [anon_sym_f64] = ACTIONS(3759), - [anon_sym_c_char] = ACTIONS(3759), - [anon_sym_c_schar] = ACTIONS(3759), - [anon_sym_c_uchar] = ACTIONS(3759), - [anon_sym_c_short] = ACTIONS(3759), - [anon_sym_c_ushort] = ACTIONS(3759), - [anon_sym_c_int] = ACTIONS(3759), - [anon_sym_c_uint] = ACTIONS(3759), - [anon_sym_c_long] = ACTIONS(3759), - [anon_sym_c_ulong] = ACTIONS(3759), - [anon_sym_c_longlong] = ACTIONS(3759), - [anon_sym_c_ulonglong] = ACTIONS(3759), - [anon_sym_c_float] = ACTIONS(3759), - [anon_sym_c_double] = ACTIONS(3759), - [anon_sym_c_longdouble] = ACTIONS(3759), - [anon_sym_return] = ACTIONS(3759), - [anon_sym_yield] = ACTIONS(3759), - [anon_sym_break] = ACTIONS(3759), - [anon_sym_continue] = ACTIONS(3759), - [anon_sym_defer] = ACTIONS(3759), - [anon_sym_errdefer] = ACTIONS(3759), - [anon_sym_if] = ACTIONS(3759), - [anon_sym_else] = ACTIONS(3759), - [anon_sym_while] = ACTIONS(3759), - [anon_sym_expand] = ACTIONS(3759), - [anon_sym_for] = ACTIONS(3759), - [anon_sym_match] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3757), - [anon_sym_TILDE] = ACTIONS(3757), - [anon_sym_try] = ACTIONS(3759), - [anon_sym_DOT] = ACTIONS(3757), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [sym_none] = ACTIONS(3759), - [sym_undefined] = ACTIONS(3759), - [sym_sink] = ACTIONS(3759), - [sym_integer] = ACTIONS(3759), - [sym_float] = ACTIONS(3757), - [anon_sym_DQUOTE] = ACTIONS(3757), - [sym_multiline_string] = ACTIONS(3757), - [sym_character] = ACTIONS(3757), + [ts_builtin_sym_end] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_test] = ACTIONS(3610), + [anon_sym_hide] = ACTIONS(3610), + [anon_sym_func] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_RPAREN] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_void] = ACTIONS(3610), + [anon_sym_type] = ACTIONS(3610), + [anon_sym_anyopaque] = ACTIONS(3610), + [anon_sym_bool] = ACTIONS(3610), + [anon_sym_int] = ACTIONS(3610), + [anon_sym_uint] = ACTIONS(3610), + [anon_sym_float] = ACTIONS(3610), + [anon_sym_range] = ACTIONS(3610), + [anon_sym_i8] = ACTIONS(3610), + [anon_sym_i16] = ACTIONS(3610), + [anon_sym_i32] = ACTIONS(3610), + [anon_sym_i64] = ACTIONS(3610), + [anon_sym_u8] = ACTIONS(3610), + [anon_sym_u16] = ACTIONS(3610), + [anon_sym_u32] = ACTIONS(3610), + [anon_sym_u64] = ACTIONS(3610), + [anon_sym_isize] = ACTIONS(3610), + [anon_sym_usize] = ACTIONS(3610), + [anon_sym_f32] = ACTIONS(3610), + [anon_sym_f64] = ACTIONS(3610), + [anon_sym_c_char] = ACTIONS(3610), + [anon_sym_c_schar] = ACTIONS(3610), + [anon_sym_c_uchar] = ACTIONS(3610), + [anon_sym_c_short] = ACTIONS(3610), + [anon_sym_c_ushort] = ACTIONS(3610), + [anon_sym_c_int] = ACTIONS(3610), + [anon_sym_c_uint] = ACTIONS(3610), + [anon_sym_c_long] = ACTIONS(3610), + [anon_sym_c_ulong] = ACTIONS(3610), + [anon_sym_c_longlong] = ACTIONS(3610), + [anon_sym_c_ulonglong] = ACTIONS(3610), + [anon_sym_c_float] = ACTIONS(3610), + [anon_sym_c_double] = ACTIONS(3610), + [anon_sym_c_longdouble] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_defer] = ACTIONS(3610), + [anon_sym_errdefer] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_expand] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_match] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3610), + [anon_sym_false] = ACTIONS(3610), + [sym_none] = ACTIONS(3610), + [sym_undefined] = ACTIONS(3610), + [sym_sink] = ACTIONS(3610), + [sym_integer] = ACTIONS(3610), + [sym_float] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [sym_multiline_string] = ACTIONS(3608), + [sym_character] = ACTIONS(3608), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3757), + [sym__newline] = ACTIONS(3608), }, [STATE(1625)] = { - [ts_builtin_sym_end] = ACTIONS(3761), - [sym_identifier] = ACTIONS(3763), - [anon_sym_import] = ACTIONS(3763), - [anon_sym_test] = ACTIONS(3763), - [anon_sym_hide] = ACTIONS(3763), - [anon_sym_func] = ACTIONS(3763), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_struct] = ACTIONS(3763), - [anon_sym_LPAREN] = ACTIONS(3761), - [anon_sym_RPAREN] = ACTIONS(3761), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3761), - [anon_sym_DOLLAR] = ACTIONS(3761), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_void] = ACTIONS(3763), - [anon_sym_anyopaque] = ACTIONS(3763), - [anon_sym_bool] = ACTIONS(3763), - [anon_sym_int] = ACTIONS(3763), - [anon_sym_uint] = ACTIONS(3763), - [anon_sym_float] = ACTIONS(3763), - [anon_sym_range] = ACTIONS(3763), - [anon_sym_i8] = ACTIONS(3763), - [anon_sym_i16] = ACTIONS(3763), - [anon_sym_i32] = ACTIONS(3763), - [anon_sym_i64] = ACTIONS(3763), - [anon_sym_u8] = ACTIONS(3763), - [anon_sym_u16] = ACTIONS(3763), - [anon_sym_u32] = ACTIONS(3763), - [anon_sym_u64] = ACTIONS(3763), - [anon_sym_isize] = ACTIONS(3763), - [anon_sym_usize] = ACTIONS(3763), - [anon_sym_f32] = ACTIONS(3763), - [anon_sym_f64] = ACTIONS(3763), - [anon_sym_c_char] = ACTIONS(3763), - [anon_sym_c_schar] = ACTIONS(3763), - [anon_sym_c_uchar] = ACTIONS(3763), - [anon_sym_c_short] = ACTIONS(3763), - [anon_sym_c_ushort] = ACTIONS(3763), - [anon_sym_c_int] = ACTIONS(3763), - [anon_sym_c_uint] = ACTIONS(3763), - [anon_sym_c_long] = ACTIONS(3763), - [anon_sym_c_ulong] = ACTIONS(3763), - [anon_sym_c_longlong] = ACTIONS(3763), - [anon_sym_c_ulonglong] = ACTIONS(3763), - [anon_sym_c_float] = ACTIONS(3763), - [anon_sym_c_double] = ACTIONS(3763), - [anon_sym_c_longdouble] = ACTIONS(3763), - [anon_sym_return] = ACTIONS(3763), - [anon_sym_yield] = ACTIONS(3763), - [anon_sym_break] = ACTIONS(3763), - [anon_sym_continue] = ACTIONS(3763), - [anon_sym_defer] = ACTIONS(3763), - [anon_sym_errdefer] = ACTIONS(3763), - [anon_sym_if] = ACTIONS(3763), - [anon_sym_else] = ACTIONS(3763), - [anon_sym_while] = ACTIONS(3763), - [anon_sym_expand] = ACTIONS(3763), - [anon_sym_for] = ACTIONS(3763), - [anon_sym_match] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_try] = ACTIONS(3763), - [anon_sym_DOT] = ACTIONS(3761), - [anon_sym_true] = ACTIONS(3763), - [anon_sym_false] = ACTIONS(3763), - [sym_none] = ACTIONS(3763), - [sym_undefined] = ACTIONS(3763), - [sym_sink] = ACTIONS(3763), - [sym_integer] = ACTIONS(3763), - [sym_float] = ACTIONS(3761), - [anon_sym_DQUOTE] = ACTIONS(3761), - [sym_multiline_string] = ACTIONS(3761), - [sym_character] = ACTIONS(3761), + [ts_builtin_sym_end] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_test] = ACTIONS(3614), + [anon_sym_hide] = ACTIONS(3614), + [anon_sym_func] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_RPAREN] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_anyopaque] = ACTIONS(3614), + [anon_sym_bool] = ACTIONS(3614), + [anon_sym_int] = ACTIONS(3614), + [anon_sym_uint] = ACTIONS(3614), + [anon_sym_float] = ACTIONS(3614), + [anon_sym_range] = ACTIONS(3614), + [anon_sym_i8] = ACTIONS(3614), + [anon_sym_i16] = ACTIONS(3614), + [anon_sym_i32] = ACTIONS(3614), + [anon_sym_i64] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3614), + [anon_sym_u16] = ACTIONS(3614), + [anon_sym_u32] = ACTIONS(3614), + [anon_sym_u64] = ACTIONS(3614), + [anon_sym_isize] = ACTIONS(3614), + [anon_sym_usize] = ACTIONS(3614), + [anon_sym_f32] = ACTIONS(3614), + [anon_sym_f64] = ACTIONS(3614), + [anon_sym_c_char] = ACTIONS(3614), + [anon_sym_c_schar] = ACTIONS(3614), + [anon_sym_c_uchar] = ACTIONS(3614), + [anon_sym_c_short] = ACTIONS(3614), + [anon_sym_c_ushort] = ACTIONS(3614), + [anon_sym_c_int] = ACTIONS(3614), + [anon_sym_c_uint] = ACTIONS(3614), + [anon_sym_c_long] = ACTIONS(3614), + [anon_sym_c_ulong] = ACTIONS(3614), + [anon_sym_c_longlong] = ACTIONS(3614), + [anon_sym_c_ulonglong] = ACTIONS(3614), + [anon_sym_c_float] = ACTIONS(3614), + [anon_sym_c_double] = ACTIONS(3614), + [anon_sym_c_longdouble] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_defer] = ACTIONS(3614), + [anon_sym_errdefer] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_expand] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_match] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_true] = ACTIONS(3614), + [anon_sym_false] = ACTIONS(3614), + [sym_none] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [sym_sink] = ACTIONS(3614), + [sym_integer] = ACTIONS(3614), + [sym_float] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_multiline_string] = ACTIONS(3612), + [sym_character] = ACTIONS(3612), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3761), + [sym__newline] = ACTIONS(3612), }, [STATE(1626)] = { - [ts_builtin_sym_end] = ACTIONS(3765), - [sym_identifier] = ACTIONS(3767), - [anon_sym_import] = ACTIONS(3767), - [anon_sym_test] = ACTIONS(3767), - [anon_sym_hide] = ACTIONS(3767), - [anon_sym_func] = ACTIONS(3767), - [anon_sym_BANG] = ACTIONS(3765), - [anon_sym_struct] = ACTIONS(3767), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3765), - [anon_sym_RBRACE] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_DOLLAR] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3765), - [anon_sym_void] = ACTIONS(3767), - [anon_sym_anyopaque] = ACTIONS(3767), - [anon_sym_bool] = ACTIONS(3767), - [anon_sym_int] = ACTIONS(3767), - [anon_sym_uint] = ACTIONS(3767), - [anon_sym_float] = ACTIONS(3767), - [anon_sym_range] = ACTIONS(3767), - [anon_sym_i8] = ACTIONS(3767), - [anon_sym_i16] = ACTIONS(3767), - [anon_sym_i32] = ACTIONS(3767), - [anon_sym_i64] = ACTIONS(3767), - [anon_sym_u8] = ACTIONS(3767), - [anon_sym_u16] = ACTIONS(3767), - [anon_sym_u32] = ACTIONS(3767), - [anon_sym_u64] = ACTIONS(3767), - [anon_sym_isize] = ACTIONS(3767), - [anon_sym_usize] = ACTIONS(3767), - [anon_sym_f32] = ACTIONS(3767), - [anon_sym_f64] = ACTIONS(3767), - [anon_sym_c_char] = ACTIONS(3767), - [anon_sym_c_schar] = ACTIONS(3767), - [anon_sym_c_uchar] = ACTIONS(3767), - [anon_sym_c_short] = ACTIONS(3767), - [anon_sym_c_ushort] = ACTIONS(3767), - [anon_sym_c_int] = ACTIONS(3767), - [anon_sym_c_uint] = ACTIONS(3767), - [anon_sym_c_long] = ACTIONS(3767), - [anon_sym_c_ulong] = ACTIONS(3767), - [anon_sym_c_longlong] = ACTIONS(3767), - [anon_sym_c_ulonglong] = ACTIONS(3767), - [anon_sym_c_float] = ACTIONS(3767), - [anon_sym_c_double] = ACTIONS(3767), - [anon_sym_c_longdouble] = ACTIONS(3767), - [anon_sym_return] = ACTIONS(3767), - [anon_sym_yield] = ACTIONS(3767), - [anon_sym_break] = ACTIONS(3767), - [anon_sym_continue] = ACTIONS(3767), - [anon_sym_defer] = ACTIONS(3767), - [anon_sym_errdefer] = ACTIONS(3767), - [anon_sym_if] = ACTIONS(3767), - [anon_sym_else] = ACTIONS(3767), - [anon_sym_while] = ACTIONS(3767), - [anon_sym_expand] = ACTIONS(3767), - [anon_sym_for] = ACTIONS(3767), - [anon_sym_match] = ACTIONS(3767), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_TILDE] = ACTIONS(3765), - [anon_sym_try] = ACTIONS(3767), - [anon_sym_DOT] = ACTIONS(3765), - [anon_sym_true] = ACTIONS(3767), - [anon_sym_false] = ACTIONS(3767), - [sym_none] = ACTIONS(3767), - [sym_undefined] = ACTIONS(3767), - [sym_sink] = ACTIONS(3767), - [sym_integer] = ACTIONS(3767), - [sym_float] = ACTIONS(3765), - [anon_sym_DQUOTE] = ACTIONS(3765), - [sym_multiline_string] = ACTIONS(3765), - [sym_character] = ACTIONS(3765), + [ts_builtin_sym_end] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_test] = ACTIONS(3618), + [anon_sym_hide] = ACTIONS(3618), + [anon_sym_func] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_anyopaque] = ACTIONS(3618), + [anon_sym_bool] = ACTIONS(3618), + [anon_sym_int] = ACTIONS(3618), + [anon_sym_uint] = ACTIONS(3618), + [anon_sym_float] = ACTIONS(3618), + [anon_sym_range] = ACTIONS(3618), + [anon_sym_i8] = ACTIONS(3618), + [anon_sym_i16] = ACTIONS(3618), + [anon_sym_i32] = ACTIONS(3618), + [anon_sym_i64] = ACTIONS(3618), + [anon_sym_u8] = ACTIONS(3618), + [anon_sym_u16] = ACTIONS(3618), + [anon_sym_u32] = ACTIONS(3618), + [anon_sym_u64] = ACTIONS(3618), + [anon_sym_isize] = ACTIONS(3618), + [anon_sym_usize] = ACTIONS(3618), + [anon_sym_f32] = ACTIONS(3618), + [anon_sym_f64] = ACTIONS(3618), + [anon_sym_c_char] = ACTIONS(3618), + [anon_sym_c_schar] = ACTIONS(3618), + [anon_sym_c_uchar] = ACTIONS(3618), + [anon_sym_c_short] = ACTIONS(3618), + [anon_sym_c_ushort] = ACTIONS(3618), + [anon_sym_c_int] = ACTIONS(3618), + [anon_sym_c_uint] = ACTIONS(3618), + [anon_sym_c_long] = ACTIONS(3618), + [anon_sym_c_ulong] = ACTIONS(3618), + [anon_sym_c_longlong] = ACTIONS(3618), + [anon_sym_c_ulonglong] = ACTIONS(3618), + [anon_sym_c_float] = ACTIONS(3618), + [anon_sym_c_double] = ACTIONS(3618), + [anon_sym_c_longdouble] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_defer] = ACTIONS(3618), + [anon_sym_errdefer] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_expand] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_match] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_true] = ACTIONS(3618), + [anon_sym_false] = ACTIONS(3618), + [sym_none] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [sym_sink] = ACTIONS(3618), + [sym_integer] = ACTIONS(3618), + [sym_float] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_multiline_string] = ACTIONS(3616), + [sym_character] = ACTIONS(3616), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3765), + [sym__newline] = ACTIONS(3616), }, [STATE(1627)] = { - [ts_builtin_sym_end] = ACTIONS(3769), - [sym_identifier] = ACTIONS(3771), - [anon_sym_import] = ACTIONS(3771), - [anon_sym_test] = ACTIONS(3771), - [anon_sym_hide] = ACTIONS(3771), - [anon_sym_func] = ACTIONS(3771), - [anon_sym_BANG] = ACTIONS(3769), - [anon_sym_struct] = ACTIONS(3771), - [anon_sym_LPAREN] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_LBRACE] = ACTIONS(3769), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_DASH] = ACTIONS(3769), - [anon_sym_DOLLAR] = ACTIONS(3769), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_void] = ACTIONS(3771), - [anon_sym_anyopaque] = ACTIONS(3771), - [anon_sym_bool] = ACTIONS(3771), - [anon_sym_int] = ACTIONS(3771), - [anon_sym_uint] = ACTIONS(3771), - [anon_sym_float] = ACTIONS(3771), - [anon_sym_range] = ACTIONS(3771), - [anon_sym_i8] = ACTIONS(3771), - [anon_sym_i16] = ACTIONS(3771), - [anon_sym_i32] = ACTIONS(3771), - [anon_sym_i64] = ACTIONS(3771), - [anon_sym_u8] = ACTIONS(3771), - [anon_sym_u16] = ACTIONS(3771), - [anon_sym_u32] = ACTIONS(3771), - [anon_sym_u64] = ACTIONS(3771), - [anon_sym_isize] = ACTIONS(3771), - [anon_sym_usize] = ACTIONS(3771), - [anon_sym_f32] = ACTIONS(3771), - [anon_sym_f64] = ACTIONS(3771), - [anon_sym_c_char] = ACTIONS(3771), - [anon_sym_c_schar] = ACTIONS(3771), - [anon_sym_c_uchar] = ACTIONS(3771), - [anon_sym_c_short] = ACTIONS(3771), - [anon_sym_c_ushort] = ACTIONS(3771), - [anon_sym_c_int] = ACTIONS(3771), - [anon_sym_c_uint] = ACTIONS(3771), - [anon_sym_c_long] = ACTIONS(3771), - [anon_sym_c_ulong] = ACTIONS(3771), - [anon_sym_c_longlong] = ACTIONS(3771), - [anon_sym_c_ulonglong] = ACTIONS(3771), - [anon_sym_c_float] = ACTIONS(3771), - [anon_sym_c_double] = ACTIONS(3771), - [anon_sym_c_longdouble] = ACTIONS(3771), - [anon_sym_return] = ACTIONS(3771), - [anon_sym_yield] = ACTIONS(3771), - [anon_sym_break] = ACTIONS(3771), - [anon_sym_continue] = ACTIONS(3771), - [anon_sym_defer] = ACTIONS(3771), - [anon_sym_errdefer] = ACTIONS(3771), - [anon_sym_if] = ACTIONS(3771), - [anon_sym_else] = ACTIONS(3771), - [anon_sym_while] = ACTIONS(3771), - [anon_sym_expand] = ACTIONS(3771), - [anon_sym_for] = ACTIONS(3771), - [anon_sym_match] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3769), - [anon_sym_TILDE] = ACTIONS(3769), - [anon_sym_try] = ACTIONS(3771), - [anon_sym_DOT] = ACTIONS(3769), - [anon_sym_true] = ACTIONS(3771), - [anon_sym_false] = ACTIONS(3771), - [sym_none] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [sym_sink] = ACTIONS(3771), - [sym_integer] = ACTIONS(3771), - [sym_float] = ACTIONS(3769), - [anon_sym_DQUOTE] = ACTIONS(3769), - [sym_multiline_string] = ACTIONS(3769), - [sym_character] = ACTIONS(3769), + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_test] = ACTIONS(3622), + [anon_sym_hide] = ACTIONS(3622), + [anon_sym_func] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_anyopaque] = ACTIONS(3622), + [anon_sym_bool] = ACTIONS(3622), + [anon_sym_int] = ACTIONS(3622), + [anon_sym_uint] = ACTIONS(3622), + [anon_sym_float] = ACTIONS(3622), + [anon_sym_range] = ACTIONS(3622), + [anon_sym_i8] = ACTIONS(3622), + [anon_sym_i16] = ACTIONS(3622), + [anon_sym_i32] = ACTIONS(3622), + [anon_sym_i64] = ACTIONS(3622), + [anon_sym_u8] = ACTIONS(3622), + [anon_sym_u16] = ACTIONS(3622), + [anon_sym_u32] = ACTIONS(3622), + [anon_sym_u64] = ACTIONS(3622), + [anon_sym_isize] = ACTIONS(3622), + [anon_sym_usize] = ACTIONS(3622), + [anon_sym_f32] = ACTIONS(3622), + [anon_sym_f64] = ACTIONS(3622), + [anon_sym_c_char] = ACTIONS(3622), + [anon_sym_c_schar] = ACTIONS(3622), + [anon_sym_c_uchar] = ACTIONS(3622), + [anon_sym_c_short] = ACTIONS(3622), + [anon_sym_c_ushort] = ACTIONS(3622), + [anon_sym_c_int] = ACTIONS(3622), + [anon_sym_c_uint] = ACTIONS(3622), + [anon_sym_c_long] = ACTIONS(3622), + [anon_sym_c_ulong] = ACTIONS(3622), + [anon_sym_c_longlong] = ACTIONS(3622), + [anon_sym_c_ulonglong] = ACTIONS(3622), + [anon_sym_c_float] = ACTIONS(3622), + [anon_sym_c_double] = ACTIONS(3622), + [anon_sym_c_longdouble] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_defer] = ACTIONS(3622), + [anon_sym_errdefer] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_expand] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_match] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_true] = ACTIONS(3622), + [anon_sym_false] = ACTIONS(3622), + [sym_none] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [sym_sink] = ACTIONS(3622), + [sym_integer] = ACTIONS(3622), + [sym_float] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_multiline_string] = ACTIONS(3620), + [sym_character] = ACTIONS(3620), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3769), + [sym__newline] = ACTIONS(3620), }, [STATE(1628)] = { - [ts_builtin_sym_end] = ACTIONS(3773), - [sym_identifier] = ACTIONS(3775), - [anon_sym_import] = ACTIONS(3775), - [anon_sym_test] = ACTIONS(3775), - [anon_sym_hide] = ACTIONS(3775), - [anon_sym_func] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3773), - [anon_sym_struct] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(3773), - [anon_sym_RPAREN] = ACTIONS(3773), - [anon_sym_LBRACE] = ACTIONS(3773), - [anon_sym_RBRACE] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_DOLLAR] = ACTIONS(3773), - [anon_sym_LBRACK] = ACTIONS(3773), - [anon_sym_void] = ACTIONS(3775), - [anon_sym_anyopaque] = ACTIONS(3775), - [anon_sym_bool] = ACTIONS(3775), - [anon_sym_int] = ACTIONS(3775), - [anon_sym_uint] = ACTIONS(3775), - [anon_sym_float] = ACTIONS(3775), - [anon_sym_range] = ACTIONS(3775), - [anon_sym_i8] = ACTIONS(3775), - [anon_sym_i16] = ACTIONS(3775), - [anon_sym_i32] = ACTIONS(3775), - [anon_sym_i64] = ACTIONS(3775), - [anon_sym_u8] = ACTIONS(3775), - [anon_sym_u16] = ACTIONS(3775), - [anon_sym_u32] = ACTIONS(3775), - [anon_sym_u64] = ACTIONS(3775), - [anon_sym_isize] = ACTIONS(3775), - [anon_sym_usize] = ACTIONS(3775), - [anon_sym_f32] = ACTIONS(3775), - [anon_sym_f64] = ACTIONS(3775), - [anon_sym_c_char] = ACTIONS(3775), - [anon_sym_c_schar] = ACTIONS(3775), - [anon_sym_c_uchar] = ACTIONS(3775), - [anon_sym_c_short] = ACTIONS(3775), - [anon_sym_c_ushort] = ACTIONS(3775), - [anon_sym_c_int] = ACTIONS(3775), - [anon_sym_c_uint] = ACTIONS(3775), - [anon_sym_c_long] = ACTIONS(3775), - [anon_sym_c_ulong] = ACTIONS(3775), - [anon_sym_c_longlong] = ACTIONS(3775), - [anon_sym_c_ulonglong] = ACTIONS(3775), - [anon_sym_c_float] = ACTIONS(3775), - [anon_sym_c_double] = ACTIONS(3775), - [anon_sym_c_longdouble] = ACTIONS(3775), - [anon_sym_return] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_break] = ACTIONS(3775), - [anon_sym_continue] = ACTIONS(3775), - [anon_sym_defer] = ACTIONS(3775), - [anon_sym_errdefer] = ACTIONS(3775), - [anon_sym_if] = ACTIONS(3775), - [anon_sym_else] = ACTIONS(3775), - [anon_sym_while] = ACTIONS(3775), - [anon_sym_expand] = ACTIONS(3775), - [anon_sym_for] = ACTIONS(3775), - [anon_sym_match] = ACTIONS(3775), - [anon_sym_AMP] = ACTIONS(3773), - [anon_sym_TILDE] = ACTIONS(3773), - [anon_sym_try] = ACTIONS(3775), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_true] = ACTIONS(3775), - [anon_sym_false] = ACTIONS(3775), - [sym_none] = ACTIONS(3775), - [sym_undefined] = ACTIONS(3775), - [sym_sink] = ACTIONS(3775), - [sym_integer] = ACTIONS(3775), - [sym_float] = ACTIONS(3773), - [anon_sym_DQUOTE] = ACTIONS(3773), - [sym_multiline_string] = ACTIONS(3773), - [sym_character] = ACTIONS(3773), + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_test] = ACTIONS(3626), + [anon_sym_hide] = ACTIONS(3626), + [anon_sym_func] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_RPAREN] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_anyopaque] = ACTIONS(3626), + [anon_sym_bool] = ACTIONS(3626), + [anon_sym_int] = ACTIONS(3626), + [anon_sym_uint] = ACTIONS(3626), + [anon_sym_float] = ACTIONS(3626), + [anon_sym_range] = ACTIONS(3626), + [anon_sym_i8] = ACTIONS(3626), + [anon_sym_i16] = ACTIONS(3626), + [anon_sym_i32] = ACTIONS(3626), + [anon_sym_i64] = ACTIONS(3626), + [anon_sym_u8] = ACTIONS(3626), + [anon_sym_u16] = ACTIONS(3626), + [anon_sym_u32] = ACTIONS(3626), + [anon_sym_u64] = ACTIONS(3626), + [anon_sym_isize] = ACTIONS(3626), + [anon_sym_usize] = ACTIONS(3626), + [anon_sym_f32] = ACTIONS(3626), + [anon_sym_f64] = ACTIONS(3626), + [anon_sym_c_char] = ACTIONS(3626), + [anon_sym_c_schar] = ACTIONS(3626), + [anon_sym_c_uchar] = ACTIONS(3626), + [anon_sym_c_short] = ACTIONS(3626), + [anon_sym_c_ushort] = ACTIONS(3626), + [anon_sym_c_int] = ACTIONS(3626), + [anon_sym_c_uint] = ACTIONS(3626), + [anon_sym_c_long] = ACTIONS(3626), + [anon_sym_c_ulong] = ACTIONS(3626), + [anon_sym_c_longlong] = ACTIONS(3626), + [anon_sym_c_ulonglong] = ACTIONS(3626), + [anon_sym_c_float] = ACTIONS(3626), + [anon_sym_c_double] = ACTIONS(3626), + [anon_sym_c_longdouble] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_defer] = ACTIONS(3626), + [anon_sym_errdefer] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_expand] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_match] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_true] = ACTIONS(3626), + [anon_sym_false] = ACTIONS(3626), + [sym_none] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [sym_sink] = ACTIONS(3626), + [sym_integer] = ACTIONS(3626), + [sym_float] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_multiline_string] = ACTIONS(3624), + [sym_character] = ACTIONS(3624), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3773), + [sym__newline] = ACTIONS(3624), }, [STATE(1629)] = { - [ts_builtin_sym_end] = ACTIONS(3777), - [sym_identifier] = ACTIONS(3779), - [anon_sym_import] = ACTIONS(3779), - [anon_sym_test] = ACTIONS(3779), - [anon_sym_hide] = ACTIONS(3779), - [anon_sym_func] = ACTIONS(3779), - [anon_sym_BANG] = ACTIONS(3777), - [anon_sym_struct] = ACTIONS(3779), - [anon_sym_LPAREN] = ACTIONS(3777), - [anon_sym_RPAREN] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(3777), - [anon_sym_RBRACE] = ACTIONS(3777), - [anon_sym_DASH] = ACTIONS(3777), - [anon_sym_DOLLAR] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(3777), - [anon_sym_void] = ACTIONS(3779), - [anon_sym_anyopaque] = ACTIONS(3779), - [anon_sym_bool] = ACTIONS(3779), - [anon_sym_int] = ACTIONS(3779), - [anon_sym_uint] = ACTIONS(3779), - [anon_sym_float] = ACTIONS(3779), - [anon_sym_range] = ACTIONS(3779), - [anon_sym_i8] = ACTIONS(3779), - [anon_sym_i16] = ACTIONS(3779), - [anon_sym_i32] = ACTIONS(3779), - [anon_sym_i64] = ACTIONS(3779), - [anon_sym_u8] = ACTIONS(3779), - [anon_sym_u16] = ACTIONS(3779), - [anon_sym_u32] = ACTIONS(3779), - [anon_sym_u64] = ACTIONS(3779), - [anon_sym_isize] = ACTIONS(3779), - [anon_sym_usize] = ACTIONS(3779), - [anon_sym_f32] = ACTIONS(3779), - [anon_sym_f64] = ACTIONS(3779), - [anon_sym_c_char] = ACTIONS(3779), - [anon_sym_c_schar] = ACTIONS(3779), - [anon_sym_c_uchar] = ACTIONS(3779), - [anon_sym_c_short] = ACTIONS(3779), - [anon_sym_c_ushort] = ACTIONS(3779), - [anon_sym_c_int] = ACTIONS(3779), - [anon_sym_c_uint] = ACTIONS(3779), - [anon_sym_c_long] = ACTIONS(3779), - [anon_sym_c_ulong] = ACTIONS(3779), - [anon_sym_c_longlong] = ACTIONS(3779), - [anon_sym_c_ulonglong] = ACTIONS(3779), - [anon_sym_c_float] = ACTIONS(3779), - [anon_sym_c_double] = ACTIONS(3779), - [anon_sym_c_longdouble] = ACTIONS(3779), - [anon_sym_return] = ACTIONS(3779), - [anon_sym_yield] = ACTIONS(3779), - [anon_sym_break] = ACTIONS(3779), - [anon_sym_continue] = ACTIONS(3779), - [anon_sym_defer] = ACTIONS(3779), - [anon_sym_errdefer] = ACTIONS(3779), - [anon_sym_if] = ACTIONS(3779), - [anon_sym_else] = ACTIONS(3779), - [anon_sym_while] = ACTIONS(3779), - [anon_sym_expand] = ACTIONS(3779), - [anon_sym_for] = ACTIONS(3779), - [anon_sym_match] = ACTIONS(3779), - [anon_sym_AMP] = ACTIONS(3777), - [anon_sym_TILDE] = ACTIONS(3777), - [anon_sym_try] = ACTIONS(3779), - [anon_sym_DOT] = ACTIONS(3777), - [anon_sym_true] = ACTIONS(3779), - [anon_sym_false] = ACTIONS(3779), - [sym_none] = ACTIONS(3779), - [sym_undefined] = ACTIONS(3779), - [sym_sink] = ACTIONS(3779), - [sym_integer] = ACTIONS(3779), - [sym_float] = ACTIONS(3777), - [anon_sym_DQUOTE] = ACTIONS(3777), - [sym_multiline_string] = ACTIONS(3777), - [sym_character] = ACTIONS(3777), + [ts_builtin_sym_end] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_test] = ACTIONS(3630), + [anon_sym_hide] = ACTIONS(3630), + [anon_sym_func] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_RPAREN] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_DOLLAR] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_anyopaque] = ACTIONS(3630), + [anon_sym_bool] = ACTIONS(3630), + [anon_sym_int] = ACTIONS(3630), + [anon_sym_uint] = ACTIONS(3630), + [anon_sym_float] = ACTIONS(3630), + [anon_sym_range] = ACTIONS(3630), + [anon_sym_i8] = ACTIONS(3630), + [anon_sym_i16] = ACTIONS(3630), + [anon_sym_i32] = ACTIONS(3630), + [anon_sym_i64] = ACTIONS(3630), + [anon_sym_u8] = ACTIONS(3630), + [anon_sym_u16] = ACTIONS(3630), + [anon_sym_u32] = ACTIONS(3630), + [anon_sym_u64] = ACTIONS(3630), + [anon_sym_isize] = ACTIONS(3630), + [anon_sym_usize] = ACTIONS(3630), + [anon_sym_f32] = ACTIONS(3630), + [anon_sym_f64] = ACTIONS(3630), + [anon_sym_c_char] = ACTIONS(3630), + [anon_sym_c_schar] = ACTIONS(3630), + [anon_sym_c_uchar] = ACTIONS(3630), + [anon_sym_c_short] = ACTIONS(3630), + [anon_sym_c_ushort] = ACTIONS(3630), + [anon_sym_c_int] = ACTIONS(3630), + [anon_sym_c_uint] = ACTIONS(3630), + [anon_sym_c_long] = ACTIONS(3630), + [anon_sym_c_ulong] = ACTIONS(3630), + [anon_sym_c_longlong] = ACTIONS(3630), + [anon_sym_c_ulonglong] = ACTIONS(3630), + [anon_sym_c_float] = ACTIONS(3630), + [anon_sym_c_double] = ACTIONS(3630), + [anon_sym_c_longdouble] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_defer] = ACTIONS(3630), + [anon_sym_errdefer] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_expand] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_match] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_true] = ACTIONS(3630), + [anon_sym_false] = ACTIONS(3630), + [sym_none] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [sym_sink] = ACTIONS(3630), + [sym_integer] = ACTIONS(3630), + [sym_float] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_multiline_string] = ACTIONS(3628), + [sym_character] = ACTIONS(3628), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3777), + [sym__newline] = ACTIONS(3628), }, [STATE(1630)] = { - [ts_builtin_sym_end] = ACTIONS(3781), - [sym_identifier] = ACTIONS(3783), - [anon_sym_import] = ACTIONS(3783), - [anon_sym_test] = ACTIONS(3783), - [anon_sym_hide] = ACTIONS(3783), - [anon_sym_func] = ACTIONS(3783), - [anon_sym_BANG] = ACTIONS(3781), - [anon_sym_struct] = ACTIONS(3783), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_RPAREN] = ACTIONS(3781), - [anon_sym_LBRACE] = ACTIONS(3781), - [anon_sym_RBRACE] = ACTIONS(3781), - [anon_sym_DASH] = ACTIONS(3781), - [anon_sym_DOLLAR] = ACTIONS(3781), - [anon_sym_LBRACK] = ACTIONS(3781), - [anon_sym_void] = ACTIONS(3783), - [anon_sym_anyopaque] = ACTIONS(3783), - [anon_sym_bool] = ACTIONS(3783), - [anon_sym_int] = ACTIONS(3783), - [anon_sym_uint] = ACTIONS(3783), - [anon_sym_float] = ACTIONS(3783), - [anon_sym_range] = ACTIONS(3783), - [anon_sym_i8] = ACTIONS(3783), - [anon_sym_i16] = ACTIONS(3783), - [anon_sym_i32] = ACTIONS(3783), - [anon_sym_i64] = ACTIONS(3783), - [anon_sym_u8] = ACTIONS(3783), - [anon_sym_u16] = ACTIONS(3783), - [anon_sym_u32] = ACTIONS(3783), - [anon_sym_u64] = ACTIONS(3783), - [anon_sym_isize] = ACTIONS(3783), - [anon_sym_usize] = ACTIONS(3783), - [anon_sym_f32] = ACTIONS(3783), - [anon_sym_f64] = ACTIONS(3783), - [anon_sym_c_char] = ACTIONS(3783), - [anon_sym_c_schar] = ACTIONS(3783), - [anon_sym_c_uchar] = ACTIONS(3783), - [anon_sym_c_short] = ACTIONS(3783), - [anon_sym_c_ushort] = ACTIONS(3783), - [anon_sym_c_int] = ACTIONS(3783), - [anon_sym_c_uint] = ACTIONS(3783), - [anon_sym_c_long] = ACTIONS(3783), - [anon_sym_c_ulong] = ACTIONS(3783), - [anon_sym_c_longlong] = ACTIONS(3783), - [anon_sym_c_ulonglong] = ACTIONS(3783), - [anon_sym_c_float] = ACTIONS(3783), - [anon_sym_c_double] = ACTIONS(3783), - [anon_sym_c_longdouble] = ACTIONS(3783), - [anon_sym_return] = ACTIONS(3783), - [anon_sym_yield] = ACTIONS(3783), - [anon_sym_break] = ACTIONS(3783), - [anon_sym_continue] = ACTIONS(3783), - [anon_sym_defer] = ACTIONS(3783), - [anon_sym_errdefer] = ACTIONS(3783), - [anon_sym_if] = ACTIONS(3783), - [anon_sym_else] = ACTIONS(3783), - [anon_sym_while] = ACTIONS(3783), - [anon_sym_expand] = ACTIONS(3783), - [anon_sym_for] = ACTIONS(3783), - [anon_sym_match] = ACTIONS(3783), - [anon_sym_AMP] = ACTIONS(3781), - [anon_sym_TILDE] = ACTIONS(3781), - [anon_sym_try] = ACTIONS(3783), - [anon_sym_DOT] = ACTIONS(3781), - [anon_sym_true] = ACTIONS(3783), - [anon_sym_false] = ACTIONS(3783), - [sym_none] = ACTIONS(3783), - [sym_undefined] = ACTIONS(3783), - [sym_sink] = ACTIONS(3783), - [sym_integer] = ACTIONS(3783), - [sym_float] = ACTIONS(3781), - [anon_sym_DQUOTE] = ACTIONS(3781), - [sym_multiline_string] = ACTIONS(3781), - [sym_character] = ACTIONS(3781), + [ts_builtin_sym_end] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_test] = ACTIONS(3634), + [anon_sym_hide] = ACTIONS(3634), + [anon_sym_func] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_RPAREN] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_anyopaque] = ACTIONS(3634), + [anon_sym_bool] = ACTIONS(3634), + [anon_sym_int] = ACTIONS(3634), + [anon_sym_uint] = ACTIONS(3634), + [anon_sym_float] = ACTIONS(3634), + [anon_sym_range] = ACTIONS(3634), + [anon_sym_i8] = ACTIONS(3634), + [anon_sym_i16] = ACTIONS(3634), + [anon_sym_i32] = ACTIONS(3634), + [anon_sym_i64] = ACTIONS(3634), + [anon_sym_u8] = ACTIONS(3634), + [anon_sym_u16] = ACTIONS(3634), + [anon_sym_u32] = ACTIONS(3634), + [anon_sym_u64] = ACTIONS(3634), + [anon_sym_isize] = ACTIONS(3634), + [anon_sym_usize] = ACTIONS(3634), + [anon_sym_f32] = ACTIONS(3634), + [anon_sym_f64] = ACTIONS(3634), + [anon_sym_c_char] = ACTIONS(3634), + [anon_sym_c_schar] = ACTIONS(3634), + [anon_sym_c_uchar] = ACTIONS(3634), + [anon_sym_c_short] = ACTIONS(3634), + [anon_sym_c_ushort] = ACTIONS(3634), + [anon_sym_c_int] = ACTIONS(3634), + [anon_sym_c_uint] = ACTIONS(3634), + [anon_sym_c_long] = ACTIONS(3634), + [anon_sym_c_ulong] = ACTIONS(3634), + [anon_sym_c_longlong] = ACTIONS(3634), + [anon_sym_c_ulonglong] = ACTIONS(3634), + [anon_sym_c_float] = ACTIONS(3634), + [anon_sym_c_double] = ACTIONS(3634), + [anon_sym_c_longdouble] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_defer] = ACTIONS(3634), + [anon_sym_errdefer] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_expand] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_true] = ACTIONS(3634), + [anon_sym_false] = ACTIONS(3634), + [sym_none] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [sym_sink] = ACTIONS(3634), + [sym_integer] = ACTIONS(3634), + [sym_float] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_multiline_string] = ACTIONS(3632), + [sym_character] = ACTIONS(3632), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3781), + [sym__newline] = ACTIONS(3632), }, [STATE(1631)] = { - [ts_builtin_sym_end] = ACTIONS(3785), - [sym_identifier] = ACTIONS(3787), - [anon_sym_import] = ACTIONS(3787), - [anon_sym_test] = ACTIONS(3787), - [anon_sym_hide] = ACTIONS(3787), - [anon_sym_func] = ACTIONS(3787), - [anon_sym_BANG] = ACTIONS(3785), - [anon_sym_struct] = ACTIONS(3787), - [anon_sym_LPAREN] = ACTIONS(3785), - [anon_sym_RPAREN] = ACTIONS(3785), - [anon_sym_LBRACE] = ACTIONS(3785), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_DOLLAR] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3785), - [anon_sym_void] = ACTIONS(3787), - [anon_sym_anyopaque] = ACTIONS(3787), - [anon_sym_bool] = ACTIONS(3787), - [anon_sym_int] = ACTIONS(3787), - [anon_sym_uint] = ACTIONS(3787), - [anon_sym_float] = ACTIONS(3787), - [anon_sym_range] = ACTIONS(3787), - [anon_sym_i8] = ACTIONS(3787), - [anon_sym_i16] = ACTIONS(3787), - [anon_sym_i32] = ACTIONS(3787), - [anon_sym_i64] = ACTIONS(3787), - [anon_sym_u8] = ACTIONS(3787), - [anon_sym_u16] = ACTIONS(3787), - [anon_sym_u32] = ACTIONS(3787), - [anon_sym_u64] = ACTIONS(3787), - [anon_sym_isize] = ACTIONS(3787), - [anon_sym_usize] = ACTIONS(3787), - [anon_sym_f32] = ACTIONS(3787), - [anon_sym_f64] = ACTIONS(3787), - [anon_sym_c_char] = ACTIONS(3787), - [anon_sym_c_schar] = ACTIONS(3787), - [anon_sym_c_uchar] = ACTIONS(3787), - [anon_sym_c_short] = ACTIONS(3787), - [anon_sym_c_ushort] = ACTIONS(3787), - [anon_sym_c_int] = ACTIONS(3787), - [anon_sym_c_uint] = ACTIONS(3787), - [anon_sym_c_long] = ACTIONS(3787), - [anon_sym_c_ulong] = ACTIONS(3787), - [anon_sym_c_longlong] = ACTIONS(3787), - [anon_sym_c_ulonglong] = ACTIONS(3787), - [anon_sym_c_float] = ACTIONS(3787), - [anon_sym_c_double] = ACTIONS(3787), - [anon_sym_c_longdouble] = ACTIONS(3787), - [anon_sym_return] = ACTIONS(3787), - [anon_sym_yield] = ACTIONS(3787), - [anon_sym_break] = ACTIONS(3787), - [anon_sym_continue] = ACTIONS(3787), - [anon_sym_defer] = ACTIONS(3787), - [anon_sym_errdefer] = ACTIONS(3787), - [anon_sym_if] = ACTIONS(3787), - [anon_sym_else] = ACTIONS(3787), - [anon_sym_while] = ACTIONS(3787), - [anon_sym_expand] = ACTIONS(3787), - [anon_sym_for] = ACTIONS(3787), - [anon_sym_match] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(3785), - [anon_sym_TILDE] = ACTIONS(3785), - [anon_sym_try] = ACTIONS(3787), - [anon_sym_DOT] = ACTIONS(3785), - [anon_sym_true] = ACTIONS(3787), - [anon_sym_false] = ACTIONS(3787), - [sym_none] = ACTIONS(3787), - [sym_undefined] = ACTIONS(3787), - [sym_sink] = ACTIONS(3787), - [sym_integer] = ACTIONS(3787), - [sym_float] = ACTIONS(3785), - [anon_sym_DQUOTE] = ACTIONS(3785), - [sym_multiline_string] = ACTIONS(3785), - [sym_character] = ACTIONS(3785), + [ts_builtin_sym_end] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_test] = ACTIONS(3638), + [anon_sym_hide] = ACTIONS(3638), + [anon_sym_func] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_DOLLAR] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_anyopaque] = ACTIONS(3638), + [anon_sym_bool] = ACTIONS(3638), + [anon_sym_int] = ACTIONS(3638), + [anon_sym_uint] = ACTIONS(3638), + [anon_sym_float] = ACTIONS(3638), + [anon_sym_range] = ACTIONS(3638), + [anon_sym_i8] = ACTIONS(3638), + [anon_sym_i16] = ACTIONS(3638), + [anon_sym_i32] = ACTIONS(3638), + [anon_sym_i64] = ACTIONS(3638), + [anon_sym_u8] = ACTIONS(3638), + [anon_sym_u16] = ACTIONS(3638), + [anon_sym_u32] = ACTIONS(3638), + [anon_sym_u64] = ACTIONS(3638), + [anon_sym_isize] = ACTIONS(3638), + [anon_sym_usize] = ACTIONS(3638), + [anon_sym_f32] = ACTIONS(3638), + [anon_sym_f64] = ACTIONS(3638), + [anon_sym_c_char] = ACTIONS(3638), + [anon_sym_c_schar] = ACTIONS(3638), + [anon_sym_c_uchar] = ACTIONS(3638), + [anon_sym_c_short] = ACTIONS(3638), + [anon_sym_c_ushort] = ACTIONS(3638), + [anon_sym_c_int] = ACTIONS(3638), + [anon_sym_c_uint] = ACTIONS(3638), + [anon_sym_c_long] = ACTIONS(3638), + [anon_sym_c_ulong] = ACTIONS(3638), + [anon_sym_c_longlong] = ACTIONS(3638), + [anon_sym_c_ulonglong] = ACTIONS(3638), + [anon_sym_c_float] = ACTIONS(3638), + [anon_sym_c_double] = ACTIONS(3638), + [anon_sym_c_longdouble] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_defer] = ACTIONS(3638), + [anon_sym_errdefer] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_expand] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3636), + [anon_sym_true] = ACTIONS(3638), + [anon_sym_false] = ACTIONS(3638), + [sym_none] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [sym_sink] = ACTIONS(3638), + [sym_integer] = ACTIONS(3638), + [sym_float] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_multiline_string] = ACTIONS(3636), + [sym_character] = ACTIONS(3636), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3785), + [sym__newline] = ACTIONS(3636), }, [STATE(1632)] = { - [ts_builtin_sym_end] = ACTIONS(3789), - [sym_identifier] = ACTIONS(3791), - [anon_sym_import] = ACTIONS(3791), - [anon_sym_test] = ACTIONS(3791), - [anon_sym_hide] = ACTIONS(3791), - [anon_sym_func] = ACTIONS(3791), - [anon_sym_BANG] = ACTIONS(3789), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(3789), - [anon_sym_RPAREN] = ACTIONS(3789), - [anon_sym_LBRACE] = ACTIONS(3789), - [anon_sym_RBRACE] = ACTIONS(3789), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_DOLLAR] = ACTIONS(3789), - [anon_sym_LBRACK] = ACTIONS(3789), - [anon_sym_void] = ACTIONS(3791), - [anon_sym_anyopaque] = ACTIONS(3791), - [anon_sym_bool] = ACTIONS(3791), - [anon_sym_int] = ACTIONS(3791), - [anon_sym_uint] = ACTIONS(3791), - [anon_sym_float] = ACTIONS(3791), - [anon_sym_range] = ACTIONS(3791), - [anon_sym_i8] = ACTIONS(3791), - [anon_sym_i16] = ACTIONS(3791), - [anon_sym_i32] = ACTIONS(3791), - [anon_sym_i64] = ACTIONS(3791), - [anon_sym_u8] = ACTIONS(3791), - [anon_sym_u16] = ACTIONS(3791), - [anon_sym_u32] = ACTIONS(3791), - [anon_sym_u64] = ACTIONS(3791), - [anon_sym_isize] = ACTIONS(3791), - [anon_sym_usize] = ACTIONS(3791), - [anon_sym_f32] = ACTIONS(3791), - [anon_sym_f64] = ACTIONS(3791), - [anon_sym_c_char] = ACTIONS(3791), - [anon_sym_c_schar] = ACTIONS(3791), - [anon_sym_c_uchar] = ACTIONS(3791), - [anon_sym_c_short] = ACTIONS(3791), - [anon_sym_c_ushort] = ACTIONS(3791), - [anon_sym_c_int] = ACTIONS(3791), - [anon_sym_c_uint] = ACTIONS(3791), - [anon_sym_c_long] = ACTIONS(3791), - [anon_sym_c_ulong] = ACTIONS(3791), - [anon_sym_c_longlong] = ACTIONS(3791), - [anon_sym_c_ulonglong] = ACTIONS(3791), - [anon_sym_c_float] = ACTIONS(3791), - [anon_sym_c_double] = ACTIONS(3791), - [anon_sym_c_longdouble] = ACTIONS(3791), - [anon_sym_return] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_break] = ACTIONS(3791), - [anon_sym_continue] = ACTIONS(3791), - [anon_sym_defer] = ACTIONS(3791), - [anon_sym_errdefer] = ACTIONS(3791), - [anon_sym_if] = ACTIONS(3791), - [anon_sym_else] = ACTIONS(3791), - [anon_sym_while] = ACTIONS(3791), - [anon_sym_expand] = ACTIONS(3791), - [anon_sym_for] = ACTIONS(3791), - [anon_sym_match] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3789), - [anon_sym_TILDE] = ACTIONS(3789), - [anon_sym_try] = ACTIONS(3791), - [anon_sym_DOT] = ACTIONS(3789), - [anon_sym_true] = ACTIONS(3791), - [anon_sym_false] = ACTIONS(3791), - [sym_none] = ACTIONS(3791), - [sym_undefined] = ACTIONS(3791), - [sym_sink] = ACTIONS(3791), - [sym_integer] = ACTIONS(3791), - [sym_float] = ACTIONS(3789), - [anon_sym_DQUOTE] = ACTIONS(3789), - [sym_multiline_string] = ACTIONS(3789), - [sym_character] = ACTIONS(3789), + [ts_builtin_sym_end] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_test] = ACTIONS(3642), + [anon_sym_hide] = ACTIONS(3642), + [anon_sym_func] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_anyopaque] = ACTIONS(3642), + [anon_sym_bool] = ACTIONS(3642), + [anon_sym_int] = ACTIONS(3642), + [anon_sym_uint] = ACTIONS(3642), + [anon_sym_float] = ACTIONS(3642), + [anon_sym_range] = ACTIONS(3642), + [anon_sym_i8] = ACTIONS(3642), + [anon_sym_i16] = ACTIONS(3642), + [anon_sym_i32] = ACTIONS(3642), + [anon_sym_i64] = ACTIONS(3642), + [anon_sym_u8] = ACTIONS(3642), + [anon_sym_u16] = ACTIONS(3642), + [anon_sym_u32] = ACTIONS(3642), + [anon_sym_u64] = ACTIONS(3642), + [anon_sym_isize] = ACTIONS(3642), + [anon_sym_usize] = ACTIONS(3642), + [anon_sym_f32] = ACTIONS(3642), + [anon_sym_f64] = ACTIONS(3642), + [anon_sym_c_char] = ACTIONS(3642), + [anon_sym_c_schar] = ACTIONS(3642), + [anon_sym_c_uchar] = ACTIONS(3642), + [anon_sym_c_short] = ACTIONS(3642), + [anon_sym_c_ushort] = ACTIONS(3642), + [anon_sym_c_int] = ACTIONS(3642), + [anon_sym_c_uint] = ACTIONS(3642), + [anon_sym_c_long] = ACTIONS(3642), + [anon_sym_c_ulong] = ACTIONS(3642), + [anon_sym_c_longlong] = ACTIONS(3642), + [anon_sym_c_ulonglong] = ACTIONS(3642), + [anon_sym_c_float] = ACTIONS(3642), + [anon_sym_c_double] = ACTIONS(3642), + [anon_sym_c_longdouble] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_defer] = ACTIONS(3642), + [anon_sym_errdefer] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_expand] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_true] = ACTIONS(3642), + [anon_sym_false] = ACTIONS(3642), + [sym_none] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [sym_sink] = ACTIONS(3642), + [sym_integer] = ACTIONS(3642), + [sym_float] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_multiline_string] = ACTIONS(3640), + [sym_character] = ACTIONS(3640), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3789), + [sym__newline] = ACTIONS(3640), }, [STATE(1633)] = { - [ts_builtin_sym_end] = ACTIONS(3793), - [sym_identifier] = ACTIONS(3795), - [anon_sym_import] = ACTIONS(3795), - [anon_sym_test] = ACTIONS(3795), - [anon_sym_hide] = ACTIONS(3795), - [anon_sym_func] = ACTIONS(3795), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_struct] = ACTIONS(3795), - [anon_sym_LPAREN] = ACTIONS(3793), - [anon_sym_RPAREN] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_RBRACE] = ACTIONS(3793), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_DOLLAR] = ACTIONS(3793), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_void] = ACTIONS(3795), - [anon_sym_anyopaque] = ACTIONS(3795), - [anon_sym_bool] = ACTIONS(3795), - [anon_sym_int] = ACTIONS(3795), - [anon_sym_uint] = ACTIONS(3795), - [anon_sym_float] = ACTIONS(3795), - [anon_sym_range] = ACTIONS(3795), - [anon_sym_i8] = ACTIONS(3795), - [anon_sym_i16] = ACTIONS(3795), - [anon_sym_i32] = ACTIONS(3795), - [anon_sym_i64] = ACTIONS(3795), - [anon_sym_u8] = ACTIONS(3795), - [anon_sym_u16] = ACTIONS(3795), - [anon_sym_u32] = ACTIONS(3795), - [anon_sym_u64] = ACTIONS(3795), - [anon_sym_isize] = ACTIONS(3795), - [anon_sym_usize] = ACTIONS(3795), - [anon_sym_f32] = ACTIONS(3795), - [anon_sym_f64] = ACTIONS(3795), - [anon_sym_c_char] = ACTIONS(3795), - [anon_sym_c_schar] = ACTIONS(3795), - [anon_sym_c_uchar] = ACTIONS(3795), - [anon_sym_c_short] = ACTIONS(3795), - [anon_sym_c_ushort] = ACTIONS(3795), - [anon_sym_c_int] = ACTIONS(3795), - [anon_sym_c_uint] = ACTIONS(3795), - [anon_sym_c_long] = ACTIONS(3795), - [anon_sym_c_ulong] = ACTIONS(3795), - [anon_sym_c_longlong] = ACTIONS(3795), - [anon_sym_c_ulonglong] = ACTIONS(3795), - [anon_sym_c_float] = ACTIONS(3795), - [anon_sym_c_double] = ACTIONS(3795), - [anon_sym_c_longdouble] = ACTIONS(3795), - [anon_sym_return] = ACTIONS(3795), - [anon_sym_yield] = ACTIONS(3795), - [anon_sym_break] = ACTIONS(3795), - [anon_sym_continue] = ACTIONS(3795), - [anon_sym_defer] = ACTIONS(3795), - [anon_sym_errdefer] = ACTIONS(3795), - [anon_sym_if] = ACTIONS(3795), - [anon_sym_else] = ACTIONS(3795), - [anon_sym_while] = ACTIONS(3795), - [anon_sym_expand] = ACTIONS(3795), - [anon_sym_for] = ACTIONS(3795), - [anon_sym_match] = ACTIONS(3795), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_try] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_true] = ACTIONS(3795), - [anon_sym_false] = ACTIONS(3795), - [sym_none] = ACTIONS(3795), - [sym_undefined] = ACTIONS(3795), - [sym_sink] = ACTIONS(3795), - [sym_integer] = ACTIONS(3795), - [sym_float] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(3793), - [sym_multiline_string] = ACTIONS(3793), - [sym_character] = ACTIONS(3793), + [ts_builtin_sym_end] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_test] = ACTIONS(3646), + [anon_sym_hide] = ACTIONS(3646), + [anon_sym_func] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_anyopaque] = ACTIONS(3646), + [anon_sym_bool] = ACTIONS(3646), + [anon_sym_int] = ACTIONS(3646), + [anon_sym_uint] = ACTIONS(3646), + [anon_sym_float] = ACTIONS(3646), + [anon_sym_range] = ACTIONS(3646), + [anon_sym_i8] = ACTIONS(3646), + [anon_sym_i16] = ACTIONS(3646), + [anon_sym_i32] = ACTIONS(3646), + [anon_sym_i64] = ACTIONS(3646), + [anon_sym_u8] = ACTIONS(3646), + [anon_sym_u16] = ACTIONS(3646), + [anon_sym_u32] = ACTIONS(3646), + [anon_sym_u64] = ACTIONS(3646), + [anon_sym_isize] = ACTIONS(3646), + [anon_sym_usize] = ACTIONS(3646), + [anon_sym_f32] = ACTIONS(3646), + [anon_sym_f64] = ACTIONS(3646), + [anon_sym_c_char] = ACTIONS(3646), + [anon_sym_c_schar] = ACTIONS(3646), + [anon_sym_c_uchar] = ACTIONS(3646), + [anon_sym_c_short] = ACTIONS(3646), + [anon_sym_c_ushort] = ACTIONS(3646), + [anon_sym_c_int] = ACTIONS(3646), + [anon_sym_c_uint] = ACTIONS(3646), + [anon_sym_c_long] = ACTIONS(3646), + [anon_sym_c_ulong] = ACTIONS(3646), + [anon_sym_c_longlong] = ACTIONS(3646), + [anon_sym_c_ulonglong] = ACTIONS(3646), + [anon_sym_c_float] = ACTIONS(3646), + [anon_sym_c_double] = ACTIONS(3646), + [anon_sym_c_longdouble] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_defer] = ACTIONS(3646), + [anon_sym_errdefer] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_expand] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3644), + [anon_sym_true] = ACTIONS(3646), + [anon_sym_false] = ACTIONS(3646), + [sym_none] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [sym_sink] = ACTIONS(3646), + [sym_integer] = ACTIONS(3646), + [sym_float] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_multiline_string] = ACTIONS(3644), + [sym_character] = ACTIONS(3644), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3793), + [sym__newline] = ACTIONS(3644), }, [STATE(1634)] = { - [ts_builtin_sym_end] = ACTIONS(3797), - [sym_identifier] = ACTIONS(3799), - [anon_sym_import] = ACTIONS(3799), - [anon_sym_test] = ACTIONS(3799), - [anon_sym_hide] = ACTIONS(3799), - [anon_sym_func] = ACTIONS(3799), - [anon_sym_BANG] = ACTIONS(3797), - [anon_sym_struct] = ACTIONS(3799), - [anon_sym_LPAREN] = ACTIONS(3797), - [anon_sym_RPAREN] = ACTIONS(3797), - [anon_sym_LBRACE] = ACTIONS(3797), - [anon_sym_RBRACE] = ACTIONS(3797), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_DOLLAR] = ACTIONS(3797), - [anon_sym_LBRACK] = ACTIONS(3797), - [anon_sym_void] = ACTIONS(3799), - [anon_sym_anyopaque] = ACTIONS(3799), - [anon_sym_bool] = ACTIONS(3799), - [anon_sym_int] = ACTIONS(3799), - [anon_sym_uint] = ACTIONS(3799), - [anon_sym_float] = ACTIONS(3799), - [anon_sym_range] = ACTIONS(3799), - [anon_sym_i8] = ACTIONS(3799), - [anon_sym_i16] = ACTIONS(3799), - [anon_sym_i32] = ACTIONS(3799), - [anon_sym_i64] = ACTIONS(3799), - [anon_sym_u8] = ACTIONS(3799), - [anon_sym_u16] = ACTIONS(3799), - [anon_sym_u32] = ACTIONS(3799), - [anon_sym_u64] = ACTIONS(3799), - [anon_sym_isize] = ACTIONS(3799), - [anon_sym_usize] = ACTIONS(3799), - [anon_sym_f32] = ACTIONS(3799), - [anon_sym_f64] = ACTIONS(3799), - [anon_sym_c_char] = ACTIONS(3799), - [anon_sym_c_schar] = ACTIONS(3799), - [anon_sym_c_uchar] = ACTIONS(3799), - [anon_sym_c_short] = ACTIONS(3799), - [anon_sym_c_ushort] = ACTIONS(3799), - [anon_sym_c_int] = ACTIONS(3799), - [anon_sym_c_uint] = ACTIONS(3799), - [anon_sym_c_long] = ACTIONS(3799), - [anon_sym_c_ulong] = ACTIONS(3799), - [anon_sym_c_longlong] = ACTIONS(3799), - [anon_sym_c_ulonglong] = ACTIONS(3799), - [anon_sym_c_float] = ACTIONS(3799), - [anon_sym_c_double] = ACTIONS(3799), - [anon_sym_c_longdouble] = ACTIONS(3799), - [anon_sym_return] = ACTIONS(3799), - [anon_sym_yield] = ACTIONS(3799), - [anon_sym_break] = ACTIONS(3799), - [anon_sym_continue] = ACTIONS(3799), - [anon_sym_defer] = ACTIONS(3799), - [anon_sym_errdefer] = ACTIONS(3799), - [anon_sym_if] = ACTIONS(3799), - [anon_sym_else] = ACTIONS(3799), - [anon_sym_while] = ACTIONS(3799), - [anon_sym_expand] = ACTIONS(3799), - [anon_sym_for] = ACTIONS(3799), - [anon_sym_match] = ACTIONS(3799), - [anon_sym_AMP] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3797), - [anon_sym_try] = ACTIONS(3799), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_true] = ACTIONS(3799), - [anon_sym_false] = ACTIONS(3799), - [sym_none] = ACTIONS(3799), - [sym_undefined] = ACTIONS(3799), - [sym_sink] = ACTIONS(3799), - [sym_integer] = ACTIONS(3799), - [sym_float] = ACTIONS(3797), - [anon_sym_DQUOTE] = ACTIONS(3797), - [sym_multiline_string] = ACTIONS(3797), - [sym_character] = ACTIONS(3797), + [ts_builtin_sym_end] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_test] = ACTIONS(3650), + [anon_sym_hide] = ACTIONS(3650), + [anon_sym_func] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_RPAREN] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_anyopaque] = ACTIONS(3650), + [anon_sym_bool] = ACTIONS(3650), + [anon_sym_int] = ACTIONS(3650), + [anon_sym_uint] = ACTIONS(3650), + [anon_sym_float] = ACTIONS(3650), + [anon_sym_range] = ACTIONS(3650), + [anon_sym_i8] = ACTIONS(3650), + [anon_sym_i16] = ACTIONS(3650), + [anon_sym_i32] = ACTIONS(3650), + [anon_sym_i64] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3650), + [anon_sym_u16] = ACTIONS(3650), + [anon_sym_u32] = ACTIONS(3650), + [anon_sym_u64] = ACTIONS(3650), + [anon_sym_isize] = ACTIONS(3650), + [anon_sym_usize] = ACTIONS(3650), + [anon_sym_f32] = ACTIONS(3650), + [anon_sym_f64] = ACTIONS(3650), + [anon_sym_c_char] = ACTIONS(3650), + [anon_sym_c_schar] = ACTIONS(3650), + [anon_sym_c_uchar] = ACTIONS(3650), + [anon_sym_c_short] = ACTIONS(3650), + [anon_sym_c_ushort] = ACTIONS(3650), + [anon_sym_c_int] = ACTIONS(3650), + [anon_sym_c_uint] = ACTIONS(3650), + [anon_sym_c_long] = ACTIONS(3650), + [anon_sym_c_ulong] = ACTIONS(3650), + [anon_sym_c_longlong] = ACTIONS(3650), + [anon_sym_c_ulonglong] = ACTIONS(3650), + [anon_sym_c_float] = ACTIONS(3650), + [anon_sym_c_double] = ACTIONS(3650), + [anon_sym_c_longdouble] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_defer] = ACTIONS(3650), + [anon_sym_errdefer] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_expand] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_match] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_DOT] = ACTIONS(3648), + [anon_sym_true] = ACTIONS(3650), + [anon_sym_false] = ACTIONS(3650), + [sym_none] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [sym_sink] = ACTIONS(3650), + [sym_integer] = ACTIONS(3650), + [sym_float] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_multiline_string] = ACTIONS(3648), + [sym_character] = ACTIONS(3648), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3797), + [sym__newline] = ACTIONS(3648), }, [STATE(1635)] = { - [ts_builtin_sym_end] = ACTIONS(3801), - [sym_identifier] = ACTIONS(3803), - [anon_sym_import] = ACTIONS(3803), - [anon_sym_test] = ACTIONS(3803), - [anon_sym_hide] = ACTIONS(3803), - [anon_sym_func] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3801), - [anon_sym_struct] = ACTIONS(3803), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_RPAREN] = ACTIONS(3801), - [anon_sym_LBRACE] = ACTIONS(3801), - [anon_sym_RBRACE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3801), - [anon_sym_DOLLAR] = ACTIONS(3801), - [anon_sym_LBRACK] = ACTIONS(3801), - [anon_sym_void] = ACTIONS(3803), - [anon_sym_anyopaque] = ACTIONS(3803), - [anon_sym_bool] = ACTIONS(3803), - [anon_sym_int] = ACTIONS(3803), - [anon_sym_uint] = ACTIONS(3803), - [anon_sym_float] = ACTIONS(3803), - [anon_sym_range] = ACTIONS(3803), - [anon_sym_i8] = ACTIONS(3803), - [anon_sym_i16] = ACTIONS(3803), - [anon_sym_i32] = ACTIONS(3803), - [anon_sym_i64] = ACTIONS(3803), - [anon_sym_u8] = ACTIONS(3803), - [anon_sym_u16] = ACTIONS(3803), - [anon_sym_u32] = ACTIONS(3803), - [anon_sym_u64] = ACTIONS(3803), - [anon_sym_isize] = ACTIONS(3803), - [anon_sym_usize] = ACTIONS(3803), - [anon_sym_f32] = ACTIONS(3803), - [anon_sym_f64] = ACTIONS(3803), - [anon_sym_c_char] = ACTIONS(3803), - [anon_sym_c_schar] = ACTIONS(3803), - [anon_sym_c_uchar] = ACTIONS(3803), - [anon_sym_c_short] = ACTIONS(3803), - [anon_sym_c_ushort] = ACTIONS(3803), - [anon_sym_c_int] = ACTIONS(3803), - [anon_sym_c_uint] = ACTIONS(3803), - [anon_sym_c_long] = ACTIONS(3803), - [anon_sym_c_ulong] = ACTIONS(3803), - [anon_sym_c_longlong] = ACTIONS(3803), - [anon_sym_c_ulonglong] = ACTIONS(3803), - [anon_sym_c_float] = ACTIONS(3803), - [anon_sym_c_double] = ACTIONS(3803), - [anon_sym_c_longdouble] = ACTIONS(3803), - [anon_sym_return] = ACTIONS(3803), - [anon_sym_yield] = ACTIONS(3803), - [anon_sym_break] = ACTIONS(3803), - [anon_sym_continue] = ACTIONS(3803), - [anon_sym_defer] = ACTIONS(3803), - [anon_sym_errdefer] = ACTIONS(3803), - [anon_sym_if] = ACTIONS(3803), - [anon_sym_else] = ACTIONS(3803), - [anon_sym_while] = ACTIONS(3803), - [anon_sym_expand] = ACTIONS(3803), - [anon_sym_for] = ACTIONS(3803), - [anon_sym_match] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3801), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_try] = ACTIONS(3803), - [anon_sym_DOT] = ACTIONS(3801), - [anon_sym_true] = ACTIONS(3803), - [anon_sym_false] = ACTIONS(3803), - [sym_none] = ACTIONS(3803), - [sym_undefined] = ACTIONS(3803), - [sym_sink] = ACTIONS(3803), - [sym_integer] = ACTIONS(3803), - [sym_float] = ACTIONS(3801), - [anon_sym_DQUOTE] = ACTIONS(3801), - [sym_multiline_string] = ACTIONS(3801), - [sym_character] = ACTIONS(3801), + [ts_builtin_sym_end] = ACTIONS(3652), + [sym_identifier] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_test] = ACTIONS(3654), + [anon_sym_hide] = ACTIONS(3654), + [anon_sym_func] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_RPAREN] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_DOLLAR] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_anyopaque] = ACTIONS(3654), + [anon_sym_bool] = ACTIONS(3654), + [anon_sym_int] = ACTIONS(3654), + [anon_sym_uint] = ACTIONS(3654), + [anon_sym_float] = ACTIONS(3654), + [anon_sym_range] = ACTIONS(3654), + [anon_sym_i8] = ACTIONS(3654), + [anon_sym_i16] = ACTIONS(3654), + [anon_sym_i32] = ACTIONS(3654), + [anon_sym_i64] = ACTIONS(3654), + [anon_sym_u8] = ACTIONS(3654), + [anon_sym_u16] = ACTIONS(3654), + [anon_sym_u32] = ACTIONS(3654), + [anon_sym_u64] = ACTIONS(3654), + [anon_sym_isize] = ACTIONS(3654), + [anon_sym_usize] = ACTIONS(3654), + [anon_sym_f32] = ACTIONS(3654), + [anon_sym_f64] = ACTIONS(3654), + [anon_sym_c_char] = ACTIONS(3654), + [anon_sym_c_schar] = ACTIONS(3654), + [anon_sym_c_uchar] = ACTIONS(3654), + [anon_sym_c_short] = ACTIONS(3654), + [anon_sym_c_ushort] = ACTIONS(3654), + [anon_sym_c_int] = ACTIONS(3654), + [anon_sym_c_uint] = ACTIONS(3654), + [anon_sym_c_long] = ACTIONS(3654), + [anon_sym_c_ulong] = ACTIONS(3654), + [anon_sym_c_longlong] = ACTIONS(3654), + [anon_sym_c_ulonglong] = ACTIONS(3654), + [anon_sym_c_float] = ACTIONS(3654), + [anon_sym_c_double] = ACTIONS(3654), + [anon_sym_c_longdouble] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_defer] = ACTIONS(3654), + [anon_sym_errdefer] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_expand] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_DOT] = ACTIONS(3652), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [sym_none] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [sym_sink] = ACTIONS(3654), + [sym_integer] = ACTIONS(3654), + [sym_float] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_multiline_string] = ACTIONS(3652), + [sym_character] = ACTIONS(3652), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3801), + [sym__newline] = ACTIONS(3652), }, [STATE(1636)] = { - [ts_builtin_sym_end] = ACTIONS(3805), - [sym_identifier] = ACTIONS(3807), - [anon_sym_import] = ACTIONS(3807), - [anon_sym_test] = ACTIONS(3807), - [anon_sym_hide] = ACTIONS(3807), - [anon_sym_func] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_struct] = ACTIONS(3807), - [anon_sym_LPAREN] = ACTIONS(3805), - [anon_sym_RPAREN] = ACTIONS(3805), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_RBRACE] = ACTIONS(3805), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_DOLLAR] = ACTIONS(3805), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_void] = ACTIONS(3807), - [anon_sym_anyopaque] = ACTIONS(3807), - [anon_sym_bool] = ACTIONS(3807), - [anon_sym_int] = ACTIONS(3807), - [anon_sym_uint] = ACTIONS(3807), - [anon_sym_float] = ACTIONS(3807), - [anon_sym_range] = ACTIONS(3807), - [anon_sym_i8] = ACTIONS(3807), - [anon_sym_i16] = ACTIONS(3807), - [anon_sym_i32] = ACTIONS(3807), - [anon_sym_i64] = ACTIONS(3807), - [anon_sym_u8] = ACTIONS(3807), - [anon_sym_u16] = ACTIONS(3807), - [anon_sym_u32] = ACTIONS(3807), - [anon_sym_u64] = ACTIONS(3807), - [anon_sym_isize] = ACTIONS(3807), - [anon_sym_usize] = ACTIONS(3807), - [anon_sym_f32] = ACTIONS(3807), - [anon_sym_f64] = ACTIONS(3807), - [anon_sym_c_char] = ACTIONS(3807), - [anon_sym_c_schar] = ACTIONS(3807), - [anon_sym_c_uchar] = ACTIONS(3807), - [anon_sym_c_short] = ACTIONS(3807), - [anon_sym_c_ushort] = ACTIONS(3807), - [anon_sym_c_int] = ACTIONS(3807), - [anon_sym_c_uint] = ACTIONS(3807), - [anon_sym_c_long] = ACTIONS(3807), - [anon_sym_c_ulong] = ACTIONS(3807), - [anon_sym_c_longlong] = ACTIONS(3807), - [anon_sym_c_ulonglong] = ACTIONS(3807), - [anon_sym_c_float] = ACTIONS(3807), - [anon_sym_c_double] = ACTIONS(3807), - [anon_sym_c_longdouble] = ACTIONS(3807), - [anon_sym_return] = ACTIONS(3807), - [anon_sym_yield] = ACTIONS(3807), - [anon_sym_break] = ACTIONS(3807), - [anon_sym_continue] = ACTIONS(3807), - [anon_sym_defer] = ACTIONS(3807), - [anon_sym_errdefer] = ACTIONS(3807), - [anon_sym_if] = ACTIONS(3807), - [anon_sym_else] = ACTIONS(3807), - [anon_sym_while] = ACTIONS(3807), - [anon_sym_expand] = ACTIONS(3807), - [anon_sym_for] = ACTIONS(3807), - [anon_sym_match] = ACTIONS(3807), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3805), - [anon_sym_try] = ACTIONS(3807), - [anon_sym_DOT] = ACTIONS(3805), - [anon_sym_true] = ACTIONS(3807), - [anon_sym_false] = ACTIONS(3807), - [sym_none] = ACTIONS(3807), - [sym_undefined] = ACTIONS(3807), - [sym_sink] = ACTIONS(3807), - [sym_integer] = ACTIONS(3807), - [sym_float] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(3805), - [sym_multiline_string] = ACTIONS(3805), - [sym_character] = ACTIONS(3805), + [ts_builtin_sym_end] = ACTIONS(3656), + [sym_identifier] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_test] = ACTIONS(3658), + [anon_sym_hide] = ACTIONS(3658), + [anon_sym_func] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_RPAREN] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_anyopaque] = ACTIONS(3658), + [anon_sym_bool] = ACTIONS(3658), + [anon_sym_int] = ACTIONS(3658), + [anon_sym_uint] = ACTIONS(3658), + [anon_sym_float] = ACTIONS(3658), + [anon_sym_range] = ACTIONS(3658), + [anon_sym_i8] = ACTIONS(3658), + [anon_sym_i16] = ACTIONS(3658), + [anon_sym_i32] = ACTIONS(3658), + [anon_sym_i64] = ACTIONS(3658), + [anon_sym_u8] = ACTIONS(3658), + [anon_sym_u16] = ACTIONS(3658), + [anon_sym_u32] = ACTIONS(3658), + [anon_sym_u64] = ACTIONS(3658), + [anon_sym_isize] = ACTIONS(3658), + [anon_sym_usize] = ACTIONS(3658), + [anon_sym_f32] = ACTIONS(3658), + [anon_sym_f64] = ACTIONS(3658), + [anon_sym_c_char] = ACTIONS(3658), + [anon_sym_c_schar] = ACTIONS(3658), + [anon_sym_c_uchar] = ACTIONS(3658), + [anon_sym_c_short] = ACTIONS(3658), + [anon_sym_c_ushort] = ACTIONS(3658), + [anon_sym_c_int] = ACTIONS(3658), + [anon_sym_c_uint] = ACTIONS(3658), + [anon_sym_c_long] = ACTIONS(3658), + [anon_sym_c_ulong] = ACTIONS(3658), + [anon_sym_c_longlong] = ACTIONS(3658), + [anon_sym_c_ulonglong] = ACTIONS(3658), + [anon_sym_c_float] = ACTIONS(3658), + [anon_sym_c_double] = ACTIONS(3658), + [anon_sym_c_longdouble] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_defer] = ACTIONS(3658), + [anon_sym_errdefer] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_expand] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_match] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [sym_none] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [sym_sink] = ACTIONS(3658), + [sym_integer] = ACTIONS(3658), + [sym_float] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_multiline_string] = ACTIONS(3656), + [sym_character] = ACTIONS(3656), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3805), + [sym__newline] = ACTIONS(3656), }, [STATE(1637)] = { - [ts_builtin_sym_end] = ACTIONS(3809), - [sym_identifier] = ACTIONS(3811), - [anon_sym_import] = ACTIONS(3811), - [anon_sym_test] = ACTIONS(3811), - [anon_sym_hide] = ACTIONS(3811), - [anon_sym_func] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_LPAREN] = ACTIONS(3809), - [anon_sym_RPAREN] = ACTIONS(3809), - [anon_sym_LBRACE] = ACTIONS(3809), - [anon_sym_RBRACE] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DOLLAR] = ACTIONS(3809), - [anon_sym_LBRACK] = ACTIONS(3809), - [anon_sym_void] = ACTIONS(3811), - [anon_sym_anyopaque] = ACTIONS(3811), - [anon_sym_bool] = ACTIONS(3811), - [anon_sym_int] = ACTIONS(3811), - [anon_sym_uint] = ACTIONS(3811), - [anon_sym_float] = ACTIONS(3811), - [anon_sym_range] = ACTIONS(3811), - [anon_sym_i8] = ACTIONS(3811), - [anon_sym_i16] = ACTIONS(3811), - [anon_sym_i32] = ACTIONS(3811), - [anon_sym_i64] = ACTIONS(3811), - [anon_sym_u8] = ACTIONS(3811), - [anon_sym_u16] = ACTIONS(3811), - [anon_sym_u32] = ACTIONS(3811), - [anon_sym_u64] = ACTIONS(3811), - [anon_sym_isize] = ACTIONS(3811), - [anon_sym_usize] = ACTIONS(3811), - [anon_sym_f32] = ACTIONS(3811), - [anon_sym_f64] = ACTIONS(3811), - [anon_sym_c_char] = ACTIONS(3811), - [anon_sym_c_schar] = ACTIONS(3811), - [anon_sym_c_uchar] = ACTIONS(3811), - [anon_sym_c_short] = ACTIONS(3811), - [anon_sym_c_ushort] = ACTIONS(3811), - [anon_sym_c_int] = ACTIONS(3811), - [anon_sym_c_uint] = ACTIONS(3811), - [anon_sym_c_long] = ACTIONS(3811), - [anon_sym_c_ulong] = ACTIONS(3811), - [anon_sym_c_longlong] = ACTIONS(3811), - [anon_sym_c_ulonglong] = ACTIONS(3811), - [anon_sym_c_float] = ACTIONS(3811), - [anon_sym_c_double] = ACTIONS(3811), - [anon_sym_c_longdouble] = ACTIONS(3811), - [anon_sym_return] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_break] = ACTIONS(3811), - [anon_sym_continue] = ACTIONS(3811), - [anon_sym_defer] = ACTIONS(3811), - [anon_sym_errdefer] = ACTIONS(3811), - [anon_sym_if] = ACTIONS(3811), - [anon_sym_else] = ACTIONS(3811), - [anon_sym_while] = ACTIONS(3811), - [anon_sym_expand] = ACTIONS(3811), - [anon_sym_for] = ACTIONS(3811), - [anon_sym_match] = ACTIONS(3811), - [anon_sym_AMP] = ACTIONS(3809), - [anon_sym_TILDE] = ACTIONS(3809), - [anon_sym_try] = ACTIONS(3811), - [anon_sym_DOT] = ACTIONS(3809), - [anon_sym_true] = ACTIONS(3811), - [anon_sym_false] = ACTIONS(3811), - [sym_none] = ACTIONS(3811), - [sym_undefined] = ACTIONS(3811), - [sym_sink] = ACTIONS(3811), - [sym_integer] = ACTIONS(3811), - [sym_float] = ACTIONS(3809), - [anon_sym_DQUOTE] = ACTIONS(3809), - [sym_multiline_string] = ACTIONS(3809), - [sym_character] = ACTIONS(3809), + [ts_builtin_sym_end] = ACTIONS(3660), + [sym_identifier] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_test] = ACTIONS(3662), + [anon_sym_hide] = ACTIONS(3662), + [anon_sym_func] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_RPAREN] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_anyopaque] = ACTIONS(3662), + [anon_sym_bool] = ACTIONS(3662), + [anon_sym_int] = ACTIONS(3662), + [anon_sym_uint] = ACTIONS(3662), + [anon_sym_float] = ACTIONS(3662), + [anon_sym_range] = ACTIONS(3662), + [anon_sym_i8] = ACTIONS(3662), + [anon_sym_i16] = ACTIONS(3662), + [anon_sym_i32] = ACTIONS(3662), + [anon_sym_i64] = ACTIONS(3662), + [anon_sym_u8] = ACTIONS(3662), + [anon_sym_u16] = ACTIONS(3662), + [anon_sym_u32] = ACTIONS(3662), + [anon_sym_u64] = ACTIONS(3662), + [anon_sym_isize] = ACTIONS(3662), + [anon_sym_usize] = ACTIONS(3662), + [anon_sym_f32] = ACTIONS(3662), + [anon_sym_f64] = ACTIONS(3662), + [anon_sym_c_char] = ACTIONS(3662), + [anon_sym_c_schar] = ACTIONS(3662), + [anon_sym_c_uchar] = ACTIONS(3662), + [anon_sym_c_short] = ACTIONS(3662), + [anon_sym_c_ushort] = ACTIONS(3662), + [anon_sym_c_int] = ACTIONS(3662), + [anon_sym_c_uint] = ACTIONS(3662), + [anon_sym_c_long] = ACTIONS(3662), + [anon_sym_c_ulong] = ACTIONS(3662), + [anon_sym_c_longlong] = ACTIONS(3662), + [anon_sym_c_ulonglong] = ACTIONS(3662), + [anon_sym_c_float] = ACTIONS(3662), + [anon_sym_c_double] = ACTIONS(3662), + [anon_sym_c_longdouble] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_defer] = ACTIONS(3662), + [anon_sym_errdefer] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_expand] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_match] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_true] = ACTIONS(3662), + [anon_sym_false] = ACTIONS(3662), + [sym_none] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [sym_sink] = ACTIONS(3662), + [sym_integer] = ACTIONS(3662), + [sym_float] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_multiline_string] = ACTIONS(3660), + [sym_character] = ACTIONS(3660), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3809), + [sym__newline] = ACTIONS(3660), }, [STATE(1638)] = { - [ts_builtin_sym_end] = ACTIONS(3813), - [sym_identifier] = ACTIONS(3815), - [anon_sym_import] = ACTIONS(3815), - [anon_sym_test] = ACTIONS(3815), - [anon_sym_hide] = ACTIONS(3815), - [anon_sym_func] = ACTIONS(3815), - [anon_sym_BANG] = ACTIONS(3813), - [anon_sym_struct] = ACTIONS(3815), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3813), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_DASH] = ACTIONS(3813), - [anon_sym_DOLLAR] = ACTIONS(3813), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_void] = ACTIONS(3815), - [anon_sym_anyopaque] = ACTIONS(3815), - [anon_sym_bool] = ACTIONS(3815), - [anon_sym_int] = ACTIONS(3815), - [anon_sym_uint] = ACTIONS(3815), - [anon_sym_float] = ACTIONS(3815), - [anon_sym_range] = ACTIONS(3815), - [anon_sym_i8] = ACTIONS(3815), - [anon_sym_i16] = ACTIONS(3815), - [anon_sym_i32] = ACTIONS(3815), - [anon_sym_i64] = ACTIONS(3815), - [anon_sym_u8] = ACTIONS(3815), - [anon_sym_u16] = ACTIONS(3815), - [anon_sym_u32] = ACTIONS(3815), - [anon_sym_u64] = ACTIONS(3815), - [anon_sym_isize] = ACTIONS(3815), - [anon_sym_usize] = ACTIONS(3815), - [anon_sym_f32] = ACTIONS(3815), - [anon_sym_f64] = ACTIONS(3815), - [anon_sym_c_char] = ACTIONS(3815), - [anon_sym_c_schar] = ACTIONS(3815), - [anon_sym_c_uchar] = ACTIONS(3815), - [anon_sym_c_short] = ACTIONS(3815), - [anon_sym_c_ushort] = ACTIONS(3815), - [anon_sym_c_int] = ACTIONS(3815), - [anon_sym_c_uint] = ACTIONS(3815), - [anon_sym_c_long] = ACTIONS(3815), - [anon_sym_c_ulong] = ACTIONS(3815), - [anon_sym_c_longlong] = ACTIONS(3815), - [anon_sym_c_ulonglong] = ACTIONS(3815), - [anon_sym_c_float] = ACTIONS(3815), - [anon_sym_c_double] = ACTIONS(3815), - [anon_sym_c_longdouble] = ACTIONS(3815), - [anon_sym_return] = ACTIONS(3815), - [anon_sym_yield] = ACTIONS(3815), - [anon_sym_break] = ACTIONS(3815), - [anon_sym_continue] = ACTIONS(3815), - [anon_sym_defer] = ACTIONS(3815), - [anon_sym_errdefer] = ACTIONS(3815), - [anon_sym_if] = ACTIONS(3815), - [anon_sym_else] = ACTIONS(3815), - [anon_sym_while] = ACTIONS(3815), - [anon_sym_expand] = ACTIONS(3815), - [anon_sym_for] = ACTIONS(3815), - [anon_sym_match] = ACTIONS(3815), - [anon_sym_AMP] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(3813), - [anon_sym_try] = ACTIONS(3815), - [anon_sym_DOT] = ACTIONS(3813), - [anon_sym_true] = ACTIONS(3815), - [anon_sym_false] = ACTIONS(3815), - [sym_none] = ACTIONS(3815), - [sym_undefined] = ACTIONS(3815), - [sym_sink] = ACTIONS(3815), - [sym_integer] = ACTIONS(3815), - [sym_float] = ACTIONS(3813), - [anon_sym_DQUOTE] = ACTIONS(3813), - [sym_multiline_string] = ACTIONS(3813), - [sym_character] = ACTIONS(3813), + [ts_builtin_sym_end] = ACTIONS(3664), + [sym_identifier] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_test] = ACTIONS(3666), + [anon_sym_hide] = ACTIONS(3666), + [anon_sym_func] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_DOLLAR] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_anyopaque] = ACTIONS(3666), + [anon_sym_bool] = ACTIONS(3666), + [anon_sym_int] = ACTIONS(3666), + [anon_sym_uint] = ACTIONS(3666), + [anon_sym_float] = ACTIONS(3666), + [anon_sym_range] = ACTIONS(3666), + [anon_sym_i8] = ACTIONS(3666), + [anon_sym_i16] = ACTIONS(3666), + [anon_sym_i32] = ACTIONS(3666), + [anon_sym_i64] = ACTIONS(3666), + [anon_sym_u8] = ACTIONS(3666), + [anon_sym_u16] = ACTIONS(3666), + [anon_sym_u32] = ACTIONS(3666), + [anon_sym_u64] = ACTIONS(3666), + [anon_sym_isize] = ACTIONS(3666), + [anon_sym_usize] = ACTIONS(3666), + [anon_sym_f32] = ACTIONS(3666), + [anon_sym_f64] = ACTIONS(3666), + [anon_sym_c_char] = ACTIONS(3666), + [anon_sym_c_schar] = ACTIONS(3666), + [anon_sym_c_uchar] = ACTIONS(3666), + [anon_sym_c_short] = ACTIONS(3666), + [anon_sym_c_ushort] = ACTIONS(3666), + [anon_sym_c_int] = ACTIONS(3666), + [anon_sym_c_uint] = ACTIONS(3666), + [anon_sym_c_long] = ACTIONS(3666), + [anon_sym_c_ulong] = ACTIONS(3666), + [anon_sym_c_longlong] = ACTIONS(3666), + [anon_sym_c_ulonglong] = ACTIONS(3666), + [anon_sym_c_float] = ACTIONS(3666), + [anon_sym_c_double] = ACTIONS(3666), + [anon_sym_c_longdouble] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_defer] = ACTIONS(3666), + [anon_sym_errdefer] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_expand] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_match] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3666), + [anon_sym_false] = ACTIONS(3666), + [sym_none] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [sym_sink] = ACTIONS(3666), + [sym_integer] = ACTIONS(3666), + [sym_float] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_multiline_string] = ACTIONS(3664), + [sym_character] = ACTIONS(3664), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3813), + [sym__newline] = ACTIONS(3664), }, [STATE(1639)] = { - [ts_builtin_sym_end] = ACTIONS(3817), - [sym_identifier] = ACTIONS(3819), - [anon_sym_import] = ACTIONS(3819), - [anon_sym_test] = ACTIONS(3819), - [anon_sym_hide] = ACTIONS(3819), - [anon_sym_func] = ACTIONS(3819), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_struct] = ACTIONS(3819), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_RPAREN] = ACTIONS(3817), - [anon_sym_LBRACE] = ACTIONS(3817), - [anon_sym_RBRACE] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_DOLLAR] = ACTIONS(3817), - [anon_sym_LBRACK] = ACTIONS(3817), - [anon_sym_void] = ACTIONS(3819), - [anon_sym_anyopaque] = ACTIONS(3819), - [anon_sym_bool] = ACTIONS(3819), - [anon_sym_int] = ACTIONS(3819), - [anon_sym_uint] = ACTIONS(3819), - [anon_sym_float] = ACTIONS(3819), - [anon_sym_range] = ACTIONS(3819), - [anon_sym_i8] = ACTIONS(3819), - [anon_sym_i16] = ACTIONS(3819), - [anon_sym_i32] = ACTIONS(3819), - [anon_sym_i64] = ACTIONS(3819), - [anon_sym_u8] = ACTIONS(3819), - [anon_sym_u16] = ACTIONS(3819), - [anon_sym_u32] = ACTIONS(3819), - [anon_sym_u64] = ACTIONS(3819), - [anon_sym_isize] = ACTIONS(3819), - [anon_sym_usize] = ACTIONS(3819), - [anon_sym_f32] = ACTIONS(3819), - [anon_sym_f64] = ACTIONS(3819), - [anon_sym_c_char] = ACTIONS(3819), - [anon_sym_c_schar] = ACTIONS(3819), - [anon_sym_c_uchar] = ACTIONS(3819), - [anon_sym_c_short] = ACTIONS(3819), - [anon_sym_c_ushort] = ACTIONS(3819), - [anon_sym_c_int] = ACTIONS(3819), - [anon_sym_c_uint] = ACTIONS(3819), - [anon_sym_c_long] = ACTIONS(3819), - [anon_sym_c_ulong] = ACTIONS(3819), - [anon_sym_c_longlong] = ACTIONS(3819), - [anon_sym_c_ulonglong] = ACTIONS(3819), - [anon_sym_c_float] = ACTIONS(3819), - [anon_sym_c_double] = ACTIONS(3819), - [anon_sym_c_longdouble] = ACTIONS(3819), - [anon_sym_return] = ACTIONS(3819), - [anon_sym_yield] = ACTIONS(3819), - [anon_sym_break] = ACTIONS(3819), - [anon_sym_continue] = ACTIONS(3819), - [anon_sym_defer] = ACTIONS(3819), - [anon_sym_errdefer] = ACTIONS(3819), - [anon_sym_if] = ACTIONS(3819), - [anon_sym_else] = ACTIONS(3819), - [anon_sym_while] = ACTIONS(3819), - [anon_sym_expand] = ACTIONS(3819), - [anon_sym_for] = ACTIONS(3819), - [anon_sym_match] = ACTIONS(3819), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_TILDE] = ACTIONS(3817), - [anon_sym_try] = ACTIONS(3819), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_true] = ACTIONS(3819), - [anon_sym_false] = ACTIONS(3819), - [sym_none] = ACTIONS(3819), - [sym_undefined] = ACTIONS(3819), - [sym_sink] = ACTIONS(3819), - [sym_integer] = ACTIONS(3819), - [sym_float] = ACTIONS(3817), - [anon_sym_DQUOTE] = ACTIONS(3817), - [sym_multiline_string] = ACTIONS(3817), - [sym_character] = ACTIONS(3817), + [ts_builtin_sym_end] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_test] = ACTIONS(3670), + [anon_sym_hide] = ACTIONS(3670), + [anon_sym_func] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_DOLLAR] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_anyopaque] = ACTIONS(3670), + [anon_sym_bool] = ACTIONS(3670), + [anon_sym_int] = ACTIONS(3670), + [anon_sym_uint] = ACTIONS(3670), + [anon_sym_float] = ACTIONS(3670), + [anon_sym_range] = ACTIONS(3670), + [anon_sym_i8] = ACTIONS(3670), + [anon_sym_i16] = ACTIONS(3670), + [anon_sym_i32] = ACTIONS(3670), + [anon_sym_i64] = ACTIONS(3670), + [anon_sym_u8] = ACTIONS(3670), + [anon_sym_u16] = ACTIONS(3670), + [anon_sym_u32] = ACTIONS(3670), + [anon_sym_u64] = ACTIONS(3670), + [anon_sym_isize] = ACTIONS(3670), + [anon_sym_usize] = ACTIONS(3670), + [anon_sym_f32] = ACTIONS(3670), + [anon_sym_f64] = ACTIONS(3670), + [anon_sym_c_char] = ACTIONS(3670), + [anon_sym_c_schar] = ACTIONS(3670), + [anon_sym_c_uchar] = ACTIONS(3670), + [anon_sym_c_short] = ACTIONS(3670), + [anon_sym_c_ushort] = ACTIONS(3670), + [anon_sym_c_int] = ACTIONS(3670), + [anon_sym_c_uint] = ACTIONS(3670), + [anon_sym_c_long] = ACTIONS(3670), + [anon_sym_c_ulong] = ACTIONS(3670), + [anon_sym_c_longlong] = ACTIONS(3670), + [anon_sym_c_ulonglong] = ACTIONS(3670), + [anon_sym_c_float] = ACTIONS(3670), + [anon_sym_c_double] = ACTIONS(3670), + [anon_sym_c_longdouble] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_defer] = ACTIONS(3670), + [anon_sym_errdefer] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_expand] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_match] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_true] = ACTIONS(3670), + [anon_sym_false] = ACTIONS(3670), + [sym_none] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [sym_sink] = ACTIONS(3670), + [sym_integer] = ACTIONS(3670), + [sym_float] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_multiline_string] = ACTIONS(3668), + [sym_character] = ACTIONS(3668), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3817), + [sym__newline] = ACTIONS(3668), }, [STATE(1640)] = { - [ts_builtin_sym_end] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3823), - [anon_sym_import] = ACTIONS(3823), - [anon_sym_test] = ACTIONS(3823), - [anon_sym_hide] = ACTIONS(3823), - [anon_sym_func] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_struct] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3821), - [anon_sym_RPAREN] = ACTIONS(3821), - [anon_sym_LBRACE] = ACTIONS(3821), - [anon_sym_RBRACE] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_DOLLAR] = ACTIONS(3821), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_void] = ACTIONS(3823), - [anon_sym_anyopaque] = ACTIONS(3823), - [anon_sym_bool] = ACTIONS(3823), - [anon_sym_int] = ACTIONS(3823), - [anon_sym_uint] = ACTIONS(3823), - [anon_sym_float] = ACTIONS(3823), - [anon_sym_range] = ACTIONS(3823), - [anon_sym_i8] = ACTIONS(3823), - [anon_sym_i16] = ACTIONS(3823), - [anon_sym_i32] = ACTIONS(3823), - [anon_sym_i64] = ACTIONS(3823), - [anon_sym_u8] = ACTIONS(3823), - [anon_sym_u16] = ACTIONS(3823), - [anon_sym_u32] = ACTIONS(3823), - [anon_sym_u64] = ACTIONS(3823), - [anon_sym_isize] = ACTIONS(3823), - [anon_sym_usize] = ACTIONS(3823), - [anon_sym_f32] = ACTIONS(3823), - [anon_sym_f64] = ACTIONS(3823), - [anon_sym_c_char] = ACTIONS(3823), - [anon_sym_c_schar] = ACTIONS(3823), - [anon_sym_c_uchar] = ACTIONS(3823), - [anon_sym_c_short] = ACTIONS(3823), - [anon_sym_c_ushort] = ACTIONS(3823), - [anon_sym_c_int] = ACTIONS(3823), - [anon_sym_c_uint] = ACTIONS(3823), - [anon_sym_c_long] = ACTIONS(3823), - [anon_sym_c_ulong] = ACTIONS(3823), - [anon_sym_c_longlong] = ACTIONS(3823), - [anon_sym_c_ulonglong] = ACTIONS(3823), - [anon_sym_c_float] = ACTIONS(3823), - [anon_sym_c_double] = ACTIONS(3823), - [anon_sym_c_longdouble] = ACTIONS(3823), - [anon_sym_return] = ACTIONS(3823), - [anon_sym_yield] = ACTIONS(3823), - [anon_sym_break] = ACTIONS(3823), - [anon_sym_continue] = ACTIONS(3823), - [anon_sym_defer] = ACTIONS(3823), - [anon_sym_errdefer] = ACTIONS(3823), - [anon_sym_if] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3823), - [anon_sym_while] = ACTIONS(3823), - [anon_sym_expand] = ACTIONS(3823), - [anon_sym_for] = ACTIONS(3823), - [anon_sym_match] = ACTIONS(3823), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_TILDE] = ACTIONS(3821), - [anon_sym_try] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_true] = ACTIONS(3823), - [anon_sym_false] = ACTIONS(3823), - [sym_none] = ACTIONS(3823), - [sym_undefined] = ACTIONS(3823), - [sym_sink] = ACTIONS(3823), - [sym_integer] = ACTIONS(3823), - [sym_float] = ACTIONS(3821), - [anon_sym_DQUOTE] = ACTIONS(3821), - [sym_multiline_string] = ACTIONS(3821), - [sym_character] = ACTIONS(3821), + [ts_builtin_sym_end] = ACTIONS(3672), + [sym_identifier] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_test] = ACTIONS(3674), + [anon_sym_hide] = ACTIONS(3674), + [anon_sym_func] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_DOLLAR] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_anyopaque] = ACTIONS(3674), + [anon_sym_bool] = ACTIONS(3674), + [anon_sym_int] = ACTIONS(3674), + [anon_sym_uint] = ACTIONS(3674), + [anon_sym_float] = ACTIONS(3674), + [anon_sym_range] = ACTIONS(3674), + [anon_sym_i8] = ACTIONS(3674), + [anon_sym_i16] = ACTIONS(3674), + [anon_sym_i32] = ACTIONS(3674), + [anon_sym_i64] = ACTIONS(3674), + [anon_sym_u8] = ACTIONS(3674), + [anon_sym_u16] = ACTIONS(3674), + [anon_sym_u32] = ACTIONS(3674), + [anon_sym_u64] = ACTIONS(3674), + [anon_sym_isize] = ACTIONS(3674), + [anon_sym_usize] = ACTIONS(3674), + [anon_sym_f32] = ACTIONS(3674), + [anon_sym_f64] = ACTIONS(3674), + [anon_sym_c_char] = ACTIONS(3674), + [anon_sym_c_schar] = ACTIONS(3674), + [anon_sym_c_uchar] = ACTIONS(3674), + [anon_sym_c_short] = ACTIONS(3674), + [anon_sym_c_ushort] = ACTIONS(3674), + [anon_sym_c_int] = ACTIONS(3674), + [anon_sym_c_uint] = ACTIONS(3674), + [anon_sym_c_long] = ACTIONS(3674), + [anon_sym_c_ulong] = ACTIONS(3674), + [anon_sym_c_longlong] = ACTIONS(3674), + [anon_sym_c_ulonglong] = ACTIONS(3674), + [anon_sym_c_float] = ACTIONS(3674), + [anon_sym_c_double] = ACTIONS(3674), + [anon_sym_c_longdouble] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_defer] = ACTIONS(3674), + [anon_sym_errdefer] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_expand] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_match] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_DOT] = ACTIONS(3672), + [anon_sym_true] = ACTIONS(3674), + [anon_sym_false] = ACTIONS(3674), + [sym_none] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [sym_sink] = ACTIONS(3674), + [sym_integer] = ACTIONS(3674), + [sym_float] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_multiline_string] = ACTIONS(3672), + [sym_character] = ACTIONS(3672), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3821), + [sym__newline] = ACTIONS(3672), }, [STATE(1641)] = { - [ts_builtin_sym_end] = ACTIONS(3825), - [sym_identifier] = ACTIONS(3827), - [anon_sym_import] = ACTIONS(3827), - [anon_sym_test] = ACTIONS(3827), - [anon_sym_hide] = ACTIONS(3827), - [anon_sym_func] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(3825), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_RBRACE] = ACTIONS(3825), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_DOLLAR] = ACTIONS(3825), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_void] = ACTIONS(3827), - [anon_sym_anyopaque] = ACTIONS(3827), - [anon_sym_bool] = ACTIONS(3827), - [anon_sym_int] = ACTIONS(3827), - [anon_sym_uint] = ACTIONS(3827), - [anon_sym_float] = ACTIONS(3827), - [anon_sym_range] = ACTIONS(3827), - [anon_sym_i8] = ACTIONS(3827), - [anon_sym_i16] = ACTIONS(3827), - [anon_sym_i32] = ACTIONS(3827), - [anon_sym_i64] = ACTIONS(3827), - [anon_sym_u8] = ACTIONS(3827), - [anon_sym_u16] = ACTIONS(3827), - [anon_sym_u32] = ACTIONS(3827), - [anon_sym_u64] = ACTIONS(3827), - [anon_sym_isize] = ACTIONS(3827), - [anon_sym_usize] = ACTIONS(3827), - [anon_sym_f32] = ACTIONS(3827), - [anon_sym_f64] = ACTIONS(3827), - [anon_sym_c_char] = ACTIONS(3827), - [anon_sym_c_schar] = ACTIONS(3827), - [anon_sym_c_uchar] = ACTIONS(3827), - [anon_sym_c_short] = ACTIONS(3827), - [anon_sym_c_ushort] = ACTIONS(3827), - [anon_sym_c_int] = ACTIONS(3827), - [anon_sym_c_uint] = ACTIONS(3827), - [anon_sym_c_long] = ACTIONS(3827), - [anon_sym_c_ulong] = ACTIONS(3827), - [anon_sym_c_longlong] = ACTIONS(3827), - [anon_sym_c_ulonglong] = ACTIONS(3827), - [anon_sym_c_float] = ACTIONS(3827), - [anon_sym_c_double] = ACTIONS(3827), - [anon_sym_c_longdouble] = ACTIONS(3827), - [anon_sym_return] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_break] = ACTIONS(3827), - [anon_sym_continue] = ACTIONS(3827), - [anon_sym_defer] = ACTIONS(3827), - [anon_sym_errdefer] = ACTIONS(3827), - [anon_sym_if] = ACTIONS(3827), - [anon_sym_else] = ACTIONS(3827), - [anon_sym_while] = ACTIONS(3827), - [anon_sym_expand] = ACTIONS(3827), - [anon_sym_for] = ACTIONS(3827), - [anon_sym_match] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3825), - [anon_sym_try] = ACTIONS(3827), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_true] = ACTIONS(3827), - [anon_sym_false] = ACTIONS(3827), - [sym_none] = ACTIONS(3827), - [sym_undefined] = ACTIONS(3827), - [sym_sink] = ACTIONS(3827), - [sym_integer] = ACTIONS(3827), - [sym_float] = ACTIONS(3825), - [anon_sym_DQUOTE] = ACTIONS(3825), - [sym_multiline_string] = ACTIONS(3825), - [sym_character] = ACTIONS(3825), + [ts_builtin_sym_end] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_test] = ACTIONS(3678), + [anon_sym_hide] = ACTIONS(3678), + [anon_sym_func] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_DOLLAR] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_anyopaque] = ACTIONS(3678), + [anon_sym_bool] = ACTIONS(3678), + [anon_sym_int] = ACTIONS(3678), + [anon_sym_uint] = ACTIONS(3678), + [anon_sym_float] = ACTIONS(3678), + [anon_sym_range] = ACTIONS(3678), + [anon_sym_i8] = ACTIONS(3678), + [anon_sym_i16] = ACTIONS(3678), + [anon_sym_i32] = ACTIONS(3678), + [anon_sym_i64] = ACTIONS(3678), + [anon_sym_u8] = ACTIONS(3678), + [anon_sym_u16] = ACTIONS(3678), + [anon_sym_u32] = ACTIONS(3678), + [anon_sym_u64] = ACTIONS(3678), + [anon_sym_isize] = ACTIONS(3678), + [anon_sym_usize] = ACTIONS(3678), + [anon_sym_f32] = ACTIONS(3678), + [anon_sym_f64] = ACTIONS(3678), + [anon_sym_c_char] = ACTIONS(3678), + [anon_sym_c_schar] = ACTIONS(3678), + [anon_sym_c_uchar] = ACTIONS(3678), + [anon_sym_c_short] = ACTIONS(3678), + [anon_sym_c_ushort] = ACTIONS(3678), + [anon_sym_c_int] = ACTIONS(3678), + [anon_sym_c_uint] = ACTIONS(3678), + [anon_sym_c_long] = ACTIONS(3678), + [anon_sym_c_ulong] = ACTIONS(3678), + [anon_sym_c_longlong] = ACTIONS(3678), + [anon_sym_c_ulonglong] = ACTIONS(3678), + [anon_sym_c_float] = ACTIONS(3678), + [anon_sym_c_double] = ACTIONS(3678), + [anon_sym_c_longdouble] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_defer] = ACTIONS(3678), + [anon_sym_errdefer] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_expand] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_match] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3676), + [anon_sym_true] = ACTIONS(3678), + [anon_sym_false] = ACTIONS(3678), + [sym_none] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [sym_sink] = ACTIONS(3678), + [sym_integer] = ACTIONS(3678), + [sym_float] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_multiline_string] = ACTIONS(3676), + [sym_character] = ACTIONS(3676), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3825), + [sym__newline] = ACTIONS(3676), }, [STATE(1642)] = { - [ts_builtin_sym_end] = ACTIONS(3829), - [sym_identifier] = ACTIONS(3831), - [anon_sym_import] = ACTIONS(3831), - [anon_sym_test] = ACTIONS(3831), - [anon_sym_hide] = ACTIONS(3831), - [anon_sym_func] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(3831), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3829), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_DASH] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3829), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_void] = ACTIONS(3831), - [anon_sym_anyopaque] = ACTIONS(3831), - [anon_sym_bool] = ACTIONS(3831), - [anon_sym_int] = ACTIONS(3831), - [anon_sym_uint] = ACTIONS(3831), - [anon_sym_float] = ACTIONS(3831), - [anon_sym_range] = ACTIONS(3831), - [anon_sym_i8] = ACTIONS(3831), - [anon_sym_i16] = ACTIONS(3831), - [anon_sym_i32] = ACTIONS(3831), - [anon_sym_i64] = ACTIONS(3831), - [anon_sym_u8] = ACTIONS(3831), - [anon_sym_u16] = ACTIONS(3831), - [anon_sym_u32] = ACTIONS(3831), - [anon_sym_u64] = ACTIONS(3831), - [anon_sym_isize] = ACTIONS(3831), - [anon_sym_usize] = ACTIONS(3831), - [anon_sym_f32] = ACTIONS(3831), - [anon_sym_f64] = ACTIONS(3831), - [anon_sym_c_char] = ACTIONS(3831), - [anon_sym_c_schar] = ACTIONS(3831), - [anon_sym_c_uchar] = ACTIONS(3831), - [anon_sym_c_short] = ACTIONS(3831), - [anon_sym_c_ushort] = ACTIONS(3831), - [anon_sym_c_int] = ACTIONS(3831), - [anon_sym_c_uint] = ACTIONS(3831), - [anon_sym_c_long] = ACTIONS(3831), - [anon_sym_c_ulong] = ACTIONS(3831), - [anon_sym_c_longlong] = ACTIONS(3831), - [anon_sym_c_ulonglong] = ACTIONS(3831), - [anon_sym_c_float] = ACTIONS(3831), - [anon_sym_c_double] = ACTIONS(3831), - [anon_sym_c_longdouble] = ACTIONS(3831), - [anon_sym_return] = ACTIONS(3831), - [anon_sym_yield] = ACTIONS(3831), - [anon_sym_break] = ACTIONS(3831), - [anon_sym_continue] = ACTIONS(3831), - [anon_sym_defer] = ACTIONS(3831), - [anon_sym_errdefer] = ACTIONS(3831), - [anon_sym_if] = ACTIONS(3831), - [anon_sym_else] = ACTIONS(3831), - [anon_sym_while] = ACTIONS(3831), - [anon_sym_expand] = ACTIONS(3831), - [anon_sym_for] = ACTIONS(3831), - [anon_sym_match] = ACTIONS(3831), - [anon_sym_AMP] = ACTIONS(3829), - [anon_sym_TILDE] = ACTIONS(3829), - [anon_sym_try] = ACTIONS(3831), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_true] = ACTIONS(3831), - [anon_sym_false] = ACTIONS(3831), - [sym_none] = ACTIONS(3831), - [sym_undefined] = ACTIONS(3831), - [sym_sink] = ACTIONS(3831), - [sym_integer] = ACTIONS(3831), - [sym_float] = ACTIONS(3829), - [anon_sym_DQUOTE] = ACTIONS(3829), - [sym_multiline_string] = ACTIONS(3829), - [sym_character] = ACTIONS(3829), + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_test] = ACTIONS(3682), + [anon_sym_hide] = ACTIONS(3682), + [anon_sym_func] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_anyopaque] = ACTIONS(3682), + [anon_sym_bool] = ACTIONS(3682), + [anon_sym_int] = ACTIONS(3682), + [anon_sym_uint] = ACTIONS(3682), + [anon_sym_float] = ACTIONS(3682), + [anon_sym_range] = ACTIONS(3682), + [anon_sym_i8] = ACTIONS(3682), + [anon_sym_i16] = ACTIONS(3682), + [anon_sym_i32] = ACTIONS(3682), + [anon_sym_i64] = ACTIONS(3682), + [anon_sym_u8] = ACTIONS(3682), + [anon_sym_u16] = ACTIONS(3682), + [anon_sym_u32] = ACTIONS(3682), + [anon_sym_u64] = ACTIONS(3682), + [anon_sym_isize] = ACTIONS(3682), + [anon_sym_usize] = ACTIONS(3682), + [anon_sym_f32] = ACTIONS(3682), + [anon_sym_f64] = ACTIONS(3682), + [anon_sym_c_char] = ACTIONS(3682), + [anon_sym_c_schar] = ACTIONS(3682), + [anon_sym_c_uchar] = ACTIONS(3682), + [anon_sym_c_short] = ACTIONS(3682), + [anon_sym_c_ushort] = ACTIONS(3682), + [anon_sym_c_int] = ACTIONS(3682), + [anon_sym_c_uint] = ACTIONS(3682), + [anon_sym_c_long] = ACTIONS(3682), + [anon_sym_c_ulong] = ACTIONS(3682), + [anon_sym_c_longlong] = ACTIONS(3682), + [anon_sym_c_ulonglong] = ACTIONS(3682), + [anon_sym_c_float] = ACTIONS(3682), + [anon_sym_c_double] = ACTIONS(3682), + [anon_sym_c_longdouble] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_defer] = ACTIONS(3682), + [anon_sym_errdefer] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_expand] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_match] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_true] = ACTIONS(3682), + [anon_sym_false] = ACTIONS(3682), + [sym_none] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [sym_sink] = ACTIONS(3682), + [sym_integer] = ACTIONS(3682), + [sym_float] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_multiline_string] = ACTIONS(3680), + [sym_character] = ACTIONS(3680), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3829), + [sym__newline] = ACTIONS(3680), }, [STATE(1643)] = { - [ts_builtin_sym_end] = ACTIONS(3833), - [sym_identifier] = ACTIONS(3835), - [anon_sym_import] = ACTIONS(3835), - [anon_sym_test] = ACTIONS(3835), - [anon_sym_hide] = ACTIONS(3835), - [anon_sym_func] = ACTIONS(3835), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_struct] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_LBRACE] = ACTIONS(3833), - [anon_sym_RBRACE] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3833), - [anon_sym_DOLLAR] = ACTIONS(3833), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_void] = ACTIONS(3835), - [anon_sym_anyopaque] = ACTIONS(3835), - [anon_sym_bool] = ACTIONS(3835), - [anon_sym_int] = ACTIONS(3835), - [anon_sym_uint] = ACTIONS(3835), - [anon_sym_float] = ACTIONS(3835), - [anon_sym_range] = ACTIONS(3835), - [anon_sym_i8] = ACTIONS(3835), - [anon_sym_i16] = ACTIONS(3835), - [anon_sym_i32] = ACTIONS(3835), - [anon_sym_i64] = ACTIONS(3835), - [anon_sym_u8] = ACTIONS(3835), - [anon_sym_u16] = ACTIONS(3835), - [anon_sym_u32] = ACTIONS(3835), - [anon_sym_u64] = ACTIONS(3835), - [anon_sym_isize] = ACTIONS(3835), - [anon_sym_usize] = ACTIONS(3835), - [anon_sym_f32] = ACTIONS(3835), - [anon_sym_f64] = ACTIONS(3835), - [anon_sym_c_char] = ACTIONS(3835), - [anon_sym_c_schar] = ACTIONS(3835), - [anon_sym_c_uchar] = ACTIONS(3835), - [anon_sym_c_short] = ACTIONS(3835), - [anon_sym_c_ushort] = ACTIONS(3835), - [anon_sym_c_int] = ACTIONS(3835), - [anon_sym_c_uint] = ACTIONS(3835), - [anon_sym_c_long] = ACTIONS(3835), - [anon_sym_c_ulong] = ACTIONS(3835), - [anon_sym_c_longlong] = ACTIONS(3835), - [anon_sym_c_ulonglong] = ACTIONS(3835), - [anon_sym_c_float] = ACTIONS(3835), - [anon_sym_c_double] = ACTIONS(3835), - [anon_sym_c_longdouble] = ACTIONS(3835), - [anon_sym_return] = ACTIONS(3835), - [anon_sym_yield] = ACTIONS(3835), - [anon_sym_break] = ACTIONS(3835), - [anon_sym_continue] = ACTIONS(3835), - [anon_sym_defer] = ACTIONS(3835), - [anon_sym_errdefer] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3835), - [anon_sym_else] = ACTIONS(3835), - [anon_sym_while] = ACTIONS(3835), - [anon_sym_expand] = ACTIONS(3835), - [anon_sym_for] = ACTIONS(3835), - [anon_sym_match] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3833), - [anon_sym_try] = ACTIONS(3835), - [anon_sym_DOT] = ACTIONS(3833), - [anon_sym_true] = ACTIONS(3835), - [anon_sym_false] = ACTIONS(3835), - [sym_none] = ACTIONS(3835), - [sym_undefined] = ACTIONS(3835), - [sym_sink] = ACTIONS(3835), - [sym_integer] = ACTIONS(3835), - [sym_float] = ACTIONS(3833), - [anon_sym_DQUOTE] = ACTIONS(3833), - [sym_multiline_string] = ACTIONS(3833), - [sym_character] = ACTIONS(3833), + [ts_builtin_sym_end] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_test] = ACTIONS(3686), + [anon_sym_hide] = ACTIONS(3686), + [anon_sym_func] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_DOLLAR] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_anyopaque] = ACTIONS(3686), + [anon_sym_bool] = ACTIONS(3686), + [anon_sym_int] = ACTIONS(3686), + [anon_sym_uint] = ACTIONS(3686), + [anon_sym_float] = ACTIONS(3686), + [anon_sym_range] = ACTIONS(3686), + [anon_sym_i8] = ACTIONS(3686), + [anon_sym_i16] = ACTIONS(3686), + [anon_sym_i32] = ACTIONS(3686), + [anon_sym_i64] = ACTIONS(3686), + [anon_sym_u8] = ACTIONS(3686), + [anon_sym_u16] = ACTIONS(3686), + [anon_sym_u32] = ACTIONS(3686), + [anon_sym_u64] = ACTIONS(3686), + [anon_sym_isize] = ACTIONS(3686), + [anon_sym_usize] = ACTIONS(3686), + [anon_sym_f32] = ACTIONS(3686), + [anon_sym_f64] = ACTIONS(3686), + [anon_sym_c_char] = ACTIONS(3686), + [anon_sym_c_schar] = ACTIONS(3686), + [anon_sym_c_uchar] = ACTIONS(3686), + [anon_sym_c_short] = ACTIONS(3686), + [anon_sym_c_ushort] = ACTIONS(3686), + [anon_sym_c_int] = ACTIONS(3686), + [anon_sym_c_uint] = ACTIONS(3686), + [anon_sym_c_long] = ACTIONS(3686), + [anon_sym_c_ulong] = ACTIONS(3686), + [anon_sym_c_longlong] = ACTIONS(3686), + [anon_sym_c_ulonglong] = ACTIONS(3686), + [anon_sym_c_float] = ACTIONS(3686), + [anon_sym_c_double] = ACTIONS(3686), + [anon_sym_c_longdouble] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_defer] = ACTIONS(3686), + [anon_sym_errdefer] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_else] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_expand] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_match] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_true] = ACTIONS(3686), + [anon_sym_false] = ACTIONS(3686), + [sym_none] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [sym_sink] = ACTIONS(3686), + [sym_integer] = ACTIONS(3686), + [sym_float] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [sym_multiline_string] = ACTIONS(3684), + [sym_character] = ACTIONS(3684), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3833), + [sym__newline] = ACTIONS(3684), }, [STATE(1644)] = { - [ts_builtin_sym_end] = ACTIONS(3837), - [sym_identifier] = ACTIONS(3839), - [anon_sym_import] = ACTIONS(3839), - [anon_sym_test] = ACTIONS(3839), - [anon_sym_hide] = ACTIONS(3839), - [anon_sym_func] = ACTIONS(3839), - [anon_sym_BANG] = ACTIONS(3837), - [anon_sym_struct] = ACTIONS(3839), - [anon_sym_LPAREN] = ACTIONS(3837), - [anon_sym_RPAREN] = ACTIONS(3837), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3837), - [anon_sym_DOLLAR] = ACTIONS(3837), - [anon_sym_LBRACK] = ACTIONS(3837), - [anon_sym_void] = ACTIONS(3839), - [anon_sym_anyopaque] = ACTIONS(3839), - [anon_sym_bool] = ACTIONS(3839), - [anon_sym_int] = ACTIONS(3839), - [anon_sym_uint] = ACTIONS(3839), - [anon_sym_float] = ACTIONS(3839), - [anon_sym_range] = ACTIONS(3839), - [anon_sym_i8] = ACTIONS(3839), - [anon_sym_i16] = ACTIONS(3839), - [anon_sym_i32] = ACTIONS(3839), - [anon_sym_i64] = ACTIONS(3839), - [anon_sym_u8] = ACTIONS(3839), - [anon_sym_u16] = ACTIONS(3839), - [anon_sym_u32] = ACTIONS(3839), - [anon_sym_u64] = ACTIONS(3839), - [anon_sym_isize] = ACTIONS(3839), - [anon_sym_usize] = ACTIONS(3839), - [anon_sym_f32] = ACTIONS(3839), - [anon_sym_f64] = ACTIONS(3839), - [anon_sym_c_char] = ACTIONS(3839), - [anon_sym_c_schar] = ACTIONS(3839), - [anon_sym_c_uchar] = ACTIONS(3839), - [anon_sym_c_short] = ACTIONS(3839), - [anon_sym_c_ushort] = ACTIONS(3839), - [anon_sym_c_int] = ACTIONS(3839), - [anon_sym_c_uint] = ACTIONS(3839), - [anon_sym_c_long] = ACTIONS(3839), - [anon_sym_c_ulong] = ACTIONS(3839), - [anon_sym_c_longlong] = ACTIONS(3839), - [anon_sym_c_ulonglong] = ACTIONS(3839), - [anon_sym_c_float] = ACTIONS(3839), - [anon_sym_c_double] = ACTIONS(3839), - [anon_sym_c_longdouble] = ACTIONS(3839), - [anon_sym_return] = ACTIONS(3839), - [anon_sym_yield] = ACTIONS(3839), - [anon_sym_break] = ACTIONS(3839), - [anon_sym_continue] = ACTIONS(3839), - [anon_sym_defer] = ACTIONS(3839), - [anon_sym_errdefer] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(3839), - [anon_sym_else] = ACTIONS(3839), - [anon_sym_while] = ACTIONS(3839), - [anon_sym_expand] = ACTIONS(3839), - [anon_sym_for] = ACTIONS(3839), - [anon_sym_match] = ACTIONS(3839), - [anon_sym_AMP] = ACTIONS(3837), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_try] = ACTIONS(3839), - [anon_sym_DOT] = ACTIONS(3837), - [anon_sym_true] = ACTIONS(3839), - [anon_sym_false] = ACTIONS(3839), - [sym_none] = ACTIONS(3839), - [sym_undefined] = ACTIONS(3839), - [sym_sink] = ACTIONS(3839), - [sym_integer] = ACTIONS(3839), - [sym_float] = ACTIONS(3837), - [anon_sym_DQUOTE] = ACTIONS(3837), - [sym_multiline_string] = ACTIONS(3837), - [sym_character] = ACTIONS(3837), + [ts_builtin_sym_end] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_test] = ACTIONS(3690), + [anon_sym_hide] = ACTIONS(3690), + [anon_sym_func] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_RBRACE] = ACTIONS(3688), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_DOLLAR] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_void] = ACTIONS(3690), + [anon_sym_type] = ACTIONS(3690), + [anon_sym_anyopaque] = ACTIONS(3690), + [anon_sym_bool] = ACTIONS(3690), + [anon_sym_int] = ACTIONS(3690), + [anon_sym_uint] = ACTIONS(3690), + [anon_sym_float] = ACTIONS(3690), + [anon_sym_range] = ACTIONS(3690), + [anon_sym_i8] = ACTIONS(3690), + [anon_sym_i16] = ACTIONS(3690), + [anon_sym_i32] = ACTIONS(3690), + [anon_sym_i64] = ACTIONS(3690), + [anon_sym_u8] = ACTIONS(3690), + [anon_sym_u16] = ACTIONS(3690), + [anon_sym_u32] = ACTIONS(3690), + [anon_sym_u64] = ACTIONS(3690), + [anon_sym_isize] = ACTIONS(3690), + [anon_sym_usize] = ACTIONS(3690), + [anon_sym_f32] = ACTIONS(3690), + [anon_sym_f64] = ACTIONS(3690), + [anon_sym_c_char] = ACTIONS(3690), + [anon_sym_c_schar] = ACTIONS(3690), + [anon_sym_c_uchar] = ACTIONS(3690), + [anon_sym_c_short] = ACTIONS(3690), + [anon_sym_c_ushort] = ACTIONS(3690), + [anon_sym_c_int] = ACTIONS(3690), + [anon_sym_c_uint] = ACTIONS(3690), + [anon_sym_c_long] = ACTIONS(3690), + [anon_sym_c_ulong] = ACTIONS(3690), + [anon_sym_c_longlong] = ACTIONS(3690), + [anon_sym_c_ulonglong] = ACTIONS(3690), + [anon_sym_c_float] = ACTIONS(3690), + [anon_sym_c_double] = ACTIONS(3690), + [anon_sym_c_longdouble] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_yield] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_defer] = ACTIONS(3690), + [anon_sym_errdefer] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_expand] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_match] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_true] = ACTIONS(3690), + [anon_sym_false] = ACTIONS(3690), + [sym_none] = ACTIONS(3690), + [sym_undefined] = ACTIONS(3690), + [sym_sink] = ACTIONS(3690), + [sym_integer] = ACTIONS(3690), + [sym_float] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym_multiline_string] = ACTIONS(3688), + [sym_character] = ACTIONS(3688), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3837), + [sym__newline] = ACTIONS(3688), }, [STATE(1645)] = { - [ts_builtin_sym_end] = ACTIONS(3841), - [sym_identifier] = ACTIONS(3843), - [anon_sym_import] = ACTIONS(3843), - [anon_sym_test] = ACTIONS(3843), - [anon_sym_hide] = ACTIONS(3843), - [anon_sym_func] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3843), - [anon_sym_LPAREN] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3841), - [anon_sym_RBRACE] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_DOLLAR] = ACTIONS(3841), - [anon_sym_LBRACK] = ACTIONS(3841), - [anon_sym_void] = ACTIONS(3843), - [anon_sym_anyopaque] = ACTIONS(3843), - [anon_sym_bool] = ACTIONS(3843), - [anon_sym_int] = ACTIONS(3843), - [anon_sym_uint] = ACTIONS(3843), - [anon_sym_float] = ACTIONS(3843), - [anon_sym_range] = ACTIONS(3843), - [anon_sym_i8] = ACTIONS(3843), - [anon_sym_i16] = ACTIONS(3843), - [anon_sym_i32] = ACTIONS(3843), - [anon_sym_i64] = ACTIONS(3843), - [anon_sym_u8] = ACTIONS(3843), - [anon_sym_u16] = ACTIONS(3843), - [anon_sym_u32] = ACTIONS(3843), - [anon_sym_u64] = ACTIONS(3843), - [anon_sym_isize] = ACTIONS(3843), - [anon_sym_usize] = ACTIONS(3843), - [anon_sym_f32] = ACTIONS(3843), - [anon_sym_f64] = ACTIONS(3843), - [anon_sym_c_char] = ACTIONS(3843), - [anon_sym_c_schar] = ACTIONS(3843), - [anon_sym_c_uchar] = ACTIONS(3843), - [anon_sym_c_short] = ACTIONS(3843), - [anon_sym_c_ushort] = ACTIONS(3843), - [anon_sym_c_int] = ACTIONS(3843), - [anon_sym_c_uint] = ACTIONS(3843), - [anon_sym_c_long] = ACTIONS(3843), - [anon_sym_c_ulong] = ACTIONS(3843), - [anon_sym_c_longlong] = ACTIONS(3843), - [anon_sym_c_ulonglong] = ACTIONS(3843), - [anon_sym_c_float] = ACTIONS(3843), - [anon_sym_c_double] = ACTIONS(3843), - [anon_sym_c_longdouble] = ACTIONS(3843), - [anon_sym_return] = ACTIONS(3843), - [anon_sym_yield] = ACTIONS(3843), - [anon_sym_break] = ACTIONS(3843), - [anon_sym_continue] = ACTIONS(3843), - [anon_sym_defer] = ACTIONS(3843), - [anon_sym_errdefer] = ACTIONS(3843), - [anon_sym_if] = ACTIONS(3843), - [anon_sym_else] = ACTIONS(3843), - [anon_sym_while] = ACTIONS(3843), - [anon_sym_expand] = ACTIONS(3843), - [anon_sym_for] = ACTIONS(3843), - [anon_sym_match] = ACTIONS(3843), - [anon_sym_AMP] = ACTIONS(3841), - [anon_sym_TILDE] = ACTIONS(3841), - [anon_sym_try] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_true] = ACTIONS(3843), - [anon_sym_false] = ACTIONS(3843), - [sym_none] = ACTIONS(3843), - [sym_undefined] = ACTIONS(3843), - [sym_sink] = ACTIONS(3843), - [sym_integer] = ACTIONS(3843), - [sym_float] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(3841), - [sym_multiline_string] = ACTIONS(3841), - [sym_character] = ACTIONS(3841), + [ts_builtin_sym_end] = ACTIONS(3692), + [sym_identifier] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_test] = ACTIONS(3694), + [anon_sym_hide] = ACTIONS(3694), + [anon_sym_func] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_DOLLAR] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_anyopaque] = ACTIONS(3694), + [anon_sym_bool] = ACTIONS(3694), + [anon_sym_int] = ACTIONS(3694), + [anon_sym_uint] = ACTIONS(3694), + [anon_sym_float] = ACTIONS(3694), + [anon_sym_range] = ACTIONS(3694), + [anon_sym_i8] = ACTIONS(3694), + [anon_sym_i16] = ACTIONS(3694), + [anon_sym_i32] = ACTIONS(3694), + [anon_sym_i64] = ACTIONS(3694), + [anon_sym_u8] = ACTIONS(3694), + [anon_sym_u16] = ACTIONS(3694), + [anon_sym_u32] = ACTIONS(3694), + [anon_sym_u64] = ACTIONS(3694), + [anon_sym_isize] = ACTIONS(3694), + [anon_sym_usize] = ACTIONS(3694), + [anon_sym_f32] = ACTIONS(3694), + [anon_sym_f64] = ACTIONS(3694), + [anon_sym_c_char] = ACTIONS(3694), + [anon_sym_c_schar] = ACTIONS(3694), + [anon_sym_c_uchar] = ACTIONS(3694), + [anon_sym_c_short] = ACTIONS(3694), + [anon_sym_c_ushort] = ACTIONS(3694), + [anon_sym_c_int] = ACTIONS(3694), + [anon_sym_c_uint] = ACTIONS(3694), + [anon_sym_c_long] = ACTIONS(3694), + [anon_sym_c_ulong] = ACTIONS(3694), + [anon_sym_c_longlong] = ACTIONS(3694), + [anon_sym_c_ulonglong] = ACTIONS(3694), + [anon_sym_c_float] = ACTIONS(3694), + [anon_sym_c_double] = ACTIONS(3694), + [anon_sym_c_longdouble] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_defer] = ACTIONS(3694), + [anon_sym_errdefer] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_else] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_expand] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_match] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_DOT] = ACTIONS(3692), + [anon_sym_true] = ACTIONS(3694), + [anon_sym_false] = ACTIONS(3694), + [sym_none] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [sym_sink] = ACTIONS(3694), + [sym_integer] = ACTIONS(3694), + [sym_float] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_multiline_string] = ACTIONS(3692), + [sym_character] = ACTIONS(3692), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3841), + [sym__newline] = ACTIONS(3692), }, [STATE(1646)] = { - [ts_builtin_sym_end] = ACTIONS(3845), - [sym_identifier] = ACTIONS(3847), - [anon_sym_import] = ACTIONS(3847), - [anon_sym_test] = ACTIONS(3847), - [anon_sym_hide] = ACTIONS(3847), - [anon_sym_func] = ACTIONS(3847), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_struct] = ACTIONS(3847), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3845), - [anon_sym_RBRACE] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_DOLLAR] = ACTIONS(3845), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_void] = ACTIONS(3847), - [anon_sym_anyopaque] = ACTIONS(3847), - [anon_sym_bool] = ACTIONS(3847), - [anon_sym_int] = ACTIONS(3847), - [anon_sym_uint] = ACTIONS(3847), - [anon_sym_float] = ACTIONS(3847), - [anon_sym_range] = ACTIONS(3847), - [anon_sym_i8] = ACTIONS(3847), - [anon_sym_i16] = ACTIONS(3847), - [anon_sym_i32] = ACTIONS(3847), - [anon_sym_i64] = ACTIONS(3847), - [anon_sym_u8] = ACTIONS(3847), - [anon_sym_u16] = ACTIONS(3847), - [anon_sym_u32] = ACTIONS(3847), - [anon_sym_u64] = ACTIONS(3847), - [anon_sym_isize] = ACTIONS(3847), - [anon_sym_usize] = ACTIONS(3847), - [anon_sym_f32] = ACTIONS(3847), - [anon_sym_f64] = ACTIONS(3847), - [anon_sym_c_char] = ACTIONS(3847), - [anon_sym_c_schar] = ACTIONS(3847), - [anon_sym_c_uchar] = ACTIONS(3847), - [anon_sym_c_short] = ACTIONS(3847), - [anon_sym_c_ushort] = ACTIONS(3847), - [anon_sym_c_int] = ACTIONS(3847), - [anon_sym_c_uint] = ACTIONS(3847), - [anon_sym_c_long] = ACTIONS(3847), - [anon_sym_c_ulong] = ACTIONS(3847), - [anon_sym_c_longlong] = ACTIONS(3847), - [anon_sym_c_ulonglong] = ACTIONS(3847), - [anon_sym_c_float] = ACTIONS(3847), - [anon_sym_c_double] = ACTIONS(3847), - [anon_sym_c_longdouble] = ACTIONS(3847), - [anon_sym_return] = ACTIONS(3847), - [anon_sym_yield] = ACTIONS(3847), - [anon_sym_break] = ACTIONS(3847), - [anon_sym_continue] = ACTIONS(3847), - [anon_sym_defer] = ACTIONS(3847), - [anon_sym_errdefer] = ACTIONS(3847), - [anon_sym_if] = ACTIONS(3847), - [anon_sym_else] = ACTIONS(3847), - [anon_sym_while] = ACTIONS(3847), - [anon_sym_expand] = ACTIONS(3847), - [anon_sym_for] = ACTIONS(3847), - [anon_sym_match] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3845), - [anon_sym_TILDE] = ACTIONS(3845), - [anon_sym_try] = ACTIONS(3847), - [anon_sym_DOT] = ACTIONS(3845), - [anon_sym_true] = ACTIONS(3847), - [anon_sym_false] = ACTIONS(3847), - [sym_none] = ACTIONS(3847), - [sym_undefined] = ACTIONS(3847), - [sym_sink] = ACTIONS(3847), - [sym_integer] = ACTIONS(3847), - [sym_float] = ACTIONS(3845), - [anon_sym_DQUOTE] = ACTIONS(3845), - [sym_multiline_string] = ACTIONS(3845), - [sym_character] = ACTIONS(3845), + [ts_builtin_sym_end] = ACTIONS(3696), + [sym_identifier] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_test] = ACTIONS(3698), + [anon_sym_hide] = ACTIONS(3698), + [anon_sym_func] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_RPAREN] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_DOLLAR] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_anyopaque] = ACTIONS(3698), + [anon_sym_bool] = ACTIONS(3698), + [anon_sym_int] = ACTIONS(3698), + [anon_sym_uint] = ACTIONS(3698), + [anon_sym_float] = ACTIONS(3698), + [anon_sym_range] = ACTIONS(3698), + [anon_sym_i8] = ACTIONS(3698), + [anon_sym_i16] = ACTIONS(3698), + [anon_sym_i32] = ACTIONS(3698), + [anon_sym_i64] = ACTIONS(3698), + [anon_sym_u8] = ACTIONS(3698), + [anon_sym_u16] = ACTIONS(3698), + [anon_sym_u32] = ACTIONS(3698), + [anon_sym_u64] = ACTIONS(3698), + [anon_sym_isize] = ACTIONS(3698), + [anon_sym_usize] = ACTIONS(3698), + [anon_sym_f32] = ACTIONS(3698), + [anon_sym_f64] = ACTIONS(3698), + [anon_sym_c_char] = ACTIONS(3698), + [anon_sym_c_schar] = ACTIONS(3698), + [anon_sym_c_uchar] = ACTIONS(3698), + [anon_sym_c_short] = ACTIONS(3698), + [anon_sym_c_ushort] = ACTIONS(3698), + [anon_sym_c_int] = ACTIONS(3698), + [anon_sym_c_uint] = ACTIONS(3698), + [anon_sym_c_long] = ACTIONS(3698), + [anon_sym_c_ulong] = ACTIONS(3698), + [anon_sym_c_longlong] = ACTIONS(3698), + [anon_sym_c_ulonglong] = ACTIONS(3698), + [anon_sym_c_float] = ACTIONS(3698), + [anon_sym_c_double] = ACTIONS(3698), + [anon_sym_c_longdouble] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_defer] = ACTIONS(3698), + [anon_sym_errdefer] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_expand] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_match] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_true] = ACTIONS(3698), + [anon_sym_false] = ACTIONS(3698), + [sym_none] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [sym_sink] = ACTIONS(3698), + [sym_integer] = ACTIONS(3698), + [sym_float] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [sym_multiline_string] = ACTIONS(3696), + [sym_character] = ACTIONS(3696), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3845), + [sym__newline] = ACTIONS(3696), }, [STATE(1647)] = { - [ts_builtin_sym_end] = ACTIONS(3849), - [sym_identifier] = ACTIONS(3851), - [anon_sym_import] = ACTIONS(3851), - [anon_sym_test] = ACTIONS(3851), - [anon_sym_hide] = ACTIONS(3851), - [anon_sym_func] = ACTIONS(3851), - [anon_sym_BANG] = ACTIONS(3849), - [anon_sym_struct] = ACTIONS(3851), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_RPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3849), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_DOLLAR] = ACTIONS(3849), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_void] = ACTIONS(3851), - [anon_sym_anyopaque] = ACTIONS(3851), - [anon_sym_bool] = ACTIONS(3851), - [anon_sym_int] = ACTIONS(3851), - [anon_sym_uint] = ACTIONS(3851), - [anon_sym_float] = ACTIONS(3851), - [anon_sym_range] = ACTIONS(3851), - [anon_sym_i8] = ACTIONS(3851), - [anon_sym_i16] = ACTIONS(3851), - [anon_sym_i32] = ACTIONS(3851), - [anon_sym_i64] = ACTIONS(3851), - [anon_sym_u8] = ACTIONS(3851), - [anon_sym_u16] = ACTIONS(3851), - [anon_sym_u32] = ACTIONS(3851), - [anon_sym_u64] = ACTIONS(3851), - [anon_sym_isize] = ACTIONS(3851), - [anon_sym_usize] = ACTIONS(3851), - [anon_sym_f32] = ACTIONS(3851), - [anon_sym_f64] = ACTIONS(3851), - [anon_sym_c_char] = ACTIONS(3851), - [anon_sym_c_schar] = ACTIONS(3851), - [anon_sym_c_uchar] = ACTIONS(3851), - [anon_sym_c_short] = ACTIONS(3851), - [anon_sym_c_ushort] = ACTIONS(3851), - [anon_sym_c_int] = ACTIONS(3851), - [anon_sym_c_uint] = ACTIONS(3851), - [anon_sym_c_long] = ACTIONS(3851), - [anon_sym_c_ulong] = ACTIONS(3851), - [anon_sym_c_longlong] = ACTIONS(3851), - [anon_sym_c_ulonglong] = ACTIONS(3851), - [anon_sym_c_float] = ACTIONS(3851), - [anon_sym_c_double] = ACTIONS(3851), - [anon_sym_c_longdouble] = ACTIONS(3851), - [anon_sym_return] = ACTIONS(3851), - [anon_sym_yield] = ACTIONS(3851), - [anon_sym_break] = ACTIONS(3851), - [anon_sym_continue] = ACTIONS(3851), - [anon_sym_defer] = ACTIONS(3851), - [anon_sym_errdefer] = ACTIONS(3851), - [anon_sym_if] = ACTIONS(3851), - [anon_sym_else] = ACTIONS(3851), - [anon_sym_while] = ACTIONS(3851), - [anon_sym_expand] = ACTIONS(3851), - [anon_sym_for] = ACTIONS(3851), - [anon_sym_match] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_TILDE] = ACTIONS(3849), - [anon_sym_try] = ACTIONS(3851), - [anon_sym_DOT] = ACTIONS(3849), - [anon_sym_true] = ACTIONS(3851), - [anon_sym_false] = ACTIONS(3851), - [sym_none] = ACTIONS(3851), - [sym_undefined] = ACTIONS(3851), - [sym_sink] = ACTIONS(3851), - [sym_integer] = ACTIONS(3851), - [sym_float] = ACTIONS(3849), - [anon_sym_DQUOTE] = ACTIONS(3849), - [sym_multiline_string] = ACTIONS(3849), - [sym_character] = ACTIONS(3849), + [ts_builtin_sym_end] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_test] = ACTIONS(3702), + [anon_sym_hide] = ACTIONS(3702), + [anon_sym_func] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_void] = ACTIONS(3702), + [anon_sym_type] = ACTIONS(3702), + [anon_sym_anyopaque] = ACTIONS(3702), + [anon_sym_bool] = ACTIONS(3702), + [anon_sym_int] = ACTIONS(3702), + [anon_sym_uint] = ACTIONS(3702), + [anon_sym_float] = ACTIONS(3702), + [anon_sym_range] = ACTIONS(3702), + [anon_sym_i8] = ACTIONS(3702), + [anon_sym_i16] = ACTIONS(3702), + [anon_sym_i32] = ACTIONS(3702), + [anon_sym_i64] = ACTIONS(3702), + [anon_sym_u8] = ACTIONS(3702), + [anon_sym_u16] = ACTIONS(3702), + [anon_sym_u32] = ACTIONS(3702), + [anon_sym_u64] = ACTIONS(3702), + [anon_sym_isize] = ACTIONS(3702), + [anon_sym_usize] = ACTIONS(3702), + [anon_sym_f32] = ACTIONS(3702), + [anon_sym_f64] = ACTIONS(3702), + [anon_sym_c_char] = ACTIONS(3702), + [anon_sym_c_schar] = ACTIONS(3702), + [anon_sym_c_uchar] = ACTIONS(3702), + [anon_sym_c_short] = ACTIONS(3702), + [anon_sym_c_ushort] = ACTIONS(3702), + [anon_sym_c_int] = ACTIONS(3702), + [anon_sym_c_uint] = ACTIONS(3702), + [anon_sym_c_long] = ACTIONS(3702), + [anon_sym_c_ulong] = ACTIONS(3702), + [anon_sym_c_longlong] = ACTIONS(3702), + [anon_sym_c_ulonglong] = ACTIONS(3702), + [anon_sym_c_float] = ACTIONS(3702), + [anon_sym_c_double] = ACTIONS(3702), + [anon_sym_c_longdouble] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_defer] = ACTIONS(3702), + [anon_sym_errdefer] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_expand] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_match] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3700), + [anon_sym_true] = ACTIONS(3702), + [anon_sym_false] = ACTIONS(3702), + [sym_none] = ACTIONS(3702), + [sym_undefined] = ACTIONS(3702), + [sym_sink] = ACTIONS(3702), + [sym_integer] = ACTIONS(3702), + [sym_float] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym_multiline_string] = ACTIONS(3700), + [sym_character] = ACTIONS(3700), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3849), + [sym__newline] = ACTIONS(3700), }, [STATE(1648)] = { - [ts_builtin_sym_end] = ACTIONS(3853), - [sym_identifier] = ACTIONS(3855), - [anon_sym_import] = ACTIONS(3855), - [anon_sym_test] = ACTIONS(3855), - [anon_sym_hide] = ACTIONS(3855), - [anon_sym_func] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_struct] = ACTIONS(3855), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_RPAREN] = ACTIONS(3853), - [anon_sym_LBRACE] = ACTIONS(3853), - [anon_sym_RBRACE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3853), - [anon_sym_DOLLAR] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3853), - [anon_sym_void] = ACTIONS(3855), - [anon_sym_anyopaque] = ACTIONS(3855), - [anon_sym_bool] = ACTIONS(3855), - [anon_sym_int] = ACTIONS(3855), - [anon_sym_uint] = ACTIONS(3855), - [anon_sym_float] = ACTIONS(3855), - [anon_sym_range] = ACTIONS(3855), - [anon_sym_i8] = ACTIONS(3855), - [anon_sym_i16] = ACTIONS(3855), - [anon_sym_i32] = ACTIONS(3855), - [anon_sym_i64] = ACTIONS(3855), - [anon_sym_u8] = ACTIONS(3855), - [anon_sym_u16] = ACTIONS(3855), - [anon_sym_u32] = ACTIONS(3855), - [anon_sym_u64] = ACTIONS(3855), - [anon_sym_isize] = ACTIONS(3855), - [anon_sym_usize] = ACTIONS(3855), - [anon_sym_f32] = ACTIONS(3855), - [anon_sym_f64] = ACTIONS(3855), - [anon_sym_c_char] = ACTIONS(3855), - [anon_sym_c_schar] = ACTIONS(3855), - [anon_sym_c_uchar] = ACTIONS(3855), - [anon_sym_c_short] = ACTIONS(3855), - [anon_sym_c_ushort] = ACTIONS(3855), - [anon_sym_c_int] = ACTIONS(3855), - [anon_sym_c_uint] = ACTIONS(3855), - [anon_sym_c_long] = ACTIONS(3855), - [anon_sym_c_ulong] = ACTIONS(3855), - [anon_sym_c_longlong] = ACTIONS(3855), - [anon_sym_c_ulonglong] = ACTIONS(3855), - [anon_sym_c_float] = ACTIONS(3855), - [anon_sym_c_double] = ACTIONS(3855), - [anon_sym_c_longdouble] = ACTIONS(3855), - [anon_sym_return] = ACTIONS(3855), - [anon_sym_yield] = ACTIONS(3855), - [anon_sym_break] = ACTIONS(3855), - [anon_sym_continue] = ACTIONS(3855), - [anon_sym_defer] = ACTIONS(3855), - [anon_sym_errdefer] = ACTIONS(3855), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_else] = ACTIONS(3855), - [anon_sym_while] = ACTIONS(3855), - [anon_sym_expand] = ACTIONS(3855), - [anon_sym_for] = ACTIONS(3855), - [anon_sym_match] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_try] = ACTIONS(3855), - [anon_sym_DOT] = ACTIONS(3853), - [anon_sym_true] = ACTIONS(3855), - [anon_sym_false] = ACTIONS(3855), - [sym_none] = ACTIONS(3855), - [sym_undefined] = ACTIONS(3855), - [sym_sink] = ACTIONS(3855), - [sym_integer] = ACTIONS(3855), - [sym_float] = ACTIONS(3853), - [anon_sym_DQUOTE] = ACTIONS(3853), - [sym_multiline_string] = ACTIONS(3853), - [sym_character] = ACTIONS(3853), + [ts_builtin_sym_end] = ACTIONS(3704), + [sym_identifier] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_test] = ACTIONS(3706), + [anon_sym_hide] = ACTIONS(3706), + [anon_sym_func] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_LPAREN] = ACTIONS(3704), + [anon_sym_RPAREN] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_RBRACE] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_DOLLAR] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_void] = ACTIONS(3706), + [anon_sym_type] = ACTIONS(3706), + [anon_sym_anyopaque] = ACTIONS(3706), + [anon_sym_bool] = ACTIONS(3706), + [anon_sym_int] = ACTIONS(3706), + [anon_sym_uint] = ACTIONS(3706), + [anon_sym_float] = ACTIONS(3706), + [anon_sym_range] = ACTIONS(3706), + [anon_sym_i8] = ACTIONS(3706), + [anon_sym_i16] = ACTIONS(3706), + [anon_sym_i32] = ACTIONS(3706), + [anon_sym_i64] = ACTIONS(3706), + [anon_sym_u8] = ACTIONS(3706), + [anon_sym_u16] = ACTIONS(3706), + [anon_sym_u32] = ACTIONS(3706), + [anon_sym_u64] = ACTIONS(3706), + [anon_sym_isize] = ACTIONS(3706), + [anon_sym_usize] = ACTIONS(3706), + [anon_sym_f32] = ACTIONS(3706), + [anon_sym_f64] = ACTIONS(3706), + [anon_sym_c_char] = ACTIONS(3706), + [anon_sym_c_schar] = ACTIONS(3706), + [anon_sym_c_uchar] = ACTIONS(3706), + [anon_sym_c_short] = ACTIONS(3706), + [anon_sym_c_ushort] = ACTIONS(3706), + [anon_sym_c_int] = ACTIONS(3706), + [anon_sym_c_uint] = ACTIONS(3706), + [anon_sym_c_long] = ACTIONS(3706), + [anon_sym_c_ulong] = ACTIONS(3706), + [anon_sym_c_longlong] = ACTIONS(3706), + [anon_sym_c_ulonglong] = ACTIONS(3706), + [anon_sym_c_float] = ACTIONS(3706), + [anon_sym_c_double] = ACTIONS(3706), + [anon_sym_c_longdouble] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_yield] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_defer] = ACTIONS(3706), + [anon_sym_errdefer] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_else] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_expand] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_TILDE] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_true] = ACTIONS(3706), + [anon_sym_false] = ACTIONS(3706), + [sym_none] = ACTIONS(3706), + [sym_undefined] = ACTIONS(3706), + [sym_sink] = ACTIONS(3706), + [sym_integer] = ACTIONS(3706), + [sym_float] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym_multiline_string] = ACTIONS(3704), + [sym_character] = ACTIONS(3704), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3853), + [sym__newline] = ACTIONS(3704), }, [STATE(1649)] = { - [ts_builtin_sym_end] = ACTIONS(3857), - [sym_identifier] = ACTIONS(3859), - [anon_sym_import] = ACTIONS(3859), - [anon_sym_test] = ACTIONS(3859), - [anon_sym_hide] = ACTIONS(3859), - [anon_sym_func] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_struct] = ACTIONS(3859), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_RPAREN] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3857), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3857), - [anon_sym_DOLLAR] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_void] = ACTIONS(3859), - [anon_sym_anyopaque] = ACTIONS(3859), - [anon_sym_bool] = ACTIONS(3859), - [anon_sym_int] = ACTIONS(3859), - [anon_sym_uint] = ACTIONS(3859), - [anon_sym_float] = ACTIONS(3859), - [anon_sym_range] = ACTIONS(3859), - [anon_sym_i8] = ACTIONS(3859), - [anon_sym_i16] = ACTIONS(3859), - [anon_sym_i32] = ACTIONS(3859), - [anon_sym_i64] = ACTIONS(3859), - [anon_sym_u8] = ACTIONS(3859), - [anon_sym_u16] = ACTIONS(3859), - [anon_sym_u32] = ACTIONS(3859), - [anon_sym_u64] = ACTIONS(3859), - [anon_sym_isize] = ACTIONS(3859), - [anon_sym_usize] = ACTIONS(3859), - [anon_sym_f32] = ACTIONS(3859), - [anon_sym_f64] = ACTIONS(3859), - [anon_sym_c_char] = ACTIONS(3859), - [anon_sym_c_schar] = ACTIONS(3859), - [anon_sym_c_uchar] = ACTIONS(3859), - [anon_sym_c_short] = ACTIONS(3859), - [anon_sym_c_ushort] = ACTIONS(3859), - [anon_sym_c_int] = ACTIONS(3859), - [anon_sym_c_uint] = ACTIONS(3859), - [anon_sym_c_long] = ACTIONS(3859), - [anon_sym_c_ulong] = ACTIONS(3859), - [anon_sym_c_longlong] = ACTIONS(3859), - [anon_sym_c_ulonglong] = ACTIONS(3859), - [anon_sym_c_float] = ACTIONS(3859), - [anon_sym_c_double] = ACTIONS(3859), - [anon_sym_c_longdouble] = ACTIONS(3859), - [anon_sym_return] = ACTIONS(3859), - [anon_sym_yield] = ACTIONS(3859), - [anon_sym_break] = ACTIONS(3859), - [anon_sym_continue] = ACTIONS(3859), - [anon_sym_defer] = ACTIONS(3859), - [anon_sym_errdefer] = ACTIONS(3859), - [anon_sym_if] = ACTIONS(3859), - [anon_sym_else] = ACTIONS(3859), - [anon_sym_while] = ACTIONS(3859), - [anon_sym_expand] = ACTIONS(3859), - [anon_sym_for] = ACTIONS(3859), - [anon_sym_match] = ACTIONS(3859), - [anon_sym_AMP] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_try] = ACTIONS(3859), - [anon_sym_DOT] = ACTIONS(3857), - [anon_sym_true] = ACTIONS(3859), - [anon_sym_false] = ACTIONS(3859), - [sym_none] = ACTIONS(3859), - [sym_undefined] = ACTIONS(3859), - [sym_sink] = ACTIONS(3859), - [sym_integer] = ACTIONS(3859), - [sym_float] = ACTIONS(3857), - [anon_sym_DQUOTE] = ACTIONS(3857), - [sym_multiline_string] = ACTIONS(3857), - [sym_character] = ACTIONS(3857), + [ts_builtin_sym_end] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3710), + [anon_sym_import] = ACTIONS(3710), + [anon_sym_test] = ACTIONS(3710), + [anon_sym_hide] = ACTIONS(3710), + [anon_sym_func] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_DOLLAR] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_void] = ACTIONS(3710), + [anon_sym_type] = ACTIONS(3710), + [anon_sym_anyopaque] = ACTIONS(3710), + [anon_sym_bool] = ACTIONS(3710), + [anon_sym_int] = ACTIONS(3710), + [anon_sym_uint] = ACTIONS(3710), + [anon_sym_float] = ACTIONS(3710), + [anon_sym_range] = ACTIONS(3710), + [anon_sym_i8] = ACTIONS(3710), + [anon_sym_i16] = ACTIONS(3710), + [anon_sym_i32] = ACTIONS(3710), + [anon_sym_i64] = ACTIONS(3710), + [anon_sym_u8] = ACTIONS(3710), + [anon_sym_u16] = ACTIONS(3710), + [anon_sym_u32] = ACTIONS(3710), + [anon_sym_u64] = ACTIONS(3710), + [anon_sym_isize] = ACTIONS(3710), + [anon_sym_usize] = ACTIONS(3710), + [anon_sym_f32] = ACTIONS(3710), + [anon_sym_f64] = ACTIONS(3710), + [anon_sym_c_char] = ACTIONS(3710), + [anon_sym_c_schar] = ACTIONS(3710), + [anon_sym_c_uchar] = ACTIONS(3710), + [anon_sym_c_short] = ACTIONS(3710), + [anon_sym_c_ushort] = ACTIONS(3710), + [anon_sym_c_int] = ACTIONS(3710), + [anon_sym_c_uint] = ACTIONS(3710), + [anon_sym_c_long] = ACTIONS(3710), + [anon_sym_c_ulong] = ACTIONS(3710), + [anon_sym_c_longlong] = ACTIONS(3710), + [anon_sym_c_ulonglong] = ACTIONS(3710), + [anon_sym_c_float] = ACTIONS(3710), + [anon_sym_c_double] = ACTIONS(3710), + [anon_sym_c_longdouble] = ACTIONS(3710), + [anon_sym_return] = ACTIONS(3710), + [anon_sym_yield] = ACTIONS(3710), + [anon_sym_break] = ACTIONS(3710), + [anon_sym_continue] = ACTIONS(3710), + [anon_sym_defer] = ACTIONS(3710), + [anon_sym_errdefer] = ACTIONS(3710), + [anon_sym_if] = ACTIONS(3710), + [anon_sym_else] = ACTIONS(3710), + [anon_sym_while] = ACTIONS(3710), + [anon_sym_expand] = ACTIONS(3710), + [anon_sym_for] = ACTIONS(3710), + [anon_sym_match] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3710), + [anon_sym_DOT] = ACTIONS(3708), + [anon_sym_true] = ACTIONS(3710), + [anon_sym_false] = ACTIONS(3710), + [sym_none] = ACTIONS(3710), + [sym_undefined] = ACTIONS(3710), + [sym_sink] = ACTIONS(3710), + [sym_integer] = ACTIONS(3710), + [sym_float] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [sym_multiline_string] = ACTIONS(3708), + [sym_character] = ACTIONS(3708), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3857), + [sym__newline] = ACTIONS(3708), }, [STATE(1650)] = { - [ts_builtin_sym_end] = ACTIONS(3861), - [sym_identifier] = ACTIONS(3863), - [anon_sym_import] = ACTIONS(3863), - [anon_sym_test] = ACTIONS(3863), - [anon_sym_hide] = ACTIONS(3863), - [anon_sym_func] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_struct] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3861), - [anon_sym_RPAREN] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3861), - [anon_sym_RBRACE] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3861), - [anon_sym_void] = ACTIONS(3863), - [anon_sym_anyopaque] = ACTIONS(3863), - [anon_sym_bool] = ACTIONS(3863), - [anon_sym_int] = ACTIONS(3863), - [anon_sym_uint] = ACTIONS(3863), - [anon_sym_float] = ACTIONS(3863), - [anon_sym_range] = ACTIONS(3863), - [anon_sym_i8] = ACTIONS(3863), - [anon_sym_i16] = ACTIONS(3863), - [anon_sym_i32] = ACTIONS(3863), - [anon_sym_i64] = ACTIONS(3863), - [anon_sym_u8] = ACTIONS(3863), - [anon_sym_u16] = ACTIONS(3863), - [anon_sym_u32] = ACTIONS(3863), - [anon_sym_u64] = ACTIONS(3863), - [anon_sym_isize] = ACTIONS(3863), - [anon_sym_usize] = ACTIONS(3863), - [anon_sym_f32] = ACTIONS(3863), - [anon_sym_f64] = ACTIONS(3863), - [anon_sym_c_char] = ACTIONS(3863), - [anon_sym_c_schar] = ACTIONS(3863), - [anon_sym_c_uchar] = ACTIONS(3863), - [anon_sym_c_short] = ACTIONS(3863), - [anon_sym_c_ushort] = ACTIONS(3863), - [anon_sym_c_int] = ACTIONS(3863), - [anon_sym_c_uint] = ACTIONS(3863), - [anon_sym_c_long] = ACTIONS(3863), - [anon_sym_c_ulong] = ACTIONS(3863), - [anon_sym_c_longlong] = ACTIONS(3863), - [anon_sym_c_ulonglong] = ACTIONS(3863), - [anon_sym_c_float] = ACTIONS(3863), - [anon_sym_c_double] = ACTIONS(3863), - [anon_sym_c_longdouble] = ACTIONS(3863), - [anon_sym_return] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_break] = ACTIONS(3863), - [anon_sym_continue] = ACTIONS(3863), - [anon_sym_defer] = ACTIONS(3863), - [anon_sym_errdefer] = ACTIONS(3863), - [anon_sym_if] = ACTIONS(3863), - [anon_sym_else] = ACTIONS(3863), - [anon_sym_while] = ACTIONS(3863), - [anon_sym_expand] = ACTIONS(3863), - [anon_sym_for] = ACTIONS(3863), - [anon_sym_match] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3861), - [anon_sym_try] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_true] = ACTIONS(3863), - [anon_sym_false] = ACTIONS(3863), - [sym_none] = ACTIONS(3863), - [sym_undefined] = ACTIONS(3863), - [sym_sink] = ACTIONS(3863), - [sym_integer] = ACTIONS(3863), - [sym_float] = ACTIONS(3861), - [anon_sym_DQUOTE] = ACTIONS(3861), - [sym_multiline_string] = ACTIONS(3861), - [sym_character] = ACTIONS(3861), + [ts_builtin_sym_end] = ACTIONS(3712), + [sym_identifier] = ACTIONS(3714), + [anon_sym_import] = ACTIONS(3714), + [anon_sym_test] = ACTIONS(3714), + [anon_sym_hide] = ACTIONS(3714), + [anon_sym_func] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_RPAREN] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_void] = ACTIONS(3714), + [anon_sym_type] = ACTIONS(3714), + [anon_sym_anyopaque] = ACTIONS(3714), + [anon_sym_bool] = ACTIONS(3714), + [anon_sym_int] = ACTIONS(3714), + [anon_sym_uint] = ACTIONS(3714), + [anon_sym_float] = ACTIONS(3714), + [anon_sym_range] = ACTIONS(3714), + [anon_sym_i8] = ACTIONS(3714), + [anon_sym_i16] = ACTIONS(3714), + [anon_sym_i32] = ACTIONS(3714), + [anon_sym_i64] = ACTIONS(3714), + [anon_sym_u8] = ACTIONS(3714), + [anon_sym_u16] = ACTIONS(3714), + [anon_sym_u32] = ACTIONS(3714), + [anon_sym_u64] = ACTIONS(3714), + [anon_sym_isize] = ACTIONS(3714), + [anon_sym_usize] = ACTIONS(3714), + [anon_sym_f32] = ACTIONS(3714), + [anon_sym_f64] = ACTIONS(3714), + [anon_sym_c_char] = ACTIONS(3714), + [anon_sym_c_schar] = ACTIONS(3714), + [anon_sym_c_uchar] = ACTIONS(3714), + [anon_sym_c_short] = ACTIONS(3714), + [anon_sym_c_ushort] = ACTIONS(3714), + [anon_sym_c_int] = ACTIONS(3714), + [anon_sym_c_uint] = ACTIONS(3714), + [anon_sym_c_long] = ACTIONS(3714), + [anon_sym_c_ulong] = ACTIONS(3714), + [anon_sym_c_longlong] = ACTIONS(3714), + [anon_sym_c_ulonglong] = ACTIONS(3714), + [anon_sym_c_float] = ACTIONS(3714), + [anon_sym_c_double] = ACTIONS(3714), + [anon_sym_c_longdouble] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_defer] = ACTIONS(3714), + [anon_sym_errdefer] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_expand] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_match] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_true] = ACTIONS(3714), + [anon_sym_false] = ACTIONS(3714), + [sym_none] = ACTIONS(3714), + [sym_undefined] = ACTIONS(3714), + [sym_sink] = ACTIONS(3714), + [sym_integer] = ACTIONS(3714), + [sym_float] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_multiline_string] = ACTIONS(3712), + [sym_character] = ACTIONS(3712), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3861), + [sym__newline] = ACTIONS(3712), }, [STATE(1651)] = { - [ts_builtin_sym_end] = ACTIONS(3865), - [sym_identifier] = ACTIONS(3867), - [anon_sym_import] = ACTIONS(3867), - [anon_sym_test] = ACTIONS(3867), - [anon_sym_hide] = ACTIONS(3867), - [anon_sym_func] = ACTIONS(3867), - [anon_sym_BANG] = ACTIONS(3865), - [anon_sym_struct] = ACTIONS(3867), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_RPAREN] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3865), - [anon_sym_RBRACE] = ACTIONS(3865), - [anon_sym_DASH] = ACTIONS(3865), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACK] = ACTIONS(3865), - [anon_sym_void] = ACTIONS(3867), - [anon_sym_anyopaque] = ACTIONS(3867), - [anon_sym_bool] = ACTIONS(3867), - [anon_sym_int] = ACTIONS(3867), - [anon_sym_uint] = ACTIONS(3867), - [anon_sym_float] = ACTIONS(3867), - [anon_sym_range] = ACTIONS(3867), - [anon_sym_i8] = ACTIONS(3867), - [anon_sym_i16] = ACTIONS(3867), - [anon_sym_i32] = ACTIONS(3867), - [anon_sym_i64] = ACTIONS(3867), - [anon_sym_u8] = ACTIONS(3867), - [anon_sym_u16] = ACTIONS(3867), - [anon_sym_u32] = ACTIONS(3867), - [anon_sym_u64] = ACTIONS(3867), - [anon_sym_isize] = ACTIONS(3867), - [anon_sym_usize] = ACTIONS(3867), - [anon_sym_f32] = ACTIONS(3867), - [anon_sym_f64] = ACTIONS(3867), - [anon_sym_c_char] = ACTIONS(3867), - [anon_sym_c_schar] = ACTIONS(3867), - [anon_sym_c_uchar] = ACTIONS(3867), - [anon_sym_c_short] = ACTIONS(3867), - [anon_sym_c_ushort] = ACTIONS(3867), - [anon_sym_c_int] = ACTIONS(3867), - [anon_sym_c_uint] = ACTIONS(3867), - [anon_sym_c_long] = ACTIONS(3867), - [anon_sym_c_ulong] = ACTIONS(3867), - [anon_sym_c_longlong] = ACTIONS(3867), - [anon_sym_c_ulonglong] = ACTIONS(3867), - [anon_sym_c_float] = ACTIONS(3867), - [anon_sym_c_double] = ACTIONS(3867), - [anon_sym_c_longdouble] = ACTIONS(3867), - [anon_sym_return] = ACTIONS(3867), - [anon_sym_yield] = ACTIONS(3867), - [anon_sym_break] = ACTIONS(3867), - [anon_sym_continue] = ACTIONS(3867), - [anon_sym_defer] = ACTIONS(3867), - [anon_sym_errdefer] = ACTIONS(3867), - [anon_sym_if] = ACTIONS(3867), - [anon_sym_else] = ACTIONS(3867), - [anon_sym_while] = ACTIONS(3867), - [anon_sym_expand] = ACTIONS(3867), - [anon_sym_for] = ACTIONS(3867), - [anon_sym_match] = ACTIONS(3867), - [anon_sym_AMP] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(3865), - [anon_sym_try] = ACTIONS(3867), - [anon_sym_DOT] = ACTIONS(3865), - [anon_sym_true] = ACTIONS(3867), - [anon_sym_false] = ACTIONS(3867), - [sym_none] = ACTIONS(3867), - [sym_undefined] = ACTIONS(3867), - [sym_sink] = ACTIONS(3867), - [sym_integer] = ACTIONS(3867), - [sym_float] = ACTIONS(3865), - [anon_sym_DQUOTE] = ACTIONS(3865), - [sym_multiline_string] = ACTIONS(3865), - [sym_character] = ACTIONS(3865), + [ts_builtin_sym_end] = ACTIONS(3716), + [sym_identifier] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_test] = ACTIONS(3718), + [anon_sym_hide] = ACTIONS(3718), + [anon_sym_func] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_RBRACE] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_DOLLAR] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3718), + [anon_sym_type] = ACTIONS(3718), + [anon_sym_anyopaque] = ACTIONS(3718), + [anon_sym_bool] = ACTIONS(3718), + [anon_sym_int] = ACTIONS(3718), + [anon_sym_uint] = ACTIONS(3718), + [anon_sym_float] = ACTIONS(3718), + [anon_sym_range] = ACTIONS(3718), + [anon_sym_i8] = ACTIONS(3718), + [anon_sym_i16] = ACTIONS(3718), + [anon_sym_i32] = ACTIONS(3718), + [anon_sym_i64] = ACTIONS(3718), + [anon_sym_u8] = ACTIONS(3718), + [anon_sym_u16] = ACTIONS(3718), + [anon_sym_u32] = ACTIONS(3718), + [anon_sym_u64] = ACTIONS(3718), + [anon_sym_isize] = ACTIONS(3718), + [anon_sym_usize] = ACTIONS(3718), + [anon_sym_f32] = ACTIONS(3718), + [anon_sym_f64] = ACTIONS(3718), + [anon_sym_c_char] = ACTIONS(3718), + [anon_sym_c_schar] = ACTIONS(3718), + [anon_sym_c_uchar] = ACTIONS(3718), + [anon_sym_c_short] = ACTIONS(3718), + [anon_sym_c_ushort] = ACTIONS(3718), + [anon_sym_c_int] = ACTIONS(3718), + [anon_sym_c_uint] = ACTIONS(3718), + [anon_sym_c_long] = ACTIONS(3718), + [anon_sym_c_ulong] = ACTIONS(3718), + [anon_sym_c_longlong] = ACTIONS(3718), + [anon_sym_c_ulonglong] = ACTIONS(3718), + [anon_sym_c_float] = ACTIONS(3718), + [anon_sym_c_double] = ACTIONS(3718), + [anon_sym_c_longdouble] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_defer] = ACTIONS(3718), + [anon_sym_errdefer] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_else] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_expand] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [sym_none] = ACTIONS(3718), + [sym_undefined] = ACTIONS(3718), + [sym_sink] = ACTIONS(3718), + [sym_integer] = ACTIONS(3718), + [sym_float] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [sym_multiline_string] = ACTIONS(3716), + [sym_character] = ACTIONS(3716), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3865), + [sym__newline] = ACTIONS(3716), }, [STATE(1652)] = { - [ts_builtin_sym_end] = ACTIONS(3869), - [sym_identifier] = ACTIONS(3871), - [anon_sym_import] = ACTIONS(3871), - [anon_sym_test] = ACTIONS(3871), - [anon_sym_hide] = ACTIONS(3871), - [anon_sym_func] = ACTIONS(3871), - [anon_sym_BANG] = ACTIONS(3869), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3869), - [anon_sym_RPAREN] = ACTIONS(3869), - [anon_sym_LBRACE] = ACTIONS(3869), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_DOLLAR] = ACTIONS(3869), - [anon_sym_LBRACK] = ACTIONS(3869), - [anon_sym_void] = ACTIONS(3871), - [anon_sym_anyopaque] = ACTIONS(3871), - [anon_sym_bool] = ACTIONS(3871), - [anon_sym_int] = ACTIONS(3871), - [anon_sym_uint] = ACTIONS(3871), - [anon_sym_float] = ACTIONS(3871), - [anon_sym_range] = ACTIONS(3871), - [anon_sym_i8] = ACTIONS(3871), - [anon_sym_i16] = ACTIONS(3871), - [anon_sym_i32] = ACTIONS(3871), - [anon_sym_i64] = ACTIONS(3871), - [anon_sym_u8] = ACTIONS(3871), - [anon_sym_u16] = ACTIONS(3871), - [anon_sym_u32] = ACTIONS(3871), - [anon_sym_u64] = ACTIONS(3871), - [anon_sym_isize] = ACTIONS(3871), - [anon_sym_usize] = ACTIONS(3871), - [anon_sym_f32] = ACTIONS(3871), - [anon_sym_f64] = ACTIONS(3871), - [anon_sym_c_char] = ACTIONS(3871), - [anon_sym_c_schar] = ACTIONS(3871), - [anon_sym_c_uchar] = ACTIONS(3871), - [anon_sym_c_short] = ACTIONS(3871), - [anon_sym_c_ushort] = ACTIONS(3871), - [anon_sym_c_int] = ACTIONS(3871), - [anon_sym_c_uint] = ACTIONS(3871), - [anon_sym_c_long] = ACTIONS(3871), - [anon_sym_c_ulong] = ACTIONS(3871), - [anon_sym_c_longlong] = ACTIONS(3871), - [anon_sym_c_ulonglong] = ACTIONS(3871), - [anon_sym_c_float] = ACTIONS(3871), - [anon_sym_c_double] = ACTIONS(3871), - [anon_sym_c_longdouble] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_yield] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_defer] = ACTIONS(3871), - [anon_sym_errdefer] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_else] = ACTIONS(3871), - [anon_sym_while] = ACTIONS(3871), - [anon_sym_expand] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_match] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3869), - [anon_sym_TILDE] = ACTIONS(3869), - [anon_sym_try] = ACTIONS(3871), - [anon_sym_DOT] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [sym_none] = ACTIONS(3871), - [sym_undefined] = ACTIONS(3871), - [sym_sink] = ACTIONS(3871), - [sym_integer] = ACTIONS(3871), - [sym_float] = ACTIONS(3869), - [anon_sym_DQUOTE] = ACTIONS(3869), - [sym_multiline_string] = ACTIONS(3869), - [sym_character] = ACTIONS(3869), + [ts_builtin_sym_end] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_test] = ACTIONS(3722), + [anon_sym_hide] = ACTIONS(3722), + [anon_sym_func] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3720), + [anon_sym_RPAREN] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_void] = ACTIONS(3722), + [anon_sym_type] = ACTIONS(3722), + [anon_sym_anyopaque] = ACTIONS(3722), + [anon_sym_bool] = ACTIONS(3722), + [anon_sym_int] = ACTIONS(3722), + [anon_sym_uint] = ACTIONS(3722), + [anon_sym_float] = ACTIONS(3722), + [anon_sym_range] = ACTIONS(3722), + [anon_sym_i8] = ACTIONS(3722), + [anon_sym_i16] = ACTIONS(3722), + [anon_sym_i32] = ACTIONS(3722), + [anon_sym_i64] = ACTIONS(3722), + [anon_sym_u8] = ACTIONS(3722), + [anon_sym_u16] = ACTIONS(3722), + [anon_sym_u32] = ACTIONS(3722), + [anon_sym_u64] = ACTIONS(3722), + [anon_sym_isize] = ACTIONS(3722), + [anon_sym_usize] = ACTIONS(3722), + [anon_sym_f32] = ACTIONS(3722), + [anon_sym_f64] = ACTIONS(3722), + [anon_sym_c_char] = ACTIONS(3722), + [anon_sym_c_schar] = ACTIONS(3722), + [anon_sym_c_uchar] = ACTIONS(3722), + [anon_sym_c_short] = ACTIONS(3722), + [anon_sym_c_ushort] = ACTIONS(3722), + [anon_sym_c_int] = ACTIONS(3722), + [anon_sym_c_uint] = ACTIONS(3722), + [anon_sym_c_long] = ACTIONS(3722), + [anon_sym_c_ulong] = ACTIONS(3722), + [anon_sym_c_longlong] = ACTIONS(3722), + [anon_sym_c_ulonglong] = ACTIONS(3722), + [anon_sym_c_float] = ACTIONS(3722), + [anon_sym_c_double] = ACTIONS(3722), + [anon_sym_c_longdouble] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_defer] = ACTIONS(3722), + [anon_sym_errdefer] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_else] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_expand] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3720), + [anon_sym_true] = ACTIONS(3722), + [anon_sym_false] = ACTIONS(3722), + [sym_none] = ACTIONS(3722), + [sym_undefined] = ACTIONS(3722), + [sym_sink] = ACTIONS(3722), + [sym_integer] = ACTIONS(3722), + [sym_float] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [sym_multiline_string] = ACTIONS(3720), + [sym_character] = ACTIONS(3720), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3869), + [sym__newline] = ACTIONS(3720), }, [STATE(1653)] = { - [ts_builtin_sym_end] = ACTIONS(3873), - [sym_identifier] = ACTIONS(3875), - [anon_sym_import] = ACTIONS(3875), - [anon_sym_test] = ACTIONS(3875), - [anon_sym_hide] = ACTIONS(3875), - [anon_sym_func] = ACTIONS(3875), - [anon_sym_BANG] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym_RPAREN] = ACTIONS(3873), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_DASH] = ACTIONS(3873), - [anon_sym_DOLLAR] = ACTIONS(3873), - [anon_sym_LBRACK] = ACTIONS(3873), - [anon_sym_void] = ACTIONS(3875), - [anon_sym_anyopaque] = ACTIONS(3875), - [anon_sym_bool] = ACTIONS(3875), - [anon_sym_int] = ACTIONS(3875), - [anon_sym_uint] = ACTIONS(3875), - [anon_sym_float] = ACTIONS(3875), - [anon_sym_range] = ACTIONS(3875), - [anon_sym_i8] = ACTIONS(3875), - [anon_sym_i16] = ACTIONS(3875), - [anon_sym_i32] = ACTIONS(3875), - [anon_sym_i64] = ACTIONS(3875), - [anon_sym_u8] = ACTIONS(3875), - [anon_sym_u16] = ACTIONS(3875), - [anon_sym_u32] = ACTIONS(3875), - [anon_sym_u64] = ACTIONS(3875), - [anon_sym_isize] = ACTIONS(3875), - [anon_sym_usize] = ACTIONS(3875), - [anon_sym_f32] = ACTIONS(3875), - [anon_sym_f64] = ACTIONS(3875), - [anon_sym_c_char] = ACTIONS(3875), - [anon_sym_c_schar] = ACTIONS(3875), - [anon_sym_c_uchar] = ACTIONS(3875), - [anon_sym_c_short] = ACTIONS(3875), - [anon_sym_c_ushort] = ACTIONS(3875), - [anon_sym_c_int] = ACTIONS(3875), - [anon_sym_c_uint] = ACTIONS(3875), - [anon_sym_c_long] = ACTIONS(3875), - [anon_sym_c_ulong] = ACTIONS(3875), - [anon_sym_c_longlong] = ACTIONS(3875), - [anon_sym_c_ulonglong] = ACTIONS(3875), - [anon_sym_c_float] = ACTIONS(3875), - [anon_sym_c_double] = ACTIONS(3875), - [anon_sym_c_longdouble] = ACTIONS(3875), - [anon_sym_return] = ACTIONS(3875), - [anon_sym_yield] = ACTIONS(3875), - [anon_sym_break] = ACTIONS(3875), - [anon_sym_continue] = ACTIONS(3875), - [anon_sym_defer] = ACTIONS(3875), - [anon_sym_errdefer] = ACTIONS(3875), - [anon_sym_if] = ACTIONS(3875), - [anon_sym_else] = ACTIONS(3875), - [anon_sym_while] = ACTIONS(3875), - [anon_sym_expand] = ACTIONS(3875), - [anon_sym_for] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(3875), - [anon_sym_AMP] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_try] = ACTIONS(3875), - [anon_sym_DOT] = ACTIONS(3873), - [anon_sym_true] = ACTIONS(3875), - [anon_sym_false] = ACTIONS(3875), - [sym_none] = ACTIONS(3875), - [sym_undefined] = ACTIONS(3875), - [sym_sink] = ACTIONS(3875), - [sym_integer] = ACTIONS(3875), - [sym_float] = ACTIONS(3873), - [anon_sym_DQUOTE] = ACTIONS(3873), - [sym_multiline_string] = ACTIONS(3873), - [sym_character] = ACTIONS(3873), + [ts_builtin_sym_end] = ACTIONS(3724), + [sym_identifier] = ACTIONS(3726), + [anon_sym_import] = ACTIONS(3726), + [anon_sym_test] = ACTIONS(3726), + [anon_sym_hide] = ACTIONS(3726), + [anon_sym_func] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_LPAREN] = ACTIONS(3724), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_void] = ACTIONS(3726), + [anon_sym_type] = ACTIONS(3726), + [anon_sym_anyopaque] = ACTIONS(3726), + [anon_sym_bool] = ACTIONS(3726), + [anon_sym_int] = ACTIONS(3726), + [anon_sym_uint] = ACTIONS(3726), + [anon_sym_float] = ACTIONS(3726), + [anon_sym_range] = ACTIONS(3726), + [anon_sym_i8] = ACTIONS(3726), + [anon_sym_i16] = ACTIONS(3726), + [anon_sym_i32] = ACTIONS(3726), + [anon_sym_i64] = ACTIONS(3726), + [anon_sym_u8] = ACTIONS(3726), + [anon_sym_u16] = ACTIONS(3726), + [anon_sym_u32] = ACTIONS(3726), + [anon_sym_u64] = ACTIONS(3726), + [anon_sym_isize] = ACTIONS(3726), + [anon_sym_usize] = ACTIONS(3726), + [anon_sym_f32] = ACTIONS(3726), + [anon_sym_f64] = ACTIONS(3726), + [anon_sym_c_char] = ACTIONS(3726), + [anon_sym_c_schar] = ACTIONS(3726), + [anon_sym_c_uchar] = ACTIONS(3726), + [anon_sym_c_short] = ACTIONS(3726), + [anon_sym_c_ushort] = ACTIONS(3726), + [anon_sym_c_int] = ACTIONS(3726), + [anon_sym_c_uint] = ACTIONS(3726), + [anon_sym_c_long] = ACTIONS(3726), + [anon_sym_c_ulong] = ACTIONS(3726), + [anon_sym_c_longlong] = ACTIONS(3726), + [anon_sym_c_ulonglong] = ACTIONS(3726), + [anon_sym_c_float] = ACTIONS(3726), + [anon_sym_c_double] = ACTIONS(3726), + [anon_sym_c_longdouble] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_break] = ACTIONS(3726), + [anon_sym_continue] = ACTIONS(3726), + [anon_sym_defer] = ACTIONS(3726), + [anon_sym_errdefer] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_else] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_expand] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_true] = ACTIONS(3726), + [anon_sym_false] = ACTIONS(3726), + [sym_none] = ACTIONS(3726), + [sym_undefined] = ACTIONS(3726), + [sym_sink] = ACTIONS(3726), + [sym_integer] = ACTIONS(3726), + [sym_float] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3724), + [sym_multiline_string] = ACTIONS(3724), + [sym_character] = ACTIONS(3724), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3873), + [sym__newline] = ACTIONS(3724), }, [STATE(1654)] = { - [ts_builtin_sym_end] = ACTIONS(3877), - [sym_identifier] = ACTIONS(3879), - [anon_sym_import] = ACTIONS(3879), - [anon_sym_test] = ACTIONS(3879), - [anon_sym_hide] = ACTIONS(3879), - [anon_sym_func] = ACTIONS(3879), - [anon_sym_BANG] = ACTIONS(3877), - [anon_sym_struct] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3877), - [anon_sym_RPAREN] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3877), - [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_DOLLAR] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3877), - [anon_sym_void] = ACTIONS(3879), - [anon_sym_anyopaque] = ACTIONS(3879), - [anon_sym_bool] = ACTIONS(3879), - [anon_sym_int] = ACTIONS(3879), - [anon_sym_uint] = ACTIONS(3879), - [anon_sym_float] = ACTIONS(3879), - [anon_sym_range] = ACTIONS(3879), - [anon_sym_i8] = ACTIONS(3879), - [anon_sym_i16] = ACTIONS(3879), - [anon_sym_i32] = ACTIONS(3879), - [anon_sym_i64] = ACTIONS(3879), - [anon_sym_u8] = ACTIONS(3879), - [anon_sym_u16] = ACTIONS(3879), - [anon_sym_u32] = ACTIONS(3879), - [anon_sym_u64] = ACTIONS(3879), - [anon_sym_isize] = ACTIONS(3879), - [anon_sym_usize] = ACTIONS(3879), - [anon_sym_f32] = ACTIONS(3879), - [anon_sym_f64] = ACTIONS(3879), - [anon_sym_c_char] = ACTIONS(3879), - [anon_sym_c_schar] = ACTIONS(3879), - [anon_sym_c_uchar] = ACTIONS(3879), - [anon_sym_c_short] = ACTIONS(3879), - [anon_sym_c_ushort] = ACTIONS(3879), - [anon_sym_c_int] = ACTIONS(3879), - [anon_sym_c_uint] = ACTIONS(3879), - [anon_sym_c_long] = ACTIONS(3879), - [anon_sym_c_ulong] = ACTIONS(3879), - [anon_sym_c_longlong] = ACTIONS(3879), - [anon_sym_c_ulonglong] = ACTIONS(3879), - [anon_sym_c_float] = ACTIONS(3879), - [anon_sym_c_double] = ACTIONS(3879), - [anon_sym_c_longdouble] = ACTIONS(3879), - [anon_sym_return] = ACTIONS(3879), - [anon_sym_yield] = ACTIONS(3879), - [anon_sym_break] = ACTIONS(3879), - [anon_sym_continue] = ACTIONS(3879), - [anon_sym_defer] = ACTIONS(3879), - [anon_sym_errdefer] = ACTIONS(3879), - [anon_sym_if] = ACTIONS(3879), - [anon_sym_else] = ACTIONS(3879), - [anon_sym_while] = ACTIONS(3879), - [anon_sym_expand] = ACTIONS(3879), - [anon_sym_for] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3879), - [anon_sym_AMP] = ACTIONS(3877), - [anon_sym_TILDE] = ACTIONS(3877), - [anon_sym_try] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_true] = ACTIONS(3879), - [anon_sym_false] = ACTIONS(3879), - [sym_none] = ACTIONS(3879), - [sym_undefined] = ACTIONS(3879), - [sym_sink] = ACTIONS(3879), - [sym_integer] = ACTIONS(3879), - [sym_float] = ACTIONS(3877), - [anon_sym_DQUOTE] = ACTIONS(3877), - [sym_multiline_string] = ACTIONS(3877), - [sym_character] = ACTIONS(3877), + [ts_builtin_sym_end] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_test] = ACTIONS(3730), + [anon_sym_hide] = ACTIONS(3730), + [anon_sym_func] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_RPAREN] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_void] = ACTIONS(3730), + [anon_sym_type] = ACTIONS(3730), + [anon_sym_anyopaque] = ACTIONS(3730), + [anon_sym_bool] = ACTIONS(3730), + [anon_sym_int] = ACTIONS(3730), + [anon_sym_uint] = ACTIONS(3730), + [anon_sym_float] = ACTIONS(3730), + [anon_sym_range] = ACTIONS(3730), + [anon_sym_i8] = ACTIONS(3730), + [anon_sym_i16] = ACTIONS(3730), + [anon_sym_i32] = ACTIONS(3730), + [anon_sym_i64] = ACTIONS(3730), + [anon_sym_u8] = ACTIONS(3730), + [anon_sym_u16] = ACTIONS(3730), + [anon_sym_u32] = ACTIONS(3730), + [anon_sym_u64] = ACTIONS(3730), + [anon_sym_isize] = ACTIONS(3730), + [anon_sym_usize] = ACTIONS(3730), + [anon_sym_f32] = ACTIONS(3730), + [anon_sym_f64] = ACTIONS(3730), + [anon_sym_c_char] = ACTIONS(3730), + [anon_sym_c_schar] = ACTIONS(3730), + [anon_sym_c_uchar] = ACTIONS(3730), + [anon_sym_c_short] = ACTIONS(3730), + [anon_sym_c_ushort] = ACTIONS(3730), + [anon_sym_c_int] = ACTIONS(3730), + [anon_sym_c_uint] = ACTIONS(3730), + [anon_sym_c_long] = ACTIONS(3730), + [anon_sym_c_ulong] = ACTIONS(3730), + [anon_sym_c_longlong] = ACTIONS(3730), + [anon_sym_c_ulonglong] = ACTIONS(3730), + [anon_sym_c_float] = ACTIONS(3730), + [anon_sym_c_double] = ACTIONS(3730), + [anon_sym_c_longdouble] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_defer] = ACTIONS(3730), + [anon_sym_errdefer] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_else] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_expand] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3728), + [anon_sym_true] = ACTIONS(3730), + [anon_sym_false] = ACTIONS(3730), + [sym_none] = ACTIONS(3730), + [sym_undefined] = ACTIONS(3730), + [sym_sink] = ACTIONS(3730), + [sym_integer] = ACTIONS(3730), + [sym_float] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [sym_multiline_string] = ACTIONS(3728), + [sym_character] = ACTIONS(3728), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3877), + [sym__newline] = ACTIONS(3728), }, [STATE(1655)] = { - [ts_builtin_sym_end] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3883), - [anon_sym_import] = ACTIONS(3883), - [anon_sym_test] = ACTIONS(3883), - [anon_sym_hide] = ACTIONS(3883), - [anon_sym_func] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3881), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_LPAREN] = ACTIONS(3881), - [anon_sym_RPAREN] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3881), - [anon_sym_DASH] = ACTIONS(3881), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_LBRACK] = ACTIONS(3881), - [anon_sym_void] = ACTIONS(3883), - [anon_sym_anyopaque] = ACTIONS(3883), - [anon_sym_bool] = ACTIONS(3883), - [anon_sym_int] = ACTIONS(3883), - [anon_sym_uint] = ACTIONS(3883), - [anon_sym_float] = ACTIONS(3883), - [anon_sym_range] = ACTIONS(3883), - [anon_sym_i8] = ACTIONS(3883), - [anon_sym_i16] = ACTIONS(3883), - [anon_sym_i32] = ACTIONS(3883), - [anon_sym_i64] = ACTIONS(3883), - [anon_sym_u8] = ACTIONS(3883), - [anon_sym_u16] = ACTIONS(3883), - [anon_sym_u32] = ACTIONS(3883), - [anon_sym_u64] = ACTIONS(3883), - [anon_sym_isize] = ACTIONS(3883), - [anon_sym_usize] = ACTIONS(3883), - [anon_sym_f32] = ACTIONS(3883), - [anon_sym_f64] = ACTIONS(3883), - [anon_sym_c_char] = ACTIONS(3883), - [anon_sym_c_schar] = ACTIONS(3883), - [anon_sym_c_uchar] = ACTIONS(3883), - [anon_sym_c_short] = ACTIONS(3883), - [anon_sym_c_ushort] = ACTIONS(3883), - [anon_sym_c_int] = ACTIONS(3883), - [anon_sym_c_uint] = ACTIONS(3883), - [anon_sym_c_long] = ACTIONS(3883), - [anon_sym_c_ulong] = ACTIONS(3883), - [anon_sym_c_longlong] = ACTIONS(3883), - [anon_sym_c_ulonglong] = ACTIONS(3883), - [anon_sym_c_float] = ACTIONS(3883), - [anon_sym_c_double] = ACTIONS(3883), - [anon_sym_c_longdouble] = ACTIONS(3883), - [anon_sym_return] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_break] = ACTIONS(3883), - [anon_sym_continue] = ACTIONS(3883), - [anon_sym_defer] = ACTIONS(3883), - [anon_sym_errdefer] = ACTIONS(3883), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_else] = ACTIONS(3883), - [anon_sym_while] = ACTIONS(3883), - [anon_sym_expand] = ACTIONS(3883), - [anon_sym_for] = ACTIONS(3883), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3881), - [anon_sym_TILDE] = ACTIONS(3881), - [anon_sym_try] = ACTIONS(3883), - [anon_sym_DOT] = ACTIONS(3881), - [anon_sym_true] = ACTIONS(3883), - [anon_sym_false] = ACTIONS(3883), - [sym_none] = ACTIONS(3883), - [sym_undefined] = ACTIONS(3883), - [sym_sink] = ACTIONS(3883), - [sym_integer] = ACTIONS(3883), - [sym_float] = ACTIONS(3881), - [anon_sym_DQUOTE] = ACTIONS(3881), - [sym_multiline_string] = ACTIONS(3881), - [sym_character] = ACTIONS(3881), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3734), + [anon_sym_import] = ACTIONS(3734), + [anon_sym_test] = ACTIONS(3734), + [anon_sym_hide] = ACTIONS(3734), + [anon_sym_func] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_void] = ACTIONS(3734), + [anon_sym_type] = ACTIONS(3734), + [anon_sym_anyopaque] = ACTIONS(3734), + [anon_sym_bool] = ACTIONS(3734), + [anon_sym_int] = ACTIONS(3734), + [anon_sym_uint] = ACTIONS(3734), + [anon_sym_float] = ACTIONS(3734), + [anon_sym_range] = ACTIONS(3734), + [anon_sym_i8] = ACTIONS(3734), + [anon_sym_i16] = ACTIONS(3734), + [anon_sym_i32] = ACTIONS(3734), + [anon_sym_i64] = ACTIONS(3734), + [anon_sym_u8] = ACTIONS(3734), + [anon_sym_u16] = ACTIONS(3734), + [anon_sym_u32] = ACTIONS(3734), + [anon_sym_u64] = ACTIONS(3734), + [anon_sym_isize] = ACTIONS(3734), + [anon_sym_usize] = ACTIONS(3734), + [anon_sym_f32] = ACTIONS(3734), + [anon_sym_f64] = ACTIONS(3734), + [anon_sym_c_char] = ACTIONS(3734), + [anon_sym_c_schar] = ACTIONS(3734), + [anon_sym_c_uchar] = ACTIONS(3734), + [anon_sym_c_short] = ACTIONS(3734), + [anon_sym_c_ushort] = ACTIONS(3734), + [anon_sym_c_int] = ACTIONS(3734), + [anon_sym_c_uint] = ACTIONS(3734), + [anon_sym_c_long] = ACTIONS(3734), + [anon_sym_c_ulong] = ACTIONS(3734), + [anon_sym_c_longlong] = ACTIONS(3734), + [anon_sym_c_ulonglong] = ACTIONS(3734), + [anon_sym_c_float] = ACTIONS(3734), + [anon_sym_c_double] = ACTIONS(3734), + [anon_sym_c_longdouble] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_break] = ACTIONS(3734), + [anon_sym_continue] = ACTIONS(3734), + [anon_sym_defer] = ACTIONS(3734), + [anon_sym_errdefer] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_else] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_expand] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3732), + [anon_sym_true] = ACTIONS(3734), + [anon_sym_false] = ACTIONS(3734), + [sym_none] = ACTIONS(3734), + [sym_undefined] = ACTIONS(3734), + [sym_sink] = ACTIONS(3734), + [sym_integer] = ACTIONS(3734), + [sym_float] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_multiline_string] = ACTIONS(3732), + [sym_character] = ACTIONS(3732), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3881), + [sym__newline] = ACTIONS(3732), }, [STATE(1656)] = { - [ts_builtin_sym_end] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3887), - [anon_sym_import] = ACTIONS(3887), - [anon_sym_test] = ACTIONS(3887), - [anon_sym_hide] = ACTIONS(3887), - [anon_sym_func] = ACTIONS(3887), - [anon_sym_BANG] = ACTIONS(3885), - [anon_sym_struct] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3885), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3885), - [anon_sym_RBRACE] = ACTIONS(3885), - [anon_sym_DASH] = ACTIONS(3885), - [anon_sym_DOLLAR] = ACTIONS(3885), - [anon_sym_LBRACK] = ACTIONS(3885), - [anon_sym_void] = ACTIONS(3887), - [anon_sym_anyopaque] = ACTIONS(3887), - [anon_sym_bool] = ACTIONS(3887), - [anon_sym_int] = ACTIONS(3887), - [anon_sym_uint] = ACTIONS(3887), - [anon_sym_float] = ACTIONS(3887), - [anon_sym_range] = ACTIONS(3887), - [anon_sym_i8] = ACTIONS(3887), - [anon_sym_i16] = ACTIONS(3887), - [anon_sym_i32] = ACTIONS(3887), - [anon_sym_i64] = ACTIONS(3887), - [anon_sym_u8] = ACTIONS(3887), - [anon_sym_u16] = ACTIONS(3887), - [anon_sym_u32] = ACTIONS(3887), - [anon_sym_u64] = ACTIONS(3887), - [anon_sym_isize] = ACTIONS(3887), - [anon_sym_usize] = ACTIONS(3887), - [anon_sym_f32] = ACTIONS(3887), - [anon_sym_f64] = ACTIONS(3887), - [anon_sym_c_char] = ACTIONS(3887), - [anon_sym_c_schar] = ACTIONS(3887), - [anon_sym_c_uchar] = ACTIONS(3887), - [anon_sym_c_short] = ACTIONS(3887), - [anon_sym_c_ushort] = ACTIONS(3887), - [anon_sym_c_int] = ACTIONS(3887), - [anon_sym_c_uint] = ACTIONS(3887), - [anon_sym_c_long] = ACTIONS(3887), - [anon_sym_c_ulong] = ACTIONS(3887), - [anon_sym_c_longlong] = ACTIONS(3887), - [anon_sym_c_ulonglong] = ACTIONS(3887), - [anon_sym_c_float] = ACTIONS(3887), - [anon_sym_c_double] = ACTIONS(3887), - [anon_sym_c_longdouble] = ACTIONS(3887), - [anon_sym_return] = ACTIONS(3887), - [anon_sym_yield] = ACTIONS(3887), - [anon_sym_break] = ACTIONS(3887), - [anon_sym_continue] = ACTIONS(3887), - [anon_sym_defer] = ACTIONS(3887), - [anon_sym_errdefer] = ACTIONS(3887), - [anon_sym_if] = ACTIONS(3887), - [anon_sym_else] = ACTIONS(3887), - [anon_sym_while] = ACTIONS(3887), - [anon_sym_expand] = ACTIONS(3887), - [anon_sym_for] = ACTIONS(3887), - [anon_sym_match] = ACTIONS(3887), - [anon_sym_AMP] = ACTIONS(3885), - [anon_sym_TILDE] = ACTIONS(3885), - [anon_sym_try] = ACTIONS(3887), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [sym_none] = ACTIONS(3887), - [sym_undefined] = ACTIONS(3887), - [sym_sink] = ACTIONS(3887), - [sym_integer] = ACTIONS(3887), - [sym_float] = ACTIONS(3885), - [anon_sym_DQUOTE] = ACTIONS(3885), - [sym_multiline_string] = ACTIONS(3885), - [sym_character] = ACTIONS(3885), + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3738), + [anon_sym_import] = ACTIONS(3738), + [anon_sym_test] = ACTIONS(3738), + [anon_sym_hide] = ACTIONS(3738), + [anon_sym_func] = ACTIONS(3738), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_RPAREN] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3736), + [anon_sym_LBRACK] = ACTIONS(3736), + [anon_sym_void] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_anyopaque] = ACTIONS(3738), + [anon_sym_bool] = ACTIONS(3738), + [anon_sym_int] = ACTIONS(3738), + [anon_sym_uint] = ACTIONS(3738), + [anon_sym_float] = ACTIONS(3738), + [anon_sym_range] = ACTIONS(3738), + [anon_sym_i8] = ACTIONS(3738), + [anon_sym_i16] = ACTIONS(3738), + [anon_sym_i32] = ACTIONS(3738), + [anon_sym_i64] = ACTIONS(3738), + [anon_sym_u8] = ACTIONS(3738), + [anon_sym_u16] = ACTIONS(3738), + [anon_sym_u32] = ACTIONS(3738), + [anon_sym_u64] = ACTIONS(3738), + [anon_sym_isize] = ACTIONS(3738), + [anon_sym_usize] = ACTIONS(3738), + [anon_sym_f32] = ACTIONS(3738), + [anon_sym_f64] = ACTIONS(3738), + [anon_sym_c_char] = ACTIONS(3738), + [anon_sym_c_schar] = ACTIONS(3738), + [anon_sym_c_uchar] = ACTIONS(3738), + [anon_sym_c_short] = ACTIONS(3738), + [anon_sym_c_ushort] = ACTIONS(3738), + [anon_sym_c_int] = ACTIONS(3738), + [anon_sym_c_uint] = ACTIONS(3738), + [anon_sym_c_long] = ACTIONS(3738), + [anon_sym_c_ulong] = ACTIONS(3738), + [anon_sym_c_longlong] = ACTIONS(3738), + [anon_sym_c_ulonglong] = ACTIONS(3738), + [anon_sym_c_float] = ACTIONS(3738), + [anon_sym_c_double] = ACTIONS(3738), + [anon_sym_c_longdouble] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_defer] = ACTIONS(3738), + [anon_sym_errdefer] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_else] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_expand] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_true] = ACTIONS(3738), + [anon_sym_false] = ACTIONS(3738), + [sym_none] = ACTIONS(3738), + [sym_undefined] = ACTIONS(3738), + [sym_sink] = ACTIONS(3738), + [sym_integer] = ACTIONS(3738), + [sym_float] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(3736), + [sym_multiline_string] = ACTIONS(3736), + [sym_character] = ACTIONS(3736), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3885), + [sym__newline] = ACTIONS(3736), }, [STATE(1657)] = { - [ts_builtin_sym_end] = ACTIONS(3889), - [sym_identifier] = ACTIONS(3891), - [anon_sym_import] = ACTIONS(3891), - [anon_sym_test] = ACTIONS(3891), - [anon_sym_hide] = ACTIONS(3891), - [anon_sym_func] = ACTIONS(3891), - [anon_sym_BANG] = ACTIONS(3889), - [anon_sym_struct] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_RPAREN] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3889), - [anon_sym_RBRACE] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_DOLLAR] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3889), - [anon_sym_void] = ACTIONS(3891), - [anon_sym_anyopaque] = ACTIONS(3891), - [anon_sym_bool] = ACTIONS(3891), - [anon_sym_int] = ACTIONS(3891), - [anon_sym_uint] = ACTIONS(3891), - [anon_sym_float] = ACTIONS(3891), - [anon_sym_range] = ACTIONS(3891), - [anon_sym_i8] = ACTIONS(3891), - [anon_sym_i16] = ACTIONS(3891), - [anon_sym_i32] = ACTIONS(3891), - [anon_sym_i64] = ACTIONS(3891), - [anon_sym_u8] = ACTIONS(3891), - [anon_sym_u16] = ACTIONS(3891), - [anon_sym_u32] = ACTIONS(3891), - [anon_sym_u64] = ACTIONS(3891), - [anon_sym_isize] = ACTIONS(3891), - [anon_sym_usize] = ACTIONS(3891), - [anon_sym_f32] = ACTIONS(3891), - [anon_sym_f64] = ACTIONS(3891), - [anon_sym_c_char] = ACTIONS(3891), - [anon_sym_c_schar] = ACTIONS(3891), - [anon_sym_c_uchar] = ACTIONS(3891), - [anon_sym_c_short] = ACTIONS(3891), - [anon_sym_c_ushort] = ACTIONS(3891), - [anon_sym_c_int] = ACTIONS(3891), - [anon_sym_c_uint] = ACTIONS(3891), - [anon_sym_c_long] = ACTIONS(3891), - [anon_sym_c_ulong] = ACTIONS(3891), - [anon_sym_c_longlong] = ACTIONS(3891), - [anon_sym_c_ulonglong] = ACTIONS(3891), - [anon_sym_c_float] = ACTIONS(3891), - [anon_sym_c_double] = ACTIONS(3891), - [anon_sym_c_longdouble] = ACTIONS(3891), - [anon_sym_return] = ACTIONS(3891), - [anon_sym_yield] = ACTIONS(3891), - [anon_sym_break] = ACTIONS(3891), - [anon_sym_continue] = ACTIONS(3891), - [anon_sym_defer] = ACTIONS(3891), - [anon_sym_errdefer] = ACTIONS(3891), - [anon_sym_if] = ACTIONS(3891), - [anon_sym_else] = ACTIONS(3891), - [anon_sym_while] = ACTIONS(3891), - [anon_sym_expand] = ACTIONS(3891), - [anon_sym_for] = ACTIONS(3891), - [anon_sym_match] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3889), - [anon_sym_TILDE] = ACTIONS(3889), - [anon_sym_try] = ACTIONS(3891), - [anon_sym_DOT] = ACTIONS(3889), - [anon_sym_true] = ACTIONS(3891), - [anon_sym_false] = ACTIONS(3891), - [sym_none] = ACTIONS(3891), - [sym_undefined] = ACTIONS(3891), - [sym_sink] = ACTIONS(3891), - [sym_integer] = ACTIONS(3891), - [sym_float] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_multiline_string] = ACTIONS(3889), - [sym_character] = ACTIONS(3889), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_test] = ACTIONS(3742), + [anon_sym_hide] = ACTIONS(3742), + [anon_sym_func] = ACTIONS(3742), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_anyopaque] = ACTIONS(3742), + [anon_sym_bool] = ACTIONS(3742), + [anon_sym_int] = ACTIONS(3742), + [anon_sym_uint] = ACTIONS(3742), + [anon_sym_float] = ACTIONS(3742), + [anon_sym_range] = ACTIONS(3742), + [anon_sym_i8] = ACTIONS(3742), + [anon_sym_i16] = ACTIONS(3742), + [anon_sym_i32] = ACTIONS(3742), + [anon_sym_i64] = ACTIONS(3742), + [anon_sym_u8] = ACTIONS(3742), + [anon_sym_u16] = ACTIONS(3742), + [anon_sym_u32] = ACTIONS(3742), + [anon_sym_u64] = ACTIONS(3742), + [anon_sym_isize] = ACTIONS(3742), + [anon_sym_usize] = ACTIONS(3742), + [anon_sym_f32] = ACTIONS(3742), + [anon_sym_f64] = ACTIONS(3742), + [anon_sym_c_char] = ACTIONS(3742), + [anon_sym_c_schar] = ACTIONS(3742), + [anon_sym_c_uchar] = ACTIONS(3742), + [anon_sym_c_short] = ACTIONS(3742), + [anon_sym_c_ushort] = ACTIONS(3742), + [anon_sym_c_int] = ACTIONS(3742), + [anon_sym_c_uint] = ACTIONS(3742), + [anon_sym_c_long] = ACTIONS(3742), + [anon_sym_c_ulong] = ACTIONS(3742), + [anon_sym_c_longlong] = ACTIONS(3742), + [anon_sym_c_ulonglong] = ACTIONS(3742), + [anon_sym_c_float] = ACTIONS(3742), + [anon_sym_c_double] = ACTIONS(3742), + [anon_sym_c_longdouble] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_defer] = ACTIONS(3742), + [anon_sym_errdefer] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_else] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_expand] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_true] = ACTIONS(3742), + [anon_sym_false] = ACTIONS(3742), + [sym_none] = ACTIONS(3742), + [sym_undefined] = ACTIONS(3742), + [sym_sink] = ACTIONS(3742), + [sym_integer] = ACTIONS(3742), + [sym_float] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym_multiline_string] = ACTIONS(3740), + [sym_character] = ACTIONS(3740), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3889), + [sym__newline] = ACTIONS(3740), }, [STATE(1658)] = { - [ts_builtin_sym_end] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3895), - [anon_sym_import] = ACTIONS(3895), - [anon_sym_test] = ACTIONS(3895), - [anon_sym_hide] = ACTIONS(3895), - [anon_sym_func] = ACTIONS(3895), - [anon_sym_BANG] = ACTIONS(3893), - [anon_sym_struct] = ACTIONS(3895), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_DASH] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_void] = ACTIONS(3895), - [anon_sym_anyopaque] = ACTIONS(3895), - [anon_sym_bool] = ACTIONS(3895), - [anon_sym_int] = ACTIONS(3895), - [anon_sym_uint] = ACTIONS(3895), - [anon_sym_float] = ACTIONS(3895), - [anon_sym_range] = ACTIONS(3895), - [anon_sym_i8] = ACTIONS(3895), - [anon_sym_i16] = ACTIONS(3895), - [anon_sym_i32] = ACTIONS(3895), - [anon_sym_i64] = ACTIONS(3895), - [anon_sym_u8] = ACTIONS(3895), - [anon_sym_u16] = ACTIONS(3895), - [anon_sym_u32] = ACTIONS(3895), - [anon_sym_u64] = ACTIONS(3895), - [anon_sym_isize] = ACTIONS(3895), - [anon_sym_usize] = ACTIONS(3895), - [anon_sym_f32] = ACTIONS(3895), - [anon_sym_f64] = ACTIONS(3895), - [anon_sym_c_char] = ACTIONS(3895), - [anon_sym_c_schar] = ACTIONS(3895), - [anon_sym_c_uchar] = ACTIONS(3895), - [anon_sym_c_short] = ACTIONS(3895), - [anon_sym_c_ushort] = ACTIONS(3895), - [anon_sym_c_int] = ACTIONS(3895), - [anon_sym_c_uint] = ACTIONS(3895), - [anon_sym_c_long] = ACTIONS(3895), - [anon_sym_c_ulong] = ACTIONS(3895), - [anon_sym_c_longlong] = ACTIONS(3895), - [anon_sym_c_ulonglong] = ACTIONS(3895), - [anon_sym_c_float] = ACTIONS(3895), - [anon_sym_c_double] = ACTIONS(3895), - [anon_sym_c_longdouble] = ACTIONS(3895), - [anon_sym_return] = ACTIONS(3895), - [anon_sym_yield] = ACTIONS(3895), - [anon_sym_break] = ACTIONS(3895), - [anon_sym_continue] = ACTIONS(3895), - [anon_sym_defer] = ACTIONS(3895), - [anon_sym_errdefer] = ACTIONS(3895), - [anon_sym_if] = ACTIONS(3895), - [anon_sym_else] = ACTIONS(3895), - [anon_sym_while] = ACTIONS(3895), - [anon_sym_expand] = ACTIONS(3895), - [anon_sym_for] = ACTIONS(3895), - [anon_sym_match] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_TILDE] = ACTIONS(3893), - [anon_sym_try] = ACTIONS(3895), - [anon_sym_DOT] = ACTIONS(3893), - [anon_sym_true] = ACTIONS(3895), - [anon_sym_false] = ACTIONS(3895), - [sym_none] = ACTIONS(3895), - [sym_undefined] = ACTIONS(3895), - [sym_sink] = ACTIONS(3895), - [sym_integer] = ACTIONS(3895), - [sym_float] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [sym_multiline_string] = ACTIONS(3893), - [sym_character] = ACTIONS(3893), + [ts_builtin_sym_end] = ACTIONS(3744), + [sym_identifier] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_test] = ACTIONS(3746), + [anon_sym_hide] = ACTIONS(3746), + [anon_sym_func] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(3744), + [anon_sym_RPAREN] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3744), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_void] = ACTIONS(3746), + [anon_sym_type] = ACTIONS(3746), + [anon_sym_anyopaque] = ACTIONS(3746), + [anon_sym_bool] = ACTIONS(3746), + [anon_sym_int] = ACTIONS(3746), + [anon_sym_uint] = ACTIONS(3746), + [anon_sym_float] = ACTIONS(3746), + [anon_sym_range] = ACTIONS(3746), + [anon_sym_i8] = ACTIONS(3746), + [anon_sym_i16] = ACTIONS(3746), + [anon_sym_i32] = ACTIONS(3746), + [anon_sym_i64] = ACTIONS(3746), + [anon_sym_u8] = ACTIONS(3746), + [anon_sym_u16] = ACTIONS(3746), + [anon_sym_u32] = ACTIONS(3746), + [anon_sym_u64] = ACTIONS(3746), + [anon_sym_isize] = ACTIONS(3746), + [anon_sym_usize] = ACTIONS(3746), + [anon_sym_f32] = ACTIONS(3746), + [anon_sym_f64] = ACTIONS(3746), + [anon_sym_c_char] = ACTIONS(3746), + [anon_sym_c_schar] = ACTIONS(3746), + [anon_sym_c_uchar] = ACTIONS(3746), + [anon_sym_c_short] = ACTIONS(3746), + [anon_sym_c_ushort] = ACTIONS(3746), + [anon_sym_c_int] = ACTIONS(3746), + [anon_sym_c_uint] = ACTIONS(3746), + [anon_sym_c_long] = ACTIONS(3746), + [anon_sym_c_ulong] = ACTIONS(3746), + [anon_sym_c_longlong] = ACTIONS(3746), + [anon_sym_c_ulonglong] = ACTIONS(3746), + [anon_sym_c_float] = ACTIONS(3746), + [anon_sym_c_double] = ACTIONS(3746), + [anon_sym_c_longdouble] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_defer] = ACTIONS(3746), + [anon_sym_errdefer] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_else] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_expand] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_true] = ACTIONS(3746), + [anon_sym_false] = ACTIONS(3746), + [sym_none] = ACTIONS(3746), + [sym_undefined] = ACTIONS(3746), + [sym_sink] = ACTIONS(3746), + [sym_integer] = ACTIONS(3746), + [sym_float] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_multiline_string] = ACTIONS(3744), + [sym_character] = ACTIONS(3744), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3893), + [sym__newline] = ACTIONS(3744), }, [STATE(1659)] = { - [ts_builtin_sym_end] = ACTIONS(3897), - [sym_identifier] = ACTIONS(3899), - [anon_sym_import] = ACTIONS(3899), - [anon_sym_test] = ACTIONS(3899), - [anon_sym_hide] = ACTIONS(3899), - [anon_sym_func] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_struct] = ACTIONS(3899), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3897), - [anon_sym_DOLLAR] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_void] = ACTIONS(3899), - [anon_sym_anyopaque] = ACTIONS(3899), - [anon_sym_bool] = ACTIONS(3899), - [anon_sym_int] = ACTIONS(3899), - [anon_sym_uint] = ACTIONS(3899), - [anon_sym_float] = ACTIONS(3899), - [anon_sym_range] = ACTIONS(3899), - [anon_sym_i8] = ACTIONS(3899), - [anon_sym_i16] = ACTIONS(3899), - [anon_sym_i32] = ACTIONS(3899), - [anon_sym_i64] = ACTIONS(3899), - [anon_sym_u8] = ACTIONS(3899), - [anon_sym_u16] = ACTIONS(3899), - [anon_sym_u32] = ACTIONS(3899), - [anon_sym_u64] = ACTIONS(3899), - [anon_sym_isize] = ACTIONS(3899), - [anon_sym_usize] = ACTIONS(3899), - [anon_sym_f32] = ACTIONS(3899), - [anon_sym_f64] = ACTIONS(3899), - [anon_sym_c_char] = ACTIONS(3899), - [anon_sym_c_schar] = ACTIONS(3899), - [anon_sym_c_uchar] = ACTIONS(3899), - [anon_sym_c_short] = ACTIONS(3899), - [anon_sym_c_ushort] = ACTIONS(3899), - [anon_sym_c_int] = ACTIONS(3899), - [anon_sym_c_uint] = ACTIONS(3899), - [anon_sym_c_long] = ACTIONS(3899), - [anon_sym_c_ulong] = ACTIONS(3899), - [anon_sym_c_longlong] = ACTIONS(3899), - [anon_sym_c_ulonglong] = ACTIONS(3899), - [anon_sym_c_float] = ACTIONS(3899), - [anon_sym_c_double] = ACTIONS(3899), - [anon_sym_c_longdouble] = ACTIONS(3899), - [anon_sym_return] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_break] = ACTIONS(3899), - [anon_sym_continue] = ACTIONS(3899), - [anon_sym_defer] = ACTIONS(3899), - [anon_sym_errdefer] = ACTIONS(3899), - [anon_sym_if] = ACTIONS(3899), - [anon_sym_else] = ACTIONS(3899), - [anon_sym_while] = ACTIONS(3899), - [anon_sym_expand] = ACTIONS(3899), - [anon_sym_for] = ACTIONS(3899), - [anon_sym_match] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_try] = ACTIONS(3899), - [anon_sym_DOT] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [sym_none] = ACTIONS(3899), - [sym_undefined] = ACTIONS(3899), - [sym_sink] = ACTIONS(3899), - [sym_integer] = ACTIONS(3899), - [sym_float] = ACTIONS(3897), - [anon_sym_DQUOTE] = ACTIONS(3897), - [sym_multiline_string] = ACTIONS(3897), - [sym_character] = ACTIONS(3897), + [ts_builtin_sym_end] = ACTIONS(3748), + [sym_identifier] = ACTIONS(3750), + [anon_sym_import] = ACTIONS(3750), + [anon_sym_test] = ACTIONS(3750), + [anon_sym_hide] = ACTIONS(3750), + [anon_sym_func] = ACTIONS(3750), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [anon_sym_LBRACK] = ACTIONS(3748), + [anon_sym_void] = ACTIONS(3750), + [anon_sym_type] = ACTIONS(3750), + [anon_sym_anyopaque] = ACTIONS(3750), + [anon_sym_bool] = ACTIONS(3750), + [anon_sym_int] = ACTIONS(3750), + [anon_sym_uint] = ACTIONS(3750), + [anon_sym_float] = ACTIONS(3750), + [anon_sym_range] = ACTIONS(3750), + [anon_sym_i8] = ACTIONS(3750), + [anon_sym_i16] = ACTIONS(3750), + [anon_sym_i32] = ACTIONS(3750), + [anon_sym_i64] = ACTIONS(3750), + [anon_sym_u8] = ACTIONS(3750), + [anon_sym_u16] = ACTIONS(3750), + [anon_sym_u32] = ACTIONS(3750), + [anon_sym_u64] = ACTIONS(3750), + [anon_sym_isize] = ACTIONS(3750), + [anon_sym_usize] = ACTIONS(3750), + [anon_sym_f32] = ACTIONS(3750), + [anon_sym_f64] = ACTIONS(3750), + [anon_sym_c_char] = ACTIONS(3750), + [anon_sym_c_schar] = ACTIONS(3750), + [anon_sym_c_uchar] = ACTIONS(3750), + [anon_sym_c_short] = ACTIONS(3750), + [anon_sym_c_ushort] = ACTIONS(3750), + [anon_sym_c_int] = ACTIONS(3750), + [anon_sym_c_uint] = ACTIONS(3750), + [anon_sym_c_long] = ACTIONS(3750), + [anon_sym_c_ulong] = ACTIONS(3750), + [anon_sym_c_longlong] = ACTIONS(3750), + [anon_sym_c_ulonglong] = ACTIONS(3750), + [anon_sym_c_float] = ACTIONS(3750), + [anon_sym_c_double] = ACTIONS(3750), + [anon_sym_c_longdouble] = ACTIONS(3750), + [anon_sym_return] = ACTIONS(3750), + [anon_sym_yield] = ACTIONS(3750), + [anon_sym_break] = ACTIONS(3750), + [anon_sym_continue] = ACTIONS(3750), + [anon_sym_defer] = ACTIONS(3750), + [anon_sym_errdefer] = ACTIONS(3750), + [anon_sym_if] = ACTIONS(3750), + [anon_sym_else] = ACTIONS(3750), + [anon_sym_while] = ACTIONS(3750), + [anon_sym_expand] = ACTIONS(3750), + [anon_sym_for] = ACTIONS(3750), + [anon_sym_match] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_DOT] = ACTIONS(3748), + [anon_sym_true] = ACTIONS(3750), + [anon_sym_false] = ACTIONS(3750), + [sym_none] = ACTIONS(3750), + [sym_undefined] = ACTIONS(3750), + [sym_sink] = ACTIONS(3750), + [sym_integer] = ACTIONS(3750), + [sym_float] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [sym_multiline_string] = ACTIONS(3748), + [sym_character] = ACTIONS(3748), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3897), + [sym__newline] = ACTIONS(3748), }, [STATE(1660)] = { - [ts_builtin_sym_end] = ACTIONS(3901), - [sym_identifier] = ACTIONS(3903), - [anon_sym_import] = ACTIONS(3903), - [anon_sym_test] = ACTIONS(3903), - [anon_sym_hide] = ACTIONS(3903), - [anon_sym_func] = ACTIONS(3903), - [anon_sym_BANG] = ACTIONS(3901), - [anon_sym_struct] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3901), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym_DASH] = ACTIONS(3901), - [anon_sym_DOLLAR] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_void] = ACTIONS(3903), - [anon_sym_anyopaque] = ACTIONS(3903), - [anon_sym_bool] = ACTIONS(3903), - [anon_sym_int] = ACTIONS(3903), - [anon_sym_uint] = ACTIONS(3903), - [anon_sym_float] = ACTIONS(3903), - [anon_sym_range] = ACTIONS(3903), - [anon_sym_i8] = ACTIONS(3903), - [anon_sym_i16] = ACTIONS(3903), - [anon_sym_i32] = ACTIONS(3903), - [anon_sym_i64] = ACTIONS(3903), - [anon_sym_u8] = ACTIONS(3903), - [anon_sym_u16] = ACTIONS(3903), - [anon_sym_u32] = ACTIONS(3903), - [anon_sym_u64] = ACTIONS(3903), - [anon_sym_isize] = ACTIONS(3903), - [anon_sym_usize] = ACTIONS(3903), - [anon_sym_f32] = ACTIONS(3903), - [anon_sym_f64] = ACTIONS(3903), - [anon_sym_c_char] = ACTIONS(3903), - [anon_sym_c_schar] = ACTIONS(3903), - [anon_sym_c_uchar] = ACTIONS(3903), - [anon_sym_c_short] = ACTIONS(3903), - [anon_sym_c_ushort] = ACTIONS(3903), - [anon_sym_c_int] = ACTIONS(3903), - [anon_sym_c_uint] = ACTIONS(3903), - [anon_sym_c_long] = ACTIONS(3903), - [anon_sym_c_ulong] = ACTIONS(3903), - [anon_sym_c_longlong] = ACTIONS(3903), - [anon_sym_c_ulonglong] = ACTIONS(3903), - [anon_sym_c_float] = ACTIONS(3903), - [anon_sym_c_double] = ACTIONS(3903), - [anon_sym_c_longdouble] = ACTIONS(3903), - [anon_sym_return] = ACTIONS(3903), - [anon_sym_yield] = ACTIONS(3903), - [anon_sym_break] = ACTIONS(3903), - [anon_sym_continue] = ACTIONS(3903), - [anon_sym_defer] = ACTIONS(3903), - [anon_sym_errdefer] = ACTIONS(3903), - [anon_sym_if] = ACTIONS(3903), - [anon_sym_else] = ACTIONS(3903), - [anon_sym_while] = ACTIONS(3903), - [anon_sym_expand] = ACTIONS(3903), - [anon_sym_for] = ACTIONS(3903), - [anon_sym_match] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3901), - [anon_sym_TILDE] = ACTIONS(3901), - [anon_sym_try] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3901), - [anon_sym_true] = ACTIONS(3903), - [anon_sym_false] = ACTIONS(3903), - [sym_none] = ACTIONS(3903), - [sym_undefined] = ACTIONS(3903), - [sym_sink] = ACTIONS(3903), - [sym_integer] = ACTIONS(3903), - [sym_float] = ACTIONS(3901), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym_multiline_string] = ACTIONS(3901), - [sym_character] = ACTIONS(3901), + [ts_builtin_sym_end] = ACTIONS(3752), + [sym_identifier] = ACTIONS(3754), + [anon_sym_import] = ACTIONS(3754), + [anon_sym_test] = ACTIONS(3754), + [anon_sym_hide] = ACTIONS(3754), + [anon_sym_func] = ACTIONS(3754), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_DOLLAR] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_void] = ACTIONS(3754), + [anon_sym_type] = ACTIONS(3754), + [anon_sym_anyopaque] = ACTIONS(3754), + [anon_sym_bool] = ACTIONS(3754), + [anon_sym_int] = ACTIONS(3754), + [anon_sym_uint] = ACTIONS(3754), + [anon_sym_float] = ACTIONS(3754), + [anon_sym_range] = ACTIONS(3754), + [anon_sym_i8] = ACTIONS(3754), + [anon_sym_i16] = ACTIONS(3754), + [anon_sym_i32] = ACTIONS(3754), + [anon_sym_i64] = ACTIONS(3754), + [anon_sym_u8] = ACTIONS(3754), + [anon_sym_u16] = ACTIONS(3754), + [anon_sym_u32] = ACTIONS(3754), + [anon_sym_u64] = ACTIONS(3754), + [anon_sym_isize] = ACTIONS(3754), + [anon_sym_usize] = ACTIONS(3754), + [anon_sym_f32] = ACTIONS(3754), + [anon_sym_f64] = ACTIONS(3754), + [anon_sym_c_char] = ACTIONS(3754), + [anon_sym_c_schar] = ACTIONS(3754), + [anon_sym_c_uchar] = ACTIONS(3754), + [anon_sym_c_short] = ACTIONS(3754), + [anon_sym_c_ushort] = ACTIONS(3754), + [anon_sym_c_int] = ACTIONS(3754), + [anon_sym_c_uint] = ACTIONS(3754), + [anon_sym_c_long] = ACTIONS(3754), + [anon_sym_c_ulong] = ACTIONS(3754), + [anon_sym_c_longlong] = ACTIONS(3754), + [anon_sym_c_ulonglong] = ACTIONS(3754), + [anon_sym_c_float] = ACTIONS(3754), + [anon_sym_c_double] = ACTIONS(3754), + [anon_sym_c_longdouble] = ACTIONS(3754), + [anon_sym_return] = ACTIONS(3754), + [anon_sym_yield] = ACTIONS(3754), + [anon_sym_break] = ACTIONS(3754), + [anon_sym_continue] = ACTIONS(3754), + [anon_sym_defer] = ACTIONS(3754), + [anon_sym_errdefer] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3754), + [anon_sym_else] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3754), + [anon_sym_expand] = ACTIONS(3754), + [anon_sym_for] = ACTIONS(3754), + [anon_sym_match] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3754), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_true] = ACTIONS(3754), + [anon_sym_false] = ACTIONS(3754), + [sym_none] = ACTIONS(3754), + [sym_undefined] = ACTIONS(3754), + [sym_sink] = ACTIONS(3754), + [sym_integer] = ACTIONS(3754), + [sym_float] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3752), + [sym_multiline_string] = ACTIONS(3752), + [sym_character] = ACTIONS(3752), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3901), + [sym__newline] = ACTIONS(3752), }, [STATE(1661)] = { - [ts_builtin_sym_end] = ACTIONS(3905), - [sym_identifier] = ACTIONS(3907), - [anon_sym_import] = ACTIONS(3907), - [anon_sym_test] = ACTIONS(3907), - [anon_sym_hide] = ACTIONS(3907), - [anon_sym_func] = ACTIONS(3907), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_struct] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_void] = ACTIONS(3907), - [anon_sym_anyopaque] = ACTIONS(3907), - [anon_sym_bool] = ACTIONS(3907), - [anon_sym_int] = ACTIONS(3907), - [anon_sym_uint] = ACTIONS(3907), - [anon_sym_float] = ACTIONS(3907), - [anon_sym_range] = ACTIONS(3907), - [anon_sym_i8] = ACTIONS(3907), - [anon_sym_i16] = ACTIONS(3907), - [anon_sym_i32] = ACTIONS(3907), - [anon_sym_i64] = ACTIONS(3907), - [anon_sym_u8] = ACTIONS(3907), - [anon_sym_u16] = ACTIONS(3907), - [anon_sym_u32] = ACTIONS(3907), - [anon_sym_u64] = ACTIONS(3907), - [anon_sym_isize] = ACTIONS(3907), - [anon_sym_usize] = ACTIONS(3907), - [anon_sym_f32] = ACTIONS(3907), - [anon_sym_f64] = ACTIONS(3907), - [anon_sym_c_char] = ACTIONS(3907), - [anon_sym_c_schar] = ACTIONS(3907), - [anon_sym_c_uchar] = ACTIONS(3907), - [anon_sym_c_short] = ACTIONS(3907), - [anon_sym_c_ushort] = ACTIONS(3907), - [anon_sym_c_int] = ACTIONS(3907), - [anon_sym_c_uint] = ACTIONS(3907), - [anon_sym_c_long] = ACTIONS(3907), - [anon_sym_c_ulong] = ACTIONS(3907), - [anon_sym_c_longlong] = ACTIONS(3907), - [anon_sym_c_ulonglong] = ACTIONS(3907), - [anon_sym_c_float] = ACTIONS(3907), - [anon_sym_c_double] = ACTIONS(3907), - [anon_sym_c_longdouble] = ACTIONS(3907), - [anon_sym_return] = ACTIONS(3907), - [anon_sym_yield] = ACTIONS(3907), - [anon_sym_break] = ACTIONS(3907), - [anon_sym_continue] = ACTIONS(3907), - [anon_sym_defer] = ACTIONS(3907), - [anon_sym_errdefer] = ACTIONS(3907), - [anon_sym_if] = ACTIONS(3907), - [anon_sym_else] = ACTIONS(3907), - [anon_sym_while] = ACTIONS(3907), - [anon_sym_expand] = ACTIONS(3907), - [anon_sym_for] = ACTIONS(3907), - [anon_sym_match] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_TILDE] = ACTIONS(3905), - [anon_sym_try] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_true] = ACTIONS(3907), - [anon_sym_false] = ACTIONS(3907), - [sym_none] = ACTIONS(3907), - [sym_undefined] = ACTIONS(3907), - [sym_sink] = ACTIONS(3907), - [sym_integer] = ACTIONS(3907), - [sym_float] = ACTIONS(3905), - [anon_sym_DQUOTE] = ACTIONS(3905), - [sym_multiline_string] = ACTIONS(3905), - [sym_character] = ACTIONS(3905), + [ts_builtin_sym_end] = ACTIONS(3756), + [sym_identifier] = ACTIONS(3758), + [anon_sym_import] = ACTIONS(3758), + [anon_sym_test] = ACTIONS(3758), + [anon_sym_hide] = ACTIONS(3758), + [anon_sym_func] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_LPAREN] = ACTIONS(3756), + [anon_sym_RPAREN] = ACTIONS(3756), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_RBRACE] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3756), + [anon_sym_DOLLAR] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(3756), + [anon_sym_void] = ACTIONS(3758), + [anon_sym_type] = ACTIONS(3758), + [anon_sym_anyopaque] = ACTIONS(3758), + [anon_sym_bool] = ACTIONS(3758), + [anon_sym_int] = ACTIONS(3758), + [anon_sym_uint] = ACTIONS(3758), + [anon_sym_float] = ACTIONS(3758), + [anon_sym_range] = ACTIONS(3758), + [anon_sym_i8] = ACTIONS(3758), + [anon_sym_i16] = ACTIONS(3758), + [anon_sym_i32] = ACTIONS(3758), + [anon_sym_i64] = ACTIONS(3758), + [anon_sym_u8] = ACTIONS(3758), + [anon_sym_u16] = ACTIONS(3758), + [anon_sym_u32] = ACTIONS(3758), + [anon_sym_u64] = ACTIONS(3758), + [anon_sym_isize] = ACTIONS(3758), + [anon_sym_usize] = ACTIONS(3758), + [anon_sym_f32] = ACTIONS(3758), + [anon_sym_f64] = ACTIONS(3758), + [anon_sym_c_char] = ACTIONS(3758), + [anon_sym_c_schar] = ACTIONS(3758), + [anon_sym_c_uchar] = ACTIONS(3758), + [anon_sym_c_short] = ACTIONS(3758), + [anon_sym_c_ushort] = ACTIONS(3758), + [anon_sym_c_int] = ACTIONS(3758), + [anon_sym_c_uint] = ACTIONS(3758), + [anon_sym_c_long] = ACTIONS(3758), + [anon_sym_c_ulong] = ACTIONS(3758), + [anon_sym_c_longlong] = ACTIONS(3758), + [anon_sym_c_ulonglong] = ACTIONS(3758), + [anon_sym_c_float] = ACTIONS(3758), + [anon_sym_c_double] = ACTIONS(3758), + [anon_sym_c_longdouble] = ACTIONS(3758), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_yield] = ACTIONS(3758), + [anon_sym_break] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3758), + [anon_sym_defer] = ACTIONS(3758), + [anon_sym_errdefer] = ACTIONS(3758), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3758), + [anon_sym_while] = ACTIONS(3758), + [anon_sym_expand] = ACTIONS(3758), + [anon_sym_for] = ACTIONS(3758), + [anon_sym_match] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_DOT] = ACTIONS(3756), + [anon_sym_true] = ACTIONS(3758), + [anon_sym_false] = ACTIONS(3758), + [sym_none] = ACTIONS(3758), + [sym_undefined] = ACTIONS(3758), + [sym_sink] = ACTIONS(3758), + [sym_integer] = ACTIONS(3758), + [sym_float] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3756), + [sym_multiline_string] = ACTIONS(3756), + [sym_character] = ACTIONS(3756), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3905), + [sym__newline] = ACTIONS(3756), }, [STATE(1662)] = { - [ts_builtin_sym_end] = ACTIONS(3909), - [sym_identifier] = ACTIONS(3911), - [anon_sym_import] = ACTIONS(3911), - [anon_sym_test] = ACTIONS(3911), - [anon_sym_hide] = ACTIONS(3911), - [anon_sym_func] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_struct] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3909), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_void] = ACTIONS(3911), - [anon_sym_anyopaque] = ACTIONS(3911), - [anon_sym_bool] = ACTIONS(3911), - [anon_sym_int] = ACTIONS(3911), - [anon_sym_uint] = ACTIONS(3911), - [anon_sym_float] = ACTIONS(3911), - [anon_sym_range] = ACTIONS(3911), - [anon_sym_i8] = ACTIONS(3911), - [anon_sym_i16] = ACTIONS(3911), - [anon_sym_i32] = ACTIONS(3911), - [anon_sym_i64] = ACTIONS(3911), - [anon_sym_u8] = ACTIONS(3911), - [anon_sym_u16] = ACTIONS(3911), - [anon_sym_u32] = ACTIONS(3911), - [anon_sym_u64] = ACTIONS(3911), - [anon_sym_isize] = ACTIONS(3911), - [anon_sym_usize] = ACTIONS(3911), - [anon_sym_f32] = ACTIONS(3911), - [anon_sym_f64] = ACTIONS(3911), - [anon_sym_c_char] = ACTIONS(3911), - [anon_sym_c_schar] = ACTIONS(3911), - [anon_sym_c_uchar] = ACTIONS(3911), - [anon_sym_c_short] = ACTIONS(3911), - [anon_sym_c_ushort] = ACTIONS(3911), - [anon_sym_c_int] = ACTIONS(3911), - [anon_sym_c_uint] = ACTIONS(3911), - [anon_sym_c_long] = ACTIONS(3911), - [anon_sym_c_ulong] = ACTIONS(3911), - [anon_sym_c_longlong] = ACTIONS(3911), - [anon_sym_c_ulonglong] = ACTIONS(3911), - [anon_sym_c_float] = ACTIONS(3911), - [anon_sym_c_double] = ACTIONS(3911), - [anon_sym_c_longdouble] = ACTIONS(3911), - [anon_sym_return] = ACTIONS(3911), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_break] = ACTIONS(3911), - [anon_sym_continue] = ACTIONS(3911), - [anon_sym_defer] = ACTIONS(3911), - [anon_sym_errdefer] = ACTIONS(3911), - [anon_sym_if] = ACTIONS(3911), - [anon_sym_else] = ACTIONS(3911), - [anon_sym_while] = ACTIONS(3911), - [anon_sym_expand] = ACTIONS(3911), - [anon_sym_for] = ACTIONS(3911), - [anon_sym_match] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_TILDE] = ACTIONS(3909), - [anon_sym_try] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_true] = ACTIONS(3911), - [anon_sym_false] = ACTIONS(3911), - [sym_none] = ACTIONS(3911), - [sym_undefined] = ACTIONS(3911), - [sym_sink] = ACTIONS(3911), - [sym_integer] = ACTIONS(3911), - [sym_float] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [sym_multiline_string] = ACTIONS(3909), - [sym_character] = ACTIONS(3909), + [ts_builtin_sym_end] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3762), + [anon_sym_import] = ACTIONS(3762), + [anon_sym_test] = ACTIONS(3762), + [anon_sym_hide] = ACTIONS(3762), + [anon_sym_func] = ACTIONS(3762), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_DOLLAR] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3760), + [anon_sym_void] = ACTIONS(3762), + [anon_sym_type] = ACTIONS(3762), + [anon_sym_anyopaque] = ACTIONS(3762), + [anon_sym_bool] = ACTIONS(3762), + [anon_sym_int] = ACTIONS(3762), + [anon_sym_uint] = ACTIONS(3762), + [anon_sym_float] = ACTIONS(3762), + [anon_sym_range] = ACTIONS(3762), + [anon_sym_i8] = ACTIONS(3762), + [anon_sym_i16] = ACTIONS(3762), + [anon_sym_i32] = ACTIONS(3762), + [anon_sym_i64] = ACTIONS(3762), + [anon_sym_u8] = ACTIONS(3762), + [anon_sym_u16] = ACTIONS(3762), + [anon_sym_u32] = ACTIONS(3762), + [anon_sym_u64] = ACTIONS(3762), + [anon_sym_isize] = ACTIONS(3762), + [anon_sym_usize] = ACTIONS(3762), + [anon_sym_f32] = ACTIONS(3762), + [anon_sym_f64] = ACTIONS(3762), + [anon_sym_c_char] = ACTIONS(3762), + [anon_sym_c_schar] = ACTIONS(3762), + [anon_sym_c_uchar] = ACTIONS(3762), + [anon_sym_c_short] = ACTIONS(3762), + [anon_sym_c_ushort] = ACTIONS(3762), + [anon_sym_c_int] = ACTIONS(3762), + [anon_sym_c_uint] = ACTIONS(3762), + [anon_sym_c_long] = ACTIONS(3762), + [anon_sym_c_ulong] = ACTIONS(3762), + [anon_sym_c_longlong] = ACTIONS(3762), + [anon_sym_c_ulonglong] = ACTIONS(3762), + [anon_sym_c_float] = ACTIONS(3762), + [anon_sym_c_double] = ACTIONS(3762), + [anon_sym_c_longdouble] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_defer] = ACTIONS(3762), + [anon_sym_errdefer] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_else] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_expand] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3760), + [anon_sym_true] = ACTIONS(3762), + [anon_sym_false] = ACTIONS(3762), + [sym_none] = ACTIONS(3762), + [sym_undefined] = ACTIONS(3762), + [sym_sink] = ACTIONS(3762), + [sym_integer] = ACTIONS(3762), + [sym_float] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_multiline_string] = ACTIONS(3760), + [sym_character] = ACTIONS(3760), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3909), + [sym__newline] = ACTIONS(3760), }, [STATE(1663)] = { - [ts_builtin_sym_end] = ACTIONS(3913), - [sym_identifier] = ACTIONS(3915), - [anon_sym_import] = ACTIONS(3915), - [anon_sym_test] = ACTIONS(3915), - [anon_sym_hide] = ACTIONS(3915), - [anon_sym_func] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_struct] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3913), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3913), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_void] = ACTIONS(3915), - [anon_sym_anyopaque] = ACTIONS(3915), - [anon_sym_bool] = ACTIONS(3915), - [anon_sym_int] = ACTIONS(3915), - [anon_sym_uint] = ACTIONS(3915), - [anon_sym_float] = ACTIONS(3915), - [anon_sym_range] = ACTIONS(3915), - [anon_sym_i8] = ACTIONS(3915), - [anon_sym_i16] = ACTIONS(3915), - [anon_sym_i32] = ACTIONS(3915), - [anon_sym_i64] = ACTIONS(3915), - [anon_sym_u8] = ACTIONS(3915), - [anon_sym_u16] = ACTIONS(3915), - [anon_sym_u32] = ACTIONS(3915), - [anon_sym_u64] = ACTIONS(3915), - [anon_sym_isize] = ACTIONS(3915), - [anon_sym_usize] = ACTIONS(3915), - [anon_sym_f32] = ACTIONS(3915), - [anon_sym_f64] = ACTIONS(3915), - [anon_sym_c_char] = ACTIONS(3915), - [anon_sym_c_schar] = ACTIONS(3915), - [anon_sym_c_uchar] = ACTIONS(3915), - [anon_sym_c_short] = ACTIONS(3915), - [anon_sym_c_ushort] = ACTIONS(3915), - [anon_sym_c_int] = ACTIONS(3915), - [anon_sym_c_uint] = ACTIONS(3915), - [anon_sym_c_long] = ACTIONS(3915), - [anon_sym_c_ulong] = ACTIONS(3915), - [anon_sym_c_longlong] = ACTIONS(3915), - [anon_sym_c_ulonglong] = ACTIONS(3915), - [anon_sym_c_float] = ACTIONS(3915), - [anon_sym_c_double] = ACTIONS(3915), - [anon_sym_c_longdouble] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_defer] = ACTIONS(3915), - [anon_sym_errdefer] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_else] = ACTIONS(3915), - [anon_sym_while] = ACTIONS(3915), - [anon_sym_expand] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_TILDE] = ACTIONS(3913), - [anon_sym_try] = ACTIONS(3915), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_true] = ACTIONS(3915), - [anon_sym_false] = ACTIONS(3915), - [sym_none] = ACTIONS(3915), - [sym_undefined] = ACTIONS(3915), - [sym_sink] = ACTIONS(3915), - [sym_integer] = ACTIONS(3915), - [sym_float] = ACTIONS(3913), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym_multiline_string] = ACTIONS(3913), - [sym_character] = ACTIONS(3913), + [ts_builtin_sym_end] = ACTIONS(3764), + [sym_identifier] = ACTIONS(3766), + [anon_sym_import] = ACTIONS(3766), + [anon_sym_test] = ACTIONS(3766), + [anon_sym_hide] = ACTIONS(3766), + [anon_sym_func] = ACTIONS(3766), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_void] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3766), + [anon_sym_anyopaque] = ACTIONS(3766), + [anon_sym_bool] = ACTIONS(3766), + [anon_sym_int] = ACTIONS(3766), + [anon_sym_uint] = ACTIONS(3766), + [anon_sym_float] = ACTIONS(3766), + [anon_sym_range] = ACTIONS(3766), + [anon_sym_i8] = ACTIONS(3766), + [anon_sym_i16] = ACTIONS(3766), + [anon_sym_i32] = ACTIONS(3766), + [anon_sym_i64] = ACTIONS(3766), + [anon_sym_u8] = ACTIONS(3766), + [anon_sym_u16] = ACTIONS(3766), + [anon_sym_u32] = ACTIONS(3766), + [anon_sym_u64] = ACTIONS(3766), + [anon_sym_isize] = ACTIONS(3766), + [anon_sym_usize] = ACTIONS(3766), + [anon_sym_f32] = ACTIONS(3766), + [anon_sym_f64] = ACTIONS(3766), + [anon_sym_c_char] = ACTIONS(3766), + [anon_sym_c_schar] = ACTIONS(3766), + [anon_sym_c_uchar] = ACTIONS(3766), + [anon_sym_c_short] = ACTIONS(3766), + [anon_sym_c_ushort] = ACTIONS(3766), + [anon_sym_c_int] = ACTIONS(3766), + [anon_sym_c_uint] = ACTIONS(3766), + [anon_sym_c_long] = ACTIONS(3766), + [anon_sym_c_ulong] = ACTIONS(3766), + [anon_sym_c_longlong] = ACTIONS(3766), + [anon_sym_c_ulonglong] = ACTIONS(3766), + [anon_sym_c_float] = ACTIONS(3766), + [anon_sym_c_double] = ACTIONS(3766), + [anon_sym_c_longdouble] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3766), + [anon_sym_continue] = ACTIONS(3766), + [anon_sym_defer] = ACTIONS(3766), + [anon_sym_errdefer] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_else] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_expand] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_AMP] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_true] = ACTIONS(3766), + [anon_sym_false] = ACTIONS(3766), + [sym_none] = ACTIONS(3766), + [sym_undefined] = ACTIONS(3766), + [sym_sink] = ACTIONS(3766), + [sym_integer] = ACTIONS(3766), + [sym_float] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3764), + [sym_multiline_string] = ACTIONS(3764), + [sym_character] = ACTIONS(3764), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3913), + [sym__newline] = ACTIONS(3764), }, [STATE(1664)] = { - [ts_builtin_sym_end] = ACTIONS(3917), - [sym_identifier] = ACTIONS(3919), - [anon_sym_import] = ACTIONS(3919), - [anon_sym_test] = ACTIONS(3919), - [anon_sym_hide] = ACTIONS(3919), - [anon_sym_func] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(3919), - [anon_sym_LPAREN] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3917), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3917), - [anon_sym_LBRACK] = ACTIONS(3917), - [anon_sym_void] = ACTIONS(3919), - [anon_sym_anyopaque] = ACTIONS(3919), - [anon_sym_bool] = ACTIONS(3919), - [anon_sym_int] = ACTIONS(3919), - [anon_sym_uint] = ACTIONS(3919), - [anon_sym_float] = ACTIONS(3919), - [anon_sym_range] = ACTIONS(3919), - [anon_sym_i8] = ACTIONS(3919), - [anon_sym_i16] = ACTIONS(3919), - [anon_sym_i32] = ACTIONS(3919), - [anon_sym_i64] = ACTIONS(3919), - [anon_sym_u8] = ACTIONS(3919), - [anon_sym_u16] = ACTIONS(3919), - [anon_sym_u32] = ACTIONS(3919), - [anon_sym_u64] = ACTIONS(3919), - [anon_sym_isize] = ACTIONS(3919), - [anon_sym_usize] = ACTIONS(3919), - [anon_sym_f32] = ACTIONS(3919), - [anon_sym_f64] = ACTIONS(3919), - [anon_sym_c_char] = ACTIONS(3919), - [anon_sym_c_schar] = ACTIONS(3919), - [anon_sym_c_uchar] = ACTIONS(3919), - [anon_sym_c_short] = ACTIONS(3919), - [anon_sym_c_ushort] = ACTIONS(3919), - [anon_sym_c_int] = ACTIONS(3919), - [anon_sym_c_uint] = ACTIONS(3919), - [anon_sym_c_long] = ACTIONS(3919), - [anon_sym_c_ulong] = ACTIONS(3919), - [anon_sym_c_longlong] = ACTIONS(3919), - [anon_sym_c_ulonglong] = ACTIONS(3919), - [anon_sym_c_float] = ACTIONS(3919), - [anon_sym_c_double] = ACTIONS(3919), - [anon_sym_c_longdouble] = ACTIONS(3919), - [anon_sym_return] = ACTIONS(3919), - [anon_sym_yield] = ACTIONS(3919), - [anon_sym_break] = ACTIONS(3919), - [anon_sym_continue] = ACTIONS(3919), - [anon_sym_defer] = ACTIONS(3919), - [anon_sym_errdefer] = ACTIONS(3919), - [anon_sym_if] = ACTIONS(3919), - [anon_sym_else] = ACTIONS(3919), - [anon_sym_while] = ACTIONS(3919), - [anon_sym_expand] = ACTIONS(3919), - [anon_sym_for] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3917), - [anon_sym_TILDE] = ACTIONS(3917), - [anon_sym_try] = ACTIONS(3919), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_true] = ACTIONS(3919), - [anon_sym_false] = ACTIONS(3919), - [sym_none] = ACTIONS(3919), - [sym_undefined] = ACTIONS(3919), - [sym_sink] = ACTIONS(3919), - [sym_integer] = ACTIONS(3919), - [sym_float] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3917), - [sym_multiline_string] = ACTIONS(3917), - [sym_character] = ACTIONS(3917), + [ts_builtin_sym_end] = ACTIONS(3768), + [sym_identifier] = ACTIONS(3770), + [anon_sym_import] = ACTIONS(3770), + [anon_sym_test] = ACTIONS(3770), + [anon_sym_hide] = ACTIONS(3770), + [anon_sym_func] = ACTIONS(3770), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3768), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_RBRACE] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3768), + [anon_sym_LBRACK] = ACTIONS(3768), + [anon_sym_void] = ACTIONS(3770), + [anon_sym_type] = ACTIONS(3770), + [anon_sym_anyopaque] = ACTIONS(3770), + [anon_sym_bool] = ACTIONS(3770), + [anon_sym_int] = ACTIONS(3770), + [anon_sym_uint] = ACTIONS(3770), + [anon_sym_float] = ACTIONS(3770), + [anon_sym_range] = ACTIONS(3770), + [anon_sym_i8] = ACTIONS(3770), + [anon_sym_i16] = ACTIONS(3770), + [anon_sym_i32] = ACTIONS(3770), + [anon_sym_i64] = ACTIONS(3770), + [anon_sym_u8] = ACTIONS(3770), + [anon_sym_u16] = ACTIONS(3770), + [anon_sym_u32] = ACTIONS(3770), + [anon_sym_u64] = ACTIONS(3770), + [anon_sym_isize] = ACTIONS(3770), + [anon_sym_usize] = ACTIONS(3770), + [anon_sym_f32] = ACTIONS(3770), + [anon_sym_f64] = ACTIONS(3770), + [anon_sym_c_char] = ACTIONS(3770), + [anon_sym_c_schar] = ACTIONS(3770), + [anon_sym_c_uchar] = ACTIONS(3770), + [anon_sym_c_short] = ACTIONS(3770), + [anon_sym_c_ushort] = ACTIONS(3770), + [anon_sym_c_int] = ACTIONS(3770), + [anon_sym_c_uint] = ACTIONS(3770), + [anon_sym_c_long] = ACTIONS(3770), + [anon_sym_c_ulong] = ACTIONS(3770), + [anon_sym_c_longlong] = ACTIONS(3770), + [anon_sym_c_ulonglong] = ACTIONS(3770), + [anon_sym_c_float] = ACTIONS(3770), + [anon_sym_c_double] = ACTIONS(3770), + [anon_sym_c_longdouble] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_break] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3770), + [anon_sym_defer] = ACTIONS(3770), + [anon_sym_errdefer] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_else] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_expand] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_AMP] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_true] = ACTIONS(3770), + [anon_sym_false] = ACTIONS(3770), + [sym_none] = ACTIONS(3770), + [sym_undefined] = ACTIONS(3770), + [sym_sink] = ACTIONS(3770), + [sym_integer] = ACTIONS(3770), + [sym_float] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_multiline_string] = ACTIONS(3768), + [sym_character] = ACTIONS(3768), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3917), + [sym__newline] = ACTIONS(3768), }, [STATE(1665)] = { - [ts_builtin_sym_end] = ACTIONS(3921), - [sym_identifier] = ACTIONS(3923), - [anon_sym_import] = ACTIONS(3923), - [anon_sym_test] = ACTIONS(3923), - [anon_sym_hide] = ACTIONS(3923), - [anon_sym_func] = ACTIONS(3923), - [anon_sym_BANG] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_DOLLAR] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_void] = ACTIONS(3923), - [anon_sym_anyopaque] = ACTIONS(3923), - [anon_sym_bool] = ACTIONS(3923), - [anon_sym_int] = ACTIONS(3923), - [anon_sym_uint] = ACTIONS(3923), - [anon_sym_float] = ACTIONS(3923), - [anon_sym_range] = ACTIONS(3923), - [anon_sym_i8] = ACTIONS(3923), - [anon_sym_i16] = ACTIONS(3923), - [anon_sym_i32] = ACTIONS(3923), - [anon_sym_i64] = ACTIONS(3923), - [anon_sym_u8] = ACTIONS(3923), - [anon_sym_u16] = ACTIONS(3923), - [anon_sym_u32] = ACTIONS(3923), - [anon_sym_u64] = ACTIONS(3923), - [anon_sym_isize] = ACTIONS(3923), - [anon_sym_usize] = ACTIONS(3923), - [anon_sym_f32] = ACTIONS(3923), - [anon_sym_f64] = ACTIONS(3923), - [anon_sym_c_char] = ACTIONS(3923), - [anon_sym_c_schar] = ACTIONS(3923), - [anon_sym_c_uchar] = ACTIONS(3923), - [anon_sym_c_short] = ACTIONS(3923), - [anon_sym_c_ushort] = ACTIONS(3923), - [anon_sym_c_int] = ACTIONS(3923), - [anon_sym_c_uint] = ACTIONS(3923), - [anon_sym_c_long] = ACTIONS(3923), - [anon_sym_c_ulong] = ACTIONS(3923), - [anon_sym_c_longlong] = ACTIONS(3923), - [anon_sym_c_ulonglong] = ACTIONS(3923), - [anon_sym_c_float] = ACTIONS(3923), - [anon_sym_c_double] = ACTIONS(3923), - [anon_sym_c_longdouble] = ACTIONS(3923), - [anon_sym_return] = ACTIONS(3923), - [anon_sym_yield] = ACTIONS(3923), - [anon_sym_break] = ACTIONS(3923), - [anon_sym_continue] = ACTIONS(3923), - [anon_sym_defer] = ACTIONS(3923), - [anon_sym_errdefer] = ACTIONS(3923), - [anon_sym_if] = ACTIONS(3923), - [anon_sym_else] = ACTIONS(3923), - [anon_sym_while] = ACTIONS(3923), - [anon_sym_expand] = ACTIONS(3923), - [anon_sym_for] = ACTIONS(3923), - [anon_sym_match] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_TILDE] = ACTIONS(3921), - [anon_sym_try] = ACTIONS(3923), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_true] = ACTIONS(3923), - [anon_sym_false] = ACTIONS(3923), - [sym_none] = ACTIONS(3923), - [sym_undefined] = ACTIONS(3923), - [sym_sink] = ACTIONS(3923), - [sym_integer] = ACTIONS(3923), - [sym_float] = ACTIONS(3921), - [anon_sym_DQUOTE] = ACTIONS(3921), - [sym_multiline_string] = ACTIONS(3921), - [sym_character] = ACTIONS(3921), + [ts_builtin_sym_end] = ACTIONS(3772), + [sym_identifier] = ACTIONS(3774), + [anon_sym_import] = ACTIONS(3774), + [anon_sym_test] = ACTIONS(3774), + [anon_sym_hide] = ACTIONS(3774), + [anon_sym_func] = ACTIONS(3774), + [anon_sym_BANG] = ACTIONS(3772), + [anon_sym_struct] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3772), + [anon_sym_LBRACK] = ACTIONS(3772), + [anon_sym_void] = ACTIONS(3774), + [anon_sym_type] = ACTIONS(3774), + [anon_sym_anyopaque] = ACTIONS(3774), + [anon_sym_bool] = ACTIONS(3774), + [anon_sym_int] = ACTIONS(3774), + [anon_sym_uint] = ACTIONS(3774), + [anon_sym_float] = ACTIONS(3774), + [anon_sym_range] = ACTIONS(3774), + [anon_sym_i8] = ACTIONS(3774), + [anon_sym_i16] = ACTIONS(3774), + [anon_sym_i32] = ACTIONS(3774), + [anon_sym_i64] = ACTIONS(3774), + [anon_sym_u8] = ACTIONS(3774), + [anon_sym_u16] = ACTIONS(3774), + [anon_sym_u32] = ACTIONS(3774), + [anon_sym_u64] = ACTIONS(3774), + [anon_sym_isize] = ACTIONS(3774), + [anon_sym_usize] = ACTIONS(3774), + [anon_sym_f32] = ACTIONS(3774), + [anon_sym_f64] = ACTIONS(3774), + [anon_sym_c_char] = ACTIONS(3774), + [anon_sym_c_schar] = ACTIONS(3774), + [anon_sym_c_uchar] = ACTIONS(3774), + [anon_sym_c_short] = ACTIONS(3774), + [anon_sym_c_ushort] = ACTIONS(3774), + [anon_sym_c_int] = ACTIONS(3774), + [anon_sym_c_uint] = ACTIONS(3774), + [anon_sym_c_long] = ACTIONS(3774), + [anon_sym_c_ulong] = ACTIONS(3774), + [anon_sym_c_longlong] = ACTIONS(3774), + [anon_sym_c_ulonglong] = ACTIONS(3774), + [anon_sym_c_float] = ACTIONS(3774), + [anon_sym_c_double] = ACTIONS(3774), + [anon_sym_c_longdouble] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_break] = ACTIONS(3774), + [anon_sym_continue] = ACTIONS(3774), + [anon_sym_defer] = ACTIONS(3774), + [anon_sym_errdefer] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_else] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_expand] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3772), + [anon_sym_true] = ACTIONS(3774), + [anon_sym_false] = ACTIONS(3774), + [sym_none] = ACTIONS(3774), + [sym_undefined] = ACTIONS(3774), + [sym_sink] = ACTIONS(3774), + [sym_integer] = ACTIONS(3774), + [sym_float] = ACTIONS(3772), + [anon_sym_DQUOTE] = ACTIONS(3772), + [sym_multiline_string] = ACTIONS(3772), + [sym_character] = ACTIONS(3772), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3921), + [sym__newline] = ACTIONS(3772), }, [STATE(1666)] = { - [ts_builtin_sym_end] = ACTIONS(3925), - [sym_identifier] = ACTIONS(3927), - [anon_sym_import] = ACTIONS(3927), - [anon_sym_test] = ACTIONS(3927), - [anon_sym_hide] = ACTIONS(3927), - [anon_sym_func] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3925), - [anon_sym_RBRACE] = ACTIONS(3925), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3925), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_void] = ACTIONS(3927), - [anon_sym_anyopaque] = ACTIONS(3927), - [anon_sym_bool] = ACTIONS(3927), - [anon_sym_int] = ACTIONS(3927), - [anon_sym_uint] = ACTIONS(3927), - [anon_sym_float] = ACTIONS(3927), - [anon_sym_range] = ACTIONS(3927), - [anon_sym_i8] = ACTIONS(3927), - [anon_sym_i16] = ACTIONS(3927), - [anon_sym_i32] = ACTIONS(3927), - [anon_sym_i64] = ACTIONS(3927), - [anon_sym_u8] = ACTIONS(3927), - [anon_sym_u16] = ACTIONS(3927), - [anon_sym_u32] = ACTIONS(3927), - [anon_sym_u64] = ACTIONS(3927), - [anon_sym_isize] = ACTIONS(3927), - [anon_sym_usize] = ACTIONS(3927), - [anon_sym_f32] = ACTIONS(3927), - [anon_sym_f64] = ACTIONS(3927), - [anon_sym_c_char] = ACTIONS(3927), - [anon_sym_c_schar] = ACTIONS(3927), - [anon_sym_c_uchar] = ACTIONS(3927), - [anon_sym_c_short] = ACTIONS(3927), - [anon_sym_c_ushort] = ACTIONS(3927), - [anon_sym_c_int] = ACTIONS(3927), - [anon_sym_c_uint] = ACTIONS(3927), - [anon_sym_c_long] = ACTIONS(3927), - [anon_sym_c_ulong] = ACTIONS(3927), - [anon_sym_c_longlong] = ACTIONS(3927), - [anon_sym_c_ulonglong] = ACTIONS(3927), - [anon_sym_c_float] = ACTIONS(3927), - [anon_sym_c_double] = ACTIONS(3927), - [anon_sym_c_longdouble] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_yield] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_defer] = ACTIONS(3927), - [anon_sym_errdefer] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_else] = ACTIONS(3927), - [anon_sym_while] = ACTIONS(3927), - [anon_sym_expand] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_TILDE] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3927), - [anon_sym_DOT] = ACTIONS(3925), - [anon_sym_true] = ACTIONS(3927), - [anon_sym_false] = ACTIONS(3927), - [sym_none] = ACTIONS(3927), - [sym_undefined] = ACTIONS(3927), - [sym_sink] = ACTIONS(3927), - [sym_integer] = ACTIONS(3927), - [sym_float] = ACTIONS(3925), - [anon_sym_DQUOTE] = ACTIONS(3925), - [sym_multiline_string] = ACTIONS(3925), - [sym_character] = ACTIONS(3925), + [ts_builtin_sym_end] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_test] = ACTIONS(3778), + [anon_sym_hide] = ACTIONS(3778), + [anon_sym_func] = ACTIONS(3778), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_void] = ACTIONS(3778), + [anon_sym_type] = ACTIONS(3778), + [anon_sym_anyopaque] = ACTIONS(3778), + [anon_sym_bool] = ACTIONS(3778), + [anon_sym_int] = ACTIONS(3778), + [anon_sym_uint] = ACTIONS(3778), + [anon_sym_float] = ACTIONS(3778), + [anon_sym_range] = ACTIONS(3778), + [anon_sym_i8] = ACTIONS(3778), + [anon_sym_i16] = ACTIONS(3778), + [anon_sym_i32] = ACTIONS(3778), + [anon_sym_i64] = ACTIONS(3778), + [anon_sym_u8] = ACTIONS(3778), + [anon_sym_u16] = ACTIONS(3778), + [anon_sym_u32] = ACTIONS(3778), + [anon_sym_u64] = ACTIONS(3778), + [anon_sym_isize] = ACTIONS(3778), + [anon_sym_usize] = ACTIONS(3778), + [anon_sym_f32] = ACTIONS(3778), + [anon_sym_f64] = ACTIONS(3778), + [anon_sym_c_char] = ACTIONS(3778), + [anon_sym_c_schar] = ACTIONS(3778), + [anon_sym_c_uchar] = ACTIONS(3778), + [anon_sym_c_short] = ACTIONS(3778), + [anon_sym_c_ushort] = ACTIONS(3778), + [anon_sym_c_int] = ACTIONS(3778), + [anon_sym_c_uint] = ACTIONS(3778), + [anon_sym_c_long] = ACTIONS(3778), + [anon_sym_c_ulong] = ACTIONS(3778), + [anon_sym_c_longlong] = ACTIONS(3778), + [anon_sym_c_ulonglong] = ACTIONS(3778), + [anon_sym_c_float] = ACTIONS(3778), + [anon_sym_c_double] = ACTIONS(3778), + [anon_sym_c_longdouble] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_defer] = ACTIONS(3778), + [anon_sym_errdefer] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_else] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_expand] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3776), + [anon_sym_true] = ACTIONS(3778), + [anon_sym_false] = ACTIONS(3778), + [sym_none] = ACTIONS(3778), + [sym_undefined] = ACTIONS(3778), + [sym_sink] = ACTIONS(3778), + [sym_integer] = ACTIONS(3778), + [sym_float] = ACTIONS(3776), + [anon_sym_DQUOTE] = ACTIONS(3776), + [sym_multiline_string] = ACTIONS(3776), + [sym_character] = ACTIONS(3776), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3925), + [sym__newline] = ACTIONS(3776), }, [STATE(1667)] = { - [ts_builtin_sym_end] = ACTIONS(3929), - [sym_identifier] = ACTIONS(3931), - [anon_sym_import] = ACTIONS(3931), - [anon_sym_test] = ACTIONS(3931), - [anon_sym_hide] = ACTIONS(3931), - [anon_sym_func] = ACTIONS(3931), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3929), - [anon_sym_RPAREN] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_RBRACE] = ACTIONS(3929), - [anon_sym_DASH] = ACTIONS(3929), - [anon_sym_DOLLAR] = ACTIONS(3929), - [anon_sym_LBRACK] = ACTIONS(3929), - [anon_sym_void] = ACTIONS(3931), - [anon_sym_anyopaque] = ACTIONS(3931), - [anon_sym_bool] = ACTIONS(3931), - [anon_sym_int] = ACTIONS(3931), - [anon_sym_uint] = ACTIONS(3931), - [anon_sym_float] = ACTIONS(3931), - [anon_sym_range] = ACTIONS(3931), - [anon_sym_i8] = ACTIONS(3931), - [anon_sym_i16] = ACTIONS(3931), - [anon_sym_i32] = ACTIONS(3931), - [anon_sym_i64] = ACTIONS(3931), - [anon_sym_u8] = ACTIONS(3931), - [anon_sym_u16] = ACTIONS(3931), - [anon_sym_u32] = ACTIONS(3931), - [anon_sym_u64] = ACTIONS(3931), - [anon_sym_isize] = ACTIONS(3931), - [anon_sym_usize] = ACTIONS(3931), - [anon_sym_f32] = ACTIONS(3931), - [anon_sym_f64] = ACTIONS(3931), - [anon_sym_c_char] = ACTIONS(3931), - [anon_sym_c_schar] = ACTIONS(3931), - [anon_sym_c_uchar] = ACTIONS(3931), - [anon_sym_c_short] = ACTIONS(3931), - [anon_sym_c_ushort] = ACTIONS(3931), - [anon_sym_c_int] = ACTIONS(3931), - [anon_sym_c_uint] = ACTIONS(3931), - [anon_sym_c_long] = ACTIONS(3931), - [anon_sym_c_ulong] = ACTIONS(3931), - [anon_sym_c_longlong] = ACTIONS(3931), - [anon_sym_c_ulonglong] = ACTIONS(3931), - [anon_sym_c_float] = ACTIONS(3931), - [anon_sym_c_double] = ACTIONS(3931), - [anon_sym_c_longdouble] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_yield] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_defer] = ACTIONS(3931), - [anon_sym_errdefer] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_else] = ACTIONS(3931), - [anon_sym_while] = ACTIONS(3931), - [anon_sym_expand] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_match] = ACTIONS(3931), - [anon_sym_AMP] = ACTIONS(3929), - [anon_sym_TILDE] = ACTIONS(3929), - [anon_sym_try] = ACTIONS(3931), - [anon_sym_DOT] = ACTIONS(3929), - [anon_sym_true] = ACTIONS(3931), - [anon_sym_false] = ACTIONS(3931), - [sym_none] = ACTIONS(3931), - [sym_undefined] = ACTIONS(3931), - [sym_sink] = ACTIONS(3931), - [sym_integer] = ACTIONS(3931), - [sym_float] = ACTIONS(3929), - [anon_sym_DQUOTE] = ACTIONS(3929), - [sym_multiline_string] = ACTIONS(3929), - [sym_character] = ACTIONS(3929), + [ts_builtin_sym_end] = ACTIONS(3780), + [sym_identifier] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_test] = ACTIONS(3782), + [anon_sym_hide] = ACTIONS(3782), + [anon_sym_func] = ACTIONS(3782), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_RPAREN] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_void] = ACTIONS(3782), + [anon_sym_type] = ACTIONS(3782), + [anon_sym_anyopaque] = ACTIONS(3782), + [anon_sym_bool] = ACTIONS(3782), + [anon_sym_int] = ACTIONS(3782), + [anon_sym_uint] = ACTIONS(3782), + [anon_sym_float] = ACTIONS(3782), + [anon_sym_range] = ACTIONS(3782), + [anon_sym_i8] = ACTIONS(3782), + [anon_sym_i16] = ACTIONS(3782), + [anon_sym_i32] = ACTIONS(3782), + [anon_sym_i64] = ACTIONS(3782), + [anon_sym_u8] = ACTIONS(3782), + [anon_sym_u16] = ACTIONS(3782), + [anon_sym_u32] = ACTIONS(3782), + [anon_sym_u64] = ACTIONS(3782), + [anon_sym_isize] = ACTIONS(3782), + [anon_sym_usize] = ACTIONS(3782), + [anon_sym_f32] = ACTIONS(3782), + [anon_sym_f64] = ACTIONS(3782), + [anon_sym_c_char] = ACTIONS(3782), + [anon_sym_c_schar] = ACTIONS(3782), + [anon_sym_c_uchar] = ACTIONS(3782), + [anon_sym_c_short] = ACTIONS(3782), + [anon_sym_c_ushort] = ACTIONS(3782), + [anon_sym_c_int] = ACTIONS(3782), + [anon_sym_c_uint] = ACTIONS(3782), + [anon_sym_c_long] = ACTIONS(3782), + [anon_sym_c_ulong] = ACTIONS(3782), + [anon_sym_c_longlong] = ACTIONS(3782), + [anon_sym_c_ulonglong] = ACTIONS(3782), + [anon_sym_c_float] = ACTIONS(3782), + [anon_sym_c_double] = ACTIONS(3782), + [anon_sym_c_longdouble] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_defer] = ACTIONS(3782), + [anon_sym_errdefer] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_else] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_expand] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_AMP] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3780), + [anon_sym_true] = ACTIONS(3782), + [anon_sym_false] = ACTIONS(3782), + [sym_none] = ACTIONS(3782), + [sym_undefined] = ACTIONS(3782), + [sym_sink] = ACTIONS(3782), + [sym_integer] = ACTIONS(3782), + [sym_float] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym_multiline_string] = ACTIONS(3780), + [sym_character] = ACTIONS(3780), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3929), + [sym__newline] = ACTIONS(3780), }, [STATE(1668)] = { - [ts_builtin_sym_end] = ACTIONS(3933), - [sym_identifier] = ACTIONS(3935), - [anon_sym_import] = ACTIONS(3935), - [anon_sym_test] = ACTIONS(3935), - [anon_sym_hide] = ACTIONS(3935), - [anon_sym_func] = ACTIONS(3935), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3933), - [anon_sym_DOLLAR] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_void] = ACTIONS(3935), - [anon_sym_anyopaque] = ACTIONS(3935), - [anon_sym_bool] = ACTIONS(3935), - [anon_sym_int] = ACTIONS(3935), - [anon_sym_uint] = ACTIONS(3935), - [anon_sym_float] = ACTIONS(3935), - [anon_sym_range] = ACTIONS(3935), - [anon_sym_i8] = ACTIONS(3935), - [anon_sym_i16] = ACTIONS(3935), - [anon_sym_i32] = ACTIONS(3935), - [anon_sym_i64] = ACTIONS(3935), - [anon_sym_u8] = ACTIONS(3935), - [anon_sym_u16] = ACTIONS(3935), - [anon_sym_u32] = ACTIONS(3935), - [anon_sym_u64] = ACTIONS(3935), - [anon_sym_isize] = ACTIONS(3935), - [anon_sym_usize] = ACTIONS(3935), - [anon_sym_f32] = ACTIONS(3935), - [anon_sym_f64] = ACTIONS(3935), - [anon_sym_c_char] = ACTIONS(3935), - [anon_sym_c_schar] = ACTIONS(3935), - [anon_sym_c_uchar] = ACTIONS(3935), - [anon_sym_c_short] = ACTIONS(3935), - [anon_sym_c_ushort] = ACTIONS(3935), - [anon_sym_c_int] = ACTIONS(3935), - [anon_sym_c_uint] = ACTIONS(3935), - [anon_sym_c_long] = ACTIONS(3935), - [anon_sym_c_ulong] = ACTIONS(3935), - [anon_sym_c_longlong] = ACTIONS(3935), - [anon_sym_c_ulonglong] = ACTIONS(3935), - [anon_sym_c_float] = ACTIONS(3935), - [anon_sym_c_double] = ACTIONS(3935), - [anon_sym_c_longdouble] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_yield] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_defer] = ACTIONS(3935), - [anon_sym_errdefer] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_else] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_expand] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_match] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_DOT] = ACTIONS(3933), - [anon_sym_true] = ACTIONS(3935), - [anon_sym_false] = ACTIONS(3935), - [sym_none] = ACTIONS(3935), - [sym_undefined] = ACTIONS(3935), - [sym_sink] = ACTIONS(3935), - [sym_integer] = ACTIONS(3935), - [sym_float] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym_multiline_string] = ACTIONS(3933), - [sym_character] = ACTIONS(3933), + [ts_builtin_sym_end] = ACTIONS(3784), + [sym_identifier] = ACTIONS(3786), + [anon_sym_import] = ACTIONS(3786), + [anon_sym_test] = ACTIONS(3786), + [anon_sym_hide] = ACTIONS(3786), + [anon_sym_func] = ACTIONS(3786), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_struct] = ACTIONS(3786), + [anon_sym_LPAREN] = ACTIONS(3784), + [anon_sym_RPAREN] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3784), + [anon_sym_LBRACK] = ACTIONS(3784), + [anon_sym_void] = ACTIONS(3786), + [anon_sym_type] = ACTIONS(3786), + [anon_sym_anyopaque] = ACTIONS(3786), + [anon_sym_bool] = ACTIONS(3786), + [anon_sym_int] = ACTIONS(3786), + [anon_sym_uint] = ACTIONS(3786), + [anon_sym_float] = ACTIONS(3786), + [anon_sym_range] = ACTIONS(3786), + [anon_sym_i8] = ACTIONS(3786), + [anon_sym_i16] = ACTIONS(3786), + [anon_sym_i32] = ACTIONS(3786), + [anon_sym_i64] = ACTIONS(3786), + [anon_sym_u8] = ACTIONS(3786), + [anon_sym_u16] = ACTIONS(3786), + [anon_sym_u32] = ACTIONS(3786), + [anon_sym_u64] = ACTIONS(3786), + [anon_sym_isize] = ACTIONS(3786), + [anon_sym_usize] = ACTIONS(3786), + [anon_sym_f32] = ACTIONS(3786), + [anon_sym_f64] = ACTIONS(3786), + [anon_sym_c_char] = ACTIONS(3786), + [anon_sym_c_schar] = ACTIONS(3786), + [anon_sym_c_uchar] = ACTIONS(3786), + [anon_sym_c_short] = ACTIONS(3786), + [anon_sym_c_ushort] = ACTIONS(3786), + [anon_sym_c_int] = ACTIONS(3786), + [anon_sym_c_uint] = ACTIONS(3786), + [anon_sym_c_long] = ACTIONS(3786), + [anon_sym_c_ulong] = ACTIONS(3786), + [anon_sym_c_longlong] = ACTIONS(3786), + [anon_sym_c_ulonglong] = ACTIONS(3786), + [anon_sym_c_float] = ACTIONS(3786), + [anon_sym_c_double] = ACTIONS(3786), + [anon_sym_c_longdouble] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_break] = ACTIONS(3786), + [anon_sym_continue] = ACTIONS(3786), + [anon_sym_defer] = ACTIONS(3786), + [anon_sym_errdefer] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_else] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_expand] = ACTIONS(3786), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_AMP] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3784), + [anon_sym_true] = ACTIONS(3786), + [anon_sym_false] = ACTIONS(3786), + [sym_none] = ACTIONS(3786), + [sym_undefined] = ACTIONS(3786), + [sym_sink] = ACTIONS(3786), + [sym_integer] = ACTIONS(3786), + [sym_float] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_multiline_string] = ACTIONS(3784), + [sym_character] = ACTIONS(3784), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3933), + [sym__newline] = ACTIONS(3784), }, [STATE(1669)] = { - [ts_builtin_sym_end] = ACTIONS(3937), - [sym_identifier] = ACTIONS(3939), - [anon_sym_import] = ACTIONS(3939), - [anon_sym_test] = ACTIONS(3939), - [anon_sym_hide] = ACTIONS(3939), - [anon_sym_func] = ACTIONS(3939), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_RPAREN] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_RBRACE] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3937), - [anon_sym_DOLLAR] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3937), - [anon_sym_void] = ACTIONS(3939), - [anon_sym_anyopaque] = ACTIONS(3939), - [anon_sym_bool] = ACTIONS(3939), - [anon_sym_int] = ACTIONS(3939), - [anon_sym_uint] = ACTIONS(3939), - [anon_sym_float] = ACTIONS(3939), - [anon_sym_range] = ACTIONS(3939), - [anon_sym_i8] = ACTIONS(3939), - [anon_sym_i16] = ACTIONS(3939), - [anon_sym_i32] = ACTIONS(3939), - [anon_sym_i64] = ACTIONS(3939), - [anon_sym_u8] = ACTIONS(3939), - [anon_sym_u16] = ACTIONS(3939), - [anon_sym_u32] = ACTIONS(3939), - [anon_sym_u64] = ACTIONS(3939), - [anon_sym_isize] = ACTIONS(3939), - [anon_sym_usize] = ACTIONS(3939), - [anon_sym_f32] = ACTIONS(3939), - [anon_sym_f64] = ACTIONS(3939), - [anon_sym_c_char] = ACTIONS(3939), - [anon_sym_c_schar] = ACTIONS(3939), - [anon_sym_c_uchar] = ACTIONS(3939), - [anon_sym_c_short] = ACTIONS(3939), - [anon_sym_c_ushort] = ACTIONS(3939), - [anon_sym_c_int] = ACTIONS(3939), - [anon_sym_c_uint] = ACTIONS(3939), - [anon_sym_c_long] = ACTIONS(3939), - [anon_sym_c_ulong] = ACTIONS(3939), - [anon_sym_c_longlong] = ACTIONS(3939), - [anon_sym_c_ulonglong] = ACTIONS(3939), - [anon_sym_c_float] = ACTIONS(3939), - [anon_sym_c_double] = ACTIONS(3939), - [anon_sym_c_longdouble] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_yield] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_defer] = ACTIONS(3939), - [anon_sym_errdefer] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_else] = ACTIONS(3939), - [anon_sym_while] = ACTIONS(3939), - [anon_sym_expand] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_match] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_try] = ACTIONS(3939), - [anon_sym_DOT] = ACTIONS(3937), - [anon_sym_true] = ACTIONS(3939), - [anon_sym_false] = ACTIONS(3939), - [sym_none] = ACTIONS(3939), - [sym_undefined] = ACTIONS(3939), - [sym_sink] = ACTIONS(3939), - [sym_integer] = ACTIONS(3939), - [sym_float] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(3937), - [sym_multiline_string] = ACTIONS(3937), - [sym_character] = ACTIONS(3937), + [ts_builtin_sym_end] = ACTIONS(3788), + [sym_identifier] = ACTIONS(3790), + [anon_sym_import] = ACTIONS(3790), + [anon_sym_test] = ACTIONS(3790), + [anon_sym_hide] = ACTIONS(3790), + [anon_sym_func] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3790), + [anon_sym_LPAREN] = ACTIONS(3788), + [anon_sym_RPAREN] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3788), + [anon_sym_RBRACE] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_void] = ACTIONS(3790), + [anon_sym_type] = ACTIONS(3790), + [anon_sym_anyopaque] = ACTIONS(3790), + [anon_sym_bool] = ACTIONS(3790), + [anon_sym_int] = ACTIONS(3790), + [anon_sym_uint] = ACTIONS(3790), + [anon_sym_float] = ACTIONS(3790), + [anon_sym_range] = ACTIONS(3790), + [anon_sym_i8] = ACTIONS(3790), + [anon_sym_i16] = ACTIONS(3790), + [anon_sym_i32] = ACTIONS(3790), + [anon_sym_i64] = ACTIONS(3790), + [anon_sym_u8] = ACTIONS(3790), + [anon_sym_u16] = ACTIONS(3790), + [anon_sym_u32] = ACTIONS(3790), + [anon_sym_u64] = ACTIONS(3790), + [anon_sym_isize] = ACTIONS(3790), + [anon_sym_usize] = ACTIONS(3790), + [anon_sym_f32] = ACTIONS(3790), + [anon_sym_f64] = ACTIONS(3790), + [anon_sym_c_char] = ACTIONS(3790), + [anon_sym_c_schar] = ACTIONS(3790), + [anon_sym_c_uchar] = ACTIONS(3790), + [anon_sym_c_short] = ACTIONS(3790), + [anon_sym_c_ushort] = ACTIONS(3790), + [anon_sym_c_int] = ACTIONS(3790), + [anon_sym_c_uint] = ACTIONS(3790), + [anon_sym_c_long] = ACTIONS(3790), + [anon_sym_c_ulong] = ACTIONS(3790), + [anon_sym_c_longlong] = ACTIONS(3790), + [anon_sym_c_ulonglong] = ACTIONS(3790), + [anon_sym_c_float] = ACTIONS(3790), + [anon_sym_c_double] = ACTIONS(3790), + [anon_sym_c_longdouble] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_break] = ACTIONS(3790), + [anon_sym_continue] = ACTIONS(3790), + [anon_sym_defer] = ACTIONS(3790), + [anon_sym_errdefer] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_else] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_expand] = ACTIONS(3790), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_TILDE] = ACTIONS(3788), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_true] = ACTIONS(3790), + [anon_sym_false] = ACTIONS(3790), + [sym_none] = ACTIONS(3790), + [sym_undefined] = ACTIONS(3790), + [sym_sink] = ACTIONS(3790), + [sym_integer] = ACTIONS(3790), + [sym_float] = ACTIONS(3788), + [anon_sym_DQUOTE] = ACTIONS(3788), + [sym_multiline_string] = ACTIONS(3788), + [sym_character] = ACTIONS(3788), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3937), + [sym__newline] = ACTIONS(3788), }, [STATE(1670)] = { - [ts_builtin_sym_end] = ACTIONS(3941), - [sym_identifier] = ACTIONS(3943), - [anon_sym_import] = ACTIONS(3943), - [anon_sym_test] = ACTIONS(3943), - [anon_sym_hide] = ACTIONS(3943), - [anon_sym_func] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_struct] = ACTIONS(3943), - [anon_sym_LPAREN] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_LBRACK] = ACTIONS(3941), - [anon_sym_void] = ACTIONS(3943), - [anon_sym_anyopaque] = ACTIONS(3943), - [anon_sym_bool] = ACTIONS(3943), - [anon_sym_int] = ACTIONS(3943), - [anon_sym_uint] = ACTIONS(3943), - [anon_sym_float] = ACTIONS(3943), - [anon_sym_range] = ACTIONS(3943), - [anon_sym_i8] = ACTIONS(3943), - [anon_sym_i16] = ACTIONS(3943), - [anon_sym_i32] = ACTIONS(3943), - [anon_sym_i64] = ACTIONS(3943), - [anon_sym_u8] = ACTIONS(3943), - [anon_sym_u16] = ACTIONS(3943), - [anon_sym_u32] = ACTIONS(3943), - [anon_sym_u64] = ACTIONS(3943), - [anon_sym_isize] = ACTIONS(3943), - [anon_sym_usize] = ACTIONS(3943), - [anon_sym_f32] = ACTIONS(3943), - [anon_sym_f64] = ACTIONS(3943), - [anon_sym_c_char] = ACTIONS(3943), - [anon_sym_c_schar] = ACTIONS(3943), - [anon_sym_c_uchar] = ACTIONS(3943), - [anon_sym_c_short] = ACTIONS(3943), - [anon_sym_c_ushort] = ACTIONS(3943), - [anon_sym_c_int] = ACTIONS(3943), - [anon_sym_c_uint] = ACTIONS(3943), - [anon_sym_c_long] = ACTIONS(3943), - [anon_sym_c_ulong] = ACTIONS(3943), - [anon_sym_c_longlong] = ACTIONS(3943), - [anon_sym_c_ulonglong] = ACTIONS(3943), - [anon_sym_c_float] = ACTIONS(3943), - [anon_sym_c_double] = ACTIONS(3943), - [anon_sym_c_longdouble] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_defer] = ACTIONS(3943), - [anon_sym_errdefer] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_expand] = ACTIONS(3943), - [anon_sym_for] = ACTIONS(3943), - [anon_sym_match] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(3941), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [sym_none] = ACTIONS(3943), - [sym_undefined] = ACTIONS(3943), - [sym_sink] = ACTIONS(3943), - [sym_integer] = ACTIONS(3943), - [sym_float] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym_multiline_string] = ACTIONS(3941), - [sym_character] = ACTIONS(3941), + [ts_builtin_sym_end] = ACTIONS(3792), + [sym_identifier] = ACTIONS(3794), + [anon_sym_import] = ACTIONS(3794), + [anon_sym_test] = ACTIONS(3794), + [anon_sym_hide] = ACTIONS(3794), + [anon_sym_func] = ACTIONS(3794), + [anon_sym_BANG] = ACTIONS(3792), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3792), + [anon_sym_RPAREN] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3792), + [anon_sym_RBRACE] = ACTIONS(3792), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3792), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_void] = ACTIONS(3794), + [anon_sym_type] = ACTIONS(3794), + [anon_sym_anyopaque] = ACTIONS(3794), + [anon_sym_bool] = ACTIONS(3794), + [anon_sym_int] = ACTIONS(3794), + [anon_sym_uint] = ACTIONS(3794), + [anon_sym_float] = ACTIONS(3794), + [anon_sym_range] = ACTIONS(3794), + [anon_sym_i8] = ACTIONS(3794), + [anon_sym_i16] = ACTIONS(3794), + [anon_sym_i32] = ACTIONS(3794), + [anon_sym_i64] = ACTIONS(3794), + [anon_sym_u8] = ACTIONS(3794), + [anon_sym_u16] = ACTIONS(3794), + [anon_sym_u32] = ACTIONS(3794), + [anon_sym_u64] = ACTIONS(3794), + [anon_sym_isize] = ACTIONS(3794), + [anon_sym_usize] = ACTIONS(3794), + [anon_sym_f32] = ACTIONS(3794), + [anon_sym_f64] = ACTIONS(3794), + [anon_sym_c_char] = ACTIONS(3794), + [anon_sym_c_schar] = ACTIONS(3794), + [anon_sym_c_uchar] = ACTIONS(3794), + [anon_sym_c_short] = ACTIONS(3794), + [anon_sym_c_ushort] = ACTIONS(3794), + [anon_sym_c_int] = ACTIONS(3794), + [anon_sym_c_uint] = ACTIONS(3794), + [anon_sym_c_long] = ACTIONS(3794), + [anon_sym_c_ulong] = ACTIONS(3794), + [anon_sym_c_longlong] = ACTIONS(3794), + [anon_sym_c_ulonglong] = ACTIONS(3794), + [anon_sym_c_float] = ACTIONS(3794), + [anon_sym_c_double] = ACTIONS(3794), + [anon_sym_c_longdouble] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_break] = ACTIONS(3794), + [anon_sym_continue] = ACTIONS(3794), + [anon_sym_defer] = ACTIONS(3794), + [anon_sym_errdefer] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_else] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_expand] = ACTIONS(3794), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3792), + [anon_sym_TILDE] = ACTIONS(3792), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3792), + [anon_sym_true] = ACTIONS(3794), + [anon_sym_false] = ACTIONS(3794), + [sym_none] = ACTIONS(3794), + [sym_undefined] = ACTIONS(3794), + [sym_sink] = ACTIONS(3794), + [sym_integer] = ACTIONS(3794), + [sym_float] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(3792), + [sym_multiline_string] = ACTIONS(3792), + [sym_character] = ACTIONS(3792), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3941), + [sym__newline] = ACTIONS(3792), }, [STATE(1671)] = { - [ts_builtin_sym_end] = ACTIONS(3945), - [sym_identifier] = ACTIONS(3947), - [anon_sym_import] = ACTIONS(3947), - [anon_sym_test] = ACTIONS(3947), - [anon_sym_hide] = ACTIONS(3947), - [anon_sym_func] = ACTIONS(3947), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_struct] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_void] = ACTIONS(3947), - [anon_sym_anyopaque] = ACTIONS(3947), - [anon_sym_bool] = ACTIONS(3947), - [anon_sym_int] = ACTIONS(3947), - [anon_sym_uint] = ACTIONS(3947), - [anon_sym_float] = ACTIONS(3947), - [anon_sym_range] = ACTIONS(3947), - [anon_sym_i8] = ACTIONS(3947), - [anon_sym_i16] = ACTIONS(3947), - [anon_sym_i32] = ACTIONS(3947), - [anon_sym_i64] = ACTIONS(3947), - [anon_sym_u8] = ACTIONS(3947), - [anon_sym_u16] = ACTIONS(3947), - [anon_sym_u32] = ACTIONS(3947), - [anon_sym_u64] = ACTIONS(3947), - [anon_sym_isize] = ACTIONS(3947), - [anon_sym_usize] = ACTIONS(3947), - [anon_sym_f32] = ACTIONS(3947), - [anon_sym_f64] = ACTIONS(3947), - [anon_sym_c_char] = ACTIONS(3947), - [anon_sym_c_schar] = ACTIONS(3947), - [anon_sym_c_uchar] = ACTIONS(3947), - [anon_sym_c_short] = ACTIONS(3947), - [anon_sym_c_ushort] = ACTIONS(3947), - [anon_sym_c_int] = ACTIONS(3947), - [anon_sym_c_uint] = ACTIONS(3947), - [anon_sym_c_long] = ACTIONS(3947), - [anon_sym_c_ulong] = ACTIONS(3947), - [anon_sym_c_longlong] = ACTIONS(3947), - [anon_sym_c_ulonglong] = ACTIONS(3947), - [anon_sym_c_float] = ACTIONS(3947), - [anon_sym_c_double] = ACTIONS(3947), - [anon_sym_c_longdouble] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_yield] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_defer] = ACTIONS(3947), - [anon_sym_errdefer] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_else] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_expand] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_AMP] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_DOT] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [sym_none] = ACTIONS(3947), - [sym_undefined] = ACTIONS(3947), - [sym_sink] = ACTIONS(3947), - [sym_integer] = ACTIONS(3947), - [sym_float] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym_multiline_string] = ACTIONS(3945), - [sym_character] = ACTIONS(3945), + [ts_builtin_sym_end] = ACTIONS(3796), + [sym_identifier] = ACTIONS(3798), + [anon_sym_import] = ACTIONS(3798), + [anon_sym_test] = ACTIONS(3798), + [anon_sym_hide] = ACTIONS(3798), + [anon_sym_func] = ACTIONS(3798), + [anon_sym_BANG] = ACTIONS(3796), + [anon_sym_struct] = ACTIONS(3798), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_RPAREN] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_DASH] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3796), + [anon_sym_void] = ACTIONS(3798), + [anon_sym_type] = ACTIONS(3798), + [anon_sym_anyopaque] = ACTIONS(3798), + [anon_sym_bool] = ACTIONS(3798), + [anon_sym_int] = ACTIONS(3798), + [anon_sym_uint] = ACTIONS(3798), + [anon_sym_float] = ACTIONS(3798), + [anon_sym_range] = ACTIONS(3798), + [anon_sym_i8] = ACTIONS(3798), + [anon_sym_i16] = ACTIONS(3798), + [anon_sym_i32] = ACTIONS(3798), + [anon_sym_i64] = ACTIONS(3798), + [anon_sym_u8] = ACTIONS(3798), + [anon_sym_u16] = ACTIONS(3798), + [anon_sym_u32] = ACTIONS(3798), + [anon_sym_u64] = ACTIONS(3798), + [anon_sym_isize] = ACTIONS(3798), + [anon_sym_usize] = ACTIONS(3798), + [anon_sym_f32] = ACTIONS(3798), + [anon_sym_f64] = ACTIONS(3798), + [anon_sym_c_char] = ACTIONS(3798), + [anon_sym_c_schar] = ACTIONS(3798), + [anon_sym_c_uchar] = ACTIONS(3798), + [anon_sym_c_short] = ACTIONS(3798), + [anon_sym_c_ushort] = ACTIONS(3798), + [anon_sym_c_int] = ACTIONS(3798), + [anon_sym_c_uint] = ACTIONS(3798), + [anon_sym_c_long] = ACTIONS(3798), + [anon_sym_c_ulong] = ACTIONS(3798), + [anon_sym_c_longlong] = ACTIONS(3798), + [anon_sym_c_ulonglong] = ACTIONS(3798), + [anon_sym_c_float] = ACTIONS(3798), + [anon_sym_c_double] = ACTIONS(3798), + [anon_sym_c_longdouble] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_break] = ACTIONS(3798), + [anon_sym_continue] = ACTIONS(3798), + [anon_sym_defer] = ACTIONS(3798), + [anon_sym_errdefer] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_else] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_expand] = ACTIONS(3798), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_AMP] = ACTIONS(3796), + [anon_sym_TILDE] = ACTIONS(3796), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_true] = ACTIONS(3798), + [anon_sym_false] = ACTIONS(3798), + [sym_none] = ACTIONS(3798), + [sym_undefined] = ACTIONS(3798), + [sym_sink] = ACTIONS(3798), + [sym_integer] = ACTIONS(3798), + [sym_float] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(3796), + [sym_multiline_string] = ACTIONS(3796), + [sym_character] = ACTIONS(3796), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3945), + [sym__newline] = ACTIONS(3796), }, [STATE(1672)] = { - [ts_builtin_sym_end] = ACTIONS(3949), - [sym_identifier] = ACTIONS(3951), - [anon_sym_import] = ACTIONS(3951), - [anon_sym_test] = ACTIONS(3951), - [anon_sym_hide] = ACTIONS(3951), - [anon_sym_func] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_struct] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_void] = ACTIONS(3951), - [anon_sym_anyopaque] = ACTIONS(3951), - [anon_sym_bool] = ACTIONS(3951), - [anon_sym_int] = ACTIONS(3951), - [anon_sym_uint] = ACTIONS(3951), - [anon_sym_float] = ACTIONS(3951), - [anon_sym_range] = ACTIONS(3951), - [anon_sym_i8] = ACTIONS(3951), - [anon_sym_i16] = ACTIONS(3951), - [anon_sym_i32] = ACTIONS(3951), - [anon_sym_i64] = ACTIONS(3951), - [anon_sym_u8] = ACTIONS(3951), - [anon_sym_u16] = ACTIONS(3951), - [anon_sym_u32] = ACTIONS(3951), - [anon_sym_u64] = ACTIONS(3951), - [anon_sym_isize] = ACTIONS(3951), - [anon_sym_usize] = ACTIONS(3951), - [anon_sym_f32] = ACTIONS(3951), - [anon_sym_f64] = ACTIONS(3951), - [anon_sym_c_char] = ACTIONS(3951), - [anon_sym_c_schar] = ACTIONS(3951), - [anon_sym_c_uchar] = ACTIONS(3951), - [anon_sym_c_short] = ACTIONS(3951), - [anon_sym_c_ushort] = ACTIONS(3951), - [anon_sym_c_int] = ACTIONS(3951), - [anon_sym_c_uint] = ACTIONS(3951), - [anon_sym_c_long] = ACTIONS(3951), - [anon_sym_c_ulong] = ACTIONS(3951), - [anon_sym_c_longlong] = ACTIONS(3951), - [anon_sym_c_ulonglong] = ACTIONS(3951), - [anon_sym_c_float] = ACTIONS(3951), - [anon_sym_c_double] = ACTIONS(3951), - [anon_sym_c_longdouble] = ACTIONS(3951), - [anon_sym_return] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_break] = ACTIONS(3951), - [anon_sym_continue] = ACTIONS(3951), - [anon_sym_defer] = ACTIONS(3951), - [anon_sym_errdefer] = ACTIONS(3951), - [anon_sym_if] = ACTIONS(3951), - [anon_sym_else] = ACTIONS(3951), - [anon_sym_while] = ACTIONS(3951), - [anon_sym_expand] = ACTIONS(3951), - [anon_sym_for] = ACTIONS(3951), - [anon_sym_match] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_TILDE] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3951), - [anon_sym_false] = ACTIONS(3951), - [sym_none] = ACTIONS(3951), - [sym_undefined] = ACTIONS(3951), - [sym_sink] = ACTIONS(3951), - [sym_integer] = ACTIONS(3951), - [sym_float] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym_multiline_string] = ACTIONS(3949), - [sym_character] = ACTIONS(3949), + [ts_builtin_sym_end] = ACTIONS(3800), + [sym_identifier] = ACTIONS(3802), + [anon_sym_import] = ACTIONS(3802), + [anon_sym_test] = ACTIONS(3802), + [anon_sym_hide] = ACTIONS(3802), + [anon_sym_func] = ACTIONS(3802), + [anon_sym_BANG] = ACTIONS(3800), + [anon_sym_struct] = ACTIONS(3802), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_RPAREN] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3800), + [anon_sym_RBRACE] = ACTIONS(3800), + [anon_sym_DASH] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3800), + [anon_sym_void] = ACTIONS(3802), + [anon_sym_type] = ACTIONS(3802), + [anon_sym_anyopaque] = ACTIONS(3802), + [anon_sym_bool] = ACTIONS(3802), + [anon_sym_int] = ACTIONS(3802), + [anon_sym_uint] = ACTIONS(3802), + [anon_sym_float] = ACTIONS(3802), + [anon_sym_range] = ACTIONS(3802), + [anon_sym_i8] = ACTIONS(3802), + [anon_sym_i16] = ACTIONS(3802), + [anon_sym_i32] = ACTIONS(3802), + [anon_sym_i64] = ACTIONS(3802), + [anon_sym_u8] = ACTIONS(3802), + [anon_sym_u16] = ACTIONS(3802), + [anon_sym_u32] = ACTIONS(3802), + [anon_sym_u64] = ACTIONS(3802), + [anon_sym_isize] = ACTIONS(3802), + [anon_sym_usize] = ACTIONS(3802), + [anon_sym_f32] = ACTIONS(3802), + [anon_sym_f64] = ACTIONS(3802), + [anon_sym_c_char] = ACTIONS(3802), + [anon_sym_c_schar] = ACTIONS(3802), + [anon_sym_c_uchar] = ACTIONS(3802), + [anon_sym_c_short] = ACTIONS(3802), + [anon_sym_c_ushort] = ACTIONS(3802), + [anon_sym_c_int] = ACTIONS(3802), + [anon_sym_c_uint] = ACTIONS(3802), + [anon_sym_c_long] = ACTIONS(3802), + [anon_sym_c_ulong] = ACTIONS(3802), + [anon_sym_c_longlong] = ACTIONS(3802), + [anon_sym_c_ulonglong] = ACTIONS(3802), + [anon_sym_c_float] = ACTIONS(3802), + [anon_sym_c_double] = ACTIONS(3802), + [anon_sym_c_longdouble] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_break] = ACTIONS(3802), + [anon_sym_continue] = ACTIONS(3802), + [anon_sym_defer] = ACTIONS(3802), + [anon_sym_errdefer] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_else] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_expand] = ACTIONS(3802), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3800), + [anon_sym_TILDE] = ACTIONS(3800), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3800), + [anon_sym_true] = ACTIONS(3802), + [anon_sym_false] = ACTIONS(3802), + [sym_none] = ACTIONS(3802), + [sym_undefined] = ACTIONS(3802), + [sym_sink] = ACTIONS(3802), + [sym_integer] = ACTIONS(3802), + [sym_float] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3800), + [sym_multiline_string] = ACTIONS(3800), + [sym_character] = ACTIONS(3800), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3949), + [sym__newline] = ACTIONS(3800), }, [STATE(1673)] = { - [ts_builtin_sym_end] = ACTIONS(3953), - [sym_identifier] = ACTIONS(3955), - [anon_sym_import] = ACTIONS(3955), - [anon_sym_test] = ACTIONS(3955), - [anon_sym_hide] = ACTIONS(3955), - [anon_sym_func] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_DOLLAR] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_void] = ACTIONS(3955), - [anon_sym_anyopaque] = ACTIONS(3955), - [anon_sym_bool] = ACTIONS(3955), - [anon_sym_int] = ACTIONS(3955), - [anon_sym_uint] = ACTIONS(3955), - [anon_sym_float] = ACTIONS(3955), - [anon_sym_range] = ACTIONS(3955), - [anon_sym_i8] = ACTIONS(3955), - [anon_sym_i16] = ACTIONS(3955), - [anon_sym_i32] = ACTIONS(3955), - [anon_sym_i64] = ACTIONS(3955), - [anon_sym_u8] = ACTIONS(3955), - [anon_sym_u16] = ACTIONS(3955), - [anon_sym_u32] = ACTIONS(3955), - [anon_sym_u64] = ACTIONS(3955), - [anon_sym_isize] = ACTIONS(3955), - [anon_sym_usize] = ACTIONS(3955), - [anon_sym_f32] = ACTIONS(3955), - [anon_sym_f64] = ACTIONS(3955), - [anon_sym_c_char] = ACTIONS(3955), - [anon_sym_c_schar] = ACTIONS(3955), - [anon_sym_c_uchar] = ACTIONS(3955), - [anon_sym_c_short] = ACTIONS(3955), - [anon_sym_c_ushort] = ACTIONS(3955), - [anon_sym_c_int] = ACTIONS(3955), - [anon_sym_c_uint] = ACTIONS(3955), - [anon_sym_c_long] = ACTIONS(3955), - [anon_sym_c_ulong] = ACTIONS(3955), - [anon_sym_c_longlong] = ACTIONS(3955), - [anon_sym_c_ulonglong] = ACTIONS(3955), - [anon_sym_c_float] = ACTIONS(3955), - [anon_sym_c_double] = ACTIONS(3955), - [anon_sym_c_longdouble] = ACTIONS(3955), - [anon_sym_return] = ACTIONS(3955), - [anon_sym_yield] = ACTIONS(3955), - [anon_sym_break] = ACTIONS(3955), - [anon_sym_continue] = ACTIONS(3955), - [anon_sym_defer] = ACTIONS(3955), - [anon_sym_errdefer] = ACTIONS(3955), - [anon_sym_if] = ACTIONS(3955), - [anon_sym_else] = ACTIONS(3955), - [anon_sym_while] = ACTIONS(3955), - [anon_sym_expand] = ACTIONS(3955), - [anon_sym_for] = ACTIONS(3955), - [anon_sym_match] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3953), - [anon_sym_TILDE] = ACTIONS(3953), - [anon_sym_try] = ACTIONS(3955), - [anon_sym_DOT] = ACTIONS(3953), - [anon_sym_true] = ACTIONS(3955), - [anon_sym_false] = ACTIONS(3955), - [sym_none] = ACTIONS(3955), - [sym_undefined] = ACTIONS(3955), - [sym_sink] = ACTIONS(3955), - [sym_integer] = ACTIONS(3955), - [sym_float] = ACTIONS(3953), - [anon_sym_DQUOTE] = ACTIONS(3953), - [sym_multiline_string] = ACTIONS(3953), - [sym_character] = ACTIONS(3953), + [ts_builtin_sym_end] = ACTIONS(3804), + [sym_identifier] = ACTIONS(3806), + [anon_sym_import] = ACTIONS(3806), + [anon_sym_test] = ACTIONS(3806), + [anon_sym_hide] = ACTIONS(3806), + [anon_sym_func] = ACTIONS(3806), + [anon_sym_BANG] = ACTIONS(3804), + [anon_sym_struct] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_void] = ACTIONS(3806), + [anon_sym_type] = ACTIONS(3806), + [anon_sym_anyopaque] = ACTIONS(3806), + [anon_sym_bool] = ACTIONS(3806), + [anon_sym_int] = ACTIONS(3806), + [anon_sym_uint] = ACTIONS(3806), + [anon_sym_float] = ACTIONS(3806), + [anon_sym_range] = ACTIONS(3806), + [anon_sym_i8] = ACTIONS(3806), + [anon_sym_i16] = ACTIONS(3806), + [anon_sym_i32] = ACTIONS(3806), + [anon_sym_i64] = ACTIONS(3806), + [anon_sym_u8] = ACTIONS(3806), + [anon_sym_u16] = ACTIONS(3806), + [anon_sym_u32] = ACTIONS(3806), + [anon_sym_u64] = ACTIONS(3806), + [anon_sym_isize] = ACTIONS(3806), + [anon_sym_usize] = ACTIONS(3806), + [anon_sym_f32] = ACTIONS(3806), + [anon_sym_f64] = ACTIONS(3806), + [anon_sym_c_char] = ACTIONS(3806), + [anon_sym_c_schar] = ACTIONS(3806), + [anon_sym_c_uchar] = ACTIONS(3806), + [anon_sym_c_short] = ACTIONS(3806), + [anon_sym_c_ushort] = ACTIONS(3806), + [anon_sym_c_int] = ACTIONS(3806), + [anon_sym_c_uint] = ACTIONS(3806), + [anon_sym_c_long] = ACTIONS(3806), + [anon_sym_c_ulong] = ACTIONS(3806), + [anon_sym_c_longlong] = ACTIONS(3806), + [anon_sym_c_ulonglong] = ACTIONS(3806), + [anon_sym_c_float] = ACTIONS(3806), + [anon_sym_c_double] = ACTIONS(3806), + [anon_sym_c_longdouble] = ACTIONS(3806), + [anon_sym_return] = ACTIONS(3806), + [anon_sym_yield] = ACTIONS(3806), + [anon_sym_break] = ACTIONS(3806), + [anon_sym_continue] = ACTIONS(3806), + [anon_sym_defer] = ACTIONS(3806), + [anon_sym_errdefer] = ACTIONS(3806), + [anon_sym_if] = ACTIONS(3806), + [anon_sym_else] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3806), + [anon_sym_expand] = ACTIONS(3806), + [anon_sym_for] = ACTIONS(3806), + [anon_sym_match] = ACTIONS(3806), + [anon_sym_AMP] = ACTIONS(3804), + [anon_sym_TILDE] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3806), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3806), + [anon_sym_false] = ACTIONS(3806), + [sym_none] = ACTIONS(3806), + [sym_undefined] = ACTIONS(3806), + [sym_sink] = ACTIONS(3806), + [sym_integer] = ACTIONS(3806), + [sym_float] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym_multiline_string] = ACTIONS(3804), + [sym_character] = ACTIONS(3804), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3953), + [sym__newline] = ACTIONS(3804), }, [STATE(1674)] = { - [ts_builtin_sym_end] = ACTIONS(3957), - [sym_identifier] = ACTIONS(3959), - [anon_sym_import] = ACTIONS(3959), - [anon_sym_test] = ACTIONS(3959), - [anon_sym_hide] = ACTIONS(3959), - [anon_sym_func] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3957), - [anon_sym_struct] = ACTIONS(3959), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_DASH] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_void] = ACTIONS(3959), - [anon_sym_anyopaque] = ACTIONS(3959), - [anon_sym_bool] = ACTIONS(3959), - [anon_sym_int] = ACTIONS(3959), - [anon_sym_uint] = ACTIONS(3959), - [anon_sym_float] = ACTIONS(3959), - [anon_sym_range] = ACTIONS(3959), - [anon_sym_i8] = ACTIONS(3959), - [anon_sym_i16] = ACTIONS(3959), - [anon_sym_i32] = ACTIONS(3959), - [anon_sym_i64] = ACTIONS(3959), - [anon_sym_u8] = ACTIONS(3959), - [anon_sym_u16] = ACTIONS(3959), - [anon_sym_u32] = ACTIONS(3959), - [anon_sym_u64] = ACTIONS(3959), - [anon_sym_isize] = ACTIONS(3959), - [anon_sym_usize] = ACTIONS(3959), - [anon_sym_f32] = ACTIONS(3959), - [anon_sym_f64] = ACTIONS(3959), - [anon_sym_c_char] = ACTIONS(3959), - [anon_sym_c_schar] = ACTIONS(3959), - [anon_sym_c_uchar] = ACTIONS(3959), - [anon_sym_c_short] = ACTIONS(3959), - [anon_sym_c_ushort] = ACTIONS(3959), - [anon_sym_c_int] = ACTIONS(3959), - [anon_sym_c_uint] = ACTIONS(3959), - [anon_sym_c_long] = ACTIONS(3959), - [anon_sym_c_ulong] = ACTIONS(3959), - [anon_sym_c_longlong] = ACTIONS(3959), - [anon_sym_c_ulonglong] = ACTIONS(3959), - [anon_sym_c_float] = ACTIONS(3959), - [anon_sym_c_double] = ACTIONS(3959), - [anon_sym_c_longdouble] = ACTIONS(3959), - [anon_sym_return] = ACTIONS(3959), - [anon_sym_yield] = ACTIONS(3959), - [anon_sym_break] = ACTIONS(3959), - [anon_sym_continue] = ACTIONS(3959), - [anon_sym_defer] = ACTIONS(3959), - [anon_sym_errdefer] = ACTIONS(3959), - [anon_sym_if] = ACTIONS(3959), - [anon_sym_else] = ACTIONS(3959), - [anon_sym_while] = ACTIONS(3959), - [anon_sym_expand] = ACTIONS(3959), - [anon_sym_for] = ACTIONS(3959), - [anon_sym_match] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3957), - [anon_sym_TILDE] = ACTIONS(3957), - [anon_sym_try] = ACTIONS(3959), - [anon_sym_DOT] = ACTIONS(3957), - [anon_sym_true] = ACTIONS(3959), - [anon_sym_false] = ACTIONS(3959), - [sym_none] = ACTIONS(3959), - [sym_undefined] = ACTIONS(3959), - [sym_sink] = ACTIONS(3959), - [sym_integer] = ACTIONS(3959), - [sym_float] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [sym_multiline_string] = ACTIONS(3957), - [sym_character] = ACTIONS(3957), + [ts_builtin_sym_end] = ACTIONS(3808), + [sym_identifier] = ACTIONS(3810), + [anon_sym_import] = ACTIONS(3810), + [anon_sym_test] = ACTIONS(3810), + [anon_sym_hide] = ACTIONS(3810), + [anon_sym_func] = ACTIONS(3810), + [anon_sym_BANG] = ACTIONS(3808), + [anon_sym_struct] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3808), + [anon_sym_RPAREN] = ACTIONS(3808), + [anon_sym_LBRACE] = ACTIONS(3808), + [anon_sym_RBRACE] = ACTIONS(3808), + [anon_sym_DASH] = ACTIONS(3808), + [anon_sym_DOLLAR] = ACTIONS(3808), + [anon_sym_LBRACK] = ACTIONS(3808), + [anon_sym_void] = ACTIONS(3810), + [anon_sym_type] = ACTIONS(3810), + [anon_sym_anyopaque] = ACTIONS(3810), + [anon_sym_bool] = ACTIONS(3810), + [anon_sym_int] = ACTIONS(3810), + [anon_sym_uint] = ACTIONS(3810), + [anon_sym_float] = ACTIONS(3810), + [anon_sym_range] = ACTIONS(3810), + [anon_sym_i8] = ACTIONS(3810), + [anon_sym_i16] = ACTIONS(3810), + [anon_sym_i32] = ACTIONS(3810), + [anon_sym_i64] = ACTIONS(3810), + [anon_sym_u8] = ACTIONS(3810), + [anon_sym_u16] = ACTIONS(3810), + [anon_sym_u32] = ACTIONS(3810), + [anon_sym_u64] = ACTIONS(3810), + [anon_sym_isize] = ACTIONS(3810), + [anon_sym_usize] = ACTIONS(3810), + [anon_sym_f32] = ACTIONS(3810), + [anon_sym_f64] = ACTIONS(3810), + [anon_sym_c_char] = ACTIONS(3810), + [anon_sym_c_schar] = ACTIONS(3810), + [anon_sym_c_uchar] = ACTIONS(3810), + [anon_sym_c_short] = ACTIONS(3810), + [anon_sym_c_ushort] = ACTIONS(3810), + [anon_sym_c_int] = ACTIONS(3810), + [anon_sym_c_uint] = ACTIONS(3810), + [anon_sym_c_long] = ACTIONS(3810), + [anon_sym_c_ulong] = ACTIONS(3810), + [anon_sym_c_longlong] = ACTIONS(3810), + [anon_sym_c_ulonglong] = ACTIONS(3810), + [anon_sym_c_float] = ACTIONS(3810), + [anon_sym_c_double] = ACTIONS(3810), + [anon_sym_c_longdouble] = ACTIONS(3810), + [anon_sym_return] = ACTIONS(3810), + [anon_sym_yield] = ACTIONS(3810), + [anon_sym_break] = ACTIONS(3810), + [anon_sym_continue] = ACTIONS(3810), + [anon_sym_defer] = ACTIONS(3810), + [anon_sym_errdefer] = ACTIONS(3810), + [anon_sym_if] = ACTIONS(3810), + [anon_sym_else] = ACTIONS(3810), + [anon_sym_while] = ACTIONS(3810), + [anon_sym_expand] = ACTIONS(3810), + [anon_sym_for] = ACTIONS(3810), + [anon_sym_match] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_TILDE] = ACTIONS(3808), + [anon_sym_try] = ACTIONS(3810), + [anon_sym_DOT] = ACTIONS(3808), + [anon_sym_true] = ACTIONS(3810), + [anon_sym_false] = ACTIONS(3810), + [sym_none] = ACTIONS(3810), + [sym_undefined] = ACTIONS(3810), + [sym_sink] = ACTIONS(3810), + [sym_integer] = ACTIONS(3810), + [sym_float] = ACTIONS(3808), + [anon_sym_DQUOTE] = ACTIONS(3808), + [sym_multiline_string] = ACTIONS(3808), + [sym_character] = ACTIONS(3808), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3957), + [sym__newline] = ACTIONS(3808), }, [STATE(1675)] = { - [ts_builtin_sym_end] = ACTIONS(3961), - [sym_identifier] = ACTIONS(3963), - [anon_sym_import] = ACTIONS(3963), - [anon_sym_test] = ACTIONS(3963), - [anon_sym_hide] = ACTIONS(3963), - [anon_sym_func] = ACTIONS(3963), - [anon_sym_BANG] = ACTIONS(3961), - [anon_sym_struct] = ACTIONS(3963), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3961), - [anon_sym_LBRACE] = ACTIONS(3961), - [anon_sym_RBRACE] = ACTIONS(3961), - [anon_sym_DASH] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3961), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_void] = ACTIONS(3963), - [anon_sym_anyopaque] = ACTIONS(3963), - [anon_sym_bool] = ACTIONS(3963), - [anon_sym_int] = ACTIONS(3963), - [anon_sym_uint] = ACTIONS(3963), - [anon_sym_float] = ACTIONS(3963), - [anon_sym_range] = ACTIONS(3963), - [anon_sym_i8] = ACTIONS(3963), - [anon_sym_i16] = ACTIONS(3963), - [anon_sym_i32] = ACTIONS(3963), - [anon_sym_i64] = ACTIONS(3963), - [anon_sym_u8] = ACTIONS(3963), - [anon_sym_u16] = ACTIONS(3963), - [anon_sym_u32] = ACTIONS(3963), - [anon_sym_u64] = ACTIONS(3963), - [anon_sym_isize] = ACTIONS(3963), - [anon_sym_usize] = ACTIONS(3963), - [anon_sym_f32] = ACTIONS(3963), - [anon_sym_f64] = ACTIONS(3963), - [anon_sym_c_char] = ACTIONS(3963), - [anon_sym_c_schar] = ACTIONS(3963), - [anon_sym_c_uchar] = ACTIONS(3963), - [anon_sym_c_short] = ACTIONS(3963), - [anon_sym_c_ushort] = ACTIONS(3963), - [anon_sym_c_int] = ACTIONS(3963), - [anon_sym_c_uint] = ACTIONS(3963), - [anon_sym_c_long] = ACTIONS(3963), - [anon_sym_c_ulong] = ACTIONS(3963), - [anon_sym_c_longlong] = ACTIONS(3963), - [anon_sym_c_ulonglong] = ACTIONS(3963), - [anon_sym_c_float] = ACTIONS(3963), - [anon_sym_c_double] = ACTIONS(3963), - [anon_sym_c_longdouble] = ACTIONS(3963), - [anon_sym_return] = ACTIONS(3963), - [anon_sym_yield] = ACTIONS(3963), - [anon_sym_break] = ACTIONS(3963), - [anon_sym_continue] = ACTIONS(3963), - [anon_sym_defer] = ACTIONS(3963), - [anon_sym_errdefer] = ACTIONS(3963), - [anon_sym_if] = ACTIONS(3963), - [anon_sym_else] = ACTIONS(3963), - [anon_sym_while] = ACTIONS(3963), - [anon_sym_expand] = ACTIONS(3963), - [anon_sym_for] = ACTIONS(3963), - [anon_sym_match] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_TILDE] = ACTIONS(3961), - [anon_sym_try] = ACTIONS(3963), - [anon_sym_DOT] = ACTIONS(3961), - [anon_sym_true] = ACTIONS(3963), - [anon_sym_false] = ACTIONS(3963), - [sym_none] = ACTIONS(3963), - [sym_undefined] = ACTIONS(3963), - [sym_sink] = ACTIONS(3963), - [sym_integer] = ACTIONS(3963), - [sym_float] = ACTIONS(3961), - [anon_sym_DQUOTE] = ACTIONS(3961), - [sym_multiline_string] = ACTIONS(3961), - [sym_character] = ACTIONS(3961), + [ts_builtin_sym_end] = ACTIONS(3812), + [sym_identifier] = ACTIONS(3814), + [anon_sym_import] = ACTIONS(3814), + [anon_sym_test] = ACTIONS(3814), + [anon_sym_hide] = ACTIONS(3814), + [anon_sym_func] = ACTIONS(3814), + [anon_sym_BANG] = ACTIONS(3812), + [anon_sym_struct] = ACTIONS(3814), + [anon_sym_LPAREN] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_LBRACE] = ACTIONS(3812), + [anon_sym_RBRACE] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [anon_sym_LBRACK] = ACTIONS(3812), + [anon_sym_void] = ACTIONS(3814), + [anon_sym_type] = ACTIONS(3814), + [anon_sym_anyopaque] = ACTIONS(3814), + [anon_sym_bool] = ACTIONS(3814), + [anon_sym_int] = ACTIONS(3814), + [anon_sym_uint] = ACTIONS(3814), + [anon_sym_float] = ACTIONS(3814), + [anon_sym_range] = ACTIONS(3814), + [anon_sym_i8] = ACTIONS(3814), + [anon_sym_i16] = ACTIONS(3814), + [anon_sym_i32] = ACTIONS(3814), + [anon_sym_i64] = ACTIONS(3814), + [anon_sym_u8] = ACTIONS(3814), + [anon_sym_u16] = ACTIONS(3814), + [anon_sym_u32] = ACTIONS(3814), + [anon_sym_u64] = ACTIONS(3814), + [anon_sym_isize] = ACTIONS(3814), + [anon_sym_usize] = ACTIONS(3814), + [anon_sym_f32] = ACTIONS(3814), + [anon_sym_f64] = ACTIONS(3814), + [anon_sym_c_char] = ACTIONS(3814), + [anon_sym_c_schar] = ACTIONS(3814), + [anon_sym_c_uchar] = ACTIONS(3814), + [anon_sym_c_short] = ACTIONS(3814), + [anon_sym_c_ushort] = ACTIONS(3814), + [anon_sym_c_int] = ACTIONS(3814), + [anon_sym_c_uint] = ACTIONS(3814), + [anon_sym_c_long] = ACTIONS(3814), + [anon_sym_c_ulong] = ACTIONS(3814), + [anon_sym_c_longlong] = ACTIONS(3814), + [anon_sym_c_ulonglong] = ACTIONS(3814), + [anon_sym_c_float] = ACTIONS(3814), + [anon_sym_c_double] = ACTIONS(3814), + [anon_sym_c_longdouble] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_break] = ACTIONS(3814), + [anon_sym_continue] = ACTIONS(3814), + [anon_sym_defer] = ACTIONS(3814), + [anon_sym_errdefer] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_expand] = ACTIONS(3814), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_AMP] = ACTIONS(3812), + [anon_sym_TILDE] = ACTIONS(3812), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3812), + [anon_sym_true] = ACTIONS(3814), + [anon_sym_false] = ACTIONS(3814), + [sym_none] = ACTIONS(3814), + [sym_undefined] = ACTIONS(3814), + [sym_sink] = ACTIONS(3814), + [sym_integer] = ACTIONS(3814), + [sym_float] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [sym_multiline_string] = ACTIONS(3812), + [sym_character] = ACTIONS(3812), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3961), + [sym__newline] = ACTIONS(3812), }, [STATE(1676)] = { - [ts_builtin_sym_end] = ACTIONS(3965), - [sym_identifier] = ACTIONS(3967), - [anon_sym_import] = ACTIONS(3967), - [anon_sym_test] = ACTIONS(3967), - [anon_sym_hide] = ACTIONS(3967), - [anon_sym_func] = ACTIONS(3967), - [anon_sym_BANG] = ACTIONS(3965), - [anon_sym_struct] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(3965), - [anon_sym_RPAREN] = ACTIONS(3965), - [anon_sym_LBRACE] = ACTIONS(3965), - [anon_sym_RBRACE] = ACTIONS(3965), - [anon_sym_DASH] = ACTIONS(3965), - [anon_sym_DOLLAR] = ACTIONS(3965), - [anon_sym_LBRACK] = ACTIONS(3965), - [anon_sym_void] = ACTIONS(3967), - [anon_sym_anyopaque] = ACTIONS(3967), - [anon_sym_bool] = ACTIONS(3967), - [anon_sym_int] = ACTIONS(3967), - [anon_sym_uint] = ACTIONS(3967), - [anon_sym_float] = ACTIONS(3967), - [anon_sym_range] = ACTIONS(3967), - [anon_sym_i8] = ACTIONS(3967), - [anon_sym_i16] = ACTIONS(3967), - [anon_sym_i32] = ACTIONS(3967), - [anon_sym_i64] = ACTIONS(3967), - [anon_sym_u8] = ACTIONS(3967), - [anon_sym_u16] = ACTIONS(3967), - [anon_sym_u32] = ACTIONS(3967), - [anon_sym_u64] = ACTIONS(3967), - [anon_sym_isize] = ACTIONS(3967), - [anon_sym_usize] = ACTIONS(3967), - [anon_sym_f32] = ACTIONS(3967), - [anon_sym_f64] = ACTIONS(3967), - [anon_sym_c_char] = ACTIONS(3967), - [anon_sym_c_schar] = ACTIONS(3967), - [anon_sym_c_uchar] = ACTIONS(3967), - [anon_sym_c_short] = ACTIONS(3967), - [anon_sym_c_ushort] = ACTIONS(3967), - [anon_sym_c_int] = ACTIONS(3967), - [anon_sym_c_uint] = ACTIONS(3967), - [anon_sym_c_long] = ACTIONS(3967), - [anon_sym_c_ulong] = ACTIONS(3967), - [anon_sym_c_longlong] = ACTIONS(3967), - [anon_sym_c_ulonglong] = ACTIONS(3967), - [anon_sym_c_float] = ACTIONS(3967), - [anon_sym_c_double] = ACTIONS(3967), - [anon_sym_c_longdouble] = ACTIONS(3967), - [anon_sym_return] = ACTIONS(3967), - [anon_sym_yield] = ACTIONS(3967), - [anon_sym_break] = ACTIONS(3967), - [anon_sym_continue] = ACTIONS(3967), - [anon_sym_defer] = ACTIONS(3967), - [anon_sym_errdefer] = ACTIONS(3967), - [anon_sym_if] = ACTIONS(3967), - [anon_sym_else] = ACTIONS(3967), - [anon_sym_while] = ACTIONS(3967), - [anon_sym_expand] = ACTIONS(3967), - [anon_sym_for] = ACTIONS(3967), - [anon_sym_match] = ACTIONS(3967), - [anon_sym_AMP] = ACTIONS(3965), - [anon_sym_TILDE] = ACTIONS(3965), - [anon_sym_try] = ACTIONS(3967), - [anon_sym_DOT] = ACTIONS(3965), - [anon_sym_true] = ACTIONS(3967), - [anon_sym_false] = ACTIONS(3967), - [sym_none] = ACTIONS(3967), - [sym_undefined] = ACTIONS(3967), - [sym_sink] = ACTIONS(3967), - [sym_integer] = ACTIONS(3967), - [sym_float] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(3965), - [sym_multiline_string] = ACTIONS(3965), - [sym_character] = ACTIONS(3965), + [ts_builtin_sym_end] = ACTIONS(3816), + [sym_identifier] = ACTIONS(3818), + [anon_sym_import] = ACTIONS(3818), + [anon_sym_test] = ACTIONS(3818), + [anon_sym_hide] = ACTIONS(3818), + [anon_sym_func] = ACTIONS(3818), + [anon_sym_BANG] = ACTIONS(3816), + [anon_sym_struct] = ACTIONS(3818), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_RPAREN] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3816), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_DASH] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3816), + [anon_sym_void] = ACTIONS(3818), + [anon_sym_type] = ACTIONS(3818), + [anon_sym_anyopaque] = ACTIONS(3818), + [anon_sym_bool] = ACTIONS(3818), + [anon_sym_int] = ACTIONS(3818), + [anon_sym_uint] = ACTIONS(3818), + [anon_sym_float] = ACTIONS(3818), + [anon_sym_range] = ACTIONS(3818), + [anon_sym_i8] = ACTIONS(3818), + [anon_sym_i16] = ACTIONS(3818), + [anon_sym_i32] = ACTIONS(3818), + [anon_sym_i64] = ACTIONS(3818), + [anon_sym_u8] = ACTIONS(3818), + [anon_sym_u16] = ACTIONS(3818), + [anon_sym_u32] = ACTIONS(3818), + [anon_sym_u64] = ACTIONS(3818), + [anon_sym_isize] = ACTIONS(3818), + [anon_sym_usize] = ACTIONS(3818), + [anon_sym_f32] = ACTIONS(3818), + [anon_sym_f64] = ACTIONS(3818), + [anon_sym_c_char] = ACTIONS(3818), + [anon_sym_c_schar] = ACTIONS(3818), + [anon_sym_c_uchar] = ACTIONS(3818), + [anon_sym_c_short] = ACTIONS(3818), + [anon_sym_c_ushort] = ACTIONS(3818), + [anon_sym_c_int] = ACTIONS(3818), + [anon_sym_c_uint] = ACTIONS(3818), + [anon_sym_c_long] = ACTIONS(3818), + [anon_sym_c_ulong] = ACTIONS(3818), + [anon_sym_c_longlong] = ACTIONS(3818), + [anon_sym_c_ulonglong] = ACTIONS(3818), + [anon_sym_c_float] = ACTIONS(3818), + [anon_sym_c_double] = ACTIONS(3818), + [anon_sym_c_longdouble] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_break] = ACTIONS(3818), + [anon_sym_continue] = ACTIONS(3818), + [anon_sym_defer] = ACTIONS(3818), + [anon_sym_errdefer] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_else] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_expand] = ACTIONS(3818), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_AMP] = ACTIONS(3816), + [anon_sym_TILDE] = ACTIONS(3816), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3816), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [sym_none] = ACTIONS(3818), + [sym_undefined] = ACTIONS(3818), + [sym_sink] = ACTIONS(3818), + [sym_integer] = ACTIONS(3818), + [sym_float] = ACTIONS(3816), + [anon_sym_DQUOTE] = ACTIONS(3816), + [sym_multiline_string] = ACTIONS(3816), + [sym_character] = ACTIONS(3816), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3965), + [sym__newline] = ACTIONS(3816), }, [STATE(1677)] = { - [ts_builtin_sym_end] = ACTIONS(3969), - [sym_identifier] = ACTIONS(3971), - [anon_sym_import] = ACTIONS(3971), - [anon_sym_test] = ACTIONS(3971), - [anon_sym_hide] = ACTIONS(3971), - [anon_sym_func] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_struct] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_RPAREN] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3969), - [anon_sym_RBRACE] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_DOLLAR] = ACTIONS(3969), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_void] = ACTIONS(3971), - [anon_sym_anyopaque] = ACTIONS(3971), - [anon_sym_bool] = ACTIONS(3971), - [anon_sym_int] = ACTIONS(3971), - [anon_sym_uint] = ACTIONS(3971), - [anon_sym_float] = ACTIONS(3971), - [anon_sym_range] = ACTIONS(3971), - [anon_sym_i8] = ACTIONS(3971), - [anon_sym_i16] = ACTIONS(3971), - [anon_sym_i32] = ACTIONS(3971), - [anon_sym_i64] = ACTIONS(3971), - [anon_sym_u8] = ACTIONS(3971), - [anon_sym_u16] = ACTIONS(3971), - [anon_sym_u32] = ACTIONS(3971), - [anon_sym_u64] = ACTIONS(3971), - [anon_sym_isize] = ACTIONS(3971), - [anon_sym_usize] = ACTIONS(3971), - [anon_sym_f32] = ACTIONS(3971), - [anon_sym_f64] = ACTIONS(3971), - [anon_sym_c_char] = ACTIONS(3971), - [anon_sym_c_schar] = ACTIONS(3971), - [anon_sym_c_uchar] = ACTIONS(3971), - [anon_sym_c_short] = ACTIONS(3971), - [anon_sym_c_ushort] = ACTIONS(3971), - [anon_sym_c_int] = ACTIONS(3971), - [anon_sym_c_uint] = ACTIONS(3971), - [anon_sym_c_long] = ACTIONS(3971), - [anon_sym_c_ulong] = ACTIONS(3971), - [anon_sym_c_longlong] = ACTIONS(3971), - [anon_sym_c_ulonglong] = ACTIONS(3971), - [anon_sym_c_float] = ACTIONS(3971), - [anon_sym_c_double] = ACTIONS(3971), - [anon_sym_c_longdouble] = ACTIONS(3971), - [anon_sym_return] = ACTIONS(3971), - [anon_sym_yield] = ACTIONS(3971), - [anon_sym_break] = ACTIONS(3971), - [anon_sym_continue] = ACTIONS(3971), - [anon_sym_defer] = ACTIONS(3971), - [anon_sym_errdefer] = ACTIONS(3971), - [anon_sym_if] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3971), - [anon_sym_while] = ACTIONS(3971), - [anon_sym_expand] = ACTIONS(3971), - [anon_sym_for] = ACTIONS(3971), - [anon_sym_match] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3969), - [anon_sym_TILDE] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3971), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_true] = ACTIONS(3971), - [anon_sym_false] = ACTIONS(3971), - [sym_none] = ACTIONS(3971), - [sym_undefined] = ACTIONS(3971), - [sym_sink] = ACTIONS(3971), - [sym_integer] = ACTIONS(3971), - [sym_float] = ACTIONS(3969), - [anon_sym_DQUOTE] = ACTIONS(3969), - [sym_multiline_string] = ACTIONS(3969), - [sym_character] = ACTIONS(3969), + [ts_builtin_sym_end] = ACTIONS(3820), + [sym_identifier] = ACTIONS(3822), + [anon_sym_import] = ACTIONS(3822), + [anon_sym_test] = ACTIONS(3822), + [anon_sym_hide] = ACTIONS(3822), + [anon_sym_func] = ACTIONS(3822), + [anon_sym_BANG] = ACTIONS(3820), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_RPAREN] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3820), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3820), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_void] = ACTIONS(3822), + [anon_sym_type] = ACTIONS(3822), + [anon_sym_anyopaque] = ACTIONS(3822), + [anon_sym_bool] = ACTIONS(3822), + [anon_sym_int] = ACTIONS(3822), + [anon_sym_uint] = ACTIONS(3822), + [anon_sym_float] = ACTIONS(3822), + [anon_sym_range] = ACTIONS(3822), + [anon_sym_i8] = ACTIONS(3822), + [anon_sym_i16] = ACTIONS(3822), + [anon_sym_i32] = ACTIONS(3822), + [anon_sym_i64] = ACTIONS(3822), + [anon_sym_u8] = ACTIONS(3822), + [anon_sym_u16] = ACTIONS(3822), + [anon_sym_u32] = ACTIONS(3822), + [anon_sym_u64] = ACTIONS(3822), + [anon_sym_isize] = ACTIONS(3822), + [anon_sym_usize] = ACTIONS(3822), + [anon_sym_f32] = ACTIONS(3822), + [anon_sym_f64] = ACTIONS(3822), + [anon_sym_c_char] = ACTIONS(3822), + [anon_sym_c_schar] = ACTIONS(3822), + [anon_sym_c_uchar] = ACTIONS(3822), + [anon_sym_c_short] = ACTIONS(3822), + [anon_sym_c_ushort] = ACTIONS(3822), + [anon_sym_c_int] = ACTIONS(3822), + [anon_sym_c_uint] = ACTIONS(3822), + [anon_sym_c_long] = ACTIONS(3822), + [anon_sym_c_ulong] = ACTIONS(3822), + [anon_sym_c_longlong] = ACTIONS(3822), + [anon_sym_c_ulonglong] = ACTIONS(3822), + [anon_sym_c_float] = ACTIONS(3822), + [anon_sym_c_double] = ACTIONS(3822), + [anon_sym_c_longdouble] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_yield] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_defer] = ACTIONS(3822), + [anon_sym_errdefer] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_expand] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_match] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3820), + [anon_sym_TILDE] = ACTIONS(3820), + [anon_sym_try] = ACTIONS(3822), + [anon_sym_DOT] = ACTIONS(3820), + [anon_sym_true] = ACTIONS(3822), + [anon_sym_false] = ACTIONS(3822), + [sym_none] = ACTIONS(3822), + [sym_undefined] = ACTIONS(3822), + [sym_sink] = ACTIONS(3822), + [sym_integer] = ACTIONS(3822), + [sym_float] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [sym_multiline_string] = ACTIONS(3820), + [sym_character] = ACTIONS(3820), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3969), + [sym__newline] = ACTIONS(3820), }, [STATE(1678)] = { - [ts_builtin_sym_end] = ACTIONS(3973), - [sym_identifier] = ACTIONS(3975), - [anon_sym_import] = ACTIONS(3975), - [anon_sym_test] = ACTIONS(3975), - [anon_sym_hide] = ACTIONS(3975), - [anon_sym_func] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3973), - [anon_sym_struct] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_DASH] = ACTIONS(3973), - [anon_sym_DOLLAR] = ACTIONS(3973), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_void] = ACTIONS(3975), - [anon_sym_anyopaque] = ACTIONS(3975), - [anon_sym_bool] = ACTIONS(3975), - [anon_sym_int] = ACTIONS(3975), - [anon_sym_uint] = ACTIONS(3975), - [anon_sym_float] = ACTIONS(3975), - [anon_sym_range] = ACTIONS(3975), - [anon_sym_i8] = ACTIONS(3975), - [anon_sym_i16] = ACTIONS(3975), - [anon_sym_i32] = ACTIONS(3975), - [anon_sym_i64] = ACTIONS(3975), - [anon_sym_u8] = ACTIONS(3975), - [anon_sym_u16] = ACTIONS(3975), - [anon_sym_u32] = ACTIONS(3975), - [anon_sym_u64] = ACTIONS(3975), - [anon_sym_isize] = ACTIONS(3975), - [anon_sym_usize] = ACTIONS(3975), - [anon_sym_f32] = ACTIONS(3975), - [anon_sym_f64] = ACTIONS(3975), - [anon_sym_c_char] = ACTIONS(3975), - [anon_sym_c_schar] = ACTIONS(3975), - [anon_sym_c_uchar] = ACTIONS(3975), - [anon_sym_c_short] = ACTIONS(3975), - [anon_sym_c_ushort] = ACTIONS(3975), - [anon_sym_c_int] = ACTIONS(3975), - [anon_sym_c_uint] = ACTIONS(3975), - [anon_sym_c_long] = ACTIONS(3975), - [anon_sym_c_ulong] = ACTIONS(3975), - [anon_sym_c_longlong] = ACTIONS(3975), - [anon_sym_c_ulonglong] = ACTIONS(3975), - [anon_sym_c_float] = ACTIONS(3975), - [anon_sym_c_double] = ACTIONS(3975), - [anon_sym_c_longdouble] = ACTIONS(3975), - [anon_sym_return] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_break] = ACTIONS(3975), - [anon_sym_continue] = ACTIONS(3975), - [anon_sym_defer] = ACTIONS(3975), - [anon_sym_errdefer] = ACTIONS(3975), - [anon_sym_if] = ACTIONS(3975), - [anon_sym_else] = ACTIONS(3975), - [anon_sym_while] = ACTIONS(3975), - [anon_sym_expand] = ACTIONS(3975), - [anon_sym_for] = ACTIONS(3975), - [anon_sym_match] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3973), - [anon_sym_TILDE] = ACTIONS(3973), - [anon_sym_try] = ACTIONS(3975), - [anon_sym_DOT] = ACTIONS(3973), - [anon_sym_true] = ACTIONS(3975), - [anon_sym_false] = ACTIONS(3975), - [sym_none] = ACTIONS(3975), - [sym_undefined] = ACTIONS(3975), - [sym_sink] = ACTIONS(3975), - [sym_integer] = ACTIONS(3975), - [sym_float] = ACTIONS(3973), - [anon_sym_DQUOTE] = ACTIONS(3973), - [sym_multiline_string] = ACTIONS(3973), - [sym_character] = ACTIONS(3973), + [ts_builtin_sym_end] = ACTIONS(3824), + [sym_identifier] = ACTIONS(3826), + [anon_sym_import] = ACTIONS(3826), + [anon_sym_test] = ACTIONS(3826), + [anon_sym_hide] = ACTIONS(3826), + [anon_sym_func] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_struct] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(3824), + [anon_sym_RPAREN] = ACTIONS(3824), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_DOLLAR] = ACTIONS(3824), + [anon_sym_LBRACK] = ACTIONS(3824), + [anon_sym_void] = ACTIONS(3826), + [anon_sym_type] = ACTIONS(3826), + [anon_sym_anyopaque] = ACTIONS(3826), + [anon_sym_bool] = ACTIONS(3826), + [anon_sym_int] = ACTIONS(3826), + [anon_sym_uint] = ACTIONS(3826), + [anon_sym_float] = ACTIONS(3826), + [anon_sym_range] = ACTIONS(3826), + [anon_sym_i8] = ACTIONS(3826), + [anon_sym_i16] = ACTIONS(3826), + [anon_sym_i32] = ACTIONS(3826), + [anon_sym_i64] = ACTIONS(3826), + [anon_sym_u8] = ACTIONS(3826), + [anon_sym_u16] = ACTIONS(3826), + [anon_sym_u32] = ACTIONS(3826), + [anon_sym_u64] = ACTIONS(3826), + [anon_sym_isize] = ACTIONS(3826), + [anon_sym_usize] = ACTIONS(3826), + [anon_sym_f32] = ACTIONS(3826), + [anon_sym_f64] = ACTIONS(3826), + [anon_sym_c_char] = ACTIONS(3826), + [anon_sym_c_schar] = ACTIONS(3826), + [anon_sym_c_uchar] = ACTIONS(3826), + [anon_sym_c_short] = ACTIONS(3826), + [anon_sym_c_ushort] = ACTIONS(3826), + [anon_sym_c_int] = ACTIONS(3826), + [anon_sym_c_uint] = ACTIONS(3826), + [anon_sym_c_long] = ACTIONS(3826), + [anon_sym_c_ulong] = ACTIONS(3826), + [anon_sym_c_longlong] = ACTIONS(3826), + [anon_sym_c_ulonglong] = ACTIONS(3826), + [anon_sym_c_float] = ACTIONS(3826), + [anon_sym_c_double] = ACTIONS(3826), + [anon_sym_c_longdouble] = ACTIONS(3826), + [anon_sym_return] = ACTIONS(3826), + [anon_sym_yield] = ACTIONS(3826), + [anon_sym_break] = ACTIONS(3826), + [anon_sym_continue] = ACTIONS(3826), + [anon_sym_defer] = ACTIONS(3826), + [anon_sym_errdefer] = ACTIONS(3826), + [anon_sym_if] = ACTIONS(3826), + [anon_sym_else] = ACTIONS(3826), + [anon_sym_while] = ACTIONS(3826), + [anon_sym_expand] = ACTIONS(3826), + [anon_sym_for] = ACTIONS(3826), + [anon_sym_match] = ACTIONS(3826), + [anon_sym_AMP] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_try] = ACTIONS(3826), + [anon_sym_DOT] = ACTIONS(3824), + [anon_sym_true] = ACTIONS(3826), + [anon_sym_false] = ACTIONS(3826), + [sym_none] = ACTIONS(3826), + [sym_undefined] = ACTIONS(3826), + [sym_sink] = ACTIONS(3826), + [sym_integer] = ACTIONS(3826), + [sym_float] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_multiline_string] = ACTIONS(3824), + [sym_character] = ACTIONS(3824), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3973), + [sym__newline] = ACTIONS(3824), }, [STATE(1679)] = { - [ts_builtin_sym_end] = ACTIONS(3977), - [sym_identifier] = ACTIONS(3979), - [anon_sym_import] = ACTIONS(3979), - [anon_sym_test] = ACTIONS(3979), - [anon_sym_hide] = ACTIONS(3979), - [anon_sym_func] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_struct] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_DOLLAR] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_void] = ACTIONS(3979), - [anon_sym_anyopaque] = ACTIONS(3979), - [anon_sym_bool] = ACTIONS(3979), - [anon_sym_int] = ACTIONS(3979), - [anon_sym_uint] = ACTIONS(3979), - [anon_sym_float] = ACTIONS(3979), - [anon_sym_range] = ACTIONS(3979), - [anon_sym_i8] = ACTIONS(3979), - [anon_sym_i16] = ACTIONS(3979), - [anon_sym_i32] = ACTIONS(3979), - [anon_sym_i64] = ACTIONS(3979), - [anon_sym_u8] = ACTIONS(3979), - [anon_sym_u16] = ACTIONS(3979), - [anon_sym_u32] = ACTIONS(3979), - [anon_sym_u64] = ACTIONS(3979), - [anon_sym_isize] = ACTIONS(3979), - [anon_sym_usize] = ACTIONS(3979), - [anon_sym_f32] = ACTIONS(3979), - [anon_sym_f64] = ACTIONS(3979), - [anon_sym_c_char] = ACTIONS(3979), - [anon_sym_c_schar] = ACTIONS(3979), - [anon_sym_c_uchar] = ACTIONS(3979), - [anon_sym_c_short] = ACTIONS(3979), - [anon_sym_c_ushort] = ACTIONS(3979), - [anon_sym_c_int] = ACTIONS(3979), - [anon_sym_c_uint] = ACTIONS(3979), - [anon_sym_c_long] = ACTIONS(3979), - [anon_sym_c_ulong] = ACTIONS(3979), - [anon_sym_c_longlong] = ACTIONS(3979), - [anon_sym_c_ulonglong] = ACTIONS(3979), - [anon_sym_c_float] = ACTIONS(3979), - [anon_sym_c_double] = ACTIONS(3979), - [anon_sym_c_longdouble] = ACTIONS(3979), - [anon_sym_return] = ACTIONS(3979), - [anon_sym_yield] = ACTIONS(3979), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [anon_sym_defer] = ACTIONS(3979), - [anon_sym_errdefer] = ACTIONS(3979), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_else] = ACTIONS(3979), - [anon_sym_while] = ACTIONS(3979), - [anon_sym_expand] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [anon_sym_match] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_TILDE] = ACTIONS(3977), - [anon_sym_try] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_true] = ACTIONS(3979), - [anon_sym_false] = ACTIONS(3979), - [sym_none] = ACTIONS(3979), - [sym_undefined] = ACTIONS(3979), - [sym_sink] = ACTIONS(3979), - [sym_integer] = ACTIONS(3979), - [sym_float] = ACTIONS(3977), - [anon_sym_DQUOTE] = ACTIONS(3977), - [sym_multiline_string] = ACTIONS(3977), - [sym_character] = ACTIONS(3977), + [ts_builtin_sym_end] = ACTIONS(3828), + [sym_identifier] = ACTIONS(3830), + [anon_sym_import] = ACTIONS(3830), + [anon_sym_test] = ACTIONS(3830), + [anon_sym_hide] = ACTIONS(3830), + [anon_sym_func] = ACTIONS(3830), + [anon_sym_BANG] = ACTIONS(3828), + [anon_sym_struct] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(3828), + [anon_sym_RPAREN] = ACTIONS(3828), + [anon_sym_LBRACE] = ACTIONS(3828), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_DASH] = ACTIONS(3828), + [anon_sym_DOLLAR] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3828), + [anon_sym_void] = ACTIONS(3830), + [anon_sym_type] = ACTIONS(3830), + [anon_sym_anyopaque] = ACTIONS(3830), + [anon_sym_bool] = ACTIONS(3830), + [anon_sym_int] = ACTIONS(3830), + [anon_sym_uint] = ACTIONS(3830), + [anon_sym_float] = ACTIONS(3830), + [anon_sym_range] = ACTIONS(3830), + [anon_sym_i8] = ACTIONS(3830), + [anon_sym_i16] = ACTIONS(3830), + [anon_sym_i32] = ACTIONS(3830), + [anon_sym_i64] = ACTIONS(3830), + [anon_sym_u8] = ACTIONS(3830), + [anon_sym_u16] = ACTIONS(3830), + [anon_sym_u32] = ACTIONS(3830), + [anon_sym_u64] = ACTIONS(3830), + [anon_sym_isize] = ACTIONS(3830), + [anon_sym_usize] = ACTIONS(3830), + [anon_sym_f32] = ACTIONS(3830), + [anon_sym_f64] = ACTIONS(3830), + [anon_sym_c_char] = ACTIONS(3830), + [anon_sym_c_schar] = ACTIONS(3830), + [anon_sym_c_uchar] = ACTIONS(3830), + [anon_sym_c_short] = ACTIONS(3830), + [anon_sym_c_ushort] = ACTIONS(3830), + [anon_sym_c_int] = ACTIONS(3830), + [anon_sym_c_uint] = ACTIONS(3830), + [anon_sym_c_long] = ACTIONS(3830), + [anon_sym_c_ulong] = ACTIONS(3830), + [anon_sym_c_longlong] = ACTIONS(3830), + [anon_sym_c_ulonglong] = ACTIONS(3830), + [anon_sym_c_float] = ACTIONS(3830), + [anon_sym_c_double] = ACTIONS(3830), + [anon_sym_c_longdouble] = ACTIONS(3830), + [anon_sym_return] = ACTIONS(3830), + [anon_sym_yield] = ACTIONS(3830), + [anon_sym_break] = ACTIONS(3830), + [anon_sym_continue] = ACTIONS(3830), + [anon_sym_defer] = ACTIONS(3830), + [anon_sym_errdefer] = ACTIONS(3830), + [anon_sym_if] = ACTIONS(3830), + [anon_sym_else] = ACTIONS(3830), + [anon_sym_while] = ACTIONS(3830), + [anon_sym_expand] = ACTIONS(3830), + [anon_sym_for] = ACTIONS(3830), + [anon_sym_match] = ACTIONS(3830), + [anon_sym_AMP] = ACTIONS(3828), + [anon_sym_TILDE] = ACTIONS(3828), + [anon_sym_try] = ACTIONS(3830), + [anon_sym_DOT] = ACTIONS(3828), + [anon_sym_true] = ACTIONS(3830), + [anon_sym_false] = ACTIONS(3830), + [sym_none] = ACTIONS(3830), + [sym_undefined] = ACTIONS(3830), + [sym_sink] = ACTIONS(3830), + [sym_integer] = ACTIONS(3830), + [sym_float] = ACTIONS(3828), + [anon_sym_DQUOTE] = ACTIONS(3828), + [sym_multiline_string] = ACTIONS(3828), + [sym_character] = ACTIONS(3828), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3977), + [sym__newline] = ACTIONS(3828), }, [STATE(1680)] = { - [ts_builtin_sym_end] = ACTIONS(3981), - [sym_identifier] = ACTIONS(3983), - [anon_sym_import] = ACTIONS(3983), - [anon_sym_test] = ACTIONS(3983), - [anon_sym_hide] = ACTIONS(3983), - [anon_sym_func] = ACTIONS(3983), - [anon_sym_BANG] = ACTIONS(3981), - [anon_sym_struct] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_DASH] = ACTIONS(3981), - [anon_sym_DOLLAR] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_void] = ACTIONS(3983), - [anon_sym_anyopaque] = ACTIONS(3983), - [anon_sym_bool] = ACTIONS(3983), - [anon_sym_int] = ACTIONS(3983), - [anon_sym_uint] = ACTIONS(3983), - [anon_sym_float] = ACTIONS(3983), - [anon_sym_range] = ACTIONS(3983), - [anon_sym_i8] = ACTIONS(3983), - [anon_sym_i16] = ACTIONS(3983), - [anon_sym_i32] = ACTIONS(3983), - [anon_sym_i64] = ACTIONS(3983), - [anon_sym_u8] = ACTIONS(3983), - [anon_sym_u16] = ACTIONS(3983), - [anon_sym_u32] = ACTIONS(3983), - [anon_sym_u64] = ACTIONS(3983), - [anon_sym_isize] = ACTIONS(3983), - [anon_sym_usize] = ACTIONS(3983), - [anon_sym_f32] = ACTIONS(3983), - [anon_sym_f64] = ACTIONS(3983), - [anon_sym_c_char] = ACTIONS(3983), - [anon_sym_c_schar] = ACTIONS(3983), - [anon_sym_c_uchar] = ACTIONS(3983), - [anon_sym_c_short] = ACTIONS(3983), - [anon_sym_c_ushort] = ACTIONS(3983), - [anon_sym_c_int] = ACTIONS(3983), - [anon_sym_c_uint] = ACTIONS(3983), - [anon_sym_c_long] = ACTIONS(3983), - [anon_sym_c_ulong] = ACTIONS(3983), - [anon_sym_c_longlong] = ACTIONS(3983), - [anon_sym_c_ulonglong] = ACTIONS(3983), - [anon_sym_c_float] = ACTIONS(3983), - [anon_sym_c_double] = ACTIONS(3983), - [anon_sym_c_longdouble] = ACTIONS(3983), - [anon_sym_return] = ACTIONS(3983), - [anon_sym_yield] = ACTIONS(3983), - [anon_sym_break] = ACTIONS(3983), - [anon_sym_continue] = ACTIONS(3983), - [anon_sym_defer] = ACTIONS(3983), - [anon_sym_errdefer] = ACTIONS(3983), - [anon_sym_if] = ACTIONS(3983), - [anon_sym_else] = ACTIONS(3983), - [anon_sym_while] = ACTIONS(3983), - [anon_sym_expand] = ACTIONS(3983), - [anon_sym_for] = ACTIONS(3983), - [anon_sym_match] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3981), - [anon_sym_TILDE] = ACTIONS(3981), - [anon_sym_try] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [sym_none] = ACTIONS(3983), - [sym_undefined] = ACTIONS(3983), - [sym_sink] = ACTIONS(3983), - [sym_integer] = ACTIONS(3983), - [sym_float] = ACTIONS(3981), - [anon_sym_DQUOTE] = ACTIONS(3981), - [sym_multiline_string] = ACTIONS(3981), - [sym_character] = ACTIONS(3981), + [ts_builtin_sym_end] = ACTIONS(3832), + [sym_identifier] = ACTIONS(3834), + [anon_sym_import] = ACTIONS(3834), + [anon_sym_test] = ACTIONS(3834), + [anon_sym_hide] = ACTIONS(3834), + [anon_sym_func] = ACTIONS(3834), + [anon_sym_BANG] = ACTIONS(3832), + [anon_sym_struct] = ACTIONS(3834), + [anon_sym_LPAREN] = ACTIONS(3832), + [anon_sym_RPAREN] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3832), + [anon_sym_RBRACE] = ACTIONS(3832), + [anon_sym_DASH] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(3832), + [anon_sym_void] = ACTIONS(3834), + [anon_sym_type] = ACTIONS(3834), + [anon_sym_anyopaque] = ACTIONS(3834), + [anon_sym_bool] = ACTIONS(3834), + [anon_sym_int] = ACTIONS(3834), + [anon_sym_uint] = ACTIONS(3834), + [anon_sym_float] = ACTIONS(3834), + [anon_sym_range] = ACTIONS(3834), + [anon_sym_i8] = ACTIONS(3834), + [anon_sym_i16] = ACTIONS(3834), + [anon_sym_i32] = ACTIONS(3834), + [anon_sym_i64] = ACTIONS(3834), + [anon_sym_u8] = ACTIONS(3834), + [anon_sym_u16] = ACTIONS(3834), + [anon_sym_u32] = ACTIONS(3834), + [anon_sym_u64] = ACTIONS(3834), + [anon_sym_isize] = ACTIONS(3834), + [anon_sym_usize] = ACTIONS(3834), + [anon_sym_f32] = ACTIONS(3834), + [anon_sym_f64] = ACTIONS(3834), + [anon_sym_c_char] = ACTIONS(3834), + [anon_sym_c_schar] = ACTIONS(3834), + [anon_sym_c_uchar] = ACTIONS(3834), + [anon_sym_c_short] = ACTIONS(3834), + [anon_sym_c_ushort] = ACTIONS(3834), + [anon_sym_c_int] = ACTIONS(3834), + [anon_sym_c_uint] = ACTIONS(3834), + [anon_sym_c_long] = ACTIONS(3834), + [anon_sym_c_ulong] = ACTIONS(3834), + [anon_sym_c_longlong] = ACTIONS(3834), + [anon_sym_c_ulonglong] = ACTIONS(3834), + [anon_sym_c_float] = ACTIONS(3834), + [anon_sym_c_double] = ACTIONS(3834), + [anon_sym_c_longdouble] = ACTIONS(3834), + [anon_sym_return] = ACTIONS(3834), + [anon_sym_yield] = ACTIONS(3834), + [anon_sym_break] = ACTIONS(3834), + [anon_sym_continue] = ACTIONS(3834), + [anon_sym_defer] = ACTIONS(3834), + [anon_sym_errdefer] = ACTIONS(3834), + [anon_sym_if] = ACTIONS(3834), + [anon_sym_else] = ACTIONS(3834), + [anon_sym_while] = ACTIONS(3834), + [anon_sym_expand] = ACTIONS(3834), + [anon_sym_for] = ACTIONS(3834), + [anon_sym_match] = ACTIONS(3834), + [anon_sym_AMP] = ACTIONS(3832), + [anon_sym_TILDE] = ACTIONS(3832), + [anon_sym_try] = ACTIONS(3834), + [anon_sym_DOT] = ACTIONS(3832), + [anon_sym_true] = ACTIONS(3834), + [anon_sym_false] = ACTIONS(3834), + [sym_none] = ACTIONS(3834), + [sym_undefined] = ACTIONS(3834), + [sym_sink] = ACTIONS(3834), + [sym_integer] = ACTIONS(3834), + [sym_float] = ACTIONS(3832), + [anon_sym_DQUOTE] = ACTIONS(3832), + [sym_multiline_string] = ACTIONS(3832), + [sym_character] = ACTIONS(3832), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3981), + [sym__newline] = ACTIONS(3832), }, [STATE(1681)] = { - [ts_builtin_sym_end] = ACTIONS(3985), - [sym_identifier] = ACTIONS(3987), - [anon_sym_import] = ACTIONS(3987), - [anon_sym_test] = ACTIONS(3987), - [anon_sym_hide] = ACTIONS(3987), - [anon_sym_func] = ACTIONS(3987), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_struct] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(3985), - [anon_sym_RPAREN] = ACTIONS(3985), - [anon_sym_LBRACE] = ACTIONS(3985), - [anon_sym_RBRACE] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_DOLLAR] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3985), - [anon_sym_void] = ACTIONS(3987), - [anon_sym_anyopaque] = ACTIONS(3987), - [anon_sym_bool] = ACTIONS(3987), - [anon_sym_int] = ACTIONS(3987), - [anon_sym_uint] = ACTIONS(3987), - [anon_sym_float] = ACTIONS(3987), - [anon_sym_range] = ACTIONS(3987), - [anon_sym_i8] = ACTIONS(3987), - [anon_sym_i16] = ACTIONS(3987), - [anon_sym_i32] = ACTIONS(3987), - [anon_sym_i64] = ACTIONS(3987), - [anon_sym_u8] = ACTIONS(3987), - [anon_sym_u16] = ACTIONS(3987), - [anon_sym_u32] = ACTIONS(3987), - [anon_sym_u64] = ACTIONS(3987), - [anon_sym_isize] = ACTIONS(3987), - [anon_sym_usize] = ACTIONS(3987), - [anon_sym_f32] = ACTIONS(3987), - [anon_sym_f64] = ACTIONS(3987), - [anon_sym_c_char] = ACTIONS(3987), - [anon_sym_c_schar] = ACTIONS(3987), - [anon_sym_c_uchar] = ACTIONS(3987), - [anon_sym_c_short] = ACTIONS(3987), - [anon_sym_c_ushort] = ACTIONS(3987), - [anon_sym_c_int] = ACTIONS(3987), - [anon_sym_c_uint] = ACTIONS(3987), - [anon_sym_c_long] = ACTIONS(3987), - [anon_sym_c_ulong] = ACTIONS(3987), - [anon_sym_c_longlong] = ACTIONS(3987), - [anon_sym_c_ulonglong] = ACTIONS(3987), - [anon_sym_c_float] = ACTIONS(3987), - [anon_sym_c_double] = ACTIONS(3987), - [anon_sym_c_longdouble] = ACTIONS(3987), - [anon_sym_return] = ACTIONS(3987), - [anon_sym_yield] = ACTIONS(3987), - [anon_sym_break] = ACTIONS(3987), - [anon_sym_continue] = ACTIONS(3987), - [anon_sym_defer] = ACTIONS(3987), - [anon_sym_errdefer] = ACTIONS(3987), - [anon_sym_if] = ACTIONS(3987), - [anon_sym_else] = ACTIONS(3987), - [anon_sym_while] = ACTIONS(3987), - [anon_sym_expand] = ACTIONS(3987), - [anon_sym_for] = ACTIONS(3987), - [anon_sym_match] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_TILDE] = ACTIONS(3985), - [anon_sym_try] = ACTIONS(3987), - [anon_sym_DOT] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [sym_none] = ACTIONS(3987), - [sym_undefined] = ACTIONS(3987), - [sym_sink] = ACTIONS(3987), - [sym_integer] = ACTIONS(3987), - [sym_float] = ACTIONS(3985), - [anon_sym_DQUOTE] = ACTIONS(3985), - [sym_multiline_string] = ACTIONS(3985), - [sym_character] = ACTIONS(3985), + [ts_builtin_sym_end] = ACTIONS(3836), + [sym_identifier] = ACTIONS(3838), + [anon_sym_import] = ACTIONS(3838), + [anon_sym_test] = ACTIONS(3838), + [anon_sym_hide] = ACTIONS(3838), + [anon_sym_func] = ACTIONS(3838), + [anon_sym_BANG] = ACTIONS(3836), + [anon_sym_struct] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_RPAREN] = ACTIONS(3836), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_RBRACE] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_void] = ACTIONS(3838), + [anon_sym_type] = ACTIONS(3838), + [anon_sym_anyopaque] = ACTIONS(3838), + [anon_sym_bool] = ACTIONS(3838), + [anon_sym_int] = ACTIONS(3838), + [anon_sym_uint] = ACTIONS(3838), + [anon_sym_float] = ACTIONS(3838), + [anon_sym_range] = ACTIONS(3838), + [anon_sym_i8] = ACTIONS(3838), + [anon_sym_i16] = ACTIONS(3838), + [anon_sym_i32] = ACTIONS(3838), + [anon_sym_i64] = ACTIONS(3838), + [anon_sym_u8] = ACTIONS(3838), + [anon_sym_u16] = ACTIONS(3838), + [anon_sym_u32] = ACTIONS(3838), + [anon_sym_u64] = ACTIONS(3838), + [anon_sym_isize] = ACTIONS(3838), + [anon_sym_usize] = ACTIONS(3838), + [anon_sym_f32] = ACTIONS(3838), + [anon_sym_f64] = ACTIONS(3838), + [anon_sym_c_char] = ACTIONS(3838), + [anon_sym_c_schar] = ACTIONS(3838), + [anon_sym_c_uchar] = ACTIONS(3838), + [anon_sym_c_short] = ACTIONS(3838), + [anon_sym_c_ushort] = ACTIONS(3838), + [anon_sym_c_int] = ACTIONS(3838), + [anon_sym_c_uint] = ACTIONS(3838), + [anon_sym_c_long] = ACTIONS(3838), + [anon_sym_c_ulong] = ACTIONS(3838), + [anon_sym_c_longlong] = ACTIONS(3838), + [anon_sym_c_ulonglong] = ACTIONS(3838), + [anon_sym_c_float] = ACTIONS(3838), + [anon_sym_c_double] = ACTIONS(3838), + [anon_sym_c_longdouble] = ACTIONS(3838), + [anon_sym_return] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3838), + [anon_sym_break] = ACTIONS(3838), + [anon_sym_continue] = ACTIONS(3838), + [anon_sym_defer] = ACTIONS(3838), + [anon_sym_errdefer] = ACTIONS(3838), + [anon_sym_if] = ACTIONS(3838), + [anon_sym_else] = ACTIONS(3838), + [anon_sym_while] = ACTIONS(3838), + [anon_sym_expand] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3838), + [anon_sym_match] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3838), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_true] = ACTIONS(3838), + [anon_sym_false] = ACTIONS(3838), + [sym_none] = ACTIONS(3838), + [sym_undefined] = ACTIONS(3838), + [sym_sink] = ACTIONS(3838), + [sym_integer] = ACTIONS(3838), + [sym_float] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [sym_multiline_string] = ACTIONS(3836), + [sym_character] = ACTIONS(3836), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3985), + [sym__newline] = ACTIONS(3836), }, [STATE(1682)] = { - [ts_builtin_sym_end] = ACTIONS(3989), - [sym_identifier] = ACTIONS(3991), - [anon_sym_import] = ACTIONS(3991), - [anon_sym_test] = ACTIONS(3991), - [anon_sym_hide] = ACTIONS(3991), - [anon_sym_func] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3989), - [anon_sym_struct] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_RPAREN] = ACTIONS(3989), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3989), - [anon_sym_LBRACK] = ACTIONS(3989), - [anon_sym_void] = ACTIONS(3991), - [anon_sym_anyopaque] = ACTIONS(3991), - [anon_sym_bool] = ACTIONS(3991), - [anon_sym_int] = ACTIONS(3991), - [anon_sym_uint] = ACTIONS(3991), - [anon_sym_float] = ACTIONS(3991), - [anon_sym_range] = ACTIONS(3991), - [anon_sym_i8] = ACTIONS(3991), - [anon_sym_i16] = ACTIONS(3991), - [anon_sym_i32] = ACTIONS(3991), - [anon_sym_i64] = ACTIONS(3991), - [anon_sym_u8] = ACTIONS(3991), - [anon_sym_u16] = ACTIONS(3991), - [anon_sym_u32] = ACTIONS(3991), - [anon_sym_u64] = ACTIONS(3991), - [anon_sym_isize] = ACTIONS(3991), - [anon_sym_usize] = ACTIONS(3991), - [anon_sym_f32] = ACTIONS(3991), - [anon_sym_f64] = ACTIONS(3991), - [anon_sym_c_char] = ACTIONS(3991), - [anon_sym_c_schar] = ACTIONS(3991), - [anon_sym_c_uchar] = ACTIONS(3991), - [anon_sym_c_short] = ACTIONS(3991), - [anon_sym_c_ushort] = ACTIONS(3991), - [anon_sym_c_int] = ACTIONS(3991), - [anon_sym_c_uint] = ACTIONS(3991), - [anon_sym_c_long] = ACTIONS(3991), - [anon_sym_c_ulong] = ACTIONS(3991), - [anon_sym_c_longlong] = ACTIONS(3991), - [anon_sym_c_ulonglong] = ACTIONS(3991), - [anon_sym_c_float] = ACTIONS(3991), - [anon_sym_c_double] = ACTIONS(3991), - [anon_sym_c_longdouble] = ACTIONS(3991), - [anon_sym_return] = ACTIONS(3991), - [anon_sym_yield] = ACTIONS(3991), - [anon_sym_break] = ACTIONS(3991), - [anon_sym_continue] = ACTIONS(3991), - [anon_sym_defer] = ACTIONS(3991), - [anon_sym_errdefer] = ACTIONS(3991), - [anon_sym_if] = ACTIONS(3991), - [anon_sym_else] = ACTIONS(3991), - [anon_sym_while] = ACTIONS(3991), - [anon_sym_expand] = ACTIONS(3991), - [anon_sym_for] = ACTIONS(3991), - [anon_sym_match] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3989), - [anon_sym_TILDE] = ACTIONS(3989), - [anon_sym_try] = ACTIONS(3991), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_true] = ACTIONS(3991), - [anon_sym_false] = ACTIONS(3991), - [sym_none] = ACTIONS(3991), - [sym_undefined] = ACTIONS(3991), - [sym_sink] = ACTIONS(3991), - [sym_integer] = ACTIONS(3991), - [sym_float] = ACTIONS(3989), - [anon_sym_DQUOTE] = ACTIONS(3989), - [sym_multiline_string] = ACTIONS(3989), - [sym_character] = ACTIONS(3989), + [ts_builtin_sym_end] = ACTIONS(3840), + [sym_identifier] = ACTIONS(3842), + [anon_sym_import] = ACTIONS(3842), + [anon_sym_test] = ACTIONS(3842), + [anon_sym_hide] = ACTIONS(3842), + [anon_sym_func] = ACTIONS(3842), + [anon_sym_BANG] = ACTIONS(3840), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_RPAREN] = ACTIONS(3840), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_RBRACE] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_void] = ACTIONS(3842), + [anon_sym_type] = ACTIONS(3842), + [anon_sym_anyopaque] = ACTIONS(3842), + [anon_sym_bool] = ACTIONS(3842), + [anon_sym_int] = ACTIONS(3842), + [anon_sym_uint] = ACTIONS(3842), + [anon_sym_float] = ACTIONS(3842), + [anon_sym_range] = ACTIONS(3842), + [anon_sym_i8] = ACTIONS(3842), + [anon_sym_i16] = ACTIONS(3842), + [anon_sym_i32] = ACTIONS(3842), + [anon_sym_i64] = ACTIONS(3842), + [anon_sym_u8] = ACTIONS(3842), + [anon_sym_u16] = ACTIONS(3842), + [anon_sym_u32] = ACTIONS(3842), + [anon_sym_u64] = ACTIONS(3842), + [anon_sym_isize] = ACTIONS(3842), + [anon_sym_usize] = ACTIONS(3842), + [anon_sym_f32] = ACTIONS(3842), + [anon_sym_f64] = ACTIONS(3842), + [anon_sym_c_char] = ACTIONS(3842), + [anon_sym_c_schar] = ACTIONS(3842), + [anon_sym_c_uchar] = ACTIONS(3842), + [anon_sym_c_short] = ACTIONS(3842), + [anon_sym_c_ushort] = ACTIONS(3842), + [anon_sym_c_int] = ACTIONS(3842), + [anon_sym_c_uint] = ACTIONS(3842), + [anon_sym_c_long] = ACTIONS(3842), + [anon_sym_c_ulong] = ACTIONS(3842), + [anon_sym_c_longlong] = ACTIONS(3842), + [anon_sym_c_ulonglong] = ACTIONS(3842), + [anon_sym_c_float] = ACTIONS(3842), + [anon_sym_c_double] = ACTIONS(3842), + [anon_sym_c_longdouble] = ACTIONS(3842), + [anon_sym_return] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3842), + [anon_sym_break] = ACTIONS(3842), + [anon_sym_continue] = ACTIONS(3842), + [anon_sym_defer] = ACTIONS(3842), + [anon_sym_errdefer] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3842), + [anon_sym_else] = ACTIONS(3842), + [anon_sym_while] = ACTIONS(3842), + [anon_sym_expand] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3842), + [anon_sym_match] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3842), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_true] = ACTIONS(3842), + [anon_sym_false] = ACTIONS(3842), + [sym_none] = ACTIONS(3842), + [sym_undefined] = ACTIONS(3842), + [sym_sink] = ACTIONS(3842), + [sym_integer] = ACTIONS(3842), + [sym_float] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [sym_multiline_string] = ACTIONS(3840), + [sym_character] = ACTIONS(3840), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3989), + [sym__newline] = ACTIONS(3840), }, [STATE(1683)] = { - [ts_builtin_sym_end] = ACTIONS(3993), - [sym_identifier] = ACTIONS(3995), - [anon_sym_import] = ACTIONS(3995), - [anon_sym_test] = ACTIONS(3995), - [anon_sym_hide] = ACTIONS(3995), - [anon_sym_func] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3993), - [anon_sym_struct] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(3993), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_void] = ACTIONS(3995), - [anon_sym_anyopaque] = ACTIONS(3995), - [anon_sym_bool] = ACTIONS(3995), - [anon_sym_int] = ACTIONS(3995), - [anon_sym_uint] = ACTIONS(3995), - [anon_sym_float] = ACTIONS(3995), - [anon_sym_range] = ACTIONS(3995), - [anon_sym_i8] = ACTIONS(3995), - [anon_sym_i16] = ACTIONS(3995), - [anon_sym_i32] = ACTIONS(3995), - [anon_sym_i64] = ACTIONS(3995), - [anon_sym_u8] = ACTIONS(3995), - [anon_sym_u16] = ACTIONS(3995), - [anon_sym_u32] = ACTIONS(3995), - [anon_sym_u64] = ACTIONS(3995), - [anon_sym_isize] = ACTIONS(3995), - [anon_sym_usize] = ACTIONS(3995), - [anon_sym_f32] = ACTIONS(3995), - [anon_sym_f64] = ACTIONS(3995), - [anon_sym_c_char] = ACTIONS(3995), - [anon_sym_c_schar] = ACTIONS(3995), - [anon_sym_c_uchar] = ACTIONS(3995), - [anon_sym_c_short] = ACTIONS(3995), - [anon_sym_c_ushort] = ACTIONS(3995), - [anon_sym_c_int] = ACTIONS(3995), - [anon_sym_c_uint] = ACTIONS(3995), - [anon_sym_c_long] = ACTIONS(3995), - [anon_sym_c_ulong] = ACTIONS(3995), - [anon_sym_c_longlong] = ACTIONS(3995), - [anon_sym_c_ulonglong] = ACTIONS(3995), - [anon_sym_c_float] = ACTIONS(3995), - [anon_sym_c_double] = ACTIONS(3995), - [anon_sym_c_longdouble] = ACTIONS(3995), - [anon_sym_return] = ACTIONS(3995), - [anon_sym_yield] = ACTIONS(3995), - [anon_sym_break] = ACTIONS(3995), - [anon_sym_continue] = ACTIONS(3995), - [anon_sym_defer] = ACTIONS(3995), - [anon_sym_errdefer] = ACTIONS(3995), - [anon_sym_if] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3995), - [anon_sym_while] = ACTIONS(3995), - [anon_sym_expand] = ACTIONS(3995), - [anon_sym_for] = ACTIONS(3995), - [anon_sym_match] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3993), - [anon_sym_TILDE] = ACTIONS(3993), - [anon_sym_try] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [sym_none] = ACTIONS(3995), - [sym_undefined] = ACTIONS(3995), - [sym_sink] = ACTIONS(3995), - [sym_integer] = ACTIONS(3995), - [sym_float] = ACTIONS(3993), - [anon_sym_DQUOTE] = ACTIONS(3993), - [sym_multiline_string] = ACTIONS(3993), - [sym_character] = ACTIONS(3993), + [sym_variant_payload] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [anon_sym_import] = ACTIONS(522), + [anon_sym_test] = ACTIONS(522), + [anon_sym_hide] = ACTIONS(522), + [anon_sym_func] = ACTIONS(522), + [anon_sym_c_func] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(3844), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_void] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_anyopaque] = ACTIONS(522), + [anon_sym_bool] = ACTIONS(522), + [anon_sym_int] = ACTIONS(522), + [anon_sym_uint] = ACTIONS(522), + [anon_sym_float] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_i8] = ACTIONS(522), + [anon_sym_i16] = ACTIONS(522), + [anon_sym_i32] = ACTIONS(522), + [anon_sym_i64] = ACTIONS(522), + [anon_sym_u8] = ACTIONS(522), + [anon_sym_u16] = ACTIONS(522), + [anon_sym_u32] = ACTIONS(522), + [anon_sym_u64] = ACTIONS(522), + [anon_sym_isize] = ACTIONS(522), + [anon_sym_usize] = ACTIONS(522), + [anon_sym_f32] = ACTIONS(522), + [anon_sym_f64] = ACTIONS(522), + [anon_sym_c_char] = ACTIONS(522), + [anon_sym_c_schar] = ACTIONS(522), + [anon_sym_c_uchar] = ACTIONS(522), + [anon_sym_c_short] = ACTIONS(522), + [anon_sym_c_ushort] = ACTIONS(522), + [anon_sym_c_int] = ACTIONS(522), + [anon_sym_c_uint] = ACTIONS(522), + [anon_sym_c_long] = ACTIONS(522), + [anon_sym_c_ulong] = ACTIONS(522), + [anon_sym_c_longlong] = ACTIONS(522), + [anon_sym_c_ulonglong] = ACTIONS(522), + [anon_sym_c_float] = ACTIONS(522), + [anon_sym_c_double] = ACTIONS(522), + [anon_sym_c_longdouble] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(520), + [anon_sym_orelse] = ACTIONS(522), + [anon_sym_catch] = ACTIONS(522), + [anon_sym_or] = ACTIONS(522), + [anon_sym_and] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(520), + [anon_sym_xor] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(522), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_LT_LT_PIPE] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(520), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3993), + [sym__newline] = ACTIONS(520), }, [STATE(1684)] = { - [ts_builtin_sym_end] = ACTIONS(3997), - [sym_identifier] = ACTIONS(3999), - [anon_sym_import] = ACTIONS(3999), - [anon_sym_test] = ACTIONS(3999), - [anon_sym_hide] = ACTIONS(3999), - [anon_sym_func] = ACTIONS(3999), - [anon_sym_BANG] = ACTIONS(3997), - [anon_sym_struct] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_DASH] = ACTIONS(3997), - [anon_sym_DOLLAR] = ACTIONS(3997), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_void] = ACTIONS(3999), - [anon_sym_anyopaque] = ACTIONS(3999), - [anon_sym_bool] = ACTIONS(3999), - [anon_sym_int] = ACTIONS(3999), - [anon_sym_uint] = ACTIONS(3999), - [anon_sym_float] = ACTIONS(3999), - [anon_sym_range] = ACTIONS(3999), - [anon_sym_i8] = ACTIONS(3999), - [anon_sym_i16] = ACTIONS(3999), - [anon_sym_i32] = ACTIONS(3999), - [anon_sym_i64] = ACTIONS(3999), - [anon_sym_u8] = ACTIONS(3999), - [anon_sym_u16] = ACTIONS(3999), - [anon_sym_u32] = ACTIONS(3999), - [anon_sym_u64] = ACTIONS(3999), - [anon_sym_isize] = ACTIONS(3999), - [anon_sym_usize] = ACTIONS(3999), - [anon_sym_f32] = ACTIONS(3999), - [anon_sym_f64] = ACTIONS(3999), - [anon_sym_c_char] = ACTIONS(3999), - [anon_sym_c_schar] = ACTIONS(3999), - [anon_sym_c_uchar] = ACTIONS(3999), - [anon_sym_c_short] = ACTIONS(3999), - [anon_sym_c_ushort] = ACTIONS(3999), - [anon_sym_c_int] = ACTIONS(3999), - [anon_sym_c_uint] = ACTIONS(3999), - [anon_sym_c_long] = ACTIONS(3999), - [anon_sym_c_ulong] = ACTIONS(3999), - [anon_sym_c_longlong] = ACTIONS(3999), - [anon_sym_c_ulonglong] = ACTIONS(3999), - [anon_sym_c_float] = ACTIONS(3999), - [anon_sym_c_double] = ACTIONS(3999), - [anon_sym_c_longdouble] = ACTIONS(3999), - [anon_sym_return] = ACTIONS(3999), - [anon_sym_yield] = ACTIONS(3999), - [anon_sym_break] = ACTIONS(3999), - [anon_sym_continue] = ACTIONS(3999), - [anon_sym_defer] = ACTIONS(3999), - [anon_sym_errdefer] = ACTIONS(3999), - [anon_sym_if] = ACTIONS(3999), - [anon_sym_else] = ACTIONS(3999), - [anon_sym_while] = ACTIONS(3999), - [anon_sym_expand] = ACTIONS(3999), - [anon_sym_for] = ACTIONS(3999), - [anon_sym_match] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3997), - [anon_sym_TILDE] = ACTIONS(3997), - [anon_sym_try] = ACTIONS(3999), - [anon_sym_DOT] = ACTIONS(3997), - [anon_sym_true] = ACTIONS(3999), - [anon_sym_false] = ACTIONS(3999), - [sym_none] = ACTIONS(3999), - [sym_undefined] = ACTIONS(3999), - [sym_sink] = ACTIONS(3999), - [sym_integer] = ACTIONS(3999), - [sym_float] = ACTIONS(3997), - [anon_sym_DQUOTE] = ACTIONS(3997), - [sym_multiline_string] = ACTIONS(3997), - [sym_character] = ACTIONS(3997), + [ts_builtin_sym_end] = ACTIONS(3846), + [sym_identifier] = ACTIONS(3848), + [anon_sym_import] = ACTIONS(3848), + [anon_sym_test] = ACTIONS(3848), + [anon_sym_hide] = ACTIONS(3848), + [anon_sym_func] = ACTIONS(3848), + [anon_sym_BANG] = ACTIONS(3846), + [anon_sym_struct] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3846), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_LBRACE] = ACTIONS(3846), + [anon_sym_RBRACE] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_DOLLAR] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3846), + [anon_sym_void] = ACTIONS(3848), + [anon_sym_type] = ACTIONS(3848), + [anon_sym_anyopaque] = ACTIONS(3848), + [anon_sym_bool] = ACTIONS(3848), + [anon_sym_int] = ACTIONS(3848), + [anon_sym_uint] = ACTIONS(3848), + [anon_sym_float] = ACTIONS(3848), + [anon_sym_range] = ACTIONS(3848), + [anon_sym_i8] = ACTIONS(3848), + [anon_sym_i16] = ACTIONS(3848), + [anon_sym_i32] = ACTIONS(3848), + [anon_sym_i64] = ACTIONS(3848), + [anon_sym_u8] = ACTIONS(3848), + [anon_sym_u16] = ACTIONS(3848), + [anon_sym_u32] = ACTIONS(3848), + [anon_sym_u64] = ACTIONS(3848), + [anon_sym_isize] = ACTIONS(3848), + [anon_sym_usize] = ACTIONS(3848), + [anon_sym_f32] = ACTIONS(3848), + [anon_sym_f64] = ACTIONS(3848), + [anon_sym_c_char] = ACTIONS(3848), + [anon_sym_c_schar] = ACTIONS(3848), + [anon_sym_c_uchar] = ACTIONS(3848), + [anon_sym_c_short] = ACTIONS(3848), + [anon_sym_c_ushort] = ACTIONS(3848), + [anon_sym_c_int] = ACTIONS(3848), + [anon_sym_c_uint] = ACTIONS(3848), + [anon_sym_c_long] = ACTIONS(3848), + [anon_sym_c_ulong] = ACTIONS(3848), + [anon_sym_c_longlong] = ACTIONS(3848), + [anon_sym_c_ulonglong] = ACTIONS(3848), + [anon_sym_c_float] = ACTIONS(3848), + [anon_sym_c_double] = ACTIONS(3848), + [anon_sym_c_longdouble] = ACTIONS(3848), + [anon_sym_return] = ACTIONS(3848), + [anon_sym_yield] = ACTIONS(3848), + [anon_sym_break] = ACTIONS(3848), + [anon_sym_continue] = ACTIONS(3848), + [anon_sym_defer] = ACTIONS(3848), + [anon_sym_errdefer] = ACTIONS(3848), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_else] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3848), + [anon_sym_expand] = ACTIONS(3848), + [anon_sym_for] = ACTIONS(3848), + [anon_sym_match] = ACTIONS(3848), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_TILDE] = ACTIONS(3846), + [anon_sym_try] = ACTIONS(3848), + [anon_sym_DOT] = ACTIONS(3846), + [anon_sym_true] = ACTIONS(3848), + [anon_sym_false] = ACTIONS(3848), + [sym_none] = ACTIONS(3848), + [sym_undefined] = ACTIONS(3848), + [sym_sink] = ACTIONS(3848), + [sym_integer] = ACTIONS(3848), + [sym_float] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_multiline_string] = ACTIONS(3846), + [sym_character] = ACTIONS(3846), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3997), + [sym__newline] = ACTIONS(3846), }, [STATE(1685)] = { - [ts_builtin_sym_end] = ACTIONS(4001), - [sym_identifier] = ACTIONS(4003), - [anon_sym_import] = ACTIONS(4003), - [anon_sym_test] = ACTIONS(4003), - [anon_sym_hide] = ACTIONS(4003), - [anon_sym_func] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4001), - [anon_sym_struct] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_RPAREN] = ACTIONS(4001), - [anon_sym_LBRACE] = ACTIONS(4001), - [anon_sym_RBRACE] = ACTIONS(4001), - [anon_sym_DASH] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4001), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_void] = ACTIONS(4003), - [anon_sym_anyopaque] = ACTIONS(4003), - [anon_sym_bool] = ACTIONS(4003), - [anon_sym_int] = ACTIONS(4003), - [anon_sym_uint] = ACTIONS(4003), - [anon_sym_float] = ACTIONS(4003), - [anon_sym_range] = ACTIONS(4003), - [anon_sym_i8] = ACTIONS(4003), - [anon_sym_i16] = ACTIONS(4003), - [anon_sym_i32] = ACTIONS(4003), - [anon_sym_i64] = ACTIONS(4003), - [anon_sym_u8] = ACTIONS(4003), - [anon_sym_u16] = ACTIONS(4003), - [anon_sym_u32] = ACTIONS(4003), - [anon_sym_u64] = ACTIONS(4003), - [anon_sym_isize] = ACTIONS(4003), - [anon_sym_usize] = ACTIONS(4003), - [anon_sym_f32] = ACTIONS(4003), - [anon_sym_f64] = ACTIONS(4003), - [anon_sym_c_char] = ACTIONS(4003), - [anon_sym_c_schar] = ACTIONS(4003), - [anon_sym_c_uchar] = ACTIONS(4003), - [anon_sym_c_short] = ACTIONS(4003), - [anon_sym_c_ushort] = ACTIONS(4003), - [anon_sym_c_int] = ACTIONS(4003), - [anon_sym_c_uint] = ACTIONS(4003), - [anon_sym_c_long] = ACTIONS(4003), - [anon_sym_c_ulong] = ACTIONS(4003), - [anon_sym_c_longlong] = ACTIONS(4003), - [anon_sym_c_ulonglong] = ACTIONS(4003), - [anon_sym_c_float] = ACTIONS(4003), - [anon_sym_c_double] = ACTIONS(4003), - [anon_sym_c_longdouble] = ACTIONS(4003), - [anon_sym_return] = ACTIONS(4003), - [anon_sym_yield] = ACTIONS(4003), - [anon_sym_break] = ACTIONS(4003), - [anon_sym_continue] = ACTIONS(4003), - [anon_sym_defer] = ACTIONS(4003), - [anon_sym_errdefer] = ACTIONS(4003), - [anon_sym_if] = ACTIONS(4003), - [anon_sym_else] = ACTIONS(4003), - [anon_sym_while] = ACTIONS(4003), - [anon_sym_expand] = ACTIONS(4003), - [anon_sym_for] = ACTIONS(4003), - [anon_sym_match] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4001), - [anon_sym_TILDE] = ACTIONS(4001), - [anon_sym_try] = ACTIONS(4003), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_true] = ACTIONS(4003), - [anon_sym_false] = ACTIONS(4003), - [sym_none] = ACTIONS(4003), - [sym_undefined] = ACTIONS(4003), - [sym_sink] = ACTIONS(4003), - [sym_integer] = ACTIONS(4003), - [sym_float] = ACTIONS(4001), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym_multiline_string] = ACTIONS(4001), - [sym_character] = ACTIONS(4001), + [ts_builtin_sym_end] = ACTIONS(3850), + [sym_identifier] = ACTIONS(3852), + [anon_sym_import] = ACTIONS(3852), + [anon_sym_test] = ACTIONS(3852), + [anon_sym_hide] = ACTIONS(3852), + [anon_sym_func] = ACTIONS(3852), + [anon_sym_BANG] = ACTIONS(3850), + [anon_sym_struct] = ACTIONS(3852), + [anon_sym_LPAREN] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3850), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_DOLLAR] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3850), + [anon_sym_void] = ACTIONS(3852), + [anon_sym_type] = ACTIONS(3852), + [anon_sym_anyopaque] = ACTIONS(3852), + [anon_sym_bool] = ACTIONS(3852), + [anon_sym_int] = ACTIONS(3852), + [anon_sym_uint] = ACTIONS(3852), + [anon_sym_float] = ACTIONS(3852), + [anon_sym_range] = ACTIONS(3852), + [anon_sym_i8] = ACTIONS(3852), + [anon_sym_i16] = ACTIONS(3852), + [anon_sym_i32] = ACTIONS(3852), + [anon_sym_i64] = ACTIONS(3852), + [anon_sym_u8] = ACTIONS(3852), + [anon_sym_u16] = ACTIONS(3852), + [anon_sym_u32] = ACTIONS(3852), + [anon_sym_u64] = ACTIONS(3852), + [anon_sym_isize] = ACTIONS(3852), + [anon_sym_usize] = ACTIONS(3852), + [anon_sym_f32] = ACTIONS(3852), + [anon_sym_f64] = ACTIONS(3852), + [anon_sym_c_char] = ACTIONS(3852), + [anon_sym_c_schar] = ACTIONS(3852), + [anon_sym_c_uchar] = ACTIONS(3852), + [anon_sym_c_short] = ACTIONS(3852), + [anon_sym_c_ushort] = ACTIONS(3852), + [anon_sym_c_int] = ACTIONS(3852), + [anon_sym_c_uint] = ACTIONS(3852), + [anon_sym_c_long] = ACTIONS(3852), + [anon_sym_c_ulong] = ACTIONS(3852), + [anon_sym_c_longlong] = ACTIONS(3852), + [anon_sym_c_ulonglong] = ACTIONS(3852), + [anon_sym_c_float] = ACTIONS(3852), + [anon_sym_c_double] = ACTIONS(3852), + [anon_sym_c_longdouble] = ACTIONS(3852), + [anon_sym_return] = ACTIONS(3852), + [anon_sym_yield] = ACTIONS(3852), + [anon_sym_break] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(3852), + [anon_sym_defer] = ACTIONS(3852), + [anon_sym_errdefer] = ACTIONS(3852), + [anon_sym_if] = ACTIONS(3852), + [anon_sym_else] = ACTIONS(3852), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_expand] = ACTIONS(3852), + [anon_sym_for] = ACTIONS(3852), + [anon_sym_match] = ACTIONS(3852), + [anon_sym_AMP] = ACTIONS(3850), + [anon_sym_TILDE] = ACTIONS(3850), + [anon_sym_try] = ACTIONS(3852), + [anon_sym_DOT] = ACTIONS(3850), + [anon_sym_true] = ACTIONS(3852), + [anon_sym_false] = ACTIONS(3852), + [sym_none] = ACTIONS(3852), + [sym_undefined] = ACTIONS(3852), + [sym_sink] = ACTIONS(3852), + [sym_integer] = ACTIONS(3852), + [sym_float] = ACTIONS(3850), + [anon_sym_DQUOTE] = ACTIONS(3850), + [sym_multiline_string] = ACTIONS(3850), + [sym_character] = ACTIONS(3850), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4001), + [sym__newline] = ACTIONS(3850), }, [STATE(1686)] = { - [ts_builtin_sym_end] = ACTIONS(4005), - [sym_identifier] = ACTIONS(4007), - [anon_sym_import] = ACTIONS(4007), - [anon_sym_test] = ACTIONS(4007), - [anon_sym_hide] = ACTIONS(4007), - [anon_sym_func] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4005), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4005), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_DOLLAR] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4005), - [anon_sym_void] = ACTIONS(4007), - [anon_sym_anyopaque] = ACTIONS(4007), - [anon_sym_bool] = ACTIONS(4007), - [anon_sym_int] = ACTIONS(4007), - [anon_sym_uint] = ACTIONS(4007), - [anon_sym_float] = ACTIONS(4007), - [anon_sym_range] = ACTIONS(4007), - [anon_sym_i8] = ACTIONS(4007), - [anon_sym_i16] = ACTIONS(4007), - [anon_sym_i32] = ACTIONS(4007), - [anon_sym_i64] = ACTIONS(4007), - [anon_sym_u8] = ACTIONS(4007), - [anon_sym_u16] = ACTIONS(4007), - [anon_sym_u32] = ACTIONS(4007), - [anon_sym_u64] = ACTIONS(4007), - [anon_sym_isize] = ACTIONS(4007), - [anon_sym_usize] = ACTIONS(4007), - [anon_sym_f32] = ACTIONS(4007), - [anon_sym_f64] = ACTIONS(4007), - [anon_sym_c_char] = ACTIONS(4007), - [anon_sym_c_schar] = ACTIONS(4007), - [anon_sym_c_uchar] = ACTIONS(4007), - [anon_sym_c_short] = ACTIONS(4007), - [anon_sym_c_ushort] = ACTIONS(4007), - [anon_sym_c_int] = ACTIONS(4007), - [anon_sym_c_uint] = ACTIONS(4007), - [anon_sym_c_long] = ACTIONS(4007), - [anon_sym_c_ulong] = ACTIONS(4007), - [anon_sym_c_longlong] = ACTIONS(4007), - [anon_sym_c_ulonglong] = ACTIONS(4007), - [anon_sym_c_float] = ACTIONS(4007), - [anon_sym_c_double] = ACTIONS(4007), - [anon_sym_c_longdouble] = ACTIONS(4007), - [anon_sym_return] = ACTIONS(4007), - [anon_sym_yield] = ACTIONS(4007), - [anon_sym_break] = ACTIONS(4007), - [anon_sym_continue] = ACTIONS(4007), - [anon_sym_defer] = ACTIONS(4007), - [anon_sym_errdefer] = ACTIONS(4007), - [anon_sym_if] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4007), - [anon_sym_while] = ACTIONS(4007), - [anon_sym_expand] = ACTIONS(4007), - [anon_sym_for] = ACTIONS(4007), - [anon_sym_match] = ACTIONS(4007), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_TILDE] = ACTIONS(4005), - [anon_sym_try] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_true] = ACTIONS(4007), - [anon_sym_false] = ACTIONS(4007), - [sym_none] = ACTIONS(4007), - [sym_undefined] = ACTIONS(4007), - [sym_sink] = ACTIONS(4007), - [sym_integer] = ACTIONS(4007), - [sym_float] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4005), - [sym_multiline_string] = ACTIONS(4005), - [sym_character] = ACTIONS(4005), + [ts_builtin_sym_end] = ACTIONS(3854), + [sym_identifier] = ACTIONS(3856), + [anon_sym_import] = ACTIONS(3856), + [anon_sym_test] = ACTIONS(3856), + [anon_sym_hide] = ACTIONS(3856), + [anon_sym_func] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3856), + [anon_sym_LPAREN] = ACTIONS(3854), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_RBRACE] = ACTIONS(3854), + [anon_sym_DASH] = ACTIONS(3854), + [anon_sym_DOLLAR] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_void] = ACTIONS(3856), + [anon_sym_type] = ACTIONS(3856), + [anon_sym_anyopaque] = ACTIONS(3856), + [anon_sym_bool] = ACTIONS(3856), + [anon_sym_int] = ACTIONS(3856), + [anon_sym_uint] = ACTIONS(3856), + [anon_sym_float] = ACTIONS(3856), + [anon_sym_range] = ACTIONS(3856), + [anon_sym_i8] = ACTIONS(3856), + [anon_sym_i16] = ACTIONS(3856), + [anon_sym_i32] = ACTIONS(3856), + [anon_sym_i64] = ACTIONS(3856), + [anon_sym_u8] = ACTIONS(3856), + [anon_sym_u16] = ACTIONS(3856), + [anon_sym_u32] = ACTIONS(3856), + [anon_sym_u64] = ACTIONS(3856), + [anon_sym_isize] = ACTIONS(3856), + [anon_sym_usize] = ACTIONS(3856), + [anon_sym_f32] = ACTIONS(3856), + [anon_sym_f64] = ACTIONS(3856), + [anon_sym_c_char] = ACTIONS(3856), + [anon_sym_c_schar] = ACTIONS(3856), + [anon_sym_c_uchar] = ACTIONS(3856), + [anon_sym_c_short] = ACTIONS(3856), + [anon_sym_c_ushort] = ACTIONS(3856), + [anon_sym_c_int] = ACTIONS(3856), + [anon_sym_c_uint] = ACTIONS(3856), + [anon_sym_c_long] = ACTIONS(3856), + [anon_sym_c_ulong] = ACTIONS(3856), + [anon_sym_c_longlong] = ACTIONS(3856), + [anon_sym_c_ulonglong] = ACTIONS(3856), + [anon_sym_c_float] = ACTIONS(3856), + [anon_sym_c_double] = ACTIONS(3856), + [anon_sym_c_longdouble] = ACTIONS(3856), + [anon_sym_return] = ACTIONS(3856), + [anon_sym_yield] = ACTIONS(3856), + [anon_sym_break] = ACTIONS(3856), + [anon_sym_continue] = ACTIONS(3856), + [anon_sym_defer] = ACTIONS(3856), + [anon_sym_errdefer] = ACTIONS(3856), + [anon_sym_if] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3856), + [anon_sym_while] = ACTIONS(3856), + [anon_sym_expand] = ACTIONS(3856), + [anon_sym_for] = ACTIONS(3856), + [anon_sym_match] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_TILDE] = ACTIONS(3854), + [anon_sym_try] = ACTIONS(3856), + [anon_sym_DOT] = ACTIONS(3854), + [anon_sym_true] = ACTIONS(3856), + [anon_sym_false] = ACTIONS(3856), + [sym_none] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [sym_sink] = ACTIONS(3856), + [sym_integer] = ACTIONS(3856), + [sym_float] = ACTIONS(3854), + [anon_sym_DQUOTE] = ACTIONS(3854), + [sym_multiline_string] = ACTIONS(3854), + [sym_character] = ACTIONS(3854), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4005), + [sym__newline] = ACTIONS(3854), }, [STATE(1687)] = { - [ts_builtin_sym_end] = ACTIONS(4009), - [sym_identifier] = ACTIONS(4011), - [anon_sym_import] = ACTIONS(4011), - [anon_sym_test] = ACTIONS(4011), - [anon_sym_hide] = ACTIONS(4011), - [anon_sym_func] = ACTIONS(4011), - [anon_sym_BANG] = ACTIONS(4009), - [anon_sym_struct] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(4009), - [anon_sym_RPAREN] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(4009), - [anon_sym_RBRACE] = ACTIONS(4009), - [anon_sym_DASH] = ACTIONS(4009), - [anon_sym_DOLLAR] = ACTIONS(4009), - [anon_sym_LBRACK] = ACTIONS(4009), - [anon_sym_void] = ACTIONS(4011), - [anon_sym_anyopaque] = ACTIONS(4011), - [anon_sym_bool] = ACTIONS(4011), - [anon_sym_int] = ACTIONS(4011), - [anon_sym_uint] = ACTIONS(4011), - [anon_sym_float] = ACTIONS(4011), - [anon_sym_range] = ACTIONS(4011), - [anon_sym_i8] = ACTIONS(4011), - [anon_sym_i16] = ACTIONS(4011), - [anon_sym_i32] = ACTIONS(4011), - [anon_sym_i64] = ACTIONS(4011), - [anon_sym_u8] = ACTIONS(4011), - [anon_sym_u16] = ACTIONS(4011), - [anon_sym_u32] = ACTIONS(4011), - [anon_sym_u64] = ACTIONS(4011), - [anon_sym_isize] = ACTIONS(4011), - [anon_sym_usize] = ACTIONS(4011), - [anon_sym_f32] = ACTIONS(4011), - [anon_sym_f64] = ACTIONS(4011), - [anon_sym_c_char] = ACTIONS(4011), - [anon_sym_c_schar] = ACTIONS(4011), - [anon_sym_c_uchar] = ACTIONS(4011), - [anon_sym_c_short] = ACTIONS(4011), - [anon_sym_c_ushort] = ACTIONS(4011), - [anon_sym_c_int] = ACTIONS(4011), - [anon_sym_c_uint] = ACTIONS(4011), - [anon_sym_c_long] = ACTIONS(4011), - [anon_sym_c_ulong] = ACTIONS(4011), - [anon_sym_c_longlong] = ACTIONS(4011), - [anon_sym_c_ulonglong] = ACTIONS(4011), - [anon_sym_c_float] = ACTIONS(4011), - [anon_sym_c_double] = ACTIONS(4011), - [anon_sym_c_longdouble] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_yield] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_defer] = ACTIONS(4011), - [anon_sym_errdefer] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_while] = ACTIONS(4011), - [anon_sym_expand] = ACTIONS(4011), - [anon_sym_for] = ACTIONS(4011), - [anon_sym_match] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(4009), - [anon_sym_TILDE] = ACTIONS(4009), - [anon_sym_try] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4009), - [anon_sym_true] = ACTIONS(4011), - [anon_sym_false] = ACTIONS(4011), - [sym_none] = ACTIONS(4011), - [sym_undefined] = ACTIONS(4011), - [sym_sink] = ACTIONS(4011), - [sym_integer] = ACTIONS(4011), - [sym_float] = ACTIONS(4009), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym_multiline_string] = ACTIONS(4009), - [sym_character] = ACTIONS(4009), + [ts_builtin_sym_end] = ACTIONS(3858), + [sym_identifier] = ACTIONS(3860), + [anon_sym_import] = ACTIONS(3860), + [anon_sym_test] = ACTIONS(3860), + [anon_sym_hide] = ACTIONS(3860), + [anon_sym_func] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3858), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3858), + [anon_sym_DASH] = ACTIONS(3858), + [anon_sym_DOLLAR] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_void] = ACTIONS(3860), + [anon_sym_type] = ACTIONS(3860), + [anon_sym_anyopaque] = ACTIONS(3860), + [anon_sym_bool] = ACTIONS(3860), + [anon_sym_int] = ACTIONS(3860), + [anon_sym_uint] = ACTIONS(3860), + [anon_sym_float] = ACTIONS(3860), + [anon_sym_range] = ACTIONS(3860), + [anon_sym_i8] = ACTIONS(3860), + [anon_sym_i16] = ACTIONS(3860), + [anon_sym_i32] = ACTIONS(3860), + [anon_sym_i64] = ACTIONS(3860), + [anon_sym_u8] = ACTIONS(3860), + [anon_sym_u16] = ACTIONS(3860), + [anon_sym_u32] = ACTIONS(3860), + [anon_sym_u64] = ACTIONS(3860), + [anon_sym_isize] = ACTIONS(3860), + [anon_sym_usize] = ACTIONS(3860), + [anon_sym_f32] = ACTIONS(3860), + [anon_sym_f64] = ACTIONS(3860), + [anon_sym_c_char] = ACTIONS(3860), + [anon_sym_c_schar] = ACTIONS(3860), + [anon_sym_c_uchar] = ACTIONS(3860), + [anon_sym_c_short] = ACTIONS(3860), + [anon_sym_c_ushort] = ACTIONS(3860), + [anon_sym_c_int] = ACTIONS(3860), + [anon_sym_c_uint] = ACTIONS(3860), + [anon_sym_c_long] = ACTIONS(3860), + [anon_sym_c_ulong] = ACTIONS(3860), + [anon_sym_c_longlong] = ACTIONS(3860), + [anon_sym_c_ulonglong] = ACTIONS(3860), + [anon_sym_c_float] = ACTIONS(3860), + [anon_sym_c_double] = ACTIONS(3860), + [anon_sym_c_longdouble] = ACTIONS(3860), + [anon_sym_return] = ACTIONS(3860), + [anon_sym_yield] = ACTIONS(3860), + [anon_sym_break] = ACTIONS(3860), + [anon_sym_continue] = ACTIONS(3860), + [anon_sym_defer] = ACTIONS(3860), + [anon_sym_errdefer] = ACTIONS(3860), + [anon_sym_if] = ACTIONS(3860), + [anon_sym_else] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3860), + [anon_sym_expand] = ACTIONS(3860), + [anon_sym_for] = ACTIONS(3860), + [anon_sym_match] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_TILDE] = ACTIONS(3858), + [anon_sym_try] = ACTIONS(3860), + [anon_sym_DOT] = ACTIONS(3858), + [anon_sym_true] = ACTIONS(3860), + [anon_sym_false] = ACTIONS(3860), + [sym_none] = ACTIONS(3860), + [sym_undefined] = ACTIONS(3860), + [sym_sink] = ACTIONS(3860), + [sym_integer] = ACTIONS(3860), + [sym_float] = ACTIONS(3858), + [anon_sym_DQUOTE] = ACTIONS(3858), + [sym_multiline_string] = ACTIONS(3858), + [sym_character] = ACTIONS(3858), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4009), + [sym__newline] = ACTIONS(3858), }, [STATE(1688)] = { - [ts_builtin_sym_end] = ACTIONS(4013), - [sym_identifier] = ACTIONS(4015), - [anon_sym_import] = ACTIONS(4015), - [anon_sym_test] = ACTIONS(4015), - [anon_sym_hide] = ACTIONS(4015), - [anon_sym_func] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_struct] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_DOLLAR] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_void] = ACTIONS(4015), - [anon_sym_anyopaque] = ACTIONS(4015), - [anon_sym_bool] = ACTIONS(4015), - [anon_sym_int] = ACTIONS(4015), - [anon_sym_uint] = ACTIONS(4015), - [anon_sym_float] = ACTIONS(4015), - [anon_sym_range] = ACTIONS(4015), - [anon_sym_i8] = ACTIONS(4015), - [anon_sym_i16] = ACTIONS(4015), - [anon_sym_i32] = ACTIONS(4015), - [anon_sym_i64] = ACTIONS(4015), - [anon_sym_u8] = ACTIONS(4015), - [anon_sym_u16] = ACTIONS(4015), - [anon_sym_u32] = ACTIONS(4015), - [anon_sym_u64] = ACTIONS(4015), - [anon_sym_isize] = ACTIONS(4015), - [anon_sym_usize] = ACTIONS(4015), - [anon_sym_f32] = ACTIONS(4015), - [anon_sym_f64] = ACTIONS(4015), - [anon_sym_c_char] = ACTIONS(4015), - [anon_sym_c_schar] = ACTIONS(4015), - [anon_sym_c_uchar] = ACTIONS(4015), - [anon_sym_c_short] = ACTIONS(4015), - [anon_sym_c_ushort] = ACTIONS(4015), - [anon_sym_c_int] = ACTIONS(4015), - [anon_sym_c_uint] = ACTIONS(4015), - [anon_sym_c_long] = ACTIONS(4015), - [anon_sym_c_ulong] = ACTIONS(4015), - [anon_sym_c_longlong] = ACTIONS(4015), - [anon_sym_c_ulonglong] = ACTIONS(4015), - [anon_sym_c_float] = ACTIONS(4015), - [anon_sym_c_double] = ACTIONS(4015), - [anon_sym_c_longdouble] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_yield] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_defer] = ACTIONS(4015), - [anon_sym_errdefer] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_while] = ACTIONS(4015), - [anon_sym_expand] = ACTIONS(4015), - [anon_sym_for] = ACTIONS(4015), - [anon_sym_match] = ACTIONS(4015), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_TILDE] = ACTIONS(4013), - [anon_sym_try] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4015), - [anon_sym_false] = ACTIONS(4015), - [sym_none] = ACTIONS(4015), - [sym_undefined] = ACTIONS(4015), - [sym_sink] = ACTIONS(4015), - [sym_integer] = ACTIONS(4015), - [sym_float] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym_multiline_string] = ACTIONS(4013), - [sym_character] = ACTIONS(4013), + [ts_builtin_sym_end] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3864), + [anon_sym_import] = ACTIONS(3864), + [anon_sym_test] = ACTIONS(3864), + [anon_sym_hide] = ACTIONS(3864), + [anon_sym_func] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(3862), + [anon_sym_RPAREN] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3862), + [anon_sym_RBRACE] = ACTIONS(3862), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_DOLLAR] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_void] = ACTIONS(3864), + [anon_sym_type] = ACTIONS(3864), + [anon_sym_anyopaque] = ACTIONS(3864), + [anon_sym_bool] = ACTIONS(3864), + [anon_sym_int] = ACTIONS(3864), + [anon_sym_uint] = ACTIONS(3864), + [anon_sym_float] = ACTIONS(3864), + [anon_sym_range] = ACTIONS(3864), + [anon_sym_i8] = ACTIONS(3864), + [anon_sym_i16] = ACTIONS(3864), + [anon_sym_i32] = ACTIONS(3864), + [anon_sym_i64] = ACTIONS(3864), + [anon_sym_u8] = ACTIONS(3864), + [anon_sym_u16] = ACTIONS(3864), + [anon_sym_u32] = ACTIONS(3864), + [anon_sym_u64] = ACTIONS(3864), + [anon_sym_isize] = ACTIONS(3864), + [anon_sym_usize] = ACTIONS(3864), + [anon_sym_f32] = ACTIONS(3864), + [anon_sym_f64] = ACTIONS(3864), + [anon_sym_c_char] = ACTIONS(3864), + [anon_sym_c_schar] = ACTIONS(3864), + [anon_sym_c_uchar] = ACTIONS(3864), + [anon_sym_c_short] = ACTIONS(3864), + [anon_sym_c_ushort] = ACTIONS(3864), + [anon_sym_c_int] = ACTIONS(3864), + [anon_sym_c_uint] = ACTIONS(3864), + [anon_sym_c_long] = ACTIONS(3864), + [anon_sym_c_ulong] = ACTIONS(3864), + [anon_sym_c_longlong] = ACTIONS(3864), + [anon_sym_c_ulonglong] = ACTIONS(3864), + [anon_sym_c_float] = ACTIONS(3864), + [anon_sym_c_double] = ACTIONS(3864), + [anon_sym_c_longdouble] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_yield] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_defer] = ACTIONS(3864), + [anon_sym_errdefer] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_expand] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_match] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_TILDE] = ACTIONS(3862), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_DOT] = ACTIONS(3862), + [anon_sym_true] = ACTIONS(3864), + [anon_sym_false] = ACTIONS(3864), + [sym_none] = ACTIONS(3864), + [sym_undefined] = ACTIONS(3864), + [sym_sink] = ACTIONS(3864), + [sym_integer] = ACTIONS(3864), + [sym_float] = ACTIONS(3862), + [anon_sym_DQUOTE] = ACTIONS(3862), + [sym_multiline_string] = ACTIONS(3862), + [sym_character] = ACTIONS(3862), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4013), + [sym__newline] = ACTIONS(3862), }, [STATE(1689)] = { - [ts_builtin_sym_end] = ACTIONS(4017), - [sym_identifier] = ACTIONS(4019), - [anon_sym_import] = ACTIONS(4019), - [anon_sym_test] = ACTIONS(4019), - [anon_sym_hide] = ACTIONS(4019), - [anon_sym_func] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_struct] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_DOLLAR] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_void] = ACTIONS(4019), - [anon_sym_anyopaque] = ACTIONS(4019), - [anon_sym_bool] = ACTIONS(4019), - [anon_sym_int] = ACTIONS(4019), - [anon_sym_uint] = ACTIONS(4019), - [anon_sym_float] = ACTIONS(4019), - [anon_sym_range] = ACTIONS(4019), - [anon_sym_i8] = ACTIONS(4019), - [anon_sym_i16] = ACTIONS(4019), - [anon_sym_i32] = ACTIONS(4019), - [anon_sym_i64] = ACTIONS(4019), - [anon_sym_u8] = ACTIONS(4019), - [anon_sym_u16] = ACTIONS(4019), - [anon_sym_u32] = ACTIONS(4019), - [anon_sym_u64] = ACTIONS(4019), - [anon_sym_isize] = ACTIONS(4019), - [anon_sym_usize] = ACTIONS(4019), - [anon_sym_f32] = ACTIONS(4019), - [anon_sym_f64] = ACTIONS(4019), - [anon_sym_c_char] = ACTIONS(4019), - [anon_sym_c_schar] = ACTIONS(4019), - [anon_sym_c_uchar] = ACTIONS(4019), - [anon_sym_c_short] = ACTIONS(4019), - [anon_sym_c_ushort] = ACTIONS(4019), - [anon_sym_c_int] = ACTIONS(4019), - [anon_sym_c_uint] = ACTIONS(4019), - [anon_sym_c_long] = ACTIONS(4019), - [anon_sym_c_ulong] = ACTIONS(4019), - [anon_sym_c_longlong] = ACTIONS(4019), - [anon_sym_c_ulonglong] = ACTIONS(4019), - [anon_sym_c_float] = ACTIONS(4019), - [anon_sym_c_double] = ACTIONS(4019), - [anon_sym_c_longdouble] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_yield] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_defer] = ACTIONS(4019), - [anon_sym_errdefer] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_while] = ACTIONS(4019), - [anon_sym_expand] = ACTIONS(4019), - [anon_sym_for] = ACTIONS(4019), - [anon_sym_match] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_TILDE] = ACTIONS(4017), - [anon_sym_try] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_true] = ACTIONS(4019), - [anon_sym_false] = ACTIONS(4019), - [sym_none] = ACTIONS(4019), - [sym_undefined] = ACTIONS(4019), - [sym_sink] = ACTIONS(4019), - [sym_integer] = ACTIONS(4019), - [sym_float] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(4017), - [sym_multiline_string] = ACTIONS(4017), - [sym_character] = ACTIONS(4017), + [ts_builtin_sym_end] = ACTIONS(3866), + [sym_identifier] = ACTIONS(3868), + [anon_sym_import] = ACTIONS(3868), + [anon_sym_test] = ACTIONS(3868), + [anon_sym_hide] = ACTIONS(3868), + [anon_sym_func] = ACTIONS(3868), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(3866), + [anon_sym_RPAREN] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_DOLLAR] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3866), + [anon_sym_void] = ACTIONS(3868), + [anon_sym_type] = ACTIONS(3868), + [anon_sym_anyopaque] = ACTIONS(3868), + [anon_sym_bool] = ACTIONS(3868), + [anon_sym_int] = ACTIONS(3868), + [anon_sym_uint] = ACTIONS(3868), + [anon_sym_float] = ACTIONS(3868), + [anon_sym_range] = ACTIONS(3868), + [anon_sym_i8] = ACTIONS(3868), + [anon_sym_i16] = ACTIONS(3868), + [anon_sym_i32] = ACTIONS(3868), + [anon_sym_i64] = ACTIONS(3868), + [anon_sym_u8] = ACTIONS(3868), + [anon_sym_u16] = ACTIONS(3868), + [anon_sym_u32] = ACTIONS(3868), + [anon_sym_u64] = ACTIONS(3868), + [anon_sym_isize] = ACTIONS(3868), + [anon_sym_usize] = ACTIONS(3868), + [anon_sym_f32] = ACTIONS(3868), + [anon_sym_f64] = ACTIONS(3868), + [anon_sym_c_char] = ACTIONS(3868), + [anon_sym_c_schar] = ACTIONS(3868), + [anon_sym_c_uchar] = ACTIONS(3868), + [anon_sym_c_short] = ACTIONS(3868), + [anon_sym_c_ushort] = ACTIONS(3868), + [anon_sym_c_int] = ACTIONS(3868), + [anon_sym_c_uint] = ACTIONS(3868), + [anon_sym_c_long] = ACTIONS(3868), + [anon_sym_c_ulong] = ACTIONS(3868), + [anon_sym_c_longlong] = ACTIONS(3868), + [anon_sym_c_ulonglong] = ACTIONS(3868), + [anon_sym_c_float] = ACTIONS(3868), + [anon_sym_c_double] = ACTIONS(3868), + [anon_sym_c_longdouble] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_yield] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_defer] = ACTIONS(3868), + [anon_sym_errdefer] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_expand] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_match] = ACTIONS(3868), + [anon_sym_AMP] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_true] = ACTIONS(3868), + [anon_sym_false] = ACTIONS(3868), + [sym_none] = ACTIONS(3868), + [sym_undefined] = ACTIONS(3868), + [sym_sink] = ACTIONS(3868), + [sym_integer] = ACTIONS(3868), + [sym_float] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_multiline_string] = ACTIONS(3866), + [sym_character] = ACTIONS(3866), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4017), + [sym__newline] = ACTIONS(3866), }, [STATE(1690)] = { - [ts_builtin_sym_end] = ACTIONS(4021), - [sym_identifier] = ACTIONS(4023), - [anon_sym_import] = ACTIONS(4023), - [anon_sym_test] = ACTIONS(4023), - [anon_sym_hide] = ACTIONS(4023), - [anon_sym_func] = ACTIONS(4023), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_struct] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_DOLLAR] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_void] = ACTIONS(4023), - [anon_sym_anyopaque] = ACTIONS(4023), - [anon_sym_bool] = ACTIONS(4023), - [anon_sym_int] = ACTIONS(4023), - [anon_sym_uint] = ACTIONS(4023), - [anon_sym_float] = ACTIONS(4023), - [anon_sym_range] = ACTIONS(4023), - [anon_sym_i8] = ACTIONS(4023), - [anon_sym_i16] = ACTIONS(4023), - [anon_sym_i32] = ACTIONS(4023), - [anon_sym_i64] = ACTIONS(4023), - [anon_sym_u8] = ACTIONS(4023), - [anon_sym_u16] = ACTIONS(4023), - [anon_sym_u32] = ACTIONS(4023), - [anon_sym_u64] = ACTIONS(4023), - [anon_sym_isize] = ACTIONS(4023), - [anon_sym_usize] = ACTIONS(4023), - [anon_sym_f32] = ACTIONS(4023), - [anon_sym_f64] = ACTIONS(4023), - [anon_sym_c_char] = ACTIONS(4023), - [anon_sym_c_schar] = ACTIONS(4023), - [anon_sym_c_uchar] = ACTIONS(4023), - [anon_sym_c_short] = ACTIONS(4023), - [anon_sym_c_ushort] = ACTIONS(4023), - [anon_sym_c_int] = ACTIONS(4023), - [anon_sym_c_uint] = ACTIONS(4023), - [anon_sym_c_long] = ACTIONS(4023), - [anon_sym_c_ulong] = ACTIONS(4023), - [anon_sym_c_longlong] = ACTIONS(4023), - [anon_sym_c_ulonglong] = ACTIONS(4023), - [anon_sym_c_float] = ACTIONS(4023), - [anon_sym_c_double] = ACTIONS(4023), - [anon_sym_c_longdouble] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_yield] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_defer] = ACTIONS(4023), - [anon_sym_errdefer] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_while] = ACTIONS(4023), - [anon_sym_expand] = ACTIONS(4023), - [anon_sym_for] = ACTIONS(4023), - [anon_sym_match] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_TILDE] = ACTIONS(4021), - [anon_sym_try] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [sym_none] = ACTIONS(4023), - [sym_undefined] = ACTIONS(4023), - [sym_sink] = ACTIONS(4023), - [sym_integer] = ACTIONS(4023), - [sym_float] = ACTIONS(4021), - [anon_sym_DQUOTE] = ACTIONS(4021), - [sym_multiline_string] = ACTIONS(4021), - [sym_character] = ACTIONS(4021), + [ts_builtin_sym_end] = ACTIONS(3870), + [sym_identifier] = ACTIONS(3872), + [anon_sym_import] = ACTIONS(3872), + [anon_sym_test] = ACTIONS(3872), + [anon_sym_hide] = ACTIONS(3872), + [anon_sym_func] = ACTIONS(3872), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3870), + [anon_sym_RPAREN] = ACTIONS(3870), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_RBRACE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3870), + [anon_sym_DOLLAR] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3870), + [anon_sym_void] = ACTIONS(3872), + [anon_sym_type] = ACTIONS(3872), + [anon_sym_anyopaque] = ACTIONS(3872), + [anon_sym_bool] = ACTIONS(3872), + [anon_sym_int] = ACTIONS(3872), + [anon_sym_uint] = ACTIONS(3872), + [anon_sym_float] = ACTIONS(3872), + [anon_sym_range] = ACTIONS(3872), + [anon_sym_i8] = ACTIONS(3872), + [anon_sym_i16] = ACTIONS(3872), + [anon_sym_i32] = ACTIONS(3872), + [anon_sym_i64] = ACTIONS(3872), + [anon_sym_u8] = ACTIONS(3872), + [anon_sym_u16] = ACTIONS(3872), + [anon_sym_u32] = ACTIONS(3872), + [anon_sym_u64] = ACTIONS(3872), + [anon_sym_isize] = ACTIONS(3872), + [anon_sym_usize] = ACTIONS(3872), + [anon_sym_f32] = ACTIONS(3872), + [anon_sym_f64] = ACTIONS(3872), + [anon_sym_c_char] = ACTIONS(3872), + [anon_sym_c_schar] = ACTIONS(3872), + [anon_sym_c_uchar] = ACTIONS(3872), + [anon_sym_c_short] = ACTIONS(3872), + [anon_sym_c_ushort] = ACTIONS(3872), + [anon_sym_c_int] = ACTIONS(3872), + [anon_sym_c_uint] = ACTIONS(3872), + [anon_sym_c_long] = ACTIONS(3872), + [anon_sym_c_ulong] = ACTIONS(3872), + [anon_sym_c_longlong] = ACTIONS(3872), + [anon_sym_c_ulonglong] = ACTIONS(3872), + [anon_sym_c_float] = ACTIONS(3872), + [anon_sym_c_double] = ACTIONS(3872), + [anon_sym_c_longdouble] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_yield] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_defer] = ACTIONS(3872), + [anon_sym_errdefer] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_expand] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_match] = ACTIONS(3872), + [anon_sym_AMP] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_DOT] = ACTIONS(3870), + [anon_sym_true] = ACTIONS(3872), + [anon_sym_false] = ACTIONS(3872), + [sym_none] = ACTIONS(3872), + [sym_undefined] = ACTIONS(3872), + [sym_sink] = ACTIONS(3872), + [sym_integer] = ACTIONS(3872), + [sym_float] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_multiline_string] = ACTIONS(3870), + [sym_character] = ACTIONS(3870), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4021), + [sym__newline] = ACTIONS(3870), }, [STATE(1691)] = { - [ts_builtin_sym_end] = ACTIONS(4025), - [sym_identifier] = ACTIONS(4027), - [anon_sym_import] = ACTIONS(4027), - [anon_sym_test] = ACTIONS(4027), - [anon_sym_hide] = ACTIONS(4027), - [anon_sym_func] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_struct] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_RPAREN] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_DOLLAR] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_void] = ACTIONS(4027), - [anon_sym_anyopaque] = ACTIONS(4027), - [anon_sym_bool] = ACTIONS(4027), - [anon_sym_int] = ACTIONS(4027), - [anon_sym_uint] = ACTIONS(4027), - [anon_sym_float] = ACTIONS(4027), - [anon_sym_range] = ACTIONS(4027), - [anon_sym_i8] = ACTIONS(4027), - [anon_sym_i16] = ACTIONS(4027), - [anon_sym_i32] = ACTIONS(4027), - [anon_sym_i64] = ACTIONS(4027), - [anon_sym_u8] = ACTIONS(4027), - [anon_sym_u16] = ACTIONS(4027), - [anon_sym_u32] = ACTIONS(4027), - [anon_sym_u64] = ACTIONS(4027), - [anon_sym_isize] = ACTIONS(4027), - [anon_sym_usize] = ACTIONS(4027), - [anon_sym_f32] = ACTIONS(4027), - [anon_sym_f64] = ACTIONS(4027), - [anon_sym_c_char] = ACTIONS(4027), - [anon_sym_c_schar] = ACTIONS(4027), - [anon_sym_c_uchar] = ACTIONS(4027), - [anon_sym_c_short] = ACTIONS(4027), - [anon_sym_c_ushort] = ACTIONS(4027), - [anon_sym_c_int] = ACTIONS(4027), - [anon_sym_c_uint] = ACTIONS(4027), - [anon_sym_c_long] = ACTIONS(4027), - [anon_sym_c_ulong] = ACTIONS(4027), - [anon_sym_c_longlong] = ACTIONS(4027), - [anon_sym_c_ulonglong] = ACTIONS(4027), - [anon_sym_c_float] = ACTIONS(4027), - [anon_sym_c_double] = ACTIONS(4027), - [anon_sym_c_longdouble] = ACTIONS(4027), - [anon_sym_return] = ACTIONS(4027), - [anon_sym_yield] = ACTIONS(4027), - [anon_sym_break] = ACTIONS(4027), - [anon_sym_continue] = ACTIONS(4027), - [anon_sym_defer] = ACTIONS(4027), - [anon_sym_errdefer] = ACTIONS(4027), - [anon_sym_if] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4027), - [anon_sym_while] = ACTIONS(4027), - [anon_sym_expand] = ACTIONS(4027), - [anon_sym_for] = ACTIONS(4027), - [anon_sym_match] = ACTIONS(4027), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_TILDE] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_true] = ACTIONS(4027), - [anon_sym_false] = ACTIONS(4027), - [sym_none] = ACTIONS(4027), - [sym_undefined] = ACTIONS(4027), - [sym_sink] = ACTIONS(4027), - [sym_integer] = ACTIONS(4027), - [sym_float] = ACTIONS(4025), - [anon_sym_DQUOTE] = ACTIONS(4025), - [sym_multiline_string] = ACTIONS(4025), - [sym_character] = ACTIONS(4025), + [ts_builtin_sym_end] = ACTIONS(3874), + [sym_identifier] = ACTIONS(3876), + [anon_sym_import] = ACTIONS(3876), + [anon_sym_test] = ACTIONS(3876), + [anon_sym_hide] = ACTIONS(3876), + [anon_sym_func] = ACTIONS(3876), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_LPAREN] = ACTIONS(3874), + [anon_sym_RPAREN] = ACTIONS(3874), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(3874), + [anon_sym_LBRACK] = ACTIONS(3874), + [anon_sym_void] = ACTIONS(3876), + [anon_sym_type] = ACTIONS(3876), + [anon_sym_anyopaque] = ACTIONS(3876), + [anon_sym_bool] = ACTIONS(3876), + [anon_sym_int] = ACTIONS(3876), + [anon_sym_uint] = ACTIONS(3876), + [anon_sym_float] = ACTIONS(3876), + [anon_sym_range] = ACTIONS(3876), + [anon_sym_i8] = ACTIONS(3876), + [anon_sym_i16] = ACTIONS(3876), + [anon_sym_i32] = ACTIONS(3876), + [anon_sym_i64] = ACTIONS(3876), + [anon_sym_u8] = ACTIONS(3876), + [anon_sym_u16] = ACTIONS(3876), + [anon_sym_u32] = ACTIONS(3876), + [anon_sym_u64] = ACTIONS(3876), + [anon_sym_isize] = ACTIONS(3876), + [anon_sym_usize] = ACTIONS(3876), + [anon_sym_f32] = ACTIONS(3876), + [anon_sym_f64] = ACTIONS(3876), + [anon_sym_c_char] = ACTIONS(3876), + [anon_sym_c_schar] = ACTIONS(3876), + [anon_sym_c_uchar] = ACTIONS(3876), + [anon_sym_c_short] = ACTIONS(3876), + [anon_sym_c_ushort] = ACTIONS(3876), + [anon_sym_c_int] = ACTIONS(3876), + [anon_sym_c_uint] = ACTIONS(3876), + [anon_sym_c_long] = ACTIONS(3876), + [anon_sym_c_ulong] = ACTIONS(3876), + [anon_sym_c_longlong] = ACTIONS(3876), + [anon_sym_c_ulonglong] = ACTIONS(3876), + [anon_sym_c_float] = ACTIONS(3876), + [anon_sym_c_double] = ACTIONS(3876), + [anon_sym_c_longdouble] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_yield] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_defer] = ACTIONS(3876), + [anon_sym_errdefer] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_expand] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_match] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_DOT] = ACTIONS(3874), + [anon_sym_true] = ACTIONS(3876), + [anon_sym_false] = ACTIONS(3876), + [sym_none] = ACTIONS(3876), + [sym_undefined] = ACTIONS(3876), + [sym_sink] = ACTIONS(3876), + [sym_integer] = ACTIONS(3876), + [sym_float] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_multiline_string] = ACTIONS(3874), + [sym_character] = ACTIONS(3874), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4025), + [sym__newline] = ACTIONS(3874), }, [STATE(1692)] = { - [ts_builtin_sym_end] = ACTIONS(4029), - [sym_identifier] = ACTIONS(4031), - [anon_sym_import] = ACTIONS(4031), - [anon_sym_test] = ACTIONS(4031), - [anon_sym_hide] = ACTIONS(4031), - [anon_sym_func] = ACTIONS(4031), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_struct] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4029), - [anon_sym_RPAREN] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(4029), - [anon_sym_RBRACE] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_DOLLAR] = ACTIONS(4029), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_void] = ACTIONS(4031), - [anon_sym_anyopaque] = ACTIONS(4031), - [anon_sym_bool] = ACTIONS(4031), - [anon_sym_int] = ACTIONS(4031), - [anon_sym_uint] = ACTIONS(4031), - [anon_sym_float] = ACTIONS(4031), - [anon_sym_range] = ACTIONS(4031), - [anon_sym_i8] = ACTIONS(4031), - [anon_sym_i16] = ACTIONS(4031), - [anon_sym_i32] = ACTIONS(4031), - [anon_sym_i64] = ACTIONS(4031), - [anon_sym_u8] = ACTIONS(4031), - [anon_sym_u16] = ACTIONS(4031), - [anon_sym_u32] = ACTIONS(4031), - [anon_sym_u64] = ACTIONS(4031), - [anon_sym_isize] = ACTIONS(4031), - [anon_sym_usize] = ACTIONS(4031), - [anon_sym_f32] = ACTIONS(4031), - [anon_sym_f64] = ACTIONS(4031), - [anon_sym_c_char] = ACTIONS(4031), - [anon_sym_c_schar] = ACTIONS(4031), - [anon_sym_c_uchar] = ACTIONS(4031), - [anon_sym_c_short] = ACTIONS(4031), - [anon_sym_c_ushort] = ACTIONS(4031), - [anon_sym_c_int] = ACTIONS(4031), - [anon_sym_c_uint] = ACTIONS(4031), - [anon_sym_c_long] = ACTIONS(4031), - [anon_sym_c_ulong] = ACTIONS(4031), - [anon_sym_c_longlong] = ACTIONS(4031), - [anon_sym_c_ulonglong] = ACTIONS(4031), - [anon_sym_c_float] = ACTIONS(4031), - [anon_sym_c_double] = ACTIONS(4031), - [anon_sym_c_longdouble] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_yield] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_defer] = ACTIONS(4031), - [anon_sym_errdefer] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_expand] = ACTIONS(4031), - [anon_sym_for] = ACTIONS(4031), - [anon_sym_match] = ACTIONS(4031), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_TILDE] = ACTIONS(4029), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [sym_none] = ACTIONS(4031), - [sym_undefined] = ACTIONS(4031), - [sym_sink] = ACTIONS(4031), - [sym_integer] = ACTIONS(4031), - [sym_float] = ACTIONS(4029), - [anon_sym_DQUOTE] = ACTIONS(4029), - [sym_multiline_string] = ACTIONS(4029), - [sym_character] = ACTIONS(4029), + [ts_builtin_sym_end] = ACTIONS(3878), + [sym_identifier] = ACTIONS(3880), + [anon_sym_import] = ACTIONS(3880), + [anon_sym_test] = ACTIONS(3880), + [anon_sym_hide] = ACTIONS(3880), + [anon_sym_func] = ACTIONS(3880), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_RPAREN] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_void] = ACTIONS(3880), + [anon_sym_type] = ACTIONS(3880), + [anon_sym_anyopaque] = ACTIONS(3880), + [anon_sym_bool] = ACTIONS(3880), + [anon_sym_int] = ACTIONS(3880), + [anon_sym_uint] = ACTIONS(3880), + [anon_sym_float] = ACTIONS(3880), + [anon_sym_range] = ACTIONS(3880), + [anon_sym_i8] = ACTIONS(3880), + [anon_sym_i16] = ACTIONS(3880), + [anon_sym_i32] = ACTIONS(3880), + [anon_sym_i64] = ACTIONS(3880), + [anon_sym_u8] = ACTIONS(3880), + [anon_sym_u16] = ACTIONS(3880), + [anon_sym_u32] = ACTIONS(3880), + [anon_sym_u64] = ACTIONS(3880), + [anon_sym_isize] = ACTIONS(3880), + [anon_sym_usize] = ACTIONS(3880), + [anon_sym_f32] = ACTIONS(3880), + [anon_sym_f64] = ACTIONS(3880), + [anon_sym_c_char] = ACTIONS(3880), + [anon_sym_c_schar] = ACTIONS(3880), + [anon_sym_c_uchar] = ACTIONS(3880), + [anon_sym_c_short] = ACTIONS(3880), + [anon_sym_c_ushort] = ACTIONS(3880), + [anon_sym_c_int] = ACTIONS(3880), + [anon_sym_c_uint] = ACTIONS(3880), + [anon_sym_c_long] = ACTIONS(3880), + [anon_sym_c_ulong] = ACTIONS(3880), + [anon_sym_c_longlong] = ACTIONS(3880), + [anon_sym_c_ulonglong] = ACTIONS(3880), + [anon_sym_c_float] = ACTIONS(3880), + [anon_sym_c_double] = ACTIONS(3880), + [anon_sym_c_longdouble] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_defer] = ACTIONS(3880), + [anon_sym_errdefer] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_expand] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_match] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_true] = ACTIONS(3880), + [anon_sym_false] = ACTIONS(3880), + [sym_none] = ACTIONS(3880), + [sym_undefined] = ACTIONS(3880), + [sym_sink] = ACTIONS(3880), + [sym_integer] = ACTIONS(3880), + [sym_float] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_multiline_string] = ACTIONS(3878), + [sym_character] = ACTIONS(3878), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4029), + [sym__newline] = ACTIONS(3878), }, [STATE(1693)] = { - [ts_builtin_sym_end] = ACTIONS(4033), - [sym_identifier] = ACTIONS(4035), - [anon_sym_import] = ACTIONS(4035), - [anon_sym_test] = ACTIONS(4035), - [anon_sym_hide] = ACTIONS(4035), - [anon_sym_func] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_struct] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_void] = ACTIONS(4035), - [anon_sym_anyopaque] = ACTIONS(4035), - [anon_sym_bool] = ACTIONS(4035), - [anon_sym_int] = ACTIONS(4035), - [anon_sym_uint] = ACTIONS(4035), - [anon_sym_float] = ACTIONS(4035), - [anon_sym_range] = ACTIONS(4035), - [anon_sym_i8] = ACTIONS(4035), - [anon_sym_i16] = ACTIONS(4035), - [anon_sym_i32] = ACTIONS(4035), - [anon_sym_i64] = ACTIONS(4035), - [anon_sym_u8] = ACTIONS(4035), - [anon_sym_u16] = ACTIONS(4035), - [anon_sym_u32] = ACTIONS(4035), - [anon_sym_u64] = ACTIONS(4035), - [anon_sym_isize] = ACTIONS(4035), - [anon_sym_usize] = ACTIONS(4035), - [anon_sym_f32] = ACTIONS(4035), - [anon_sym_f64] = ACTIONS(4035), - [anon_sym_c_char] = ACTIONS(4035), - [anon_sym_c_schar] = ACTIONS(4035), - [anon_sym_c_uchar] = ACTIONS(4035), - [anon_sym_c_short] = ACTIONS(4035), - [anon_sym_c_ushort] = ACTIONS(4035), - [anon_sym_c_int] = ACTIONS(4035), - [anon_sym_c_uint] = ACTIONS(4035), - [anon_sym_c_long] = ACTIONS(4035), - [anon_sym_c_ulong] = ACTIONS(4035), - [anon_sym_c_longlong] = ACTIONS(4035), - [anon_sym_c_ulonglong] = ACTIONS(4035), - [anon_sym_c_float] = ACTIONS(4035), - [anon_sym_c_double] = ACTIONS(4035), - [anon_sym_c_longdouble] = ACTIONS(4035), - [anon_sym_return] = ACTIONS(4035), - [anon_sym_yield] = ACTIONS(4035), - [anon_sym_break] = ACTIONS(4035), - [anon_sym_continue] = ACTIONS(4035), - [anon_sym_defer] = ACTIONS(4035), - [anon_sym_errdefer] = ACTIONS(4035), - [anon_sym_if] = ACTIONS(4035), - [anon_sym_else] = ACTIONS(4035), - [anon_sym_while] = ACTIONS(4035), - [anon_sym_expand] = ACTIONS(4035), - [anon_sym_for] = ACTIONS(4035), - [anon_sym_match] = ACTIONS(4035), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_TILDE] = ACTIONS(4033), - [anon_sym_try] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4035), - [anon_sym_false] = ACTIONS(4035), - [sym_none] = ACTIONS(4035), - [sym_undefined] = ACTIONS(4035), - [sym_sink] = ACTIONS(4035), - [sym_integer] = ACTIONS(4035), - [sym_float] = ACTIONS(4033), - [anon_sym_DQUOTE] = ACTIONS(4033), - [sym_multiline_string] = ACTIONS(4033), - [sym_character] = ACTIONS(4033), + [ts_builtin_sym_end] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3884), + [anon_sym_import] = ACTIONS(3884), + [anon_sym_test] = ACTIONS(3884), + [anon_sym_hide] = ACTIONS(3884), + [anon_sym_func] = ACTIONS(3884), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_RPAREN] = ACTIONS(3882), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_void] = ACTIONS(3884), + [anon_sym_type] = ACTIONS(3884), + [anon_sym_anyopaque] = ACTIONS(3884), + [anon_sym_bool] = ACTIONS(3884), + [anon_sym_int] = ACTIONS(3884), + [anon_sym_uint] = ACTIONS(3884), + [anon_sym_float] = ACTIONS(3884), + [anon_sym_range] = ACTIONS(3884), + [anon_sym_i8] = ACTIONS(3884), + [anon_sym_i16] = ACTIONS(3884), + [anon_sym_i32] = ACTIONS(3884), + [anon_sym_i64] = ACTIONS(3884), + [anon_sym_u8] = ACTIONS(3884), + [anon_sym_u16] = ACTIONS(3884), + [anon_sym_u32] = ACTIONS(3884), + [anon_sym_u64] = ACTIONS(3884), + [anon_sym_isize] = ACTIONS(3884), + [anon_sym_usize] = ACTIONS(3884), + [anon_sym_f32] = ACTIONS(3884), + [anon_sym_f64] = ACTIONS(3884), + [anon_sym_c_char] = ACTIONS(3884), + [anon_sym_c_schar] = ACTIONS(3884), + [anon_sym_c_uchar] = ACTIONS(3884), + [anon_sym_c_short] = ACTIONS(3884), + [anon_sym_c_ushort] = ACTIONS(3884), + [anon_sym_c_int] = ACTIONS(3884), + [anon_sym_c_uint] = ACTIONS(3884), + [anon_sym_c_long] = ACTIONS(3884), + [anon_sym_c_ulong] = ACTIONS(3884), + [anon_sym_c_longlong] = ACTIONS(3884), + [anon_sym_c_ulonglong] = ACTIONS(3884), + [anon_sym_c_float] = ACTIONS(3884), + [anon_sym_c_double] = ACTIONS(3884), + [anon_sym_c_longdouble] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_defer] = ACTIONS(3884), + [anon_sym_errdefer] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_expand] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3882), + [anon_sym_true] = ACTIONS(3884), + [anon_sym_false] = ACTIONS(3884), + [sym_none] = ACTIONS(3884), + [sym_undefined] = ACTIONS(3884), + [sym_sink] = ACTIONS(3884), + [sym_integer] = ACTIONS(3884), + [sym_float] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_multiline_string] = ACTIONS(3882), + [sym_character] = ACTIONS(3882), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4033), + [sym__newline] = ACTIONS(3882), }, [STATE(1694)] = { - [ts_builtin_sym_end] = ACTIONS(4037), - [sym_identifier] = ACTIONS(4039), - [anon_sym_import] = ACTIONS(4039), - [anon_sym_test] = ACTIONS(4039), - [anon_sym_hide] = ACTIONS(4039), - [anon_sym_func] = ACTIONS(4039), - [anon_sym_BANG] = ACTIONS(4037), - [anon_sym_struct] = ACTIONS(4039), - [anon_sym_LPAREN] = ACTIONS(4037), - [anon_sym_RPAREN] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4037), - [anon_sym_RBRACE] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(4037), - [anon_sym_DOLLAR] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(4037), - [anon_sym_void] = ACTIONS(4039), - [anon_sym_anyopaque] = ACTIONS(4039), - [anon_sym_bool] = ACTIONS(4039), - [anon_sym_int] = ACTIONS(4039), - [anon_sym_uint] = ACTIONS(4039), - [anon_sym_float] = ACTIONS(4039), - [anon_sym_range] = ACTIONS(4039), - [anon_sym_i8] = ACTIONS(4039), - [anon_sym_i16] = ACTIONS(4039), - [anon_sym_i32] = ACTIONS(4039), - [anon_sym_i64] = ACTIONS(4039), - [anon_sym_u8] = ACTIONS(4039), - [anon_sym_u16] = ACTIONS(4039), - [anon_sym_u32] = ACTIONS(4039), - [anon_sym_u64] = ACTIONS(4039), - [anon_sym_isize] = ACTIONS(4039), - [anon_sym_usize] = ACTIONS(4039), - [anon_sym_f32] = ACTIONS(4039), - [anon_sym_f64] = ACTIONS(4039), - [anon_sym_c_char] = ACTIONS(4039), - [anon_sym_c_schar] = ACTIONS(4039), - [anon_sym_c_uchar] = ACTIONS(4039), - [anon_sym_c_short] = ACTIONS(4039), - [anon_sym_c_ushort] = ACTIONS(4039), - [anon_sym_c_int] = ACTIONS(4039), - [anon_sym_c_uint] = ACTIONS(4039), - [anon_sym_c_long] = ACTIONS(4039), - [anon_sym_c_ulong] = ACTIONS(4039), - [anon_sym_c_longlong] = ACTIONS(4039), - [anon_sym_c_ulonglong] = ACTIONS(4039), - [anon_sym_c_float] = ACTIONS(4039), - [anon_sym_c_double] = ACTIONS(4039), - [anon_sym_c_longdouble] = ACTIONS(4039), - [anon_sym_return] = ACTIONS(4039), - [anon_sym_yield] = ACTIONS(4039), - [anon_sym_break] = ACTIONS(4039), - [anon_sym_continue] = ACTIONS(4039), - [anon_sym_defer] = ACTIONS(4039), - [anon_sym_errdefer] = ACTIONS(4039), - [anon_sym_if] = ACTIONS(4039), - [anon_sym_else] = ACTIONS(4039), - [anon_sym_while] = ACTIONS(4039), - [anon_sym_expand] = ACTIONS(4039), - [anon_sym_for] = ACTIONS(4039), - [anon_sym_match] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(4037), - [anon_sym_TILDE] = ACTIONS(4037), - [anon_sym_try] = ACTIONS(4039), - [anon_sym_DOT] = ACTIONS(4037), - [anon_sym_true] = ACTIONS(4039), - [anon_sym_false] = ACTIONS(4039), - [sym_none] = ACTIONS(4039), - [sym_undefined] = ACTIONS(4039), - [sym_sink] = ACTIONS(4039), - [sym_integer] = ACTIONS(4039), - [sym_float] = ACTIONS(4037), - [anon_sym_DQUOTE] = ACTIONS(4037), - [sym_multiline_string] = ACTIONS(4037), - [sym_character] = ACTIONS(4037), + [ts_builtin_sym_end] = ACTIONS(3886), + [sym_identifier] = ACTIONS(3888), + [anon_sym_import] = ACTIONS(3888), + [anon_sym_test] = ACTIONS(3888), + [anon_sym_hide] = ACTIONS(3888), + [anon_sym_func] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_void] = ACTIONS(3888), + [anon_sym_type] = ACTIONS(3888), + [anon_sym_anyopaque] = ACTIONS(3888), + [anon_sym_bool] = ACTIONS(3888), + [anon_sym_int] = ACTIONS(3888), + [anon_sym_uint] = ACTIONS(3888), + [anon_sym_float] = ACTIONS(3888), + [anon_sym_range] = ACTIONS(3888), + [anon_sym_i8] = ACTIONS(3888), + [anon_sym_i16] = ACTIONS(3888), + [anon_sym_i32] = ACTIONS(3888), + [anon_sym_i64] = ACTIONS(3888), + [anon_sym_u8] = ACTIONS(3888), + [anon_sym_u16] = ACTIONS(3888), + [anon_sym_u32] = ACTIONS(3888), + [anon_sym_u64] = ACTIONS(3888), + [anon_sym_isize] = ACTIONS(3888), + [anon_sym_usize] = ACTIONS(3888), + [anon_sym_f32] = ACTIONS(3888), + [anon_sym_f64] = ACTIONS(3888), + [anon_sym_c_char] = ACTIONS(3888), + [anon_sym_c_schar] = ACTIONS(3888), + [anon_sym_c_uchar] = ACTIONS(3888), + [anon_sym_c_short] = ACTIONS(3888), + [anon_sym_c_ushort] = ACTIONS(3888), + [anon_sym_c_int] = ACTIONS(3888), + [anon_sym_c_uint] = ACTIONS(3888), + [anon_sym_c_long] = ACTIONS(3888), + [anon_sym_c_ulong] = ACTIONS(3888), + [anon_sym_c_longlong] = ACTIONS(3888), + [anon_sym_c_ulonglong] = ACTIONS(3888), + [anon_sym_c_float] = ACTIONS(3888), + [anon_sym_c_double] = ACTIONS(3888), + [anon_sym_c_longdouble] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_break] = ACTIONS(3888), + [anon_sym_continue] = ACTIONS(3888), + [anon_sym_defer] = ACTIONS(3888), + [anon_sym_errdefer] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_else] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_expand] = ACTIONS(3888), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3886), + [anon_sym_true] = ACTIONS(3888), + [anon_sym_false] = ACTIONS(3888), + [sym_none] = ACTIONS(3888), + [sym_undefined] = ACTIONS(3888), + [sym_sink] = ACTIONS(3888), + [sym_integer] = ACTIONS(3888), + [sym_float] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_multiline_string] = ACTIONS(3886), + [sym_character] = ACTIONS(3886), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4037), + [sym__newline] = ACTIONS(3886), }, [STATE(1695)] = { - [ts_builtin_sym_end] = ACTIONS(4041), - [sym_identifier] = ACTIONS(4043), - [anon_sym_import] = ACTIONS(4043), - [anon_sym_test] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_func] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_struct] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4041), - [anon_sym_RPAREN] = ACTIONS(4041), - [anon_sym_LBRACE] = ACTIONS(4041), - [anon_sym_RBRACE] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_DOLLAR] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4041), - [anon_sym_void] = ACTIONS(4043), - [anon_sym_anyopaque] = ACTIONS(4043), - [anon_sym_bool] = ACTIONS(4043), - [anon_sym_int] = ACTIONS(4043), - [anon_sym_uint] = ACTIONS(4043), - [anon_sym_float] = ACTIONS(4043), - [anon_sym_range] = ACTIONS(4043), - [anon_sym_i8] = ACTIONS(4043), - [anon_sym_i16] = ACTIONS(4043), - [anon_sym_i32] = ACTIONS(4043), - [anon_sym_i64] = ACTIONS(4043), - [anon_sym_u8] = ACTIONS(4043), - [anon_sym_u16] = ACTIONS(4043), - [anon_sym_u32] = ACTIONS(4043), - [anon_sym_u64] = ACTIONS(4043), - [anon_sym_isize] = ACTIONS(4043), - [anon_sym_usize] = ACTIONS(4043), - [anon_sym_f32] = ACTIONS(4043), - [anon_sym_f64] = ACTIONS(4043), - [anon_sym_c_char] = ACTIONS(4043), - [anon_sym_c_schar] = ACTIONS(4043), - [anon_sym_c_uchar] = ACTIONS(4043), - [anon_sym_c_short] = ACTIONS(4043), - [anon_sym_c_ushort] = ACTIONS(4043), - [anon_sym_c_int] = ACTIONS(4043), - [anon_sym_c_uint] = ACTIONS(4043), - [anon_sym_c_long] = ACTIONS(4043), - [anon_sym_c_ulong] = ACTIONS(4043), - [anon_sym_c_longlong] = ACTIONS(4043), - [anon_sym_c_ulonglong] = ACTIONS(4043), - [anon_sym_c_float] = ACTIONS(4043), - [anon_sym_c_double] = ACTIONS(4043), - [anon_sym_c_longdouble] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_yield] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_defer] = ACTIONS(4043), - [anon_sym_errdefer] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_expand] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_TILDE] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [sym_none] = ACTIONS(4043), - [sym_undefined] = ACTIONS(4043), - [sym_sink] = ACTIONS(4043), - [sym_integer] = ACTIONS(4043), - [sym_float] = ACTIONS(4041), - [anon_sym_DQUOTE] = ACTIONS(4041), - [sym_multiline_string] = ACTIONS(4041), - [sym_character] = ACTIONS(4041), + [ts_builtin_sym_end] = ACTIONS(3890), + [sym_identifier] = ACTIONS(3892), + [anon_sym_import] = ACTIONS(3892), + [anon_sym_test] = ACTIONS(3892), + [anon_sym_hide] = ACTIONS(3892), + [anon_sym_func] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3892), + [anon_sym_LPAREN] = ACTIONS(3890), + [anon_sym_RPAREN] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3890), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_void] = ACTIONS(3892), + [anon_sym_type] = ACTIONS(3892), + [anon_sym_anyopaque] = ACTIONS(3892), + [anon_sym_bool] = ACTIONS(3892), + [anon_sym_int] = ACTIONS(3892), + [anon_sym_uint] = ACTIONS(3892), + [anon_sym_float] = ACTIONS(3892), + [anon_sym_range] = ACTIONS(3892), + [anon_sym_i8] = ACTIONS(3892), + [anon_sym_i16] = ACTIONS(3892), + [anon_sym_i32] = ACTIONS(3892), + [anon_sym_i64] = ACTIONS(3892), + [anon_sym_u8] = ACTIONS(3892), + [anon_sym_u16] = ACTIONS(3892), + [anon_sym_u32] = ACTIONS(3892), + [anon_sym_u64] = ACTIONS(3892), + [anon_sym_isize] = ACTIONS(3892), + [anon_sym_usize] = ACTIONS(3892), + [anon_sym_f32] = ACTIONS(3892), + [anon_sym_f64] = ACTIONS(3892), + [anon_sym_c_char] = ACTIONS(3892), + [anon_sym_c_schar] = ACTIONS(3892), + [anon_sym_c_uchar] = ACTIONS(3892), + [anon_sym_c_short] = ACTIONS(3892), + [anon_sym_c_ushort] = ACTIONS(3892), + [anon_sym_c_int] = ACTIONS(3892), + [anon_sym_c_uint] = ACTIONS(3892), + [anon_sym_c_long] = ACTIONS(3892), + [anon_sym_c_ulong] = ACTIONS(3892), + [anon_sym_c_longlong] = ACTIONS(3892), + [anon_sym_c_ulonglong] = ACTIONS(3892), + [anon_sym_c_float] = ACTIONS(3892), + [anon_sym_c_double] = ACTIONS(3892), + [anon_sym_c_longdouble] = ACTIONS(3892), + [anon_sym_return] = ACTIONS(3892), + [anon_sym_yield] = ACTIONS(3892), + [anon_sym_break] = ACTIONS(3892), + [anon_sym_continue] = ACTIONS(3892), + [anon_sym_defer] = ACTIONS(3892), + [anon_sym_errdefer] = ACTIONS(3892), + [anon_sym_if] = ACTIONS(3892), + [anon_sym_else] = ACTIONS(3892), + [anon_sym_while] = ACTIONS(3892), + [anon_sym_expand] = ACTIONS(3892), + [anon_sym_for] = ACTIONS(3892), + [anon_sym_match] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_TILDE] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3892), + [anon_sym_DOT] = ACTIONS(3890), + [anon_sym_true] = ACTIONS(3892), + [anon_sym_false] = ACTIONS(3892), + [sym_none] = ACTIONS(3892), + [sym_undefined] = ACTIONS(3892), + [sym_sink] = ACTIONS(3892), + [sym_integer] = ACTIONS(3892), + [sym_float] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(3890), + [sym_multiline_string] = ACTIONS(3890), + [sym_character] = ACTIONS(3890), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4041), + [sym__newline] = ACTIONS(3890), }, [STATE(1696)] = { - [ts_builtin_sym_end] = ACTIONS(4045), - [sym_identifier] = ACTIONS(4047), - [anon_sym_import] = ACTIONS(4047), - [anon_sym_test] = ACTIONS(4047), - [anon_sym_hide] = ACTIONS(4047), - [anon_sym_func] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4045), - [anon_sym_struct] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [anon_sym_DOLLAR] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_void] = ACTIONS(4047), - [anon_sym_anyopaque] = ACTIONS(4047), - [anon_sym_bool] = ACTIONS(4047), - [anon_sym_int] = ACTIONS(4047), - [anon_sym_uint] = ACTIONS(4047), - [anon_sym_float] = ACTIONS(4047), - [anon_sym_range] = ACTIONS(4047), - [anon_sym_i8] = ACTIONS(4047), - [anon_sym_i16] = ACTIONS(4047), - [anon_sym_i32] = ACTIONS(4047), - [anon_sym_i64] = ACTIONS(4047), - [anon_sym_u8] = ACTIONS(4047), - [anon_sym_u16] = ACTIONS(4047), - [anon_sym_u32] = ACTIONS(4047), - [anon_sym_u64] = ACTIONS(4047), - [anon_sym_isize] = ACTIONS(4047), - [anon_sym_usize] = ACTIONS(4047), - [anon_sym_f32] = ACTIONS(4047), - [anon_sym_f64] = ACTIONS(4047), - [anon_sym_c_char] = ACTIONS(4047), - [anon_sym_c_schar] = ACTIONS(4047), - [anon_sym_c_uchar] = ACTIONS(4047), - [anon_sym_c_short] = ACTIONS(4047), - [anon_sym_c_ushort] = ACTIONS(4047), - [anon_sym_c_int] = ACTIONS(4047), - [anon_sym_c_uint] = ACTIONS(4047), - [anon_sym_c_long] = ACTIONS(4047), - [anon_sym_c_ulong] = ACTIONS(4047), - [anon_sym_c_longlong] = ACTIONS(4047), - [anon_sym_c_ulonglong] = ACTIONS(4047), - [anon_sym_c_float] = ACTIONS(4047), - [anon_sym_c_double] = ACTIONS(4047), - [anon_sym_c_longdouble] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_yield] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_defer] = ACTIONS(4047), - [anon_sym_errdefer] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_expand] = ACTIONS(4047), - [anon_sym_for] = ACTIONS(4047), - [anon_sym_match] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4045), - [anon_sym_TILDE] = ACTIONS(4045), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4045), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [sym_none] = ACTIONS(4047), - [sym_undefined] = ACTIONS(4047), - [sym_sink] = ACTIONS(4047), - [sym_integer] = ACTIONS(4047), - [sym_float] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_multiline_string] = ACTIONS(4045), - [sym_character] = ACTIONS(4045), + [ts_builtin_sym_end] = ACTIONS(3894), + [sym_identifier] = ACTIONS(3896), + [anon_sym_import] = ACTIONS(3896), + [anon_sym_test] = ACTIONS(3896), + [anon_sym_hide] = ACTIONS(3896), + [anon_sym_func] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3896), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_RPAREN] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3894), + [anon_sym_RBRACE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_DOLLAR] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_void] = ACTIONS(3896), + [anon_sym_type] = ACTIONS(3896), + [anon_sym_anyopaque] = ACTIONS(3896), + [anon_sym_bool] = ACTIONS(3896), + [anon_sym_int] = ACTIONS(3896), + [anon_sym_uint] = ACTIONS(3896), + [anon_sym_float] = ACTIONS(3896), + [anon_sym_range] = ACTIONS(3896), + [anon_sym_i8] = ACTIONS(3896), + [anon_sym_i16] = ACTIONS(3896), + [anon_sym_i32] = ACTIONS(3896), + [anon_sym_i64] = ACTIONS(3896), + [anon_sym_u8] = ACTIONS(3896), + [anon_sym_u16] = ACTIONS(3896), + [anon_sym_u32] = ACTIONS(3896), + [anon_sym_u64] = ACTIONS(3896), + [anon_sym_isize] = ACTIONS(3896), + [anon_sym_usize] = ACTIONS(3896), + [anon_sym_f32] = ACTIONS(3896), + [anon_sym_f64] = ACTIONS(3896), + [anon_sym_c_char] = ACTIONS(3896), + [anon_sym_c_schar] = ACTIONS(3896), + [anon_sym_c_uchar] = ACTIONS(3896), + [anon_sym_c_short] = ACTIONS(3896), + [anon_sym_c_ushort] = ACTIONS(3896), + [anon_sym_c_int] = ACTIONS(3896), + [anon_sym_c_uint] = ACTIONS(3896), + [anon_sym_c_long] = ACTIONS(3896), + [anon_sym_c_ulong] = ACTIONS(3896), + [anon_sym_c_longlong] = ACTIONS(3896), + [anon_sym_c_ulonglong] = ACTIONS(3896), + [anon_sym_c_float] = ACTIONS(3896), + [anon_sym_c_double] = ACTIONS(3896), + [anon_sym_c_longdouble] = ACTIONS(3896), + [anon_sym_return] = ACTIONS(3896), + [anon_sym_yield] = ACTIONS(3896), + [anon_sym_break] = ACTIONS(3896), + [anon_sym_continue] = ACTIONS(3896), + [anon_sym_defer] = ACTIONS(3896), + [anon_sym_errdefer] = ACTIONS(3896), + [anon_sym_if] = ACTIONS(3896), + [anon_sym_else] = ACTIONS(3896), + [anon_sym_while] = ACTIONS(3896), + [anon_sym_expand] = ACTIONS(3896), + [anon_sym_for] = ACTIONS(3896), + [anon_sym_match] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3896), + [anon_sym_DOT] = ACTIONS(3894), + [anon_sym_true] = ACTIONS(3896), + [anon_sym_false] = ACTIONS(3896), + [sym_none] = ACTIONS(3896), + [sym_undefined] = ACTIONS(3896), + [sym_sink] = ACTIONS(3896), + [sym_integer] = ACTIONS(3896), + [sym_float] = ACTIONS(3894), + [anon_sym_DQUOTE] = ACTIONS(3894), + [sym_multiline_string] = ACTIONS(3894), + [sym_character] = ACTIONS(3894), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4045), + [sym__newline] = ACTIONS(3894), }, [STATE(1697)] = { - [ts_builtin_sym_end] = ACTIONS(4049), - [sym_identifier] = ACTIONS(4051), - [anon_sym_import] = ACTIONS(4051), - [anon_sym_test] = ACTIONS(4051), - [anon_sym_hide] = ACTIONS(4051), - [anon_sym_func] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4049), - [anon_sym_struct] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_DASH] = ACTIONS(4049), - [anon_sym_DOLLAR] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_void] = ACTIONS(4051), - [anon_sym_anyopaque] = ACTIONS(4051), - [anon_sym_bool] = ACTIONS(4051), - [anon_sym_int] = ACTIONS(4051), - [anon_sym_uint] = ACTIONS(4051), - [anon_sym_float] = ACTIONS(4051), - [anon_sym_range] = ACTIONS(4051), - [anon_sym_i8] = ACTIONS(4051), - [anon_sym_i16] = ACTIONS(4051), - [anon_sym_i32] = ACTIONS(4051), - [anon_sym_i64] = ACTIONS(4051), - [anon_sym_u8] = ACTIONS(4051), - [anon_sym_u16] = ACTIONS(4051), - [anon_sym_u32] = ACTIONS(4051), - [anon_sym_u64] = ACTIONS(4051), - [anon_sym_isize] = ACTIONS(4051), - [anon_sym_usize] = ACTIONS(4051), - [anon_sym_f32] = ACTIONS(4051), - [anon_sym_f64] = ACTIONS(4051), - [anon_sym_c_char] = ACTIONS(4051), - [anon_sym_c_schar] = ACTIONS(4051), - [anon_sym_c_uchar] = ACTIONS(4051), - [anon_sym_c_short] = ACTIONS(4051), - [anon_sym_c_ushort] = ACTIONS(4051), - [anon_sym_c_int] = ACTIONS(4051), - [anon_sym_c_uint] = ACTIONS(4051), - [anon_sym_c_long] = ACTIONS(4051), - [anon_sym_c_ulong] = ACTIONS(4051), - [anon_sym_c_longlong] = ACTIONS(4051), - [anon_sym_c_ulonglong] = ACTIONS(4051), - [anon_sym_c_float] = ACTIONS(4051), - [anon_sym_c_double] = ACTIONS(4051), - [anon_sym_c_longdouble] = ACTIONS(4051), - [anon_sym_return] = ACTIONS(4051), - [anon_sym_yield] = ACTIONS(4051), - [anon_sym_break] = ACTIONS(4051), - [anon_sym_continue] = ACTIONS(4051), - [anon_sym_defer] = ACTIONS(4051), - [anon_sym_errdefer] = ACTIONS(4051), - [anon_sym_if] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(4051), - [anon_sym_while] = ACTIONS(4051), - [anon_sym_expand] = ACTIONS(4051), - [anon_sym_for] = ACTIONS(4051), - [anon_sym_match] = ACTIONS(4051), - [anon_sym_AMP] = ACTIONS(4049), - [anon_sym_TILDE] = ACTIONS(4049), - [anon_sym_try] = ACTIONS(4051), - [anon_sym_DOT] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4051), - [anon_sym_false] = ACTIONS(4051), - [sym_none] = ACTIONS(4051), - [sym_undefined] = ACTIONS(4051), - [sym_sink] = ACTIONS(4051), - [sym_integer] = ACTIONS(4051), - [sym_float] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4049), - [sym_multiline_string] = ACTIONS(4049), - [sym_character] = ACTIONS(4049), + [ts_builtin_sym_end] = ACTIONS(3898), + [sym_identifier] = ACTIONS(3900), + [anon_sym_import] = ACTIONS(3900), + [anon_sym_test] = ACTIONS(3900), + [anon_sym_hide] = ACTIONS(3900), + [anon_sym_func] = ACTIONS(3900), + [anon_sym_BANG] = ACTIONS(3898), + [anon_sym_struct] = ACTIONS(3900), + [anon_sym_LPAREN] = ACTIONS(3898), + [anon_sym_RPAREN] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3898), + [anon_sym_RBRACE] = ACTIONS(3898), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_DOLLAR] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_void] = ACTIONS(3900), + [anon_sym_type] = ACTIONS(3900), + [anon_sym_anyopaque] = ACTIONS(3900), + [anon_sym_bool] = ACTIONS(3900), + [anon_sym_int] = ACTIONS(3900), + [anon_sym_uint] = ACTIONS(3900), + [anon_sym_float] = ACTIONS(3900), + [anon_sym_range] = ACTIONS(3900), + [anon_sym_i8] = ACTIONS(3900), + [anon_sym_i16] = ACTIONS(3900), + [anon_sym_i32] = ACTIONS(3900), + [anon_sym_i64] = ACTIONS(3900), + [anon_sym_u8] = ACTIONS(3900), + [anon_sym_u16] = ACTIONS(3900), + [anon_sym_u32] = ACTIONS(3900), + [anon_sym_u64] = ACTIONS(3900), + [anon_sym_isize] = ACTIONS(3900), + [anon_sym_usize] = ACTIONS(3900), + [anon_sym_f32] = ACTIONS(3900), + [anon_sym_f64] = ACTIONS(3900), + [anon_sym_c_char] = ACTIONS(3900), + [anon_sym_c_schar] = ACTIONS(3900), + [anon_sym_c_uchar] = ACTIONS(3900), + [anon_sym_c_short] = ACTIONS(3900), + [anon_sym_c_ushort] = ACTIONS(3900), + [anon_sym_c_int] = ACTIONS(3900), + [anon_sym_c_uint] = ACTIONS(3900), + [anon_sym_c_long] = ACTIONS(3900), + [anon_sym_c_ulong] = ACTIONS(3900), + [anon_sym_c_longlong] = ACTIONS(3900), + [anon_sym_c_ulonglong] = ACTIONS(3900), + [anon_sym_c_float] = ACTIONS(3900), + [anon_sym_c_double] = ACTIONS(3900), + [anon_sym_c_longdouble] = ACTIONS(3900), + [anon_sym_return] = ACTIONS(3900), + [anon_sym_yield] = ACTIONS(3900), + [anon_sym_break] = ACTIONS(3900), + [anon_sym_continue] = ACTIONS(3900), + [anon_sym_defer] = ACTIONS(3900), + [anon_sym_errdefer] = ACTIONS(3900), + [anon_sym_if] = ACTIONS(3900), + [anon_sym_else] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3900), + [anon_sym_expand] = ACTIONS(3900), + [anon_sym_for] = ACTIONS(3900), + [anon_sym_match] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_TILDE] = ACTIONS(3898), + [anon_sym_try] = ACTIONS(3900), + [anon_sym_DOT] = ACTIONS(3898), + [anon_sym_true] = ACTIONS(3900), + [anon_sym_false] = ACTIONS(3900), + [sym_none] = ACTIONS(3900), + [sym_undefined] = ACTIONS(3900), + [sym_sink] = ACTIONS(3900), + [sym_integer] = ACTIONS(3900), + [sym_float] = ACTIONS(3898), + [anon_sym_DQUOTE] = ACTIONS(3898), + [sym_multiline_string] = ACTIONS(3898), + [sym_character] = ACTIONS(3898), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4049), + [sym__newline] = ACTIONS(3898), }, [STATE(1698)] = { - [ts_builtin_sym_end] = ACTIONS(4053), - [sym_identifier] = ACTIONS(4055), - [anon_sym_import] = ACTIONS(4055), - [anon_sym_test] = ACTIONS(4055), - [anon_sym_hide] = ACTIONS(4055), - [anon_sym_func] = ACTIONS(4055), - [anon_sym_BANG] = ACTIONS(4053), - [anon_sym_struct] = ACTIONS(4055), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_RPAREN] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4053), - [anon_sym_RBRACE] = ACTIONS(4053), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4053), - [anon_sym_LBRACK] = ACTIONS(4053), - [anon_sym_void] = ACTIONS(4055), - [anon_sym_anyopaque] = ACTIONS(4055), - [anon_sym_bool] = ACTIONS(4055), - [anon_sym_int] = ACTIONS(4055), - [anon_sym_uint] = ACTIONS(4055), - [anon_sym_float] = ACTIONS(4055), - [anon_sym_range] = ACTIONS(4055), - [anon_sym_i8] = ACTIONS(4055), - [anon_sym_i16] = ACTIONS(4055), - [anon_sym_i32] = ACTIONS(4055), - [anon_sym_i64] = ACTIONS(4055), - [anon_sym_u8] = ACTIONS(4055), - [anon_sym_u16] = ACTIONS(4055), - [anon_sym_u32] = ACTIONS(4055), - [anon_sym_u64] = ACTIONS(4055), - [anon_sym_isize] = ACTIONS(4055), - [anon_sym_usize] = ACTIONS(4055), - [anon_sym_f32] = ACTIONS(4055), - [anon_sym_f64] = ACTIONS(4055), - [anon_sym_c_char] = ACTIONS(4055), - [anon_sym_c_schar] = ACTIONS(4055), - [anon_sym_c_uchar] = ACTIONS(4055), - [anon_sym_c_short] = ACTIONS(4055), - [anon_sym_c_ushort] = ACTIONS(4055), - [anon_sym_c_int] = ACTIONS(4055), - [anon_sym_c_uint] = ACTIONS(4055), - [anon_sym_c_long] = ACTIONS(4055), - [anon_sym_c_ulong] = ACTIONS(4055), - [anon_sym_c_longlong] = ACTIONS(4055), - [anon_sym_c_ulonglong] = ACTIONS(4055), - [anon_sym_c_float] = ACTIONS(4055), - [anon_sym_c_double] = ACTIONS(4055), - [anon_sym_c_longdouble] = ACTIONS(4055), - [anon_sym_return] = ACTIONS(4055), - [anon_sym_yield] = ACTIONS(4055), - [anon_sym_break] = ACTIONS(4055), - [anon_sym_continue] = ACTIONS(4055), - [anon_sym_defer] = ACTIONS(4055), - [anon_sym_errdefer] = ACTIONS(4055), - [anon_sym_if] = ACTIONS(4055), - [anon_sym_else] = ACTIONS(4055), - [anon_sym_while] = ACTIONS(4055), - [anon_sym_expand] = ACTIONS(4055), - [anon_sym_for] = ACTIONS(4055), - [anon_sym_match] = ACTIONS(4055), - [anon_sym_AMP] = ACTIONS(4053), - [anon_sym_TILDE] = ACTIONS(4053), - [anon_sym_try] = ACTIONS(4055), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_true] = ACTIONS(4055), - [anon_sym_false] = ACTIONS(4055), - [sym_none] = ACTIONS(4055), - [sym_undefined] = ACTIONS(4055), - [sym_sink] = ACTIONS(4055), - [sym_integer] = ACTIONS(4055), - [sym_float] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(4053), - [sym_multiline_string] = ACTIONS(4053), - [sym_character] = ACTIONS(4053), + [ts_builtin_sym_end] = ACTIONS(3902), + [sym_identifier] = ACTIONS(3904), + [anon_sym_import] = ACTIONS(3904), + [anon_sym_test] = ACTIONS(3904), + [anon_sym_hide] = ACTIONS(3904), + [anon_sym_func] = ACTIONS(3904), + [anon_sym_BANG] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3904), + [anon_sym_LPAREN] = ACTIONS(3902), + [anon_sym_RPAREN] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3902), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_DOLLAR] = ACTIONS(3902), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_void] = ACTIONS(3904), + [anon_sym_type] = ACTIONS(3904), + [anon_sym_anyopaque] = ACTIONS(3904), + [anon_sym_bool] = ACTIONS(3904), + [anon_sym_int] = ACTIONS(3904), + [anon_sym_uint] = ACTIONS(3904), + [anon_sym_float] = ACTIONS(3904), + [anon_sym_range] = ACTIONS(3904), + [anon_sym_i8] = ACTIONS(3904), + [anon_sym_i16] = ACTIONS(3904), + [anon_sym_i32] = ACTIONS(3904), + [anon_sym_i64] = ACTIONS(3904), + [anon_sym_u8] = ACTIONS(3904), + [anon_sym_u16] = ACTIONS(3904), + [anon_sym_u32] = ACTIONS(3904), + [anon_sym_u64] = ACTIONS(3904), + [anon_sym_isize] = ACTIONS(3904), + [anon_sym_usize] = ACTIONS(3904), + [anon_sym_f32] = ACTIONS(3904), + [anon_sym_f64] = ACTIONS(3904), + [anon_sym_c_char] = ACTIONS(3904), + [anon_sym_c_schar] = ACTIONS(3904), + [anon_sym_c_uchar] = ACTIONS(3904), + [anon_sym_c_short] = ACTIONS(3904), + [anon_sym_c_ushort] = ACTIONS(3904), + [anon_sym_c_int] = ACTIONS(3904), + [anon_sym_c_uint] = ACTIONS(3904), + [anon_sym_c_long] = ACTIONS(3904), + [anon_sym_c_ulong] = ACTIONS(3904), + [anon_sym_c_longlong] = ACTIONS(3904), + [anon_sym_c_ulonglong] = ACTIONS(3904), + [anon_sym_c_float] = ACTIONS(3904), + [anon_sym_c_double] = ACTIONS(3904), + [anon_sym_c_longdouble] = ACTIONS(3904), + [anon_sym_return] = ACTIONS(3904), + [anon_sym_yield] = ACTIONS(3904), + [anon_sym_break] = ACTIONS(3904), + [anon_sym_continue] = ACTIONS(3904), + [anon_sym_defer] = ACTIONS(3904), + [anon_sym_errdefer] = ACTIONS(3904), + [anon_sym_if] = ACTIONS(3904), + [anon_sym_else] = ACTIONS(3904), + [anon_sym_while] = ACTIONS(3904), + [anon_sym_expand] = ACTIONS(3904), + [anon_sym_for] = ACTIONS(3904), + [anon_sym_match] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3902), + [anon_sym_TILDE] = ACTIONS(3902), + [anon_sym_try] = ACTIONS(3904), + [anon_sym_DOT] = ACTIONS(3902), + [anon_sym_true] = ACTIONS(3904), + [anon_sym_false] = ACTIONS(3904), + [sym_none] = ACTIONS(3904), + [sym_undefined] = ACTIONS(3904), + [sym_sink] = ACTIONS(3904), + [sym_integer] = ACTIONS(3904), + [sym_float] = ACTIONS(3902), + [anon_sym_DQUOTE] = ACTIONS(3902), + [sym_multiline_string] = ACTIONS(3902), + [sym_character] = ACTIONS(3902), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4053), + [sym__newline] = ACTIONS(3902), }, [STATE(1699)] = { - [ts_builtin_sym_end] = ACTIONS(4057), - [sym_identifier] = ACTIONS(4059), - [anon_sym_import] = ACTIONS(4059), - [anon_sym_test] = ACTIONS(4059), - [anon_sym_hide] = ACTIONS(4059), - [anon_sym_func] = ACTIONS(4059), - [anon_sym_BANG] = ACTIONS(4057), - [anon_sym_struct] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4057), - [anon_sym_RPAREN] = ACTIONS(4057), - [anon_sym_LBRACE] = ACTIONS(4057), - [anon_sym_RBRACE] = ACTIONS(4057), - [anon_sym_DASH] = ACTIONS(4057), - [anon_sym_DOLLAR] = ACTIONS(4057), - [anon_sym_LBRACK] = ACTIONS(4057), - [anon_sym_void] = ACTIONS(4059), - [anon_sym_anyopaque] = ACTIONS(4059), - [anon_sym_bool] = ACTIONS(4059), - [anon_sym_int] = ACTIONS(4059), - [anon_sym_uint] = ACTIONS(4059), - [anon_sym_float] = ACTIONS(4059), - [anon_sym_range] = ACTIONS(4059), - [anon_sym_i8] = ACTIONS(4059), - [anon_sym_i16] = ACTIONS(4059), - [anon_sym_i32] = ACTIONS(4059), - [anon_sym_i64] = ACTIONS(4059), - [anon_sym_u8] = ACTIONS(4059), - [anon_sym_u16] = ACTIONS(4059), - [anon_sym_u32] = ACTIONS(4059), - [anon_sym_u64] = ACTIONS(4059), - [anon_sym_isize] = ACTIONS(4059), - [anon_sym_usize] = ACTIONS(4059), - [anon_sym_f32] = ACTIONS(4059), - [anon_sym_f64] = ACTIONS(4059), - [anon_sym_c_char] = ACTIONS(4059), - [anon_sym_c_schar] = ACTIONS(4059), - [anon_sym_c_uchar] = ACTIONS(4059), - [anon_sym_c_short] = ACTIONS(4059), - [anon_sym_c_ushort] = ACTIONS(4059), - [anon_sym_c_int] = ACTIONS(4059), - [anon_sym_c_uint] = ACTIONS(4059), - [anon_sym_c_long] = ACTIONS(4059), - [anon_sym_c_ulong] = ACTIONS(4059), - [anon_sym_c_longlong] = ACTIONS(4059), - [anon_sym_c_ulonglong] = ACTIONS(4059), - [anon_sym_c_float] = ACTIONS(4059), - [anon_sym_c_double] = ACTIONS(4059), - [anon_sym_c_longdouble] = ACTIONS(4059), - [anon_sym_return] = ACTIONS(4059), - [anon_sym_yield] = ACTIONS(4059), - [anon_sym_break] = ACTIONS(4059), - [anon_sym_continue] = ACTIONS(4059), - [anon_sym_defer] = ACTIONS(4059), - [anon_sym_errdefer] = ACTIONS(4059), - [anon_sym_if] = ACTIONS(4059), - [anon_sym_else] = ACTIONS(4059), - [anon_sym_while] = ACTIONS(4059), - [anon_sym_expand] = ACTIONS(4059), - [anon_sym_for] = ACTIONS(4059), - [anon_sym_match] = ACTIONS(4059), - [anon_sym_AMP] = ACTIONS(4057), - [anon_sym_TILDE] = ACTIONS(4057), - [anon_sym_try] = ACTIONS(4059), - [anon_sym_DOT] = ACTIONS(4057), - [anon_sym_true] = ACTIONS(4059), - [anon_sym_false] = ACTIONS(4059), - [sym_none] = ACTIONS(4059), - [sym_undefined] = ACTIONS(4059), - [sym_sink] = ACTIONS(4059), - [sym_integer] = ACTIONS(4059), - [sym_float] = ACTIONS(4057), - [anon_sym_DQUOTE] = ACTIONS(4057), - [sym_multiline_string] = ACTIONS(4057), - [sym_character] = ACTIONS(4057), + [ts_builtin_sym_end] = ACTIONS(3906), + [sym_identifier] = ACTIONS(3908), + [anon_sym_import] = ACTIONS(3908), + [anon_sym_test] = ACTIONS(3908), + [anon_sym_hide] = ACTIONS(3908), + [anon_sym_func] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_RPAREN] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_void] = ACTIONS(3908), + [anon_sym_type] = ACTIONS(3908), + [anon_sym_anyopaque] = ACTIONS(3908), + [anon_sym_bool] = ACTIONS(3908), + [anon_sym_int] = ACTIONS(3908), + [anon_sym_uint] = ACTIONS(3908), + [anon_sym_float] = ACTIONS(3908), + [anon_sym_range] = ACTIONS(3908), + [anon_sym_i8] = ACTIONS(3908), + [anon_sym_i16] = ACTIONS(3908), + [anon_sym_i32] = ACTIONS(3908), + [anon_sym_i64] = ACTIONS(3908), + [anon_sym_u8] = ACTIONS(3908), + [anon_sym_u16] = ACTIONS(3908), + [anon_sym_u32] = ACTIONS(3908), + [anon_sym_u64] = ACTIONS(3908), + [anon_sym_isize] = ACTIONS(3908), + [anon_sym_usize] = ACTIONS(3908), + [anon_sym_f32] = ACTIONS(3908), + [anon_sym_f64] = ACTIONS(3908), + [anon_sym_c_char] = ACTIONS(3908), + [anon_sym_c_schar] = ACTIONS(3908), + [anon_sym_c_uchar] = ACTIONS(3908), + [anon_sym_c_short] = ACTIONS(3908), + [anon_sym_c_ushort] = ACTIONS(3908), + [anon_sym_c_int] = ACTIONS(3908), + [anon_sym_c_uint] = ACTIONS(3908), + [anon_sym_c_long] = ACTIONS(3908), + [anon_sym_c_ulong] = ACTIONS(3908), + [anon_sym_c_longlong] = ACTIONS(3908), + [anon_sym_c_ulonglong] = ACTIONS(3908), + [anon_sym_c_float] = ACTIONS(3908), + [anon_sym_c_double] = ACTIONS(3908), + [anon_sym_c_longdouble] = ACTIONS(3908), + [anon_sym_return] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3908), + [anon_sym_break] = ACTIONS(3908), + [anon_sym_continue] = ACTIONS(3908), + [anon_sym_defer] = ACTIONS(3908), + [anon_sym_errdefer] = ACTIONS(3908), + [anon_sym_if] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3908), + [anon_sym_while] = ACTIONS(3908), + [anon_sym_expand] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3908), + [anon_sym_match] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3908), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [sym_none] = ACTIONS(3908), + [sym_undefined] = ACTIONS(3908), + [sym_sink] = ACTIONS(3908), + [sym_integer] = ACTIONS(3908), + [sym_float] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [sym_multiline_string] = ACTIONS(3906), + [sym_character] = ACTIONS(3906), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4057), + [sym__newline] = ACTIONS(3906), }, [STATE(1700)] = { - [ts_builtin_sym_end] = ACTIONS(4061), - [sym_identifier] = ACTIONS(4063), - [anon_sym_import] = ACTIONS(4063), - [anon_sym_test] = ACTIONS(4063), - [anon_sym_hide] = ACTIONS(4063), - [anon_sym_func] = ACTIONS(4063), - [anon_sym_BANG] = ACTIONS(4061), - [anon_sym_struct] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_RPAREN] = ACTIONS(4061), - [anon_sym_LBRACE] = ACTIONS(4061), - [anon_sym_RBRACE] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(4061), - [anon_sym_void] = ACTIONS(4063), - [anon_sym_anyopaque] = ACTIONS(4063), - [anon_sym_bool] = ACTIONS(4063), - [anon_sym_int] = ACTIONS(4063), - [anon_sym_uint] = ACTIONS(4063), - [anon_sym_float] = ACTIONS(4063), - [anon_sym_range] = ACTIONS(4063), - [anon_sym_i8] = ACTIONS(4063), - [anon_sym_i16] = ACTIONS(4063), - [anon_sym_i32] = ACTIONS(4063), - [anon_sym_i64] = ACTIONS(4063), - [anon_sym_u8] = ACTIONS(4063), - [anon_sym_u16] = ACTIONS(4063), - [anon_sym_u32] = ACTIONS(4063), - [anon_sym_u64] = ACTIONS(4063), - [anon_sym_isize] = ACTIONS(4063), - [anon_sym_usize] = ACTIONS(4063), - [anon_sym_f32] = ACTIONS(4063), - [anon_sym_f64] = ACTIONS(4063), - [anon_sym_c_char] = ACTIONS(4063), - [anon_sym_c_schar] = ACTIONS(4063), - [anon_sym_c_uchar] = ACTIONS(4063), - [anon_sym_c_short] = ACTIONS(4063), - [anon_sym_c_ushort] = ACTIONS(4063), - [anon_sym_c_int] = ACTIONS(4063), - [anon_sym_c_uint] = ACTIONS(4063), - [anon_sym_c_long] = ACTIONS(4063), - [anon_sym_c_ulong] = ACTIONS(4063), - [anon_sym_c_longlong] = ACTIONS(4063), - [anon_sym_c_ulonglong] = ACTIONS(4063), - [anon_sym_c_float] = ACTIONS(4063), - [anon_sym_c_double] = ACTIONS(4063), - [anon_sym_c_longdouble] = ACTIONS(4063), - [anon_sym_return] = ACTIONS(4063), - [anon_sym_yield] = ACTIONS(4063), - [anon_sym_break] = ACTIONS(4063), - [anon_sym_continue] = ACTIONS(4063), - [anon_sym_defer] = ACTIONS(4063), - [anon_sym_errdefer] = ACTIONS(4063), - [anon_sym_if] = ACTIONS(4063), - [anon_sym_else] = ACTIONS(4063), - [anon_sym_while] = ACTIONS(4063), - [anon_sym_expand] = ACTIONS(4063), - [anon_sym_for] = ACTIONS(4063), - [anon_sym_match] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(4061), - [anon_sym_TILDE] = ACTIONS(4061), - [anon_sym_try] = ACTIONS(4063), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_true] = ACTIONS(4063), - [anon_sym_false] = ACTIONS(4063), - [sym_none] = ACTIONS(4063), - [sym_undefined] = ACTIONS(4063), - [sym_sink] = ACTIONS(4063), - [sym_integer] = ACTIONS(4063), - [sym_float] = ACTIONS(4061), - [anon_sym_DQUOTE] = ACTIONS(4061), - [sym_multiline_string] = ACTIONS(4061), - [sym_character] = ACTIONS(4061), + [ts_builtin_sym_end] = ACTIONS(3910), + [sym_identifier] = ACTIONS(3912), + [anon_sym_import] = ACTIONS(3912), + [anon_sym_test] = ACTIONS(3912), + [anon_sym_hide] = ACTIONS(3912), + [anon_sym_func] = ACTIONS(3912), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_struct] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_void] = ACTIONS(3912), + [anon_sym_type] = ACTIONS(3912), + [anon_sym_anyopaque] = ACTIONS(3912), + [anon_sym_bool] = ACTIONS(3912), + [anon_sym_int] = ACTIONS(3912), + [anon_sym_uint] = ACTIONS(3912), + [anon_sym_float] = ACTIONS(3912), + [anon_sym_range] = ACTIONS(3912), + [anon_sym_i8] = ACTIONS(3912), + [anon_sym_i16] = ACTIONS(3912), + [anon_sym_i32] = ACTIONS(3912), + [anon_sym_i64] = ACTIONS(3912), + [anon_sym_u8] = ACTIONS(3912), + [anon_sym_u16] = ACTIONS(3912), + [anon_sym_u32] = ACTIONS(3912), + [anon_sym_u64] = ACTIONS(3912), + [anon_sym_isize] = ACTIONS(3912), + [anon_sym_usize] = ACTIONS(3912), + [anon_sym_f32] = ACTIONS(3912), + [anon_sym_f64] = ACTIONS(3912), + [anon_sym_c_char] = ACTIONS(3912), + [anon_sym_c_schar] = ACTIONS(3912), + [anon_sym_c_uchar] = ACTIONS(3912), + [anon_sym_c_short] = ACTIONS(3912), + [anon_sym_c_ushort] = ACTIONS(3912), + [anon_sym_c_int] = ACTIONS(3912), + [anon_sym_c_uint] = ACTIONS(3912), + [anon_sym_c_long] = ACTIONS(3912), + [anon_sym_c_ulong] = ACTIONS(3912), + [anon_sym_c_longlong] = ACTIONS(3912), + [anon_sym_c_ulonglong] = ACTIONS(3912), + [anon_sym_c_float] = ACTIONS(3912), + [anon_sym_c_double] = ACTIONS(3912), + [anon_sym_c_longdouble] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_defer] = ACTIONS(3912), + [anon_sym_errdefer] = ACTIONS(3912), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_while] = ACTIONS(3912), + [anon_sym_expand] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3912), + [anon_sym_match] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_true] = ACTIONS(3912), + [anon_sym_false] = ACTIONS(3912), + [sym_none] = ACTIONS(3912), + [sym_undefined] = ACTIONS(3912), + [sym_sink] = ACTIONS(3912), + [sym_integer] = ACTIONS(3912), + [sym_float] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [sym_multiline_string] = ACTIONS(3910), + [sym_character] = ACTIONS(3910), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4061), + [sym__newline] = ACTIONS(3910), }, [STATE(1701)] = { - [ts_builtin_sym_end] = ACTIONS(4065), - [sym_identifier] = ACTIONS(4067), - [anon_sym_import] = ACTIONS(4067), - [anon_sym_test] = ACTIONS(4067), - [anon_sym_hide] = ACTIONS(4067), - [anon_sym_func] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_struct] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4065), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_RBRACE] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(4065), - [anon_sym_void] = ACTIONS(4067), - [anon_sym_anyopaque] = ACTIONS(4067), - [anon_sym_bool] = ACTIONS(4067), - [anon_sym_int] = ACTIONS(4067), - [anon_sym_uint] = ACTIONS(4067), - [anon_sym_float] = ACTIONS(4067), - [anon_sym_range] = ACTIONS(4067), - [anon_sym_i8] = ACTIONS(4067), - [anon_sym_i16] = ACTIONS(4067), - [anon_sym_i32] = ACTIONS(4067), - [anon_sym_i64] = ACTIONS(4067), - [anon_sym_u8] = ACTIONS(4067), - [anon_sym_u16] = ACTIONS(4067), - [anon_sym_u32] = ACTIONS(4067), - [anon_sym_u64] = ACTIONS(4067), - [anon_sym_isize] = ACTIONS(4067), - [anon_sym_usize] = ACTIONS(4067), - [anon_sym_f32] = ACTIONS(4067), - [anon_sym_f64] = ACTIONS(4067), - [anon_sym_c_char] = ACTIONS(4067), - [anon_sym_c_schar] = ACTIONS(4067), - [anon_sym_c_uchar] = ACTIONS(4067), - [anon_sym_c_short] = ACTIONS(4067), - [anon_sym_c_ushort] = ACTIONS(4067), - [anon_sym_c_int] = ACTIONS(4067), - [anon_sym_c_uint] = ACTIONS(4067), - [anon_sym_c_long] = ACTIONS(4067), - [anon_sym_c_ulong] = ACTIONS(4067), - [anon_sym_c_longlong] = ACTIONS(4067), - [anon_sym_c_ulonglong] = ACTIONS(4067), - [anon_sym_c_float] = ACTIONS(4067), - [anon_sym_c_double] = ACTIONS(4067), - [anon_sym_c_longdouble] = ACTIONS(4067), - [anon_sym_return] = ACTIONS(4067), - [anon_sym_yield] = ACTIONS(4067), - [anon_sym_break] = ACTIONS(4067), - [anon_sym_continue] = ACTIONS(4067), - [anon_sym_defer] = ACTIONS(4067), - [anon_sym_errdefer] = ACTIONS(4067), - [anon_sym_if] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4067), - [anon_sym_while] = ACTIONS(4067), - [anon_sym_expand] = ACTIONS(4067), - [anon_sym_for] = ACTIONS(4067), - [anon_sym_match] = ACTIONS(4067), - [anon_sym_AMP] = ACTIONS(4065), - [anon_sym_TILDE] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4067), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_true] = ACTIONS(4067), - [anon_sym_false] = ACTIONS(4067), - [sym_none] = ACTIONS(4067), - [sym_undefined] = ACTIONS(4067), - [sym_sink] = ACTIONS(4067), - [sym_integer] = ACTIONS(4067), - [sym_float] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [sym_multiline_string] = ACTIONS(4065), - [sym_character] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(3914), + [sym_identifier] = ACTIONS(3916), + [anon_sym_import] = ACTIONS(3916), + [anon_sym_test] = ACTIONS(3916), + [anon_sym_hide] = ACTIONS(3916), + [anon_sym_func] = ACTIONS(3916), + [anon_sym_BANG] = ACTIONS(3914), + [anon_sym_struct] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_RPAREN] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_void] = ACTIONS(3916), + [anon_sym_type] = ACTIONS(3916), + [anon_sym_anyopaque] = ACTIONS(3916), + [anon_sym_bool] = ACTIONS(3916), + [anon_sym_int] = ACTIONS(3916), + [anon_sym_uint] = ACTIONS(3916), + [anon_sym_float] = ACTIONS(3916), + [anon_sym_range] = ACTIONS(3916), + [anon_sym_i8] = ACTIONS(3916), + [anon_sym_i16] = ACTIONS(3916), + [anon_sym_i32] = ACTIONS(3916), + [anon_sym_i64] = ACTIONS(3916), + [anon_sym_u8] = ACTIONS(3916), + [anon_sym_u16] = ACTIONS(3916), + [anon_sym_u32] = ACTIONS(3916), + [anon_sym_u64] = ACTIONS(3916), + [anon_sym_isize] = ACTIONS(3916), + [anon_sym_usize] = ACTIONS(3916), + [anon_sym_f32] = ACTIONS(3916), + [anon_sym_f64] = ACTIONS(3916), + [anon_sym_c_char] = ACTIONS(3916), + [anon_sym_c_schar] = ACTIONS(3916), + [anon_sym_c_uchar] = ACTIONS(3916), + [anon_sym_c_short] = ACTIONS(3916), + [anon_sym_c_ushort] = ACTIONS(3916), + [anon_sym_c_int] = ACTIONS(3916), + [anon_sym_c_uint] = ACTIONS(3916), + [anon_sym_c_long] = ACTIONS(3916), + [anon_sym_c_ulong] = ACTIONS(3916), + [anon_sym_c_longlong] = ACTIONS(3916), + [anon_sym_c_ulonglong] = ACTIONS(3916), + [anon_sym_c_float] = ACTIONS(3916), + [anon_sym_c_double] = ACTIONS(3916), + [anon_sym_c_longdouble] = ACTIONS(3916), + [anon_sym_return] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3916), + [anon_sym_break] = ACTIONS(3916), + [anon_sym_continue] = ACTIONS(3916), + [anon_sym_defer] = ACTIONS(3916), + [anon_sym_errdefer] = ACTIONS(3916), + [anon_sym_if] = ACTIONS(3916), + [anon_sym_else] = ACTIONS(3916), + [anon_sym_while] = ACTIONS(3916), + [anon_sym_expand] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3916), + [anon_sym_match] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3916), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3916), + [anon_sym_false] = ACTIONS(3916), + [sym_none] = ACTIONS(3916), + [sym_undefined] = ACTIONS(3916), + [sym_sink] = ACTIONS(3916), + [sym_integer] = ACTIONS(3916), + [sym_float] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [sym_multiline_string] = ACTIONS(3914), + [sym_character] = ACTIONS(3914), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4065), + [sym__newline] = ACTIONS(3914), }, [STATE(1702)] = { - [ts_builtin_sym_end] = ACTIONS(4069), - [sym_identifier] = ACTIONS(4071), - [anon_sym_import] = ACTIONS(4071), - [anon_sym_test] = ACTIONS(4071), - [anon_sym_hide] = ACTIONS(4071), - [anon_sym_func] = ACTIONS(4071), - [anon_sym_BANG] = ACTIONS(4069), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_LPAREN] = ACTIONS(4069), - [anon_sym_RPAREN] = ACTIONS(4069), - [anon_sym_LBRACE] = ACTIONS(4069), - [anon_sym_RBRACE] = ACTIONS(4069), - [anon_sym_DASH] = ACTIONS(4069), - [anon_sym_DOLLAR] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(4069), - [anon_sym_void] = ACTIONS(4071), - [anon_sym_anyopaque] = ACTIONS(4071), - [anon_sym_bool] = ACTIONS(4071), - [anon_sym_int] = ACTIONS(4071), - [anon_sym_uint] = ACTIONS(4071), - [anon_sym_float] = ACTIONS(4071), - [anon_sym_range] = ACTIONS(4071), - [anon_sym_i8] = ACTIONS(4071), - [anon_sym_i16] = ACTIONS(4071), - [anon_sym_i32] = ACTIONS(4071), - [anon_sym_i64] = ACTIONS(4071), - [anon_sym_u8] = ACTIONS(4071), - [anon_sym_u16] = ACTIONS(4071), - [anon_sym_u32] = ACTIONS(4071), - [anon_sym_u64] = ACTIONS(4071), - [anon_sym_isize] = ACTIONS(4071), - [anon_sym_usize] = ACTIONS(4071), - [anon_sym_f32] = ACTIONS(4071), - [anon_sym_f64] = ACTIONS(4071), - [anon_sym_c_char] = ACTIONS(4071), - [anon_sym_c_schar] = ACTIONS(4071), - [anon_sym_c_uchar] = ACTIONS(4071), - [anon_sym_c_short] = ACTIONS(4071), - [anon_sym_c_ushort] = ACTIONS(4071), - [anon_sym_c_int] = ACTIONS(4071), - [anon_sym_c_uint] = ACTIONS(4071), - [anon_sym_c_long] = ACTIONS(4071), - [anon_sym_c_ulong] = ACTIONS(4071), - [anon_sym_c_longlong] = ACTIONS(4071), - [anon_sym_c_ulonglong] = ACTIONS(4071), - [anon_sym_c_float] = ACTIONS(4071), - [anon_sym_c_double] = ACTIONS(4071), - [anon_sym_c_longdouble] = ACTIONS(4071), - [anon_sym_return] = ACTIONS(4071), - [anon_sym_yield] = ACTIONS(4071), - [anon_sym_break] = ACTIONS(4071), - [anon_sym_continue] = ACTIONS(4071), - [anon_sym_defer] = ACTIONS(4071), - [anon_sym_errdefer] = ACTIONS(4071), - [anon_sym_if] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(4071), - [anon_sym_while] = ACTIONS(4071), - [anon_sym_expand] = ACTIONS(4071), - [anon_sym_for] = ACTIONS(4071), - [anon_sym_match] = ACTIONS(4071), - [anon_sym_AMP] = ACTIONS(4069), - [anon_sym_TILDE] = ACTIONS(4069), - [anon_sym_try] = ACTIONS(4071), - [anon_sym_DOT] = ACTIONS(4069), - [anon_sym_true] = ACTIONS(4071), - [anon_sym_false] = ACTIONS(4071), - [sym_none] = ACTIONS(4071), - [sym_undefined] = ACTIONS(4071), - [sym_sink] = ACTIONS(4071), - [sym_integer] = ACTIONS(4071), - [sym_float] = ACTIONS(4069), - [anon_sym_DQUOTE] = ACTIONS(4069), - [sym_multiline_string] = ACTIONS(4069), - [sym_character] = ACTIONS(4069), + [ts_builtin_sym_end] = ACTIONS(3918), + [sym_identifier] = ACTIONS(3920), + [anon_sym_import] = ACTIONS(3920), + [anon_sym_test] = ACTIONS(3920), + [anon_sym_hide] = ACTIONS(3920), + [anon_sym_func] = ACTIONS(3920), + [anon_sym_BANG] = ACTIONS(3918), + [anon_sym_struct] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3918), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_RBRACE] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_DOLLAR] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3918), + [anon_sym_void] = ACTIONS(3920), + [anon_sym_type] = ACTIONS(3920), + [anon_sym_anyopaque] = ACTIONS(3920), + [anon_sym_bool] = ACTIONS(3920), + [anon_sym_int] = ACTIONS(3920), + [anon_sym_uint] = ACTIONS(3920), + [anon_sym_float] = ACTIONS(3920), + [anon_sym_range] = ACTIONS(3920), + [anon_sym_i8] = ACTIONS(3920), + [anon_sym_i16] = ACTIONS(3920), + [anon_sym_i32] = ACTIONS(3920), + [anon_sym_i64] = ACTIONS(3920), + [anon_sym_u8] = ACTIONS(3920), + [anon_sym_u16] = ACTIONS(3920), + [anon_sym_u32] = ACTIONS(3920), + [anon_sym_u64] = ACTIONS(3920), + [anon_sym_isize] = ACTIONS(3920), + [anon_sym_usize] = ACTIONS(3920), + [anon_sym_f32] = ACTIONS(3920), + [anon_sym_f64] = ACTIONS(3920), + [anon_sym_c_char] = ACTIONS(3920), + [anon_sym_c_schar] = ACTIONS(3920), + [anon_sym_c_uchar] = ACTIONS(3920), + [anon_sym_c_short] = ACTIONS(3920), + [anon_sym_c_ushort] = ACTIONS(3920), + [anon_sym_c_int] = ACTIONS(3920), + [anon_sym_c_uint] = ACTIONS(3920), + [anon_sym_c_long] = ACTIONS(3920), + [anon_sym_c_ulong] = ACTIONS(3920), + [anon_sym_c_longlong] = ACTIONS(3920), + [anon_sym_c_ulonglong] = ACTIONS(3920), + [anon_sym_c_float] = ACTIONS(3920), + [anon_sym_c_double] = ACTIONS(3920), + [anon_sym_c_longdouble] = ACTIONS(3920), + [anon_sym_return] = ACTIONS(3920), + [anon_sym_yield] = ACTIONS(3920), + [anon_sym_break] = ACTIONS(3920), + [anon_sym_continue] = ACTIONS(3920), + [anon_sym_defer] = ACTIONS(3920), + [anon_sym_errdefer] = ACTIONS(3920), + [anon_sym_if] = ACTIONS(3920), + [anon_sym_else] = ACTIONS(3920), + [anon_sym_while] = ACTIONS(3920), + [anon_sym_expand] = ACTIONS(3920), + [anon_sym_for] = ACTIONS(3920), + [anon_sym_match] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_TILDE] = ACTIONS(3918), + [anon_sym_try] = ACTIONS(3920), + [anon_sym_DOT] = ACTIONS(3918), + [anon_sym_true] = ACTIONS(3920), + [anon_sym_false] = ACTIONS(3920), + [sym_none] = ACTIONS(3920), + [sym_undefined] = ACTIONS(3920), + [sym_sink] = ACTIONS(3920), + [sym_integer] = ACTIONS(3920), + [sym_float] = ACTIONS(3918), + [anon_sym_DQUOTE] = ACTIONS(3918), + [sym_multiline_string] = ACTIONS(3918), + [sym_character] = ACTIONS(3918), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4069), + [sym__newline] = ACTIONS(3918), }, [STATE(1703)] = { - [ts_builtin_sym_end] = ACTIONS(4073), - [sym_identifier] = ACTIONS(4075), - [anon_sym_import] = ACTIONS(4075), - [anon_sym_test] = ACTIONS(4075), - [anon_sym_hide] = ACTIONS(4075), - [anon_sym_func] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4073), - [anon_sym_struct] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4073), - [anon_sym_RPAREN] = ACTIONS(4073), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4073), - [anon_sym_DASH] = ACTIONS(4073), - [anon_sym_DOLLAR] = ACTIONS(4073), - [anon_sym_LBRACK] = ACTIONS(4073), - [anon_sym_void] = ACTIONS(4075), - [anon_sym_anyopaque] = ACTIONS(4075), - [anon_sym_bool] = ACTIONS(4075), - [anon_sym_int] = ACTIONS(4075), - [anon_sym_uint] = ACTIONS(4075), - [anon_sym_float] = ACTIONS(4075), - [anon_sym_range] = ACTIONS(4075), - [anon_sym_i8] = ACTIONS(4075), - [anon_sym_i16] = ACTIONS(4075), - [anon_sym_i32] = ACTIONS(4075), - [anon_sym_i64] = ACTIONS(4075), - [anon_sym_u8] = ACTIONS(4075), - [anon_sym_u16] = ACTIONS(4075), - [anon_sym_u32] = ACTIONS(4075), - [anon_sym_u64] = ACTIONS(4075), - [anon_sym_isize] = ACTIONS(4075), - [anon_sym_usize] = ACTIONS(4075), - [anon_sym_f32] = ACTIONS(4075), - [anon_sym_f64] = ACTIONS(4075), - [anon_sym_c_char] = ACTIONS(4075), - [anon_sym_c_schar] = ACTIONS(4075), - [anon_sym_c_uchar] = ACTIONS(4075), - [anon_sym_c_short] = ACTIONS(4075), - [anon_sym_c_ushort] = ACTIONS(4075), - [anon_sym_c_int] = ACTIONS(4075), - [anon_sym_c_uint] = ACTIONS(4075), - [anon_sym_c_long] = ACTIONS(4075), - [anon_sym_c_ulong] = ACTIONS(4075), - [anon_sym_c_longlong] = ACTIONS(4075), - [anon_sym_c_ulonglong] = ACTIONS(4075), - [anon_sym_c_float] = ACTIONS(4075), - [anon_sym_c_double] = ACTIONS(4075), - [anon_sym_c_longdouble] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_yield] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_defer] = ACTIONS(4075), - [anon_sym_errdefer] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_expand] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [anon_sym_match] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4073), - [anon_sym_TILDE] = ACTIONS(4073), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(4073), - [anon_sym_true] = ACTIONS(4075), - [anon_sym_false] = ACTIONS(4075), - [sym_none] = ACTIONS(4075), - [sym_undefined] = ACTIONS(4075), - [sym_sink] = ACTIONS(4075), - [sym_integer] = ACTIONS(4075), - [sym_float] = ACTIONS(4073), - [anon_sym_DQUOTE] = ACTIONS(4073), - [sym_multiline_string] = ACTIONS(4073), - [sym_character] = ACTIONS(4073), + [ts_builtin_sym_end] = ACTIONS(3922), + [sym_identifier] = ACTIONS(3924), + [anon_sym_import] = ACTIONS(3924), + [anon_sym_test] = ACTIONS(3924), + [anon_sym_hide] = ACTIONS(3924), + [anon_sym_func] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3924), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_RPAREN] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_void] = ACTIONS(3924), + [anon_sym_type] = ACTIONS(3924), + [anon_sym_anyopaque] = ACTIONS(3924), + [anon_sym_bool] = ACTIONS(3924), + [anon_sym_int] = ACTIONS(3924), + [anon_sym_uint] = ACTIONS(3924), + [anon_sym_float] = ACTIONS(3924), + [anon_sym_range] = ACTIONS(3924), + [anon_sym_i8] = ACTIONS(3924), + [anon_sym_i16] = ACTIONS(3924), + [anon_sym_i32] = ACTIONS(3924), + [anon_sym_i64] = ACTIONS(3924), + [anon_sym_u8] = ACTIONS(3924), + [anon_sym_u16] = ACTIONS(3924), + [anon_sym_u32] = ACTIONS(3924), + [anon_sym_u64] = ACTIONS(3924), + [anon_sym_isize] = ACTIONS(3924), + [anon_sym_usize] = ACTIONS(3924), + [anon_sym_f32] = ACTIONS(3924), + [anon_sym_f64] = ACTIONS(3924), + [anon_sym_c_char] = ACTIONS(3924), + [anon_sym_c_schar] = ACTIONS(3924), + [anon_sym_c_uchar] = ACTIONS(3924), + [anon_sym_c_short] = ACTIONS(3924), + [anon_sym_c_ushort] = ACTIONS(3924), + [anon_sym_c_int] = ACTIONS(3924), + [anon_sym_c_uint] = ACTIONS(3924), + [anon_sym_c_long] = ACTIONS(3924), + [anon_sym_c_ulong] = ACTIONS(3924), + [anon_sym_c_longlong] = ACTIONS(3924), + [anon_sym_c_ulonglong] = ACTIONS(3924), + [anon_sym_c_float] = ACTIONS(3924), + [anon_sym_c_double] = ACTIONS(3924), + [anon_sym_c_longdouble] = ACTIONS(3924), + [anon_sym_return] = ACTIONS(3924), + [anon_sym_yield] = ACTIONS(3924), + [anon_sym_break] = ACTIONS(3924), + [anon_sym_continue] = ACTIONS(3924), + [anon_sym_defer] = ACTIONS(3924), + [anon_sym_errdefer] = ACTIONS(3924), + [anon_sym_if] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3924), + [anon_sym_while] = ACTIONS(3924), + [anon_sym_expand] = ACTIONS(3924), + [anon_sym_for] = ACTIONS(3924), + [anon_sym_match] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_TILDE] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3924), + [anon_sym_DOT] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [sym_none] = ACTIONS(3924), + [sym_undefined] = ACTIONS(3924), + [sym_sink] = ACTIONS(3924), + [sym_integer] = ACTIONS(3924), + [sym_float] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [sym_multiline_string] = ACTIONS(3922), + [sym_character] = ACTIONS(3922), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4073), + [sym__newline] = ACTIONS(3922), }, [STATE(1704)] = { - [ts_builtin_sym_end] = ACTIONS(4077), - [sym_identifier] = ACTIONS(4079), - [anon_sym_import] = ACTIONS(4079), - [anon_sym_test] = ACTIONS(4079), - [anon_sym_hide] = ACTIONS(4079), - [anon_sym_func] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_struct] = ACTIONS(4079), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_RPAREN] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_DASH] = ACTIONS(4077), - [anon_sym_DOLLAR] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_void] = ACTIONS(4079), - [anon_sym_anyopaque] = ACTIONS(4079), - [anon_sym_bool] = ACTIONS(4079), - [anon_sym_int] = ACTIONS(4079), - [anon_sym_uint] = ACTIONS(4079), - [anon_sym_float] = ACTIONS(4079), - [anon_sym_range] = ACTIONS(4079), - [anon_sym_i8] = ACTIONS(4079), - [anon_sym_i16] = ACTIONS(4079), - [anon_sym_i32] = ACTIONS(4079), - [anon_sym_i64] = ACTIONS(4079), - [anon_sym_u8] = ACTIONS(4079), - [anon_sym_u16] = ACTIONS(4079), - [anon_sym_u32] = ACTIONS(4079), - [anon_sym_u64] = ACTIONS(4079), - [anon_sym_isize] = ACTIONS(4079), - [anon_sym_usize] = ACTIONS(4079), - [anon_sym_f32] = ACTIONS(4079), - [anon_sym_f64] = ACTIONS(4079), - [anon_sym_c_char] = ACTIONS(4079), - [anon_sym_c_schar] = ACTIONS(4079), - [anon_sym_c_uchar] = ACTIONS(4079), - [anon_sym_c_short] = ACTIONS(4079), - [anon_sym_c_ushort] = ACTIONS(4079), - [anon_sym_c_int] = ACTIONS(4079), - [anon_sym_c_uint] = ACTIONS(4079), - [anon_sym_c_long] = ACTIONS(4079), - [anon_sym_c_ulong] = ACTIONS(4079), - [anon_sym_c_longlong] = ACTIONS(4079), - [anon_sym_c_ulonglong] = ACTIONS(4079), - [anon_sym_c_float] = ACTIONS(4079), - [anon_sym_c_double] = ACTIONS(4079), - [anon_sym_c_longdouble] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_yield] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [anon_sym_defer] = ACTIONS(4079), - [anon_sym_errdefer] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [anon_sym_else] = ACTIONS(4079), - [anon_sym_while] = ACTIONS(4079), - [anon_sym_expand] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [anon_sym_match] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4077), - [anon_sym_TILDE] = ACTIONS(4077), - [anon_sym_try] = ACTIONS(4079), - [anon_sym_DOT] = ACTIONS(4077), - [anon_sym_true] = ACTIONS(4079), - [anon_sym_false] = ACTIONS(4079), - [sym_none] = ACTIONS(4079), - [sym_undefined] = ACTIONS(4079), - [sym_sink] = ACTIONS(4079), - [sym_integer] = ACTIONS(4079), - [sym_float] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4077), - [sym_multiline_string] = ACTIONS(4077), - [sym_character] = ACTIONS(4077), + [ts_builtin_sym_end] = ACTIONS(3926), + [sym_identifier] = ACTIONS(3928), + [anon_sym_import] = ACTIONS(3928), + [anon_sym_test] = ACTIONS(3928), + [anon_sym_hide] = ACTIONS(3928), + [anon_sym_func] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym_RPAREN] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_RBRACE] = ACTIONS(3926), + [anon_sym_DASH] = ACTIONS(3926), + [anon_sym_DOLLAR] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_void] = ACTIONS(3928), + [anon_sym_type] = ACTIONS(3928), + [anon_sym_anyopaque] = ACTIONS(3928), + [anon_sym_bool] = ACTIONS(3928), + [anon_sym_int] = ACTIONS(3928), + [anon_sym_uint] = ACTIONS(3928), + [anon_sym_float] = ACTIONS(3928), + [anon_sym_range] = ACTIONS(3928), + [anon_sym_i8] = ACTIONS(3928), + [anon_sym_i16] = ACTIONS(3928), + [anon_sym_i32] = ACTIONS(3928), + [anon_sym_i64] = ACTIONS(3928), + [anon_sym_u8] = ACTIONS(3928), + [anon_sym_u16] = ACTIONS(3928), + [anon_sym_u32] = ACTIONS(3928), + [anon_sym_u64] = ACTIONS(3928), + [anon_sym_isize] = ACTIONS(3928), + [anon_sym_usize] = ACTIONS(3928), + [anon_sym_f32] = ACTIONS(3928), + [anon_sym_f64] = ACTIONS(3928), + [anon_sym_c_char] = ACTIONS(3928), + [anon_sym_c_schar] = ACTIONS(3928), + [anon_sym_c_uchar] = ACTIONS(3928), + [anon_sym_c_short] = ACTIONS(3928), + [anon_sym_c_ushort] = ACTIONS(3928), + [anon_sym_c_int] = ACTIONS(3928), + [anon_sym_c_uint] = ACTIONS(3928), + [anon_sym_c_long] = ACTIONS(3928), + [anon_sym_c_ulong] = ACTIONS(3928), + [anon_sym_c_longlong] = ACTIONS(3928), + [anon_sym_c_ulonglong] = ACTIONS(3928), + [anon_sym_c_float] = ACTIONS(3928), + [anon_sym_c_double] = ACTIONS(3928), + [anon_sym_c_longdouble] = ACTIONS(3928), + [anon_sym_return] = ACTIONS(3928), + [anon_sym_yield] = ACTIONS(3928), + [anon_sym_break] = ACTIONS(3928), + [anon_sym_continue] = ACTIONS(3928), + [anon_sym_defer] = ACTIONS(3928), + [anon_sym_errdefer] = ACTIONS(3928), + [anon_sym_if] = ACTIONS(3928), + [anon_sym_else] = ACTIONS(3928), + [anon_sym_while] = ACTIONS(3928), + [anon_sym_expand] = ACTIONS(3928), + [anon_sym_for] = ACTIONS(3928), + [anon_sym_match] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_TILDE] = ACTIONS(3926), + [anon_sym_try] = ACTIONS(3928), + [anon_sym_DOT] = ACTIONS(3926), + [anon_sym_true] = ACTIONS(3928), + [anon_sym_false] = ACTIONS(3928), + [sym_none] = ACTIONS(3928), + [sym_undefined] = ACTIONS(3928), + [sym_sink] = ACTIONS(3928), + [sym_integer] = ACTIONS(3928), + [sym_float] = ACTIONS(3926), + [anon_sym_DQUOTE] = ACTIONS(3926), + [sym_multiline_string] = ACTIONS(3926), + [sym_character] = ACTIONS(3926), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4077), + [sym__newline] = ACTIONS(3926), }, [STATE(1705)] = { - [ts_builtin_sym_end] = ACTIONS(4081), - [sym_identifier] = ACTIONS(4083), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_test] = ACTIONS(4083), - [anon_sym_hide] = ACTIONS(4083), - [anon_sym_func] = ACTIONS(4083), - [anon_sym_BANG] = ACTIONS(4081), - [anon_sym_struct] = ACTIONS(4083), - [anon_sym_LPAREN] = ACTIONS(4081), - [anon_sym_RPAREN] = ACTIONS(4081), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_RBRACE] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_DOLLAR] = ACTIONS(4081), - [anon_sym_LBRACK] = ACTIONS(4081), - [anon_sym_void] = ACTIONS(4083), - [anon_sym_anyopaque] = ACTIONS(4083), - [anon_sym_bool] = ACTIONS(4083), - [anon_sym_int] = ACTIONS(4083), - [anon_sym_uint] = ACTIONS(4083), - [anon_sym_float] = ACTIONS(4083), - [anon_sym_range] = ACTIONS(4083), - [anon_sym_i8] = ACTIONS(4083), - [anon_sym_i16] = ACTIONS(4083), - [anon_sym_i32] = ACTIONS(4083), - [anon_sym_i64] = ACTIONS(4083), - [anon_sym_u8] = ACTIONS(4083), - [anon_sym_u16] = ACTIONS(4083), - [anon_sym_u32] = ACTIONS(4083), - [anon_sym_u64] = ACTIONS(4083), - [anon_sym_isize] = ACTIONS(4083), - [anon_sym_usize] = ACTIONS(4083), - [anon_sym_f32] = ACTIONS(4083), - [anon_sym_f64] = ACTIONS(4083), - [anon_sym_c_char] = ACTIONS(4083), - [anon_sym_c_schar] = ACTIONS(4083), - [anon_sym_c_uchar] = ACTIONS(4083), - [anon_sym_c_short] = ACTIONS(4083), - [anon_sym_c_ushort] = ACTIONS(4083), - [anon_sym_c_int] = ACTIONS(4083), - [anon_sym_c_uint] = ACTIONS(4083), - [anon_sym_c_long] = ACTIONS(4083), - [anon_sym_c_ulong] = ACTIONS(4083), - [anon_sym_c_longlong] = ACTIONS(4083), - [anon_sym_c_ulonglong] = ACTIONS(4083), - [anon_sym_c_float] = ACTIONS(4083), - [anon_sym_c_double] = ACTIONS(4083), - [anon_sym_c_longdouble] = ACTIONS(4083), - [anon_sym_return] = ACTIONS(4083), - [anon_sym_yield] = ACTIONS(4083), - [anon_sym_break] = ACTIONS(4083), - [anon_sym_continue] = ACTIONS(4083), - [anon_sym_defer] = ACTIONS(4083), - [anon_sym_errdefer] = ACTIONS(4083), - [anon_sym_if] = ACTIONS(4083), - [anon_sym_else] = ACTIONS(4083), - [anon_sym_while] = ACTIONS(4083), - [anon_sym_expand] = ACTIONS(4083), - [anon_sym_for] = ACTIONS(4083), - [anon_sym_match] = ACTIONS(4083), - [anon_sym_AMP] = ACTIONS(4081), - [anon_sym_TILDE] = ACTIONS(4081), - [anon_sym_try] = ACTIONS(4083), - [anon_sym_DOT] = ACTIONS(4081), - [anon_sym_true] = ACTIONS(4083), - [anon_sym_false] = ACTIONS(4083), - [sym_none] = ACTIONS(4083), - [sym_undefined] = ACTIONS(4083), - [sym_sink] = ACTIONS(4083), - [sym_integer] = ACTIONS(4083), - [sym_float] = ACTIONS(4081), - [anon_sym_DQUOTE] = ACTIONS(4081), - [sym_multiline_string] = ACTIONS(4081), - [sym_character] = ACTIONS(4081), + [ts_builtin_sym_end] = ACTIONS(3930), + [sym_identifier] = ACTIONS(3932), + [anon_sym_import] = ACTIONS(3932), + [anon_sym_test] = ACTIONS(3932), + [anon_sym_hide] = ACTIONS(3932), + [anon_sym_func] = ACTIONS(3932), + [anon_sym_BANG] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3932), + [anon_sym_LPAREN] = ACTIONS(3930), + [anon_sym_RPAREN] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3930), + [anon_sym_RBRACE] = ACTIONS(3930), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_DOLLAR] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_void] = ACTIONS(3932), + [anon_sym_type] = ACTIONS(3932), + [anon_sym_anyopaque] = ACTIONS(3932), + [anon_sym_bool] = ACTIONS(3932), + [anon_sym_int] = ACTIONS(3932), + [anon_sym_uint] = ACTIONS(3932), + [anon_sym_float] = ACTIONS(3932), + [anon_sym_range] = ACTIONS(3932), + [anon_sym_i8] = ACTIONS(3932), + [anon_sym_i16] = ACTIONS(3932), + [anon_sym_i32] = ACTIONS(3932), + [anon_sym_i64] = ACTIONS(3932), + [anon_sym_u8] = ACTIONS(3932), + [anon_sym_u16] = ACTIONS(3932), + [anon_sym_u32] = ACTIONS(3932), + [anon_sym_u64] = ACTIONS(3932), + [anon_sym_isize] = ACTIONS(3932), + [anon_sym_usize] = ACTIONS(3932), + [anon_sym_f32] = ACTIONS(3932), + [anon_sym_f64] = ACTIONS(3932), + [anon_sym_c_char] = ACTIONS(3932), + [anon_sym_c_schar] = ACTIONS(3932), + [anon_sym_c_uchar] = ACTIONS(3932), + [anon_sym_c_short] = ACTIONS(3932), + [anon_sym_c_ushort] = ACTIONS(3932), + [anon_sym_c_int] = ACTIONS(3932), + [anon_sym_c_uint] = ACTIONS(3932), + [anon_sym_c_long] = ACTIONS(3932), + [anon_sym_c_ulong] = ACTIONS(3932), + [anon_sym_c_longlong] = ACTIONS(3932), + [anon_sym_c_ulonglong] = ACTIONS(3932), + [anon_sym_c_float] = ACTIONS(3932), + [anon_sym_c_double] = ACTIONS(3932), + [anon_sym_c_longdouble] = ACTIONS(3932), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_yield] = ACTIONS(3932), + [anon_sym_break] = ACTIONS(3932), + [anon_sym_continue] = ACTIONS(3932), + [anon_sym_defer] = ACTIONS(3932), + [anon_sym_errdefer] = ACTIONS(3932), + [anon_sym_if] = ACTIONS(3932), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_while] = ACTIONS(3932), + [anon_sym_expand] = ACTIONS(3932), + [anon_sym_for] = ACTIONS(3932), + [anon_sym_match] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_TILDE] = ACTIONS(3930), + [anon_sym_try] = ACTIONS(3932), + [anon_sym_DOT] = ACTIONS(3930), + [anon_sym_true] = ACTIONS(3932), + [anon_sym_false] = ACTIONS(3932), + [sym_none] = ACTIONS(3932), + [sym_undefined] = ACTIONS(3932), + [sym_sink] = ACTIONS(3932), + [sym_integer] = ACTIONS(3932), + [sym_float] = ACTIONS(3930), + [anon_sym_DQUOTE] = ACTIONS(3930), + [sym_multiline_string] = ACTIONS(3930), + [sym_character] = ACTIONS(3930), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4081), + [sym__newline] = ACTIONS(3930), }, [STATE(1706)] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_identifier] = ACTIONS(4087), - [anon_sym_import] = ACTIONS(4087), - [anon_sym_test] = ACTIONS(4087), - [anon_sym_hide] = ACTIONS(4087), - [anon_sym_func] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_RPAREN] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_DOLLAR] = ACTIONS(4085), - [anon_sym_LBRACK] = ACTIONS(4085), - [anon_sym_void] = ACTIONS(4087), - [anon_sym_anyopaque] = ACTIONS(4087), - [anon_sym_bool] = ACTIONS(4087), - [anon_sym_int] = ACTIONS(4087), - [anon_sym_uint] = ACTIONS(4087), - [anon_sym_float] = ACTIONS(4087), - [anon_sym_range] = ACTIONS(4087), - [anon_sym_i8] = ACTIONS(4087), - [anon_sym_i16] = ACTIONS(4087), - [anon_sym_i32] = ACTIONS(4087), - [anon_sym_i64] = ACTIONS(4087), - [anon_sym_u8] = ACTIONS(4087), - [anon_sym_u16] = ACTIONS(4087), - [anon_sym_u32] = ACTIONS(4087), - [anon_sym_u64] = ACTIONS(4087), - [anon_sym_isize] = ACTIONS(4087), - [anon_sym_usize] = ACTIONS(4087), - [anon_sym_f32] = ACTIONS(4087), - [anon_sym_f64] = ACTIONS(4087), - [anon_sym_c_char] = ACTIONS(4087), - [anon_sym_c_schar] = ACTIONS(4087), - [anon_sym_c_uchar] = ACTIONS(4087), - [anon_sym_c_short] = ACTIONS(4087), - [anon_sym_c_ushort] = ACTIONS(4087), - [anon_sym_c_int] = ACTIONS(4087), - [anon_sym_c_uint] = ACTIONS(4087), - [anon_sym_c_long] = ACTIONS(4087), - [anon_sym_c_ulong] = ACTIONS(4087), - [anon_sym_c_longlong] = ACTIONS(4087), - [anon_sym_c_ulonglong] = ACTIONS(4087), - [anon_sym_c_float] = ACTIONS(4087), - [anon_sym_c_double] = ACTIONS(4087), - [anon_sym_c_longdouble] = ACTIONS(4087), - [anon_sym_return] = ACTIONS(4087), - [anon_sym_yield] = ACTIONS(4087), - [anon_sym_break] = ACTIONS(4087), - [anon_sym_continue] = ACTIONS(4087), - [anon_sym_defer] = ACTIONS(4087), - [anon_sym_errdefer] = ACTIONS(4087), - [anon_sym_if] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4087), - [anon_sym_while] = ACTIONS(4087), - [anon_sym_expand] = ACTIONS(4087), - [anon_sym_for] = ACTIONS(4087), - [anon_sym_match] = ACTIONS(4087), - [anon_sym_AMP] = ACTIONS(4085), - [anon_sym_TILDE] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4087), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [sym_none] = ACTIONS(4087), - [sym_undefined] = ACTIONS(4087), - [sym_sink] = ACTIONS(4087), - [sym_integer] = ACTIONS(4087), - [sym_float] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(4085), - [sym_multiline_string] = ACTIONS(4085), - [sym_character] = ACTIONS(4085), + [ts_builtin_sym_end] = ACTIONS(3934), + [sym_identifier] = ACTIONS(3936), + [anon_sym_import] = ACTIONS(3936), + [anon_sym_test] = ACTIONS(3936), + [anon_sym_hide] = ACTIONS(3936), + [anon_sym_func] = ACTIONS(3936), + [anon_sym_BANG] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3936), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_void] = ACTIONS(3936), + [anon_sym_type] = ACTIONS(3936), + [anon_sym_anyopaque] = ACTIONS(3936), + [anon_sym_bool] = ACTIONS(3936), + [anon_sym_int] = ACTIONS(3936), + [anon_sym_uint] = ACTIONS(3936), + [anon_sym_float] = ACTIONS(3936), + [anon_sym_range] = ACTIONS(3936), + [anon_sym_i8] = ACTIONS(3936), + [anon_sym_i16] = ACTIONS(3936), + [anon_sym_i32] = ACTIONS(3936), + [anon_sym_i64] = ACTIONS(3936), + [anon_sym_u8] = ACTIONS(3936), + [anon_sym_u16] = ACTIONS(3936), + [anon_sym_u32] = ACTIONS(3936), + [anon_sym_u64] = ACTIONS(3936), + [anon_sym_isize] = ACTIONS(3936), + [anon_sym_usize] = ACTIONS(3936), + [anon_sym_f32] = ACTIONS(3936), + [anon_sym_f64] = ACTIONS(3936), + [anon_sym_c_char] = ACTIONS(3936), + [anon_sym_c_schar] = ACTIONS(3936), + [anon_sym_c_uchar] = ACTIONS(3936), + [anon_sym_c_short] = ACTIONS(3936), + [anon_sym_c_ushort] = ACTIONS(3936), + [anon_sym_c_int] = ACTIONS(3936), + [anon_sym_c_uint] = ACTIONS(3936), + [anon_sym_c_long] = ACTIONS(3936), + [anon_sym_c_ulong] = ACTIONS(3936), + [anon_sym_c_longlong] = ACTIONS(3936), + [anon_sym_c_ulonglong] = ACTIONS(3936), + [anon_sym_c_float] = ACTIONS(3936), + [anon_sym_c_double] = ACTIONS(3936), + [anon_sym_c_longdouble] = ACTIONS(3936), + [anon_sym_return] = ACTIONS(3936), + [anon_sym_yield] = ACTIONS(3936), + [anon_sym_break] = ACTIONS(3936), + [anon_sym_continue] = ACTIONS(3936), + [anon_sym_defer] = ACTIONS(3936), + [anon_sym_errdefer] = ACTIONS(3936), + [anon_sym_if] = ACTIONS(3936), + [anon_sym_else] = ACTIONS(3936), + [anon_sym_while] = ACTIONS(3936), + [anon_sym_expand] = ACTIONS(3936), + [anon_sym_for] = ACTIONS(3936), + [anon_sym_match] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_TILDE] = ACTIONS(3934), + [anon_sym_try] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(3934), + [anon_sym_true] = ACTIONS(3936), + [anon_sym_false] = ACTIONS(3936), + [sym_none] = ACTIONS(3936), + [sym_undefined] = ACTIONS(3936), + [sym_sink] = ACTIONS(3936), + [sym_integer] = ACTIONS(3936), + [sym_float] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [sym_multiline_string] = ACTIONS(3934), + [sym_character] = ACTIONS(3934), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4085), + [sym__newline] = ACTIONS(3934), }, [STATE(1707)] = { - [aux_sym_import_declaration_repeat1] = STATE(3242), - [sym_identifier] = ACTIONS(4089), - [anon_sym_func] = ACTIONS(4089), - [anon_sym_BANG] = ACTIONS(4091), - [anon_sym_struct] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4091), - [anon_sym_void] = ACTIONS(4089), - [anon_sym_anyopaque] = ACTIONS(4089), - [anon_sym_bool] = ACTIONS(4089), - [anon_sym_int] = ACTIONS(4089), - [anon_sym_uint] = ACTIONS(4089), - [anon_sym_float] = ACTIONS(4089), - [anon_sym_range] = ACTIONS(4089), - [anon_sym_i8] = ACTIONS(4089), - [anon_sym_i16] = ACTIONS(4089), - [anon_sym_i32] = ACTIONS(4089), - [anon_sym_i64] = ACTIONS(4089), - [anon_sym_u8] = ACTIONS(4089), - [anon_sym_u16] = ACTIONS(4089), - [anon_sym_u32] = ACTIONS(4089), - [anon_sym_u64] = ACTIONS(4089), - [anon_sym_isize] = ACTIONS(4089), - [anon_sym_usize] = ACTIONS(4089), - [anon_sym_f32] = ACTIONS(4089), - [anon_sym_f64] = ACTIONS(4089), - [anon_sym_c_char] = ACTIONS(4089), - [anon_sym_c_schar] = ACTIONS(4089), - [anon_sym_c_uchar] = ACTIONS(4089), - [anon_sym_c_short] = ACTIONS(4089), - [anon_sym_c_ushort] = ACTIONS(4089), - [anon_sym_c_int] = ACTIONS(4089), - [anon_sym_c_uint] = ACTIONS(4089), - [anon_sym_c_long] = ACTIONS(4089), - [anon_sym_c_ulong] = ACTIONS(4089), - [anon_sym_c_longlong] = ACTIONS(4089), - [anon_sym_c_ulonglong] = ACTIONS(4089), - [anon_sym_c_float] = ACTIONS(4089), - [anon_sym_c_double] = ACTIONS(4089), - [anon_sym_c_longdouble] = ACTIONS(4089), - [anon_sym_return] = ACTIONS(4089), - [anon_sym_yield] = ACTIONS(4089), - [anon_sym_break] = ACTIONS(4089), - [anon_sym_continue] = ACTIONS(4089), - [anon_sym_defer] = ACTIONS(4089), - [anon_sym_errdefer] = ACTIONS(4089), - [anon_sym_if] = ACTIONS(4089), - [anon_sym_else] = ACTIONS(4093), - [anon_sym_while] = ACTIONS(4089), - [anon_sym_expand] = ACTIONS(4089), - [anon_sym_for] = ACTIONS(4089), - [anon_sym_match] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - [anon_sym_TILDE] = ACTIONS(4091), - [anon_sym_try] = ACTIONS(4089), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [sym_none] = ACTIONS(4089), - [sym_undefined] = ACTIONS(4089), - [sym_sink] = ACTIONS(4089), - [sym_integer] = ACTIONS(4089), - [sym_float] = ACTIONS(4091), - [anon_sym_DQUOTE] = ACTIONS(4091), - [sym_multiline_string] = ACTIONS(4091), - [sym_character] = ACTIONS(4091), + [ts_builtin_sym_end] = ACTIONS(3938), + [sym_identifier] = ACTIONS(3940), + [anon_sym_import] = ACTIONS(3940), + [anon_sym_test] = ACTIONS(3940), + [anon_sym_hide] = ACTIONS(3940), + [anon_sym_func] = ACTIONS(3940), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3940), + [anon_sym_LPAREN] = ACTIONS(3938), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3938), + [anon_sym_RBRACE] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_void] = ACTIONS(3940), + [anon_sym_type] = ACTIONS(3940), + [anon_sym_anyopaque] = ACTIONS(3940), + [anon_sym_bool] = ACTIONS(3940), + [anon_sym_int] = ACTIONS(3940), + [anon_sym_uint] = ACTIONS(3940), + [anon_sym_float] = ACTIONS(3940), + [anon_sym_range] = ACTIONS(3940), + [anon_sym_i8] = ACTIONS(3940), + [anon_sym_i16] = ACTIONS(3940), + [anon_sym_i32] = ACTIONS(3940), + [anon_sym_i64] = ACTIONS(3940), + [anon_sym_u8] = ACTIONS(3940), + [anon_sym_u16] = ACTIONS(3940), + [anon_sym_u32] = ACTIONS(3940), + [anon_sym_u64] = ACTIONS(3940), + [anon_sym_isize] = ACTIONS(3940), + [anon_sym_usize] = ACTIONS(3940), + [anon_sym_f32] = ACTIONS(3940), + [anon_sym_f64] = ACTIONS(3940), + [anon_sym_c_char] = ACTIONS(3940), + [anon_sym_c_schar] = ACTIONS(3940), + [anon_sym_c_uchar] = ACTIONS(3940), + [anon_sym_c_short] = ACTIONS(3940), + [anon_sym_c_ushort] = ACTIONS(3940), + [anon_sym_c_int] = ACTIONS(3940), + [anon_sym_c_uint] = ACTIONS(3940), + [anon_sym_c_long] = ACTIONS(3940), + [anon_sym_c_ulong] = ACTIONS(3940), + [anon_sym_c_longlong] = ACTIONS(3940), + [anon_sym_c_ulonglong] = ACTIONS(3940), + [anon_sym_c_float] = ACTIONS(3940), + [anon_sym_c_double] = ACTIONS(3940), + [anon_sym_c_longdouble] = ACTIONS(3940), + [anon_sym_return] = ACTIONS(3940), + [anon_sym_yield] = ACTIONS(3940), + [anon_sym_break] = ACTIONS(3940), + [anon_sym_continue] = ACTIONS(3940), + [anon_sym_defer] = ACTIONS(3940), + [anon_sym_errdefer] = ACTIONS(3940), + [anon_sym_if] = ACTIONS(3940), + [anon_sym_else] = ACTIONS(3940), + [anon_sym_while] = ACTIONS(3940), + [anon_sym_expand] = ACTIONS(3940), + [anon_sym_for] = ACTIONS(3940), + [anon_sym_match] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_TILDE] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3940), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_true] = ACTIONS(3940), + [anon_sym_false] = ACTIONS(3940), + [sym_none] = ACTIONS(3940), + [sym_undefined] = ACTIONS(3940), + [sym_sink] = ACTIONS(3940), + [sym_integer] = ACTIONS(3940), + [sym_float] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(3938), + [sym_multiline_string] = ACTIONS(3938), + [sym_character] = ACTIONS(3938), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4096), + [sym__newline] = ACTIONS(3938), }, [STATE(1708)] = { - [aux_sym_import_declaration_repeat1] = STATE(3245), - [sym_identifier] = ACTIONS(4099), - [anon_sym_func] = ACTIONS(4099), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_struct] = ACTIONS(4099), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_DOLLAR] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_void] = ACTIONS(4099), - [anon_sym_anyopaque] = ACTIONS(4099), - [anon_sym_bool] = ACTIONS(4099), - [anon_sym_int] = ACTIONS(4099), - [anon_sym_uint] = ACTIONS(4099), - [anon_sym_float] = ACTIONS(4099), - [anon_sym_range] = ACTIONS(4099), - [anon_sym_i8] = ACTIONS(4099), - [anon_sym_i16] = ACTIONS(4099), - [anon_sym_i32] = ACTIONS(4099), - [anon_sym_i64] = ACTIONS(4099), - [anon_sym_u8] = ACTIONS(4099), - [anon_sym_u16] = ACTIONS(4099), - [anon_sym_u32] = ACTIONS(4099), - [anon_sym_u64] = ACTIONS(4099), - [anon_sym_isize] = ACTIONS(4099), - [anon_sym_usize] = ACTIONS(4099), - [anon_sym_f32] = ACTIONS(4099), - [anon_sym_f64] = ACTIONS(4099), - [anon_sym_c_char] = ACTIONS(4099), - [anon_sym_c_schar] = ACTIONS(4099), - [anon_sym_c_uchar] = ACTIONS(4099), - [anon_sym_c_short] = ACTIONS(4099), - [anon_sym_c_ushort] = ACTIONS(4099), - [anon_sym_c_int] = ACTIONS(4099), - [anon_sym_c_uint] = ACTIONS(4099), - [anon_sym_c_long] = ACTIONS(4099), - [anon_sym_c_ulong] = ACTIONS(4099), - [anon_sym_c_longlong] = ACTIONS(4099), - [anon_sym_c_ulonglong] = ACTIONS(4099), - [anon_sym_c_float] = ACTIONS(4099), - [anon_sym_c_double] = ACTIONS(4099), - [anon_sym_c_longdouble] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_yield] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_defer] = ACTIONS(4099), - [anon_sym_errdefer] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4103), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_expand] = ACTIONS(4099), - [anon_sym_for] = ACTIONS(4099), - [anon_sym_match] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(4101), - [anon_sym_TILDE] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [sym_none] = ACTIONS(4099), - [sym_undefined] = ACTIONS(4099), - [sym_sink] = ACTIONS(4099), - [sym_integer] = ACTIONS(4099), - [sym_float] = ACTIONS(4101), - [anon_sym_DQUOTE] = ACTIONS(4101), - [sym_multiline_string] = ACTIONS(4101), - [sym_character] = ACTIONS(4101), + [ts_builtin_sym_end] = ACTIONS(3942), + [sym_identifier] = ACTIONS(3944), + [anon_sym_import] = ACTIONS(3944), + [anon_sym_test] = ACTIONS(3944), + [anon_sym_hide] = ACTIONS(3944), + [anon_sym_func] = ACTIONS(3944), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3944), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_void] = ACTIONS(3944), + [anon_sym_type] = ACTIONS(3944), + [anon_sym_anyopaque] = ACTIONS(3944), + [anon_sym_bool] = ACTIONS(3944), + [anon_sym_int] = ACTIONS(3944), + [anon_sym_uint] = ACTIONS(3944), + [anon_sym_float] = ACTIONS(3944), + [anon_sym_range] = ACTIONS(3944), + [anon_sym_i8] = ACTIONS(3944), + [anon_sym_i16] = ACTIONS(3944), + [anon_sym_i32] = ACTIONS(3944), + [anon_sym_i64] = ACTIONS(3944), + [anon_sym_u8] = ACTIONS(3944), + [anon_sym_u16] = ACTIONS(3944), + [anon_sym_u32] = ACTIONS(3944), + [anon_sym_u64] = ACTIONS(3944), + [anon_sym_isize] = ACTIONS(3944), + [anon_sym_usize] = ACTIONS(3944), + [anon_sym_f32] = ACTIONS(3944), + [anon_sym_f64] = ACTIONS(3944), + [anon_sym_c_char] = ACTIONS(3944), + [anon_sym_c_schar] = ACTIONS(3944), + [anon_sym_c_uchar] = ACTIONS(3944), + [anon_sym_c_short] = ACTIONS(3944), + [anon_sym_c_ushort] = ACTIONS(3944), + [anon_sym_c_int] = ACTIONS(3944), + [anon_sym_c_uint] = ACTIONS(3944), + [anon_sym_c_long] = ACTIONS(3944), + [anon_sym_c_ulong] = ACTIONS(3944), + [anon_sym_c_longlong] = ACTIONS(3944), + [anon_sym_c_ulonglong] = ACTIONS(3944), + [anon_sym_c_float] = ACTIONS(3944), + [anon_sym_c_double] = ACTIONS(3944), + [anon_sym_c_longdouble] = ACTIONS(3944), + [anon_sym_return] = ACTIONS(3944), + [anon_sym_yield] = ACTIONS(3944), + [anon_sym_break] = ACTIONS(3944), + [anon_sym_continue] = ACTIONS(3944), + [anon_sym_defer] = ACTIONS(3944), + [anon_sym_errdefer] = ACTIONS(3944), + [anon_sym_if] = ACTIONS(3944), + [anon_sym_else] = ACTIONS(3944), + [anon_sym_while] = ACTIONS(3944), + [anon_sym_expand] = ACTIONS(3944), + [anon_sym_for] = ACTIONS(3944), + [anon_sym_match] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_TILDE] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3944), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_true] = ACTIONS(3944), + [anon_sym_false] = ACTIONS(3944), + [sym_none] = ACTIONS(3944), + [sym_undefined] = ACTIONS(3944), + [sym_sink] = ACTIONS(3944), + [sym_integer] = ACTIONS(3944), + [sym_float] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [sym_multiline_string] = ACTIONS(3942), + [sym_character] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3942), + }, + [STATE(1709)] = { + [ts_builtin_sym_end] = ACTIONS(3946), + [sym_identifier] = ACTIONS(3948), + [anon_sym_import] = ACTIONS(3948), + [anon_sym_test] = ACTIONS(3948), + [anon_sym_hide] = ACTIONS(3948), + [anon_sym_func] = ACTIONS(3948), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3948), + [anon_sym_LPAREN] = ACTIONS(3946), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_LBRACE] = ACTIONS(3946), + [anon_sym_RBRACE] = ACTIONS(3946), + [anon_sym_DASH] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_void] = ACTIONS(3948), + [anon_sym_type] = ACTIONS(3948), + [anon_sym_anyopaque] = ACTIONS(3948), + [anon_sym_bool] = ACTIONS(3948), + [anon_sym_int] = ACTIONS(3948), + [anon_sym_uint] = ACTIONS(3948), + [anon_sym_float] = ACTIONS(3948), + [anon_sym_range] = ACTIONS(3948), + [anon_sym_i8] = ACTIONS(3948), + [anon_sym_i16] = ACTIONS(3948), + [anon_sym_i32] = ACTIONS(3948), + [anon_sym_i64] = ACTIONS(3948), + [anon_sym_u8] = ACTIONS(3948), + [anon_sym_u16] = ACTIONS(3948), + [anon_sym_u32] = ACTIONS(3948), + [anon_sym_u64] = ACTIONS(3948), + [anon_sym_isize] = ACTIONS(3948), + [anon_sym_usize] = ACTIONS(3948), + [anon_sym_f32] = ACTIONS(3948), + [anon_sym_f64] = ACTIONS(3948), + [anon_sym_c_char] = ACTIONS(3948), + [anon_sym_c_schar] = ACTIONS(3948), + [anon_sym_c_uchar] = ACTIONS(3948), + [anon_sym_c_short] = ACTIONS(3948), + [anon_sym_c_ushort] = ACTIONS(3948), + [anon_sym_c_int] = ACTIONS(3948), + [anon_sym_c_uint] = ACTIONS(3948), + [anon_sym_c_long] = ACTIONS(3948), + [anon_sym_c_ulong] = ACTIONS(3948), + [anon_sym_c_longlong] = ACTIONS(3948), + [anon_sym_c_ulonglong] = ACTIONS(3948), + [anon_sym_c_float] = ACTIONS(3948), + [anon_sym_c_double] = ACTIONS(3948), + [anon_sym_c_longdouble] = ACTIONS(3948), + [anon_sym_return] = ACTIONS(3948), + [anon_sym_yield] = ACTIONS(3948), + [anon_sym_break] = ACTIONS(3948), + [anon_sym_continue] = ACTIONS(3948), + [anon_sym_defer] = ACTIONS(3948), + [anon_sym_errdefer] = ACTIONS(3948), + [anon_sym_if] = ACTIONS(3948), + [anon_sym_else] = ACTIONS(3948), + [anon_sym_while] = ACTIONS(3948), + [anon_sym_expand] = ACTIONS(3948), + [anon_sym_for] = ACTIONS(3948), + [anon_sym_match] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_TILDE] = ACTIONS(3946), + [anon_sym_try] = ACTIONS(3948), + [anon_sym_DOT] = ACTIONS(3946), + [anon_sym_true] = ACTIONS(3948), + [anon_sym_false] = ACTIONS(3948), + [sym_none] = ACTIONS(3948), + [sym_undefined] = ACTIONS(3948), + [sym_sink] = ACTIONS(3948), + [sym_integer] = ACTIONS(3948), + [sym_float] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [sym_multiline_string] = ACTIONS(3946), + [sym_character] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3946), + }, + [STATE(1710)] = { + [ts_builtin_sym_end] = ACTIONS(3950), + [sym_identifier] = ACTIONS(3952), + [anon_sym_import] = ACTIONS(3952), + [anon_sym_test] = ACTIONS(3952), + [anon_sym_hide] = ACTIONS(3952), + [anon_sym_func] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3950), + [anon_sym_RPAREN] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3950), + [anon_sym_RBRACE] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_DOLLAR] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_void] = ACTIONS(3952), + [anon_sym_type] = ACTIONS(3952), + [anon_sym_anyopaque] = ACTIONS(3952), + [anon_sym_bool] = ACTIONS(3952), + [anon_sym_int] = ACTIONS(3952), + [anon_sym_uint] = ACTIONS(3952), + [anon_sym_float] = ACTIONS(3952), + [anon_sym_range] = ACTIONS(3952), + [anon_sym_i8] = ACTIONS(3952), + [anon_sym_i16] = ACTIONS(3952), + [anon_sym_i32] = ACTIONS(3952), + [anon_sym_i64] = ACTIONS(3952), + [anon_sym_u8] = ACTIONS(3952), + [anon_sym_u16] = ACTIONS(3952), + [anon_sym_u32] = ACTIONS(3952), + [anon_sym_u64] = ACTIONS(3952), + [anon_sym_isize] = ACTIONS(3952), + [anon_sym_usize] = ACTIONS(3952), + [anon_sym_f32] = ACTIONS(3952), + [anon_sym_f64] = ACTIONS(3952), + [anon_sym_c_char] = ACTIONS(3952), + [anon_sym_c_schar] = ACTIONS(3952), + [anon_sym_c_uchar] = ACTIONS(3952), + [anon_sym_c_short] = ACTIONS(3952), + [anon_sym_c_ushort] = ACTIONS(3952), + [anon_sym_c_int] = ACTIONS(3952), + [anon_sym_c_uint] = ACTIONS(3952), + [anon_sym_c_long] = ACTIONS(3952), + [anon_sym_c_ulong] = ACTIONS(3952), + [anon_sym_c_longlong] = ACTIONS(3952), + [anon_sym_c_ulonglong] = ACTIONS(3952), + [anon_sym_c_float] = ACTIONS(3952), + [anon_sym_c_double] = ACTIONS(3952), + [anon_sym_c_longdouble] = ACTIONS(3952), + [anon_sym_return] = ACTIONS(3952), + [anon_sym_yield] = ACTIONS(3952), + [anon_sym_break] = ACTIONS(3952), + [anon_sym_continue] = ACTIONS(3952), + [anon_sym_defer] = ACTIONS(3952), + [anon_sym_errdefer] = ACTIONS(3952), + [anon_sym_if] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3952), + [anon_sym_while] = ACTIONS(3952), + [anon_sym_expand] = ACTIONS(3952), + [anon_sym_for] = ACTIONS(3952), + [anon_sym_match] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_TILDE] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_true] = ACTIONS(3952), + [anon_sym_false] = ACTIONS(3952), + [sym_none] = ACTIONS(3952), + [sym_undefined] = ACTIONS(3952), + [sym_sink] = ACTIONS(3952), + [sym_integer] = ACTIONS(3952), + [sym_float] = ACTIONS(3950), + [anon_sym_DQUOTE] = ACTIONS(3950), + [sym_multiline_string] = ACTIONS(3950), + [sym_character] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3950), + }, + [STATE(1711)] = { + [ts_builtin_sym_end] = ACTIONS(3954), + [sym_identifier] = ACTIONS(3956), + [anon_sym_import] = ACTIONS(3956), + [anon_sym_test] = ACTIONS(3956), + [anon_sym_hide] = ACTIONS(3956), + [anon_sym_func] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3956), + [anon_sym_LPAREN] = ACTIONS(3954), + [anon_sym_RPAREN] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3954), + [anon_sym_RBRACE] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_DOLLAR] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_void] = ACTIONS(3956), + [anon_sym_type] = ACTIONS(3956), + [anon_sym_anyopaque] = ACTIONS(3956), + [anon_sym_bool] = ACTIONS(3956), + [anon_sym_int] = ACTIONS(3956), + [anon_sym_uint] = ACTIONS(3956), + [anon_sym_float] = ACTIONS(3956), + [anon_sym_range] = ACTIONS(3956), + [anon_sym_i8] = ACTIONS(3956), + [anon_sym_i16] = ACTIONS(3956), + [anon_sym_i32] = ACTIONS(3956), + [anon_sym_i64] = ACTIONS(3956), + [anon_sym_u8] = ACTIONS(3956), + [anon_sym_u16] = ACTIONS(3956), + [anon_sym_u32] = ACTIONS(3956), + [anon_sym_u64] = ACTIONS(3956), + [anon_sym_isize] = ACTIONS(3956), + [anon_sym_usize] = ACTIONS(3956), + [anon_sym_f32] = ACTIONS(3956), + [anon_sym_f64] = ACTIONS(3956), + [anon_sym_c_char] = ACTIONS(3956), + [anon_sym_c_schar] = ACTIONS(3956), + [anon_sym_c_uchar] = ACTIONS(3956), + [anon_sym_c_short] = ACTIONS(3956), + [anon_sym_c_ushort] = ACTIONS(3956), + [anon_sym_c_int] = ACTIONS(3956), + [anon_sym_c_uint] = ACTIONS(3956), + [anon_sym_c_long] = ACTIONS(3956), + [anon_sym_c_ulong] = ACTIONS(3956), + [anon_sym_c_longlong] = ACTIONS(3956), + [anon_sym_c_ulonglong] = ACTIONS(3956), + [anon_sym_c_float] = ACTIONS(3956), + [anon_sym_c_double] = ACTIONS(3956), + [anon_sym_c_longdouble] = ACTIONS(3956), + [anon_sym_return] = ACTIONS(3956), + [anon_sym_yield] = ACTIONS(3956), + [anon_sym_break] = ACTIONS(3956), + [anon_sym_continue] = ACTIONS(3956), + [anon_sym_defer] = ACTIONS(3956), + [anon_sym_errdefer] = ACTIONS(3956), + [anon_sym_if] = ACTIONS(3956), + [anon_sym_else] = ACTIONS(3956), + [anon_sym_while] = ACTIONS(3956), + [anon_sym_expand] = ACTIONS(3956), + [anon_sym_for] = ACTIONS(3956), + [anon_sym_match] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_TILDE] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3956), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_true] = ACTIONS(3956), + [anon_sym_false] = ACTIONS(3956), + [sym_none] = ACTIONS(3956), + [sym_undefined] = ACTIONS(3956), + [sym_sink] = ACTIONS(3956), + [sym_integer] = ACTIONS(3956), + [sym_float] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(3954), + [sym_multiline_string] = ACTIONS(3954), + [sym_character] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3954), + }, + [STATE(1712)] = { + [ts_builtin_sym_end] = ACTIONS(3958), + [sym_identifier] = ACTIONS(3960), + [anon_sym_import] = ACTIONS(3960), + [anon_sym_test] = ACTIONS(3960), + [anon_sym_hide] = ACTIONS(3960), + [anon_sym_func] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3960), + [anon_sym_LPAREN] = ACTIONS(3958), + [anon_sym_RPAREN] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3958), + [anon_sym_RBRACE] = ACTIONS(3958), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_void] = ACTIONS(3960), + [anon_sym_type] = ACTIONS(3960), + [anon_sym_anyopaque] = ACTIONS(3960), + [anon_sym_bool] = ACTIONS(3960), + [anon_sym_int] = ACTIONS(3960), + [anon_sym_uint] = ACTIONS(3960), + [anon_sym_float] = ACTIONS(3960), + [anon_sym_range] = ACTIONS(3960), + [anon_sym_i8] = ACTIONS(3960), + [anon_sym_i16] = ACTIONS(3960), + [anon_sym_i32] = ACTIONS(3960), + [anon_sym_i64] = ACTIONS(3960), + [anon_sym_u8] = ACTIONS(3960), + [anon_sym_u16] = ACTIONS(3960), + [anon_sym_u32] = ACTIONS(3960), + [anon_sym_u64] = ACTIONS(3960), + [anon_sym_isize] = ACTIONS(3960), + [anon_sym_usize] = ACTIONS(3960), + [anon_sym_f32] = ACTIONS(3960), + [anon_sym_f64] = ACTIONS(3960), + [anon_sym_c_char] = ACTIONS(3960), + [anon_sym_c_schar] = ACTIONS(3960), + [anon_sym_c_uchar] = ACTIONS(3960), + [anon_sym_c_short] = ACTIONS(3960), + [anon_sym_c_ushort] = ACTIONS(3960), + [anon_sym_c_int] = ACTIONS(3960), + [anon_sym_c_uint] = ACTIONS(3960), + [anon_sym_c_long] = ACTIONS(3960), + [anon_sym_c_ulong] = ACTIONS(3960), + [anon_sym_c_longlong] = ACTIONS(3960), + [anon_sym_c_ulonglong] = ACTIONS(3960), + [anon_sym_c_float] = ACTIONS(3960), + [anon_sym_c_double] = ACTIONS(3960), + [anon_sym_c_longdouble] = ACTIONS(3960), + [anon_sym_return] = ACTIONS(3960), + [anon_sym_yield] = ACTIONS(3960), + [anon_sym_break] = ACTIONS(3960), + [anon_sym_continue] = ACTIONS(3960), + [anon_sym_defer] = ACTIONS(3960), + [anon_sym_errdefer] = ACTIONS(3960), + [anon_sym_if] = ACTIONS(3960), + [anon_sym_else] = ACTIONS(3960), + [anon_sym_while] = ACTIONS(3960), + [anon_sym_expand] = ACTIONS(3960), + [anon_sym_for] = ACTIONS(3960), + [anon_sym_match] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_TILDE] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3960), + [anon_sym_DOT] = ACTIONS(3958), + [anon_sym_true] = ACTIONS(3960), + [anon_sym_false] = ACTIONS(3960), + [sym_none] = ACTIONS(3960), + [sym_undefined] = ACTIONS(3960), + [sym_sink] = ACTIONS(3960), + [sym_integer] = ACTIONS(3960), + [sym_float] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(3958), + [sym_multiline_string] = ACTIONS(3958), + [sym_character] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3958), + }, + [STATE(1713)] = { + [ts_builtin_sym_end] = ACTIONS(3962), + [sym_identifier] = ACTIONS(3964), + [anon_sym_import] = ACTIONS(3964), + [anon_sym_test] = ACTIONS(3964), + [anon_sym_hide] = ACTIONS(3964), + [anon_sym_func] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3964), + [anon_sym_LPAREN] = ACTIONS(3962), + [anon_sym_RPAREN] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3962), + [anon_sym_RBRACE] = ACTIONS(3962), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_DOLLAR] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_void] = ACTIONS(3964), + [anon_sym_type] = ACTIONS(3964), + [anon_sym_anyopaque] = ACTIONS(3964), + [anon_sym_bool] = ACTIONS(3964), + [anon_sym_int] = ACTIONS(3964), + [anon_sym_uint] = ACTIONS(3964), + [anon_sym_float] = ACTIONS(3964), + [anon_sym_range] = ACTIONS(3964), + [anon_sym_i8] = ACTIONS(3964), + [anon_sym_i16] = ACTIONS(3964), + [anon_sym_i32] = ACTIONS(3964), + [anon_sym_i64] = ACTIONS(3964), + [anon_sym_u8] = ACTIONS(3964), + [anon_sym_u16] = ACTIONS(3964), + [anon_sym_u32] = ACTIONS(3964), + [anon_sym_u64] = ACTIONS(3964), + [anon_sym_isize] = ACTIONS(3964), + [anon_sym_usize] = ACTIONS(3964), + [anon_sym_f32] = ACTIONS(3964), + [anon_sym_f64] = ACTIONS(3964), + [anon_sym_c_char] = ACTIONS(3964), + [anon_sym_c_schar] = ACTIONS(3964), + [anon_sym_c_uchar] = ACTIONS(3964), + [anon_sym_c_short] = ACTIONS(3964), + [anon_sym_c_ushort] = ACTIONS(3964), + [anon_sym_c_int] = ACTIONS(3964), + [anon_sym_c_uint] = ACTIONS(3964), + [anon_sym_c_long] = ACTIONS(3964), + [anon_sym_c_ulong] = ACTIONS(3964), + [anon_sym_c_longlong] = ACTIONS(3964), + [anon_sym_c_ulonglong] = ACTIONS(3964), + [anon_sym_c_float] = ACTIONS(3964), + [anon_sym_c_double] = ACTIONS(3964), + [anon_sym_c_longdouble] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_yield] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_defer] = ACTIONS(3964), + [anon_sym_errdefer] = ACTIONS(3964), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_while] = ACTIONS(3964), + [anon_sym_expand] = ACTIONS(3964), + [anon_sym_for] = ACTIONS(3964), + [anon_sym_match] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_TILDE] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3964), + [anon_sym_DOT] = ACTIONS(3962), + [anon_sym_true] = ACTIONS(3964), + [anon_sym_false] = ACTIONS(3964), + [sym_none] = ACTIONS(3964), + [sym_undefined] = ACTIONS(3964), + [sym_sink] = ACTIONS(3964), + [sym_integer] = ACTIONS(3964), + [sym_float] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3962), + [sym_multiline_string] = ACTIONS(3962), + [sym_character] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3962), + }, + [STATE(1714)] = { + [ts_builtin_sym_end] = ACTIONS(3966), + [sym_identifier] = ACTIONS(3968), + [anon_sym_import] = ACTIONS(3968), + [anon_sym_test] = ACTIONS(3968), + [anon_sym_hide] = ACTIONS(3968), + [anon_sym_func] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3966), + [anon_sym_struct] = ACTIONS(3968), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_LBRACE] = ACTIONS(3966), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_DASH] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_void] = ACTIONS(3968), + [anon_sym_type] = ACTIONS(3968), + [anon_sym_anyopaque] = ACTIONS(3968), + [anon_sym_bool] = ACTIONS(3968), + [anon_sym_int] = ACTIONS(3968), + [anon_sym_uint] = ACTIONS(3968), + [anon_sym_float] = ACTIONS(3968), + [anon_sym_range] = ACTIONS(3968), + [anon_sym_i8] = ACTIONS(3968), + [anon_sym_i16] = ACTIONS(3968), + [anon_sym_i32] = ACTIONS(3968), + [anon_sym_i64] = ACTIONS(3968), + [anon_sym_u8] = ACTIONS(3968), + [anon_sym_u16] = ACTIONS(3968), + [anon_sym_u32] = ACTIONS(3968), + [anon_sym_u64] = ACTIONS(3968), + [anon_sym_isize] = ACTIONS(3968), + [anon_sym_usize] = ACTIONS(3968), + [anon_sym_f32] = ACTIONS(3968), + [anon_sym_f64] = ACTIONS(3968), + [anon_sym_c_char] = ACTIONS(3968), + [anon_sym_c_schar] = ACTIONS(3968), + [anon_sym_c_uchar] = ACTIONS(3968), + [anon_sym_c_short] = ACTIONS(3968), + [anon_sym_c_ushort] = ACTIONS(3968), + [anon_sym_c_int] = ACTIONS(3968), + [anon_sym_c_uint] = ACTIONS(3968), + [anon_sym_c_long] = ACTIONS(3968), + [anon_sym_c_ulong] = ACTIONS(3968), + [anon_sym_c_longlong] = ACTIONS(3968), + [anon_sym_c_ulonglong] = ACTIONS(3968), + [anon_sym_c_float] = ACTIONS(3968), + [anon_sym_c_double] = ACTIONS(3968), + [anon_sym_c_longdouble] = ACTIONS(3968), + [anon_sym_return] = ACTIONS(3968), + [anon_sym_yield] = ACTIONS(3968), + [anon_sym_break] = ACTIONS(3968), + [anon_sym_continue] = ACTIONS(3968), + [anon_sym_defer] = ACTIONS(3968), + [anon_sym_errdefer] = ACTIONS(3968), + [anon_sym_if] = ACTIONS(3968), + [anon_sym_else] = ACTIONS(3968), + [anon_sym_while] = ACTIONS(3968), + [anon_sym_expand] = ACTIONS(3968), + [anon_sym_for] = ACTIONS(3968), + [anon_sym_match] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3966), + [anon_sym_TILDE] = ACTIONS(3966), + [anon_sym_try] = ACTIONS(3968), + [anon_sym_DOT] = ACTIONS(3966), + [anon_sym_true] = ACTIONS(3968), + [anon_sym_false] = ACTIONS(3968), + [sym_none] = ACTIONS(3968), + [sym_undefined] = ACTIONS(3968), + [sym_sink] = ACTIONS(3968), + [sym_integer] = ACTIONS(3968), + [sym_float] = ACTIONS(3966), + [anon_sym_DQUOTE] = ACTIONS(3966), + [sym_multiline_string] = ACTIONS(3966), + [sym_character] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3966), + }, + [STATE(1715)] = { + [ts_builtin_sym_end] = ACTIONS(3970), + [sym_identifier] = ACTIONS(3972), + [anon_sym_import] = ACTIONS(3972), + [anon_sym_test] = ACTIONS(3972), + [anon_sym_hide] = ACTIONS(3972), + [anon_sym_func] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3970), + [anon_sym_RPAREN] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3970), + [anon_sym_RBRACE] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_void] = ACTIONS(3972), + [anon_sym_type] = ACTIONS(3972), + [anon_sym_anyopaque] = ACTIONS(3972), + [anon_sym_bool] = ACTIONS(3972), + [anon_sym_int] = ACTIONS(3972), + [anon_sym_uint] = ACTIONS(3972), + [anon_sym_float] = ACTIONS(3972), + [anon_sym_range] = ACTIONS(3972), + [anon_sym_i8] = ACTIONS(3972), + [anon_sym_i16] = ACTIONS(3972), + [anon_sym_i32] = ACTIONS(3972), + [anon_sym_i64] = ACTIONS(3972), + [anon_sym_u8] = ACTIONS(3972), + [anon_sym_u16] = ACTIONS(3972), + [anon_sym_u32] = ACTIONS(3972), + [anon_sym_u64] = ACTIONS(3972), + [anon_sym_isize] = ACTIONS(3972), + [anon_sym_usize] = ACTIONS(3972), + [anon_sym_f32] = ACTIONS(3972), + [anon_sym_f64] = ACTIONS(3972), + [anon_sym_c_char] = ACTIONS(3972), + [anon_sym_c_schar] = ACTIONS(3972), + [anon_sym_c_uchar] = ACTIONS(3972), + [anon_sym_c_short] = ACTIONS(3972), + [anon_sym_c_ushort] = ACTIONS(3972), + [anon_sym_c_int] = ACTIONS(3972), + [anon_sym_c_uint] = ACTIONS(3972), + [anon_sym_c_long] = ACTIONS(3972), + [anon_sym_c_ulong] = ACTIONS(3972), + [anon_sym_c_longlong] = ACTIONS(3972), + [anon_sym_c_ulonglong] = ACTIONS(3972), + [anon_sym_c_float] = ACTIONS(3972), + [anon_sym_c_double] = ACTIONS(3972), + [anon_sym_c_longdouble] = ACTIONS(3972), + [anon_sym_return] = ACTIONS(3972), + [anon_sym_yield] = ACTIONS(3972), + [anon_sym_break] = ACTIONS(3972), + [anon_sym_continue] = ACTIONS(3972), + [anon_sym_defer] = ACTIONS(3972), + [anon_sym_errdefer] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3972), + [anon_sym_while] = ACTIONS(3972), + [anon_sym_expand] = ACTIONS(3972), + [anon_sym_for] = ACTIONS(3972), + [anon_sym_match] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_TILDE] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_true] = ACTIONS(3972), + [anon_sym_false] = ACTIONS(3972), + [sym_none] = ACTIONS(3972), + [sym_undefined] = ACTIONS(3972), + [sym_sink] = ACTIONS(3972), + [sym_integer] = ACTIONS(3972), + [sym_float] = ACTIONS(3970), + [anon_sym_DQUOTE] = ACTIONS(3970), + [sym_multiline_string] = ACTIONS(3970), + [sym_character] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3970), + }, + [STATE(1716)] = { + [ts_builtin_sym_end] = ACTIONS(3974), + [sym_identifier] = ACTIONS(3976), + [anon_sym_import] = ACTIONS(3976), + [anon_sym_test] = ACTIONS(3976), + [anon_sym_hide] = ACTIONS(3976), + [anon_sym_func] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_struct] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3974), + [anon_sym_RPAREN] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3974), + [anon_sym_RBRACE] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_DOLLAR] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_void] = ACTIONS(3976), + [anon_sym_type] = ACTIONS(3976), + [anon_sym_anyopaque] = ACTIONS(3976), + [anon_sym_bool] = ACTIONS(3976), + [anon_sym_int] = ACTIONS(3976), + [anon_sym_uint] = ACTIONS(3976), + [anon_sym_float] = ACTIONS(3976), + [anon_sym_range] = ACTIONS(3976), + [anon_sym_i8] = ACTIONS(3976), + [anon_sym_i16] = ACTIONS(3976), + [anon_sym_i32] = ACTIONS(3976), + [anon_sym_i64] = ACTIONS(3976), + [anon_sym_u8] = ACTIONS(3976), + [anon_sym_u16] = ACTIONS(3976), + [anon_sym_u32] = ACTIONS(3976), + [anon_sym_u64] = ACTIONS(3976), + [anon_sym_isize] = ACTIONS(3976), + [anon_sym_usize] = ACTIONS(3976), + [anon_sym_f32] = ACTIONS(3976), + [anon_sym_f64] = ACTIONS(3976), + [anon_sym_c_char] = ACTIONS(3976), + [anon_sym_c_schar] = ACTIONS(3976), + [anon_sym_c_uchar] = ACTIONS(3976), + [anon_sym_c_short] = ACTIONS(3976), + [anon_sym_c_ushort] = ACTIONS(3976), + [anon_sym_c_int] = ACTIONS(3976), + [anon_sym_c_uint] = ACTIONS(3976), + [anon_sym_c_long] = ACTIONS(3976), + [anon_sym_c_ulong] = ACTIONS(3976), + [anon_sym_c_longlong] = ACTIONS(3976), + [anon_sym_c_ulonglong] = ACTIONS(3976), + [anon_sym_c_float] = ACTIONS(3976), + [anon_sym_c_double] = ACTIONS(3976), + [anon_sym_c_longdouble] = ACTIONS(3976), + [anon_sym_return] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_break] = ACTIONS(3976), + [anon_sym_continue] = ACTIONS(3976), + [anon_sym_defer] = ACTIONS(3976), + [anon_sym_errdefer] = ACTIONS(3976), + [anon_sym_if] = ACTIONS(3976), + [anon_sym_else] = ACTIONS(3976), + [anon_sym_while] = ACTIONS(3976), + [anon_sym_expand] = ACTIONS(3976), + [anon_sym_for] = ACTIONS(3976), + [anon_sym_match] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_TILDE] = ACTIONS(3974), + [anon_sym_try] = ACTIONS(3976), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_true] = ACTIONS(3976), + [anon_sym_false] = ACTIONS(3976), + [sym_none] = ACTIONS(3976), + [sym_undefined] = ACTIONS(3976), + [sym_sink] = ACTIONS(3976), + [sym_integer] = ACTIONS(3976), + [sym_float] = ACTIONS(3974), + [anon_sym_DQUOTE] = ACTIONS(3974), + [sym_multiline_string] = ACTIONS(3974), + [sym_character] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3974), + }, + [STATE(1717)] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(397), + [anon_sym_import] = ACTIONS(397), + [anon_sym_test] = ACTIONS(397), + [anon_sym_hide] = ACTIONS(397), + [anon_sym_func] = ACTIONS(397), + [anon_sym_c_func] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_void] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_anyopaque] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), + [anon_sym_float] = ACTIONS(397), + [anon_sym_range] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_c_char] = ACTIONS(397), + [anon_sym_c_schar] = ACTIONS(397), + [anon_sym_c_uchar] = ACTIONS(397), + [anon_sym_c_short] = ACTIONS(397), + [anon_sym_c_ushort] = ACTIONS(397), + [anon_sym_c_int] = ACTIONS(397), + [anon_sym_c_uint] = ACTIONS(397), + [anon_sym_c_long] = ACTIONS(397), + [anon_sym_c_ulong] = ACTIONS(397), + [anon_sym_c_longlong] = ACTIONS(397), + [anon_sym_c_ulonglong] = ACTIONS(397), + [anon_sym_c_float] = ACTIONS(397), + [anon_sym_c_double] = ACTIONS(397), + [anon_sym_c_longdouble] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_orelse] = ACTIONS(397), + [anon_sym_catch] = ACTIONS(397), + [anon_sym_or] = ACTIONS(397), + [anon_sym_and] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_xor] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(406), + }, + [STATE(1718)] = { + [ts_builtin_sym_end] = ACTIONS(3978), + [sym_identifier] = ACTIONS(3980), + [anon_sym_import] = ACTIONS(3980), + [anon_sym_test] = ACTIONS(3980), + [anon_sym_hide] = ACTIONS(3980), + [anon_sym_func] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_struct] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_DOLLAR] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_void] = ACTIONS(3980), + [anon_sym_type] = ACTIONS(3980), + [anon_sym_anyopaque] = ACTIONS(3980), + [anon_sym_bool] = ACTIONS(3980), + [anon_sym_int] = ACTIONS(3980), + [anon_sym_uint] = ACTIONS(3980), + [anon_sym_float] = ACTIONS(3980), + [anon_sym_range] = ACTIONS(3980), + [anon_sym_i8] = ACTIONS(3980), + [anon_sym_i16] = ACTIONS(3980), + [anon_sym_i32] = ACTIONS(3980), + [anon_sym_i64] = ACTIONS(3980), + [anon_sym_u8] = ACTIONS(3980), + [anon_sym_u16] = ACTIONS(3980), + [anon_sym_u32] = ACTIONS(3980), + [anon_sym_u64] = ACTIONS(3980), + [anon_sym_isize] = ACTIONS(3980), + [anon_sym_usize] = ACTIONS(3980), + [anon_sym_f32] = ACTIONS(3980), + [anon_sym_f64] = ACTIONS(3980), + [anon_sym_c_char] = ACTIONS(3980), + [anon_sym_c_schar] = ACTIONS(3980), + [anon_sym_c_uchar] = ACTIONS(3980), + [anon_sym_c_short] = ACTIONS(3980), + [anon_sym_c_ushort] = ACTIONS(3980), + [anon_sym_c_int] = ACTIONS(3980), + [anon_sym_c_uint] = ACTIONS(3980), + [anon_sym_c_long] = ACTIONS(3980), + [anon_sym_c_ulong] = ACTIONS(3980), + [anon_sym_c_longlong] = ACTIONS(3980), + [anon_sym_c_ulonglong] = ACTIONS(3980), + [anon_sym_c_float] = ACTIONS(3980), + [anon_sym_c_double] = ACTIONS(3980), + [anon_sym_c_longdouble] = ACTIONS(3980), + [anon_sym_return] = ACTIONS(3980), + [anon_sym_yield] = ACTIONS(3980), + [anon_sym_break] = ACTIONS(3980), + [anon_sym_continue] = ACTIONS(3980), + [anon_sym_defer] = ACTIONS(3980), + [anon_sym_errdefer] = ACTIONS(3980), + [anon_sym_if] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3980), + [anon_sym_while] = ACTIONS(3980), + [anon_sym_expand] = ACTIONS(3980), + [anon_sym_for] = ACTIONS(3980), + [anon_sym_match] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + [anon_sym_TILDE] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_true] = ACTIONS(3980), + [anon_sym_false] = ACTIONS(3980), + [sym_none] = ACTIONS(3980), + [sym_undefined] = ACTIONS(3980), + [sym_sink] = ACTIONS(3980), + [sym_integer] = ACTIONS(3980), + [sym_float] = ACTIONS(3978), + [anon_sym_DQUOTE] = ACTIONS(3978), + [sym_multiline_string] = ACTIONS(3978), + [sym_character] = ACTIONS(3978), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3978), + }, + [STATE(1719)] = { + [ts_builtin_sym_end] = ACTIONS(3982), + [sym_identifier] = ACTIONS(3984), + [anon_sym_import] = ACTIONS(3984), + [anon_sym_test] = ACTIONS(3984), + [anon_sym_hide] = ACTIONS(3984), + [anon_sym_func] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_DOLLAR] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_void] = ACTIONS(3984), + [anon_sym_type] = ACTIONS(3984), + [anon_sym_anyopaque] = ACTIONS(3984), + [anon_sym_bool] = ACTIONS(3984), + [anon_sym_int] = ACTIONS(3984), + [anon_sym_uint] = ACTIONS(3984), + [anon_sym_float] = ACTIONS(3984), + [anon_sym_range] = ACTIONS(3984), + [anon_sym_i8] = ACTIONS(3984), + [anon_sym_i16] = ACTIONS(3984), + [anon_sym_i32] = ACTIONS(3984), + [anon_sym_i64] = ACTIONS(3984), + [anon_sym_u8] = ACTIONS(3984), + [anon_sym_u16] = ACTIONS(3984), + [anon_sym_u32] = ACTIONS(3984), + [anon_sym_u64] = ACTIONS(3984), + [anon_sym_isize] = ACTIONS(3984), + [anon_sym_usize] = ACTIONS(3984), + [anon_sym_f32] = ACTIONS(3984), + [anon_sym_f64] = ACTIONS(3984), + [anon_sym_c_char] = ACTIONS(3984), + [anon_sym_c_schar] = ACTIONS(3984), + [anon_sym_c_uchar] = ACTIONS(3984), + [anon_sym_c_short] = ACTIONS(3984), + [anon_sym_c_ushort] = ACTIONS(3984), + [anon_sym_c_int] = ACTIONS(3984), + [anon_sym_c_uint] = ACTIONS(3984), + [anon_sym_c_long] = ACTIONS(3984), + [anon_sym_c_ulong] = ACTIONS(3984), + [anon_sym_c_longlong] = ACTIONS(3984), + [anon_sym_c_ulonglong] = ACTIONS(3984), + [anon_sym_c_float] = ACTIONS(3984), + [anon_sym_c_double] = ACTIONS(3984), + [anon_sym_c_longdouble] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_yield] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_defer] = ACTIONS(3984), + [anon_sym_errdefer] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_else] = ACTIONS(3984), + [anon_sym_while] = ACTIONS(3984), + [anon_sym_expand] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_match] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_TILDE] = ACTIONS(3982), + [anon_sym_try] = ACTIONS(3984), + [anon_sym_DOT] = ACTIONS(3982), + [anon_sym_true] = ACTIONS(3984), + [anon_sym_false] = ACTIONS(3984), + [sym_none] = ACTIONS(3984), + [sym_undefined] = ACTIONS(3984), + [sym_sink] = ACTIONS(3984), + [sym_integer] = ACTIONS(3984), + [sym_float] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_multiline_string] = ACTIONS(3982), + [sym_character] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3982), + }, + [STATE(1720)] = { + [ts_builtin_sym_end] = ACTIONS(3986), + [sym_identifier] = ACTIONS(3988), + [anon_sym_import] = ACTIONS(3988), + [anon_sym_test] = ACTIONS(3988), + [anon_sym_hide] = ACTIONS(3988), + [anon_sym_func] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_void] = ACTIONS(3988), + [anon_sym_type] = ACTIONS(3988), + [anon_sym_anyopaque] = ACTIONS(3988), + [anon_sym_bool] = ACTIONS(3988), + [anon_sym_int] = ACTIONS(3988), + [anon_sym_uint] = ACTIONS(3988), + [anon_sym_float] = ACTIONS(3988), + [anon_sym_range] = ACTIONS(3988), + [anon_sym_i8] = ACTIONS(3988), + [anon_sym_i16] = ACTIONS(3988), + [anon_sym_i32] = ACTIONS(3988), + [anon_sym_i64] = ACTIONS(3988), + [anon_sym_u8] = ACTIONS(3988), + [anon_sym_u16] = ACTIONS(3988), + [anon_sym_u32] = ACTIONS(3988), + [anon_sym_u64] = ACTIONS(3988), + [anon_sym_isize] = ACTIONS(3988), + [anon_sym_usize] = ACTIONS(3988), + [anon_sym_f32] = ACTIONS(3988), + [anon_sym_f64] = ACTIONS(3988), + [anon_sym_c_char] = ACTIONS(3988), + [anon_sym_c_schar] = ACTIONS(3988), + [anon_sym_c_uchar] = ACTIONS(3988), + [anon_sym_c_short] = ACTIONS(3988), + [anon_sym_c_ushort] = ACTIONS(3988), + [anon_sym_c_int] = ACTIONS(3988), + [anon_sym_c_uint] = ACTIONS(3988), + [anon_sym_c_long] = ACTIONS(3988), + [anon_sym_c_ulong] = ACTIONS(3988), + [anon_sym_c_longlong] = ACTIONS(3988), + [anon_sym_c_ulonglong] = ACTIONS(3988), + [anon_sym_c_float] = ACTIONS(3988), + [anon_sym_c_double] = ACTIONS(3988), + [anon_sym_c_longdouble] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_defer] = ACTIONS(3988), + [anon_sym_errdefer] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_else] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_expand] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_match] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_try] = ACTIONS(3988), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_true] = ACTIONS(3988), + [anon_sym_false] = ACTIONS(3988), + [sym_none] = ACTIONS(3988), + [sym_undefined] = ACTIONS(3988), + [sym_sink] = ACTIONS(3988), + [sym_integer] = ACTIONS(3988), + [sym_float] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(3986), + [sym_multiline_string] = ACTIONS(3986), + [sym_character] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3986), + }, + [STATE(1721)] = { + [ts_builtin_sym_end] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3992), + [anon_sym_import] = ACTIONS(3992), + [anon_sym_test] = ACTIONS(3992), + [anon_sym_hide] = ACTIONS(3992), + [anon_sym_func] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_DOLLAR] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_void] = ACTIONS(3992), + [anon_sym_type] = ACTIONS(3992), + [anon_sym_anyopaque] = ACTIONS(3992), + [anon_sym_bool] = ACTIONS(3992), + [anon_sym_int] = ACTIONS(3992), + [anon_sym_uint] = ACTIONS(3992), + [anon_sym_float] = ACTIONS(3992), + [anon_sym_range] = ACTIONS(3992), + [anon_sym_i8] = ACTIONS(3992), + [anon_sym_i16] = ACTIONS(3992), + [anon_sym_i32] = ACTIONS(3992), + [anon_sym_i64] = ACTIONS(3992), + [anon_sym_u8] = ACTIONS(3992), + [anon_sym_u16] = ACTIONS(3992), + [anon_sym_u32] = ACTIONS(3992), + [anon_sym_u64] = ACTIONS(3992), + [anon_sym_isize] = ACTIONS(3992), + [anon_sym_usize] = ACTIONS(3992), + [anon_sym_f32] = ACTIONS(3992), + [anon_sym_f64] = ACTIONS(3992), + [anon_sym_c_char] = ACTIONS(3992), + [anon_sym_c_schar] = ACTIONS(3992), + [anon_sym_c_uchar] = ACTIONS(3992), + [anon_sym_c_short] = ACTIONS(3992), + [anon_sym_c_ushort] = ACTIONS(3992), + [anon_sym_c_int] = ACTIONS(3992), + [anon_sym_c_uint] = ACTIONS(3992), + [anon_sym_c_long] = ACTIONS(3992), + [anon_sym_c_ulong] = ACTIONS(3992), + [anon_sym_c_longlong] = ACTIONS(3992), + [anon_sym_c_ulonglong] = ACTIONS(3992), + [anon_sym_c_float] = ACTIONS(3992), + [anon_sym_c_double] = ACTIONS(3992), + [anon_sym_c_longdouble] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_yield] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_defer] = ACTIONS(3992), + [anon_sym_errdefer] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_expand] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_match] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [sym_none] = ACTIONS(3992), + [sym_undefined] = ACTIONS(3992), + [sym_sink] = ACTIONS(3992), + [sym_integer] = ACTIONS(3992), + [sym_float] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [sym_multiline_string] = ACTIONS(3990), + [sym_character] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3990), + }, + [STATE(1722)] = { + [ts_builtin_sym_end] = ACTIONS(3994), + [sym_identifier] = ACTIONS(3996), + [anon_sym_import] = ACTIONS(3996), + [anon_sym_test] = ACTIONS(3996), + [anon_sym_hide] = ACTIONS(3996), + [anon_sym_func] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_DOLLAR] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_void] = ACTIONS(3996), + [anon_sym_type] = ACTIONS(3996), + [anon_sym_anyopaque] = ACTIONS(3996), + [anon_sym_bool] = ACTIONS(3996), + [anon_sym_int] = ACTIONS(3996), + [anon_sym_uint] = ACTIONS(3996), + [anon_sym_float] = ACTIONS(3996), + [anon_sym_range] = ACTIONS(3996), + [anon_sym_i8] = ACTIONS(3996), + [anon_sym_i16] = ACTIONS(3996), + [anon_sym_i32] = ACTIONS(3996), + [anon_sym_i64] = ACTIONS(3996), + [anon_sym_u8] = ACTIONS(3996), + [anon_sym_u16] = ACTIONS(3996), + [anon_sym_u32] = ACTIONS(3996), + [anon_sym_u64] = ACTIONS(3996), + [anon_sym_isize] = ACTIONS(3996), + [anon_sym_usize] = ACTIONS(3996), + [anon_sym_f32] = ACTIONS(3996), + [anon_sym_f64] = ACTIONS(3996), + [anon_sym_c_char] = ACTIONS(3996), + [anon_sym_c_schar] = ACTIONS(3996), + [anon_sym_c_uchar] = ACTIONS(3996), + [anon_sym_c_short] = ACTIONS(3996), + [anon_sym_c_ushort] = ACTIONS(3996), + [anon_sym_c_int] = ACTIONS(3996), + [anon_sym_c_uint] = ACTIONS(3996), + [anon_sym_c_long] = ACTIONS(3996), + [anon_sym_c_ulong] = ACTIONS(3996), + [anon_sym_c_longlong] = ACTIONS(3996), + [anon_sym_c_ulonglong] = ACTIONS(3996), + [anon_sym_c_float] = ACTIONS(3996), + [anon_sym_c_double] = ACTIONS(3996), + [anon_sym_c_longdouble] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_yield] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_defer] = ACTIONS(3996), + [anon_sym_errdefer] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_else] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_expand] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_match] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3996), + [anon_sym_false] = ACTIONS(3996), + [sym_none] = ACTIONS(3996), + [sym_undefined] = ACTIONS(3996), + [sym_sink] = ACTIONS(3996), + [sym_integer] = ACTIONS(3996), + [sym_float] = ACTIONS(3994), + [anon_sym_DQUOTE] = ACTIONS(3994), + [sym_multiline_string] = ACTIONS(3994), + [sym_character] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3994), + }, + [STATE(1723)] = { + [ts_builtin_sym_end] = ACTIONS(3998), + [sym_identifier] = ACTIONS(4000), + [anon_sym_import] = ACTIONS(4000), + [anon_sym_test] = ACTIONS(4000), + [anon_sym_hide] = ACTIONS(4000), + [anon_sym_func] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_void] = ACTIONS(4000), + [anon_sym_type] = ACTIONS(4000), + [anon_sym_anyopaque] = ACTIONS(4000), + [anon_sym_bool] = ACTIONS(4000), + [anon_sym_int] = ACTIONS(4000), + [anon_sym_uint] = ACTIONS(4000), + [anon_sym_float] = ACTIONS(4000), + [anon_sym_range] = ACTIONS(4000), + [anon_sym_i8] = ACTIONS(4000), + [anon_sym_i16] = ACTIONS(4000), + [anon_sym_i32] = ACTIONS(4000), + [anon_sym_i64] = ACTIONS(4000), + [anon_sym_u8] = ACTIONS(4000), + [anon_sym_u16] = ACTIONS(4000), + [anon_sym_u32] = ACTIONS(4000), + [anon_sym_u64] = ACTIONS(4000), + [anon_sym_isize] = ACTIONS(4000), + [anon_sym_usize] = ACTIONS(4000), + [anon_sym_f32] = ACTIONS(4000), + [anon_sym_f64] = ACTIONS(4000), + [anon_sym_c_char] = ACTIONS(4000), + [anon_sym_c_schar] = ACTIONS(4000), + [anon_sym_c_uchar] = ACTIONS(4000), + [anon_sym_c_short] = ACTIONS(4000), + [anon_sym_c_ushort] = ACTIONS(4000), + [anon_sym_c_int] = ACTIONS(4000), + [anon_sym_c_uint] = ACTIONS(4000), + [anon_sym_c_long] = ACTIONS(4000), + [anon_sym_c_ulong] = ACTIONS(4000), + [anon_sym_c_longlong] = ACTIONS(4000), + [anon_sym_c_ulonglong] = ACTIONS(4000), + [anon_sym_c_float] = ACTIONS(4000), + [anon_sym_c_double] = ACTIONS(4000), + [anon_sym_c_longdouble] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_yield] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_defer] = ACTIONS(4000), + [anon_sym_errdefer] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_expand] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_match] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_TILDE] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [sym_none] = ACTIONS(4000), + [sym_undefined] = ACTIONS(4000), + [sym_sink] = ACTIONS(4000), + [sym_integer] = ACTIONS(4000), + [sym_float] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [sym_multiline_string] = ACTIONS(3998), + [sym_character] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3998), + }, + [STATE(1724)] = { + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4004), + [anon_sym_import] = ACTIONS(4004), + [anon_sym_test] = ACTIONS(4004), + [anon_sym_hide] = ACTIONS(4004), + [anon_sym_func] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_void] = ACTIONS(4004), + [anon_sym_type] = ACTIONS(4004), + [anon_sym_anyopaque] = ACTIONS(4004), + [anon_sym_bool] = ACTIONS(4004), + [anon_sym_int] = ACTIONS(4004), + [anon_sym_uint] = ACTIONS(4004), + [anon_sym_float] = ACTIONS(4004), + [anon_sym_range] = ACTIONS(4004), + [anon_sym_i8] = ACTIONS(4004), + [anon_sym_i16] = ACTIONS(4004), + [anon_sym_i32] = ACTIONS(4004), + [anon_sym_i64] = ACTIONS(4004), + [anon_sym_u8] = ACTIONS(4004), + [anon_sym_u16] = ACTIONS(4004), + [anon_sym_u32] = ACTIONS(4004), + [anon_sym_u64] = ACTIONS(4004), + [anon_sym_isize] = ACTIONS(4004), + [anon_sym_usize] = ACTIONS(4004), + [anon_sym_f32] = ACTIONS(4004), + [anon_sym_f64] = ACTIONS(4004), + [anon_sym_c_char] = ACTIONS(4004), + [anon_sym_c_schar] = ACTIONS(4004), + [anon_sym_c_uchar] = ACTIONS(4004), + [anon_sym_c_short] = ACTIONS(4004), + [anon_sym_c_ushort] = ACTIONS(4004), + [anon_sym_c_int] = ACTIONS(4004), + [anon_sym_c_uint] = ACTIONS(4004), + [anon_sym_c_long] = ACTIONS(4004), + [anon_sym_c_ulong] = ACTIONS(4004), + [anon_sym_c_longlong] = ACTIONS(4004), + [anon_sym_c_ulonglong] = ACTIONS(4004), + [anon_sym_c_float] = ACTIONS(4004), + [anon_sym_c_double] = ACTIONS(4004), + [anon_sym_c_longdouble] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_yield] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_defer] = ACTIONS(4004), + [anon_sym_errdefer] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_expand] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_match] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [sym_none] = ACTIONS(4004), + [sym_undefined] = ACTIONS(4004), + [sym_sink] = ACTIONS(4004), + [sym_integer] = ACTIONS(4004), + [sym_float] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [sym_multiline_string] = ACTIONS(4002), + [sym_character] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4002), + }, + [STATE(1725)] = { + [ts_builtin_sym_end] = ACTIONS(4006), + [sym_identifier] = ACTIONS(4008), + [anon_sym_import] = ACTIONS(4008), + [anon_sym_test] = ACTIONS(4008), + [anon_sym_hide] = ACTIONS(4008), + [anon_sym_func] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_DOLLAR] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_void] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_anyopaque] = ACTIONS(4008), + [anon_sym_bool] = ACTIONS(4008), + [anon_sym_int] = ACTIONS(4008), + [anon_sym_uint] = ACTIONS(4008), + [anon_sym_float] = ACTIONS(4008), + [anon_sym_range] = ACTIONS(4008), + [anon_sym_i8] = ACTIONS(4008), + [anon_sym_i16] = ACTIONS(4008), + [anon_sym_i32] = ACTIONS(4008), + [anon_sym_i64] = ACTIONS(4008), + [anon_sym_u8] = ACTIONS(4008), + [anon_sym_u16] = ACTIONS(4008), + [anon_sym_u32] = ACTIONS(4008), + [anon_sym_u64] = ACTIONS(4008), + [anon_sym_isize] = ACTIONS(4008), + [anon_sym_usize] = ACTIONS(4008), + [anon_sym_f32] = ACTIONS(4008), + [anon_sym_f64] = ACTIONS(4008), + [anon_sym_c_char] = ACTIONS(4008), + [anon_sym_c_schar] = ACTIONS(4008), + [anon_sym_c_uchar] = ACTIONS(4008), + [anon_sym_c_short] = ACTIONS(4008), + [anon_sym_c_ushort] = ACTIONS(4008), + [anon_sym_c_int] = ACTIONS(4008), + [anon_sym_c_uint] = ACTIONS(4008), + [anon_sym_c_long] = ACTIONS(4008), + [anon_sym_c_ulong] = ACTIONS(4008), + [anon_sym_c_longlong] = ACTIONS(4008), + [anon_sym_c_ulonglong] = ACTIONS(4008), + [anon_sym_c_float] = ACTIONS(4008), + [anon_sym_c_double] = ACTIONS(4008), + [anon_sym_c_longdouble] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_defer] = ACTIONS(4008), + [anon_sym_errdefer] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_else] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_expand] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_true] = ACTIONS(4008), + [anon_sym_false] = ACTIONS(4008), + [sym_none] = ACTIONS(4008), + [sym_undefined] = ACTIONS(4008), + [sym_sink] = ACTIONS(4008), + [sym_integer] = ACTIONS(4008), + [sym_float] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(4006), + [sym_multiline_string] = ACTIONS(4006), + [sym_character] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4006), + }, + [STATE(1726)] = { + [ts_builtin_sym_end] = ACTIONS(4010), + [sym_identifier] = ACTIONS(4012), + [anon_sym_import] = ACTIONS(4012), + [anon_sym_test] = ACTIONS(4012), + [anon_sym_hide] = ACTIONS(4012), + [anon_sym_func] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_void] = ACTIONS(4012), + [anon_sym_type] = ACTIONS(4012), + [anon_sym_anyopaque] = ACTIONS(4012), + [anon_sym_bool] = ACTIONS(4012), + [anon_sym_int] = ACTIONS(4012), + [anon_sym_uint] = ACTIONS(4012), + [anon_sym_float] = ACTIONS(4012), + [anon_sym_range] = ACTIONS(4012), + [anon_sym_i8] = ACTIONS(4012), + [anon_sym_i16] = ACTIONS(4012), + [anon_sym_i32] = ACTIONS(4012), + [anon_sym_i64] = ACTIONS(4012), + [anon_sym_u8] = ACTIONS(4012), + [anon_sym_u16] = ACTIONS(4012), + [anon_sym_u32] = ACTIONS(4012), + [anon_sym_u64] = ACTIONS(4012), + [anon_sym_isize] = ACTIONS(4012), + [anon_sym_usize] = ACTIONS(4012), + [anon_sym_f32] = ACTIONS(4012), + [anon_sym_f64] = ACTIONS(4012), + [anon_sym_c_char] = ACTIONS(4012), + [anon_sym_c_schar] = ACTIONS(4012), + [anon_sym_c_uchar] = ACTIONS(4012), + [anon_sym_c_short] = ACTIONS(4012), + [anon_sym_c_ushort] = ACTIONS(4012), + [anon_sym_c_int] = ACTIONS(4012), + [anon_sym_c_uint] = ACTIONS(4012), + [anon_sym_c_long] = ACTIONS(4012), + [anon_sym_c_ulong] = ACTIONS(4012), + [anon_sym_c_longlong] = ACTIONS(4012), + [anon_sym_c_ulonglong] = ACTIONS(4012), + [anon_sym_c_float] = ACTIONS(4012), + [anon_sym_c_double] = ACTIONS(4012), + [anon_sym_c_longdouble] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_yield] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_defer] = ACTIONS(4012), + [anon_sym_errdefer] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_else] = ACTIONS(4012), + [anon_sym_while] = ACTIONS(4012), + [anon_sym_expand] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_match] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_try] = ACTIONS(4012), + [anon_sym_DOT] = ACTIONS(4010), + [anon_sym_true] = ACTIONS(4012), + [anon_sym_false] = ACTIONS(4012), + [sym_none] = ACTIONS(4012), + [sym_undefined] = ACTIONS(4012), + [sym_sink] = ACTIONS(4012), + [sym_integer] = ACTIONS(4012), + [sym_float] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(4010), + [sym_multiline_string] = ACTIONS(4010), + [sym_character] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4010), + }, + [STATE(1727)] = { + [ts_builtin_sym_end] = ACTIONS(4014), + [sym_identifier] = ACTIONS(4016), + [anon_sym_import] = ACTIONS(4016), + [anon_sym_test] = ACTIONS(4016), + [anon_sym_hide] = ACTIONS(4016), + [anon_sym_func] = ACTIONS(4016), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_RPAREN] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_RBRACE] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4014), + [anon_sym_void] = ACTIONS(4016), + [anon_sym_type] = ACTIONS(4016), + [anon_sym_anyopaque] = ACTIONS(4016), + [anon_sym_bool] = ACTIONS(4016), + [anon_sym_int] = ACTIONS(4016), + [anon_sym_uint] = ACTIONS(4016), + [anon_sym_float] = ACTIONS(4016), + [anon_sym_range] = ACTIONS(4016), + [anon_sym_i8] = ACTIONS(4016), + [anon_sym_i16] = ACTIONS(4016), + [anon_sym_i32] = ACTIONS(4016), + [anon_sym_i64] = ACTIONS(4016), + [anon_sym_u8] = ACTIONS(4016), + [anon_sym_u16] = ACTIONS(4016), + [anon_sym_u32] = ACTIONS(4016), + [anon_sym_u64] = ACTIONS(4016), + [anon_sym_isize] = ACTIONS(4016), + [anon_sym_usize] = ACTIONS(4016), + [anon_sym_f32] = ACTIONS(4016), + [anon_sym_f64] = ACTIONS(4016), + [anon_sym_c_char] = ACTIONS(4016), + [anon_sym_c_schar] = ACTIONS(4016), + [anon_sym_c_uchar] = ACTIONS(4016), + [anon_sym_c_short] = ACTIONS(4016), + [anon_sym_c_ushort] = ACTIONS(4016), + [anon_sym_c_int] = ACTIONS(4016), + [anon_sym_c_uint] = ACTIONS(4016), + [anon_sym_c_long] = ACTIONS(4016), + [anon_sym_c_ulong] = ACTIONS(4016), + [anon_sym_c_longlong] = ACTIONS(4016), + [anon_sym_c_ulonglong] = ACTIONS(4016), + [anon_sym_c_float] = ACTIONS(4016), + [anon_sym_c_double] = ACTIONS(4016), + [anon_sym_c_longdouble] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_yield] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_defer] = ACTIONS(4016), + [anon_sym_errdefer] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_else] = ACTIONS(4016), + [anon_sym_while] = ACTIONS(4016), + [anon_sym_expand] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_match] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(4014), + [anon_sym_true] = ACTIONS(4016), + [anon_sym_false] = ACTIONS(4016), + [sym_none] = ACTIONS(4016), + [sym_undefined] = ACTIONS(4016), + [sym_sink] = ACTIONS(4016), + [sym_integer] = ACTIONS(4016), + [sym_float] = ACTIONS(4014), + [anon_sym_DQUOTE] = ACTIONS(4014), + [sym_multiline_string] = ACTIONS(4014), + [sym_character] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4014), + }, + [STATE(1728)] = { + [ts_builtin_sym_end] = ACTIONS(4018), + [sym_identifier] = ACTIONS(4020), + [anon_sym_import] = ACTIONS(4020), + [anon_sym_test] = ACTIONS(4020), + [anon_sym_hide] = ACTIONS(4020), + [anon_sym_func] = ACTIONS(4020), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_RBRACE] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_void] = ACTIONS(4020), + [anon_sym_type] = ACTIONS(4020), + [anon_sym_anyopaque] = ACTIONS(4020), + [anon_sym_bool] = ACTIONS(4020), + [anon_sym_int] = ACTIONS(4020), + [anon_sym_uint] = ACTIONS(4020), + [anon_sym_float] = ACTIONS(4020), + [anon_sym_range] = ACTIONS(4020), + [anon_sym_i8] = ACTIONS(4020), + [anon_sym_i16] = ACTIONS(4020), + [anon_sym_i32] = ACTIONS(4020), + [anon_sym_i64] = ACTIONS(4020), + [anon_sym_u8] = ACTIONS(4020), + [anon_sym_u16] = ACTIONS(4020), + [anon_sym_u32] = ACTIONS(4020), + [anon_sym_u64] = ACTIONS(4020), + [anon_sym_isize] = ACTIONS(4020), + [anon_sym_usize] = ACTIONS(4020), + [anon_sym_f32] = ACTIONS(4020), + [anon_sym_f64] = ACTIONS(4020), + [anon_sym_c_char] = ACTIONS(4020), + [anon_sym_c_schar] = ACTIONS(4020), + [anon_sym_c_uchar] = ACTIONS(4020), + [anon_sym_c_short] = ACTIONS(4020), + [anon_sym_c_ushort] = ACTIONS(4020), + [anon_sym_c_int] = ACTIONS(4020), + [anon_sym_c_uint] = ACTIONS(4020), + [anon_sym_c_long] = ACTIONS(4020), + [anon_sym_c_ulong] = ACTIONS(4020), + [anon_sym_c_longlong] = ACTIONS(4020), + [anon_sym_c_ulonglong] = ACTIONS(4020), + [anon_sym_c_float] = ACTIONS(4020), + [anon_sym_c_double] = ACTIONS(4020), + [anon_sym_c_longdouble] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_yield] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_defer] = ACTIONS(4020), + [anon_sym_errdefer] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_expand] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_match] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_TILDE] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_true] = ACTIONS(4020), + [anon_sym_false] = ACTIONS(4020), + [sym_none] = ACTIONS(4020), + [sym_undefined] = ACTIONS(4020), + [sym_sink] = ACTIONS(4020), + [sym_integer] = ACTIONS(4020), + [sym_float] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [sym_multiline_string] = ACTIONS(4018), + [sym_character] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4018), + }, + [STATE(1729)] = { + [ts_builtin_sym_end] = ACTIONS(4022), + [sym_identifier] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_test] = ACTIONS(4024), + [anon_sym_hide] = ACTIONS(4024), + [anon_sym_func] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_RPAREN] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_DOLLAR] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_void] = ACTIONS(4024), + [anon_sym_type] = ACTIONS(4024), + [anon_sym_anyopaque] = ACTIONS(4024), + [anon_sym_bool] = ACTIONS(4024), + [anon_sym_int] = ACTIONS(4024), + [anon_sym_uint] = ACTIONS(4024), + [anon_sym_float] = ACTIONS(4024), + [anon_sym_range] = ACTIONS(4024), + [anon_sym_i8] = ACTIONS(4024), + [anon_sym_i16] = ACTIONS(4024), + [anon_sym_i32] = ACTIONS(4024), + [anon_sym_i64] = ACTIONS(4024), + [anon_sym_u8] = ACTIONS(4024), + [anon_sym_u16] = ACTIONS(4024), + [anon_sym_u32] = ACTIONS(4024), + [anon_sym_u64] = ACTIONS(4024), + [anon_sym_isize] = ACTIONS(4024), + [anon_sym_usize] = ACTIONS(4024), + [anon_sym_f32] = ACTIONS(4024), + [anon_sym_f64] = ACTIONS(4024), + [anon_sym_c_char] = ACTIONS(4024), + [anon_sym_c_schar] = ACTIONS(4024), + [anon_sym_c_uchar] = ACTIONS(4024), + [anon_sym_c_short] = ACTIONS(4024), + [anon_sym_c_ushort] = ACTIONS(4024), + [anon_sym_c_int] = ACTIONS(4024), + [anon_sym_c_uint] = ACTIONS(4024), + [anon_sym_c_long] = ACTIONS(4024), + [anon_sym_c_ulong] = ACTIONS(4024), + [anon_sym_c_longlong] = ACTIONS(4024), + [anon_sym_c_ulonglong] = ACTIONS(4024), + [anon_sym_c_float] = ACTIONS(4024), + [anon_sym_c_double] = ACTIONS(4024), + [anon_sym_c_longdouble] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_yield] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_defer] = ACTIONS(4024), + [anon_sym_errdefer] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_else] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_expand] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_match] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_true] = ACTIONS(4024), + [anon_sym_false] = ACTIONS(4024), + [sym_none] = ACTIONS(4024), + [sym_undefined] = ACTIONS(4024), + [sym_sink] = ACTIONS(4024), + [sym_integer] = ACTIONS(4024), + [sym_float] = ACTIONS(4022), + [anon_sym_DQUOTE] = ACTIONS(4022), + [sym_multiline_string] = ACTIONS(4022), + [sym_character] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4022), + }, + [STATE(1730)] = { + [ts_builtin_sym_end] = ACTIONS(4026), + [sym_identifier] = ACTIONS(4028), + [anon_sym_import] = ACTIONS(4028), + [anon_sym_test] = ACTIONS(4028), + [anon_sym_hide] = ACTIONS(4028), + [anon_sym_func] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_void] = ACTIONS(4028), + [anon_sym_type] = ACTIONS(4028), + [anon_sym_anyopaque] = ACTIONS(4028), + [anon_sym_bool] = ACTIONS(4028), + [anon_sym_int] = ACTIONS(4028), + [anon_sym_uint] = ACTIONS(4028), + [anon_sym_float] = ACTIONS(4028), + [anon_sym_range] = ACTIONS(4028), + [anon_sym_i8] = ACTIONS(4028), + [anon_sym_i16] = ACTIONS(4028), + [anon_sym_i32] = ACTIONS(4028), + [anon_sym_i64] = ACTIONS(4028), + [anon_sym_u8] = ACTIONS(4028), + [anon_sym_u16] = ACTIONS(4028), + [anon_sym_u32] = ACTIONS(4028), + [anon_sym_u64] = ACTIONS(4028), + [anon_sym_isize] = ACTIONS(4028), + [anon_sym_usize] = ACTIONS(4028), + [anon_sym_f32] = ACTIONS(4028), + [anon_sym_f64] = ACTIONS(4028), + [anon_sym_c_char] = ACTIONS(4028), + [anon_sym_c_schar] = ACTIONS(4028), + [anon_sym_c_uchar] = ACTIONS(4028), + [anon_sym_c_short] = ACTIONS(4028), + [anon_sym_c_ushort] = ACTIONS(4028), + [anon_sym_c_int] = ACTIONS(4028), + [anon_sym_c_uint] = ACTIONS(4028), + [anon_sym_c_long] = ACTIONS(4028), + [anon_sym_c_ulong] = ACTIONS(4028), + [anon_sym_c_longlong] = ACTIONS(4028), + [anon_sym_c_ulonglong] = ACTIONS(4028), + [anon_sym_c_float] = ACTIONS(4028), + [anon_sym_c_double] = ACTIONS(4028), + [anon_sym_c_longdouble] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_yield] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_defer] = ACTIONS(4028), + [anon_sym_errdefer] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_expand] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_match] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [sym_none] = ACTIONS(4028), + [sym_undefined] = ACTIONS(4028), + [sym_sink] = ACTIONS(4028), + [sym_integer] = ACTIONS(4028), + [sym_float] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_multiline_string] = ACTIONS(4026), + [sym_character] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4026), + }, + [STATE(1731)] = { + [ts_builtin_sym_end] = ACTIONS(4030), + [sym_identifier] = ACTIONS(4032), + [anon_sym_import] = ACTIONS(4032), + [anon_sym_test] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_func] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_void] = ACTIONS(4032), + [anon_sym_type] = ACTIONS(4032), + [anon_sym_anyopaque] = ACTIONS(4032), + [anon_sym_bool] = ACTIONS(4032), + [anon_sym_int] = ACTIONS(4032), + [anon_sym_uint] = ACTIONS(4032), + [anon_sym_float] = ACTIONS(4032), + [anon_sym_range] = ACTIONS(4032), + [anon_sym_i8] = ACTIONS(4032), + [anon_sym_i16] = ACTIONS(4032), + [anon_sym_i32] = ACTIONS(4032), + [anon_sym_i64] = ACTIONS(4032), + [anon_sym_u8] = ACTIONS(4032), + [anon_sym_u16] = ACTIONS(4032), + [anon_sym_u32] = ACTIONS(4032), + [anon_sym_u64] = ACTIONS(4032), + [anon_sym_isize] = ACTIONS(4032), + [anon_sym_usize] = ACTIONS(4032), + [anon_sym_f32] = ACTIONS(4032), + [anon_sym_f64] = ACTIONS(4032), + [anon_sym_c_char] = ACTIONS(4032), + [anon_sym_c_schar] = ACTIONS(4032), + [anon_sym_c_uchar] = ACTIONS(4032), + [anon_sym_c_short] = ACTIONS(4032), + [anon_sym_c_ushort] = ACTIONS(4032), + [anon_sym_c_int] = ACTIONS(4032), + [anon_sym_c_uint] = ACTIONS(4032), + [anon_sym_c_long] = ACTIONS(4032), + [anon_sym_c_ulong] = ACTIONS(4032), + [anon_sym_c_longlong] = ACTIONS(4032), + [anon_sym_c_ulonglong] = ACTIONS(4032), + [anon_sym_c_float] = ACTIONS(4032), + [anon_sym_c_double] = ACTIONS(4032), + [anon_sym_c_longdouble] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_yield] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_defer] = ACTIONS(4032), + [anon_sym_errdefer] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_else] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_expand] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [sym_none] = ACTIONS(4032), + [sym_undefined] = ACTIONS(4032), + [sym_sink] = ACTIONS(4032), + [sym_integer] = ACTIONS(4032), + [sym_float] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [sym_multiline_string] = ACTIONS(4030), + [sym_character] = ACTIONS(4030), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4030), + }, + [STATE(1732)] = { + [ts_builtin_sym_end] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(4036), + [anon_sym_test] = ACTIONS(4036), + [anon_sym_hide] = ACTIONS(4036), + [anon_sym_func] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_RBRACE] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_DOLLAR] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_void] = ACTIONS(4036), + [anon_sym_type] = ACTIONS(4036), + [anon_sym_anyopaque] = ACTIONS(4036), + [anon_sym_bool] = ACTIONS(4036), + [anon_sym_int] = ACTIONS(4036), + [anon_sym_uint] = ACTIONS(4036), + [anon_sym_float] = ACTIONS(4036), + [anon_sym_range] = ACTIONS(4036), + [anon_sym_i8] = ACTIONS(4036), + [anon_sym_i16] = ACTIONS(4036), + [anon_sym_i32] = ACTIONS(4036), + [anon_sym_i64] = ACTIONS(4036), + [anon_sym_u8] = ACTIONS(4036), + [anon_sym_u16] = ACTIONS(4036), + [anon_sym_u32] = ACTIONS(4036), + [anon_sym_u64] = ACTIONS(4036), + [anon_sym_isize] = ACTIONS(4036), + [anon_sym_usize] = ACTIONS(4036), + [anon_sym_f32] = ACTIONS(4036), + [anon_sym_f64] = ACTIONS(4036), + [anon_sym_c_char] = ACTIONS(4036), + [anon_sym_c_schar] = ACTIONS(4036), + [anon_sym_c_uchar] = ACTIONS(4036), + [anon_sym_c_short] = ACTIONS(4036), + [anon_sym_c_ushort] = ACTIONS(4036), + [anon_sym_c_int] = ACTIONS(4036), + [anon_sym_c_uint] = ACTIONS(4036), + [anon_sym_c_long] = ACTIONS(4036), + [anon_sym_c_ulong] = ACTIONS(4036), + [anon_sym_c_longlong] = ACTIONS(4036), + [anon_sym_c_ulonglong] = ACTIONS(4036), + [anon_sym_c_float] = ACTIONS(4036), + [anon_sym_c_double] = ACTIONS(4036), + [anon_sym_c_longdouble] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_yield] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_defer] = ACTIONS(4036), + [anon_sym_errdefer] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_else] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_expand] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_match] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_true] = ACTIONS(4036), + [anon_sym_false] = ACTIONS(4036), + [sym_none] = ACTIONS(4036), + [sym_undefined] = ACTIONS(4036), + [sym_sink] = ACTIONS(4036), + [sym_integer] = ACTIONS(4036), + [sym_float] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [sym_multiline_string] = ACTIONS(4034), + [sym_character] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4034), + }, + [STATE(1733)] = { + [ts_builtin_sym_end] = ACTIONS(4038), + [sym_identifier] = ACTIONS(4040), + [anon_sym_import] = ACTIONS(4040), + [anon_sym_test] = ACTIONS(4040), + [anon_sym_hide] = ACTIONS(4040), + [anon_sym_func] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4038), + [anon_sym_RBRACE] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4038), + [anon_sym_void] = ACTIONS(4040), + [anon_sym_type] = ACTIONS(4040), + [anon_sym_anyopaque] = ACTIONS(4040), + [anon_sym_bool] = ACTIONS(4040), + [anon_sym_int] = ACTIONS(4040), + [anon_sym_uint] = ACTIONS(4040), + [anon_sym_float] = ACTIONS(4040), + [anon_sym_range] = ACTIONS(4040), + [anon_sym_i8] = ACTIONS(4040), + [anon_sym_i16] = ACTIONS(4040), + [anon_sym_i32] = ACTIONS(4040), + [anon_sym_i64] = ACTIONS(4040), + [anon_sym_u8] = ACTIONS(4040), + [anon_sym_u16] = ACTIONS(4040), + [anon_sym_u32] = ACTIONS(4040), + [anon_sym_u64] = ACTIONS(4040), + [anon_sym_isize] = ACTIONS(4040), + [anon_sym_usize] = ACTIONS(4040), + [anon_sym_f32] = ACTIONS(4040), + [anon_sym_f64] = ACTIONS(4040), + [anon_sym_c_char] = ACTIONS(4040), + [anon_sym_c_schar] = ACTIONS(4040), + [anon_sym_c_uchar] = ACTIONS(4040), + [anon_sym_c_short] = ACTIONS(4040), + [anon_sym_c_ushort] = ACTIONS(4040), + [anon_sym_c_int] = ACTIONS(4040), + [anon_sym_c_uint] = ACTIONS(4040), + [anon_sym_c_long] = ACTIONS(4040), + [anon_sym_c_ulong] = ACTIONS(4040), + [anon_sym_c_longlong] = ACTIONS(4040), + [anon_sym_c_ulonglong] = ACTIONS(4040), + [anon_sym_c_float] = ACTIONS(4040), + [anon_sym_c_double] = ACTIONS(4040), + [anon_sym_c_longdouble] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_yield] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_defer] = ACTIONS(4040), + [anon_sym_errdefer] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_else] = ACTIONS(4040), + [anon_sym_while] = ACTIONS(4040), + [anon_sym_expand] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_match] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_try] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_true] = ACTIONS(4040), + [anon_sym_false] = ACTIONS(4040), + [sym_none] = ACTIONS(4040), + [sym_undefined] = ACTIONS(4040), + [sym_sink] = ACTIONS(4040), + [sym_integer] = ACTIONS(4040), + [sym_float] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [sym_multiline_string] = ACTIONS(4038), + [sym_character] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4038), + }, + [STATE(1734)] = { + [ts_builtin_sym_end] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_test] = ACTIONS(4044), + [anon_sym_hide] = ACTIONS(4044), + [anon_sym_func] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_void] = ACTIONS(4044), + [anon_sym_type] = ACTIONS(4044), + [anon_sym_anyopaque] = ACTIONS(4044), + [anon_sym_bool] = ACTIONS(4044), + [anon_sym_int] = ACTIONS(4044), + [anon_sym_uint] = ACTIONS(4044), + [anon_sym_float] = ACTIONS(4044), + [anon_sym_range] = ACTIONS(4044), + [anon_sym_i8] = ACTIONS(4044), + [anon_sym_i16] = ACTIONS(4044), + [anon_sym_i32] = ACTIONS(4044), + [anon_sym_i64] = ACTIONS(4044), + [anon_sym_u8] = ACTIONS(4044), + [anon_sym_u16] = ACTIONS(4044), + [anon_sym_u32] = ACTIONS(4044), + [anon_sym_u64] = ACTIONS(4044), + [anon_sym_isize] = ACTIONS(4044), + [anon_sym_usize] = ACTIONS(4044), + [anon_sym_f32] = ACTIONS(4044), + [anon_sym_f64] = ACTIONS(4044), + [anon_sym_c_char] = ACTIONS(4044), + [anon_sym_c_schar] = ACTIONS(4044), + [anon_sym_c_uchar] = ACTIONS(4044), + [anon_sym_c_short] = ACTIONS(4044), + [anon_sym_c_ushort] = ACTIONS(4044), + [anon_sym_c_int] = ACTIONS(4044), + [anon_sym_c_uint] = ACTIONS(4044), + [anon_sym_c_long] = ACTIONS(4044), + [anon_sym_c_ulong] = ACTIONS(4044), + [anon_sym_c_longlong] = ACTIONS(4044), + [anon_sym_c_ulonglong] = ACTIONS(4044), + [anon_sym_c_float] = ACTIONS(4044), + [anon_sym_c_double] = ACTIONS(4044), + [anon_sym_c_longdouble] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_yield] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_defer] = ACTIONS(4044), + [anon_sym_errdefer] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_expand] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_match] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_true] = ACTIONS(4044), + [anon_sym_false] = ACTIONS(4044), + [sym_none] = ACTIONS(4044), + [sym_undefined] = ACTIONS(4044), + [sym_sink] = ACTIONS(4044), + [sym_integer] = ACTIONS(4044), + [sym_float] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [sym_multiline_string] = ACTIONS(4042), + [sym_character] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4042), + }, + [STATE(1735)] = { + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_test] = ACTIONS(4048), + [anon_sym_hide] = ACTIONS(4048), + [anon_sym_func] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_void] = ACTIONS(4048), + [anon_sym_type] = ACTIONS(4048), + [anon_sym_anyopaque] = ACTIONS(4048), + [anon_sym_bool] = ACTIONS(4048), + [anon_sym_int] = ACTIONS(4048), + [anon_sym_uint] = ACTIONS(4048), + [anon_sym_float] = ACTIONS(4048), + [anon_sym_range] = ACTIONS(4048), + [anon_sym_i8] = ACTIONS(4048), + [anon_sym_i16] = ACTIONS(4048), + [anon_sym_i32] = ACTIONS(4048), + [anon_sym_i64] = ACTIONS(4048), + [anon_sym_u8] = ACTIONS(4048), + [anon_sym_u16] = ACTIONS(4048), + [anon_sym_u32] = ACTIONS(4048), + [anon_sym_u64] = ACTIONS(4048), + [anon_sym_isize] = ACTIONS(4048), + [anon_sym_usize] = ACTIONS(4048), + [anon_sym_f32] = ACTIONS(4048), + [anon_sym_f64] = ACTIONS(4048), + [anon_sym_c_char] = ACTIONS(4048), + [anon_sym_c_schar] = ACTIONS(4048), + [anon_sym_c_uchar] = ACTIONS(4048), + [anon_sym_c_short] = ACTIONS(4048), + [anon_sym_c_ushort] = ACTIONS(4048), + [anon_sym_c_int] = ACTIONS(4048), + [anon_sym_c_uint] = ACTIONS(4048), + [anon_sym_c_long] = ACTIONS(4048), + [anon_sym_c_ulong] = ACTIONS(4048), + [anon_sym_c_longlong] = ACTIONS(4048), + [anon_sym_c_ulonglong] = ACTIONS(4048), + [anon_sym_c_float] = ACTIONS(4048), + [anon_sym_c_double] = ACTIONS(4048), + [anon_sym_c_longdouble] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_defer] = ACTIONS(4048), + [anon_sym_errdefer] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_else] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_expand] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_match] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_DOT] = ACTIONS(4046), + [anon_sym_true] = ACTIONS(4048), + [anon_sym_false] = ACTIONS(4048), + [sym_none] = ACTIONS(4048), + [sym_undefined] = ACTIONS(4048), + [sym_sink] = ACTIONS(4048), + [sym_integer] = ACTIONS(4048), + [sym_float] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_multiline_string] = ACTIONS(4046), + [sym_character] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4046), + }, + [STATE(1736)] = { + [ts_builtin_sym_end] = ACTIONS(4050), + [sym_identifier] = ACTIONS(4052), + [anon_sym_import] = ACTIONS(4052), + [anon_sym_test] = ACTIONS(4052), + [anon_sym_hide] = ACTIONS(4052), + [anon_sym_func] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_DOLLAR] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_void] = ACTIONS(4052), + [anon_sym_type] = ACTIONS(4052), + [anon_sym_anyopaque] = ACTIONS(4052), + [anon_sym_bool] = ACTIONS(4052), + [anon_sym_int] = ACTIONS(4052), + [anon_sym_uint] = ACTIONS(4052), + [anon_sym_float] = ACTIONS(4052), + [anon_sym_range] = ACTIONS(4052), + [anon_sym_i8] = ACTIONS(4052), + [anon_sym_i16] = ACTIONS(4052), + [anon_sym_i32] = ACTIONS(4052), + [anon_sym_i64] = ACTIONS(4052), + [anon_sym_u8] = ACTIONS(4052), + [anon_sym_u16] = ACTIONS(4052), + [anon_sym_u32] = ACTIONS(4052), + [anon_sym_u64] = ACTIONS(4052), + [anon_sym_isize] = ACTIONS(4052), + [anon_sym_usize] = ACTIONS(4052), + [anon_sym_f32] = ACTIONS(4052), + [anon_sym_f64] = ACTIONS(4052), + [anon_sym_c_char] = ACTIONS(4052), + [anon_sym_c_schar] = ACTIONS(4052), + [anon_sym_c_uchar] = ACTIONS(4052), + [anon_sym_c_short] = ACTIONS(4052), + [anon_sym_c_ushort] = ACTIONS(4052), + [anon_sym_c_int] = ACTIONS(4052), + [anon_sym_c_uint] = ACTIONS(4052), + [anon_sym_c_long] = ACTIONS(4052), + [anon_sym_c_ulong] = ACTIONS(4052), + [anon_sym_c_longlong] = ACTIONS(4052), + [anon_sym_c_ulonglong] = ACTIONS(4052), + [anon_sym_c_float] = ACTIONS(4052), + [anon_sym_c_double] = ACTIONS(4052), + [anon_sym_c_longdouble] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_yield] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_defer] = ACTIONS(4052), + [anon_sym_errdefer] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_else] = ACTIONS(4052), + [anon_sym_while] = ACTIONS(4052), + [anon_sym_expand] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_match] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(4052), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_true] = ACTIONS(4052), + [anon_sym_false] = ACTIONS(4052), + [sym_none] = ACTIONS(4052), + [sym_undefined] = ACTIONS(4052), + [sym_sink] = ACTIONS(4052), + [sym_integer] = ACTIONS(4052), + [sym_float] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_multiline_string] = ACTIONS(4050), + [sym_character] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4050), + }, + [STATE(1737)] = { + [ts_builtin_sym_end] = ACTIONS(4054), + [sym_identifier] = ACTIONS(4056), + [anon_sym_import] = ACTIONS(4056), + [anon_sym_test] = ACTIONS(4056), + [anon_sym_hide] = ACTIONS(4056), + [anon_sym_func] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_DOLLAR] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_void] = ACTIONS(4056), + [anon_sym_type] = ACTIONS(4056), + [anon_sym_anyopaque] = ACTIONS(4056), + [anon_sym_bool] = ACTIONS(4056), + [anon_sym_int] = ACTIONS(4056), + [anon_sym_uint] = ACTIONS(4056), + [anon_sym_float] = ACTIONS(4056), + [anon_sym_range] = ACTIONS(4056), + [anon_sym_i8] = ACTIONS(4056), + [anon_sym_i16] = ACTIONS(4056), + [anon_sym_i32] = ACTIONS(4056), + [anon_sym_i64] = ACTIONS(4056), + [anon_sym_u8] = ACTIONS(4056), + [anon_sym_u16] = ACTIONS(4056), + [anon_sym_u32] = ACTIONS(4056), + [anon_sym_u64] = ACTIONS(4056), + [anon_sym_isize] = ACTIONS(4056), + [anon_sym_usize] = ACTIONS(4056), + [anon_sym_f32] = ACTIONS(4056), + [anon_sym_f64] = ACTIONS(4056), + [anon_sym_c_char] = ACTIONS(4056), + [anon_sym_c_schar] = ACTIONS(4056), + [anon_sym_c_uchar] = ACTIONS(4056), + [anon_sym_c_short] = ACTIONS(4056), + [anon_sym_c_ushort] = ACTIONS(4056), + [anon_sym_c_int] = ACTIONS(4056), + [anon_sym_c_uint] = ACTIONS(4056), + [anon_sym_c_long] = ACTIONS(4056), + [anon_sym_c_ulong] = ACTIONS(4056), + [anon_sym_c_longlong] = ACTIONS(4056), + [anon_sym_c_ulonglong] = ACTIONS(4056), + [anon_sym_c_float] = ACTIONS(4056), + [anon_sym_c_double] = ACTIONS(4056), + [anon_sym_c_longdouble] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_yield] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_defer] = ACTIONS(4056), + [anon_sym_errdefer] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_else] = ACTIONS(4056), + [anon_sym_while] = ACTIONS(4056), + [anon_sym_expand] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_match] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_true] = ACTIONS(4056), + [anon_sym_false] = ACTIONS(4056), + [sym_none] = ACTIONS(4056), + [sym_undefined] = ACTIONS(4056), + [sym_sink] = ACTIONS(4056), + [sym_integer] = ACTIONS(4056), + [sym_float] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [sym_multiline_string] = ACTIONS(4054), + [sym_character] = ACTIONS(4054), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4054), + }, + [STATE(1738)] = { + [ts_builtin_sym_end] = ACTIONS(4058), + [sym_identifier] = ACTIONS(4060), + [anon_sym_import] = ACTIONS(4060), + [anon_sym_test] = ACTIONS(4060), + [anon_sym_hide] = ACTIONS(4060), + [anon_sym_func] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym_RPAREN] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_DOLLAR] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_void] = ACTIONS(4060), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_anyopaque] = ACTIONS(4060), + [anon_sym_bool] = ACTIONS(4060), + [anon_sym_int] = ACTIONS(4060), + [anon_sym_uint] = ACTIONS(4060), + [anon_sym_float] = ACTIONS(4060), + [anon_sym_range] = ACTIONS(4060), + [anon_sym_i8] = ACTIONS(4060), + [anon_sym_i16] = ACTIONS(4060), + [anon_sym_i32] = ACTIONS(4060), + [anon_sym_i64] = ACTIONS(4060), + [anon_sym_u8] = ACTIONS(4060), + [anon_sym_u16] = ACTIONS(4060), + [anon_sym_u32] = ACTIONS(4060), + [anon_sym_u64] = ACTIONS(4060), + [anon_sym_isize] = ACTIONS(4060), + [anon_sym_usize] = ACTIONS(4060), + [anon_sym_f32] = ACTIONS(4060), + [anon_sym_f64] = ACTIONS(4060), + [anon_sym_c_char] = ACTIONS(4060), + [anon_sym_c_schar] = ACTIONS(4060), + [anon_sym_c_uchar] = ACTIONS(4060), + [anon_sym_c_short] = ACTIONS(4060), + [anon_sym_c_ushort] = ACTIONS(4060), + [anon_sym_c_int] = ACTIONS(4060), + [anon_sym_c_uint] = ACTIONS(4060), + [anon_sym_c_long] = ACTIONS(4060), + [anon_sym_c_ulong] = ACTIONS(4060), + [anon_sym_c_longlong] = ACTIONS(4060), + [anon_sym_c_ulonglong] = ACTIONS(4060), + [anon_sym_c_float] = ACTIONS(4060), + [anon_sym_c_double] = ACTIONS(4060), + [anon_sym_c_longdouble] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_yield] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_defer] = ACTIONS(4060), + [anon_sym_errdefer] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_else] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_expand] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_true] = ACTIONS(4060), + [anon_sym_false] = ACTIONS(4060), + [sym_none] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [sym_sink] = ACTIONS(4060), + [sym_integer] = ACTIONS(4060), + [sym_float] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [sym_multiline_string] = ACTIONS(4058), + [sym_character] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4058), + }, + [STATE(1739)] = { + [ts_builtin_sym_end] = ACTIONS(4062), + [sym_identifier] = ACTIONS(4064), + [anon_sym_import] = ACTIONS(4064), + [anon_sym_test] = ACTIONS(4064), + [anon_sym_hide] = ACTIONS(4064), + [anon_sym_func] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4062), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_void] = ACTIONS(4064), + [anon_sym_type] = ACTIONS(4064), + [anon_sym_anyopaque] = ACTIONS(4064), + [anon_sym_bool] = ACTIONS(4064), + [anon_sym_int] = ACTIONS(4064), + [anon_sym_uint] = ACTIONS(4064), + [anon_sym_float] = ACTIONS(4064), + [anon_sym_range] = ACTIONS(4064), + [anon_sym_i8] = ACTIONS(4064), + [anon_sym_i16] = ACTIONS(4064), + [anon_sym_i32] = ACTIONS(4064), + [anon_sym_i64] = ACTIONS(4064), + [anon_sym_u8] = ACTIONS(4064), + [anon_sym_u16] = ACTIONS(4064), + [anon_sym_u32] = ACTIONS(4064), + [anon_sym_u64] = ACTIONS(4064), + [anon_sym_isize] = ACTIONS(4064), + [anon_sym_usize] = ACTIONS(4064), + [anon_sym_f32] = ACTIONS(4064), + [anon_sym_f64] = ACTIONS(4064), + [anon_sym_c_char] = ACTIONS(4064), + [anon_sym_c_schar] = ACTIONS(4064), + [anon_sym_c_uchar] = ACTIONS(4064), + [anon_sym_c_short] = ACTIONS(4064), + [anon_sym_c_ushort] = ACTIONS(4064), + [anon_sym_c_int] = ACTIONS(4064), + [anon_sym_c_uint] = ACTIONS(4064), + [anon_sym_c_long] = ACTIONS(4064), + [anon_sym_c_ulong] = ACTIONS(4064), + [anon_sym_c_longlong] = ACTIONS(4064), + [anon_sym_c_ulonglong] = ACTIONS(4064), + [anon_sym_c_float] = ACTIONS(4064), + [anon_sym_c_double] = ACTIONS(4064), + [anon_sym_c_longdouble] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_yield] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_defer] = ACTIONS(4064), + [anon_sym_errdefer] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_else] = ACTIONS(4064), + [anon_sym_while] = ACTIONS(4064), + [anon_sym_expand] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_match] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_true] = ACTIONS(4064), + [anon_sym_false] = ACTIONS(4064), + [sym_none] = ACTIONS(4064), + [sym_undefined] = ACTIONS(4064), + [sym_sink] = ACTIONS(4064), + [sym_integer] = ACTIONS(4064), + [sym_float] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [sym_multiline_string] = ACTIONS(4062), + [sym_character] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4062), + }, + [STATE(1740)] = { + [ts_builtin_sym_end] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4068), + [anon_sym_import] = ACTIONS(4068), + [anon_sym_test] = ACTIONS(4068), + [anon_sym_hide] = ACTIONS(4068), + [anon_sym_func] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4066), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_void] = ACTIONS(4068), + [anon_sym_type] = ACTIONS(4068), + [anon_sym_anyopaque] = ACTIONS(4068), + [anon_sym_bool] = ACTIONS(4068), + [anon_sym_int] = ACTIONS(4068), + [anon_sym_uint] = ACTIONS(4068), + [anon_sym_float] = ACTIONS(4068), + [anon_sym_range] = ACTIONS(4068), + [anon_sym_i8] = ACTIONS(4068), + [anon_sym_i16] = ACTIONS(4068), + [anon_sym_i32] = ACTIONS(4068), + [anon_sym_i64] = ACTIONS(4068), + [anon_sym_u8] = ACTIONS(4068), + [anon_sym_u16] = ACTIONS(4068), + [anon_sym_u32] = ACTIONS(4068), + [anon_sym_u64] = ACTIONS(4068), + [anon_sym_isize] = ACTIONS(4068), + [anon_sym_usize] = ACTIONS(4068), + [anon_sym_f32] = ACTIONS(4068), + [anon_sym_f64] = ACTIONS(4068), + [anon_sym_c_char] = ACTIONS(4068), + [anon_sym_c_schar] = ACTIONS(4068), + [anon_sym_c_uchar] = ACTIONS(4068), + [anon_sym_c_short] = ACTIONS(4068), + [anon_sym_c_ushort] = ACTIONS(4068), + [anon_sym_c_int] = ACTIONS(4068), + [anon_sym_c_uint] = ACTIONS(4068), + [anon_sym_c_long] = ACTIONS(4068), + [anon_sym_c_ulong] = ACTIONS(4068), + [anon_sym_c_longlong] = ACTIONS(4068), + [anon_sym_c_ulonglong] = ACTIONS(4068), + [anon_sym_c_float] = ACTIONS(4068), + [anon_sym_c_double] = ACTIONS(4068), + [anon_sym_c_longdouble] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_yield] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_defer] = ACTIONS(4068), + [anon_sym_errdefer] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_expand] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_DOT] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [sym_none] = ACTIONS(4068), + [sym_undefined] = ACTIONS(4068), + [sym_sink] = ACTIONS(4068), + [sym_integer] = ACTIONS(4068), + [sym_float] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [sym_multiline_string] = ACTIONS(4066), + [sym_character] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4066), + }, + [STATE(1741)] = { + [ts_builtin_sym_end] = ACTIONS(4070), + [sym_identifier] = ACTIONS(4072), + [anon_sym_import] = ACTIONS(4072), + [anon_sym_test] = ACTIONS(4072), + [anon_sym_hide] = ACTIONS(4072), + [anon_sym_func] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_void] = ACTIONS(4072), + [anon_sym_type] = ACTIONS(4072), + [anon_sym_anyopaque] = ACTIONS(4072), + [anon_sym_bool] = ACTIONS(4072), + [anon_sym_int] = ACTIONS(4072), + [anon_sym_uint] = ACTIONS(4072), + [anon_sym_float] = ACTIONS(4072), + [anon_sym_range] = ACTIONS(4072), + [anon_sym_i8] = ACTIONS(4072), + [anon_sym_i16] = ACTIONS(4072), + [anon_sym_i32] = ACTIONS(4072), + [anon_sym_i64] = ACTIONS(4072), + [anon_sym_u8] = ACTIONS(4072), + [anon_sym_u16] = ACTIONS(4072), + [anon_sym_u32] = ACTIONS(4072), + [anon_sym_u64] = ACTIONS(4072), + [anon_sym_isize] = ACTIONS(4072), + [anon_sym_usize] = ACTIONS(4072), + [anon_sym_f32] = ACTIONS(4072), + [anon_sym_f64] = ACTIONS(4072), + [anon_sym_c_char] = ACTIONS(4072), + [anon_sym_c_schar] = ACTIONS(4072), + [anon_sym_c_uchar] = ACTIONS(4072), + [anon_sym_c_short] = ACTIONS(4072), + [anon_sym_c_ushort] = ACTIONS(4072), + [anon_sym_c_int] = ACTIONS(4072), + [anon_sym_c_uint] = ACTIONS(4072), + [anon_sym_c_long] = ACTIONS(4072), + [anon_sym_c_ulong] = ACTIONS(4072), + [anon_sym_c_longlong] = ACTIONS(4072), + [anon_sym_c_ulonglong] = ACTIONS(4072), + [anon_sym_c_float] = ACTIONS(4072), + [anon_sym_c_double] = ACTIONS(4072), + [anon_sym_c_longdouble] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_yield] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_defer] = ACTIONS(4072), + [anon_sym_errdefer] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_else] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_expand] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [sym_none] = ACTIONS(4072), + [sym_undefined] = ACTIONS(4072), + [sym_sink] = ACTIONS(4072), + [sym_integer] = ACTIONS(4072), + [sym_float] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [sym_multiline_string] = ACTIONS(4070), + [sym_character] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4070), + }, + [STATE(1742)] = { + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4076), + [anon_sym_import] = ACTIONS(4076), + [anon_sym_test] = ACTIONS(4076), + [anon_sym_hide] = ACTIONS(4076), + [anon_sym_func] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_void] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_anyopaque] = ACTIONS(4076), + [anon_sym_bool] = ACTIONS(4076), + [anon_sym_int] = ACTIONS(4076), + [anon_sym_uint] = ACTIONS(4076), + [anon_sym_float] = ACTIONS(4076), + [anon_sym_range] = ACTIONS(4076), + [anon_sym_i8] = ACTIONS(4076), + [anon_sym_i16] = ACTIONS(4076), + [anon_sym_i32] = ACTIONS(4076), + [anon_sym_i64] = ACTIONS(4076), + [anon_sym_u8] = ACTIONS(4076), + [anon_sym_u16] = ACTIONS(4076), + [anon_sym_u32] = ACTIONS(4076), + [anon_sym_u64] = ACTIONS(4076), + [anon_sym_isize] = ACTIONS(4076), + [anon_sym_usize] = ACTIONS(4076), + [anon_sym_f32] = ACTIONS(4076), + [anon_sym_f64] = ACTIONS(4076), + [anon_sym_c_char] = ACTIONS(4076), + [anon_sym_c_schar] = ACTIONS(4076), + [anon_sym_c_uchar] = ACTIONS(4076), + [anon_sym_c_short] = ACTIONS(4076), + [anon_sym_c_ushort] = ACTIONS(4076), + [anon_sym_c_int] = ACTIONS(4076), + [anon_sym_c_uint] = ACTIONS(4076), + [anon_sym_c_long] = ACTIONS(4076), + [anon_sym_c_ulong] = ACTIONS(4076), + [anon_sym_c_longlong] = ACTIONS(4076), + [anon_sym_c_ulonglong] = ACTIONS(4076), + [anon_sym_c_float] = ACTIONS(4076), + [anon_sym_c_double] = ACTIONS(4076), + [anon_sym_c_longdouble] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_defer] = ACTIONS(4076), + [anon_sym_errdefer] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_else] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_expand] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_true] = ACTIONS(4076), + [anon_sym_false] = ACTIONS(4076), + [sym_none] = ACTIONS(4076), + [sym_undefined] = ACTIONS(4076), + [sym_sink] = ACTIONS(4076), + [sym_integer] = ACTIONS(4076), + [sym_float] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [sym_multiline_string] = ACTIONS(4074), + [sym_character] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4074), + }, + [STATE(1743)] = { + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_test] = ACTIONS(4080), + [anon_sym_hide] = ACTIONS(4080), + [anon_sym_func] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4078), + [anon_sym_RPAREN] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4078), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_DOLLAR] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_void] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_anyopaque] = ACTIONS(4080), + [anon_sym_bool] = ACTIONS(4080), + [anon_sym_int] = ACTIONS(4080), + [anon_sym_uint] = ACTIONS(4080), + [anon_sym_float] = ACTIONS(4080), + [anon_sym_range] = ACTIONS(4080), + [anon_sym_i8] = ACTIONS(4080), + [anon_sym_i16] = ACTIONS(4080), + [anon_sym_i32] = ACTIONS(4080), + [anon_sym_i64] = ACTIONS(4080), + [anon_sym_u8] = ACTIONS(4080), + [anon_sym_u16] = ACTIONS(4080), + [anon_sym_u32] = ACTIONS(4080), + [anon_sym_u64] = ACTIONS(4080), + [anon_sym_isize] = ACTIONS(4080), + [anon_sym_usize] = ACTIONS(4080), + [anon_sym_f32] = ACTIONS(4080), + [anon_sym_f64] = ACTIONS(4080), + [anon_sym_c_char] = ACTIONS(4080), + [anon_sym_c_schar] = ACTIONS(4080), + [anon_sym_c_uchar] = ACTIONS(4080), + [anon_sym_c_short] = ACTIONS(4080), + [anon_sym_c_ushort] = ACTIONS(4080), + [anon_sym_c_int] = ACTIONS(4080), + [anon_sym_c_uint] = ACTIONS(4080), + [anon_sym_c_long] = ACTIONS(4080), + [anon_sym_c_ulong] = ACTIONS(4080), + [anon_sym_c_longlong] = ACTIONS(4080), + [anon_sym_c_ulonglong] = ACTIONS(4080), + [anon_sym_c_float] = ACTIONS(4080), + [anon_sym_c_double] = ACTIONS(4080), + [anon_sym_c_longdouble] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_yield] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_defer] = ACTIONS(4080), + [anon_sym_errdefer] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_else] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_expand] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_DOT] = ACTIONS(4078), + [anon_sym_true] = ACTIONS(4080), + [anon_sym_false] = ACTIONS(4080), + [sym_none] = ACTIONS(4080), + [sym_undefined] = ACTIONS(4080), + [sym_sink] = ACTIONS(4080), + [sym_integer] = ACTIONS(4080), + [sym_float] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_multiline_string] = ACTIONS(4078), + [sym_character] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4078), + }, + [STATE(1744)] = { + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4084), + [anon_sym_import] = ACTIONS(4084), + [anon_sym_test] = ACTIONS(4084), + [anon_sym_hide] = ACTIONS(4084), + [anon_sym_func] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4082), + [anon_sym_RPAREN] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4082), + [anon_sym_void] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_anyopaque] = ACTIONS(4084), + [anon_sym_bool] = ACTIONS(4084), + [anon_sym_int] = ACTIONS(4084), + [anon_sym_uint] = ACTIONS(4084), + [anon_sym_float] = ACTIONS(4084), + [anon_sym_range] = ACTIONS(4084), + [anon_sym_i8] = ACTIONS(4084), + [anon_sym_i16] = ACTIONS(4084), + [anon_sym_i32] = ACTIONS(4084), + [anon_sym_i64] = ACTIONS(4084), + [anon_sym_u8] = ACTIONS(4084), + [anon_sym_u16] = ACTIONS(4084), + [anon_sym_u32] = ACTIONS(4084), + [anon_sym_u64] = ACTIONS(4084), + [anon_sym_isize] = ACTIONS(4084), + [anon_sym_usize] = ACTIONS(4084), + [anon_sym_f32] = ACTIONS(4084), + [anon_sym_f64] = ACTIONS(4084), + [anon_sym_c_char] = ACTIONS(4084), + [anon_sym_c_schar] = ACTIONS(4084), + [anon_sym_c_uchar] = ACTIONS(4084), + [anon_sym_c_short] = ACTIONS(4084), + [anon_sym_c_ushort] = ACTIONS(4084), + [anon_sym_c_int] = ACTIONS(4084), + [anon_sym_c_uint] = ACTIONS(4084), + [anon_sym_c_long] = ACTIONS(4084), + [anon_sym_c_ulong] = ACTIONS(4084), + [anon_sym_c_longlong] = ACTIONS(4084), + [anon_sym_c_ulonglong] = ACTIONS(4084), + [anon_sym_c_float] = ACTIONS(4084), + [anon_sym_c_double] = ACTIONS(4084), + [anon_sym_c_longdouble] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_defer] = ACTIONS(4084), + [anon_sym_errdefer] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_expand] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_true] = ACTIONS(4084), + [anon_sym_false] = ACTIONS(4084), + [sym_none] = ACTIONS(4084), + [sym_undefined] = ACTIONS(4084), + [sym_sink] = ACTIONS(4084), + [sym_integer] = ACTIONS(4084), + [sym_float] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_multiline_string] = ACTIONS(4082), + [sym_character] = ACTIONS(4082), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4082), + }, + [STATE(1745)] = { + [ts_builtin_sym_end] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_test] = ACTIONS(4088), + [anon_sym_hide] = ACTIONS(4088), + [anon_sym_func] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_RPAREN] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_DOLLAR] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_void] = ACTIONS(4088), + [anon_sym_type] = ACTIONS(4088), + [anon_sym_anyopaque] = ACTIONS(4088), + [anon_sym_bool] = ACTIONS(4088), + [anon_sym_int] = ACTIONS(4088), + [anon_sym_uint] = ACTIONS(4088), + [anon_sym_float] = ACTIONS(4088), + [anon_sym_range] = ACTIONS(4088), + [anon_sym_i8] = ACTIONS(4088), + [anon_sym_i16] = ACTIONS(4088), + [anon_sym_i32] = ACTIONS(4088), + [anon_sym_i64] = ACTIONS(4088), + [anon_sym_u8] = ACTIONS(4088), + [anon_sym_u16] = ACTIONS(4088), + [anon_sym_u32] = ACTIONS(4088), + [anon_sym_u64] = ACTIONS(4088), + [anon_sym_isize] = ACTIONS(4088), + [anon_sym_usize] = ACTIONS(4088), + [anon_sym_f32] = ACTIONS(4088), + [anon_sym_f64] = ACTIONS(4088), + [anon_sym_c_char] = ACTIONS(4088), + [anon_sym_c_schar] = ACTIONS(4088), + [anon_sym_c_uchar] = ACTIONS(4088), + [anon_sym_c_short] = ACTIONS(4088), + [anon_sym_c_ushort] = ACTIONS(4088), + [anon_sym_c_int] = ACTIONS(4088), + [anon_sym_c_uint] = ACTIONS(4088), + [anon_sym_c_long] = ACTIONS(4088), + [anon_sym_c_ulong] = ACTIONS(4088), + [anon_sym_c_longlong] = ACTIONS(4088), + [anon_sym_c_ulonglong] = ACTIONS(4088), + [anon_sym_c_float] = ACTIONS(4088), + [anon_sym_c_double] = ACTIONS(4088), + [anon_sym_c_longdouble] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_defer] = ACTIONS(4088), + [anon_sym_errdefer] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_else] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_expand] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_match] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_DOT] = ACTIONS(4086), + [anon_sym_true] = ACTIONS(4088), + [anon_sym_false] = ACTIONS(4088), + [sym_none] = ACTIONS(4088), + [sym_undefined] = ACTIONS(4088), + [sym_sink] = ACTIONS(4088), + [sym_integer] = ACTIONS(4088), + [sym_float] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym_multiline_string] = ACTIONS(4086), + [sym_character] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4086), + }, + [STATE(1746)] = { + [ts_builtin_sym_end] = ACTIONS(4090), + [sym_identifier] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_test] = ACTIONS(4092), + [anon_sym_hide] = ACTIONS(4092), + [anon_sym_func] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_void] = ACTIONS(4092), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_anyopaque] = ACTIONS(4092), + [anon_sym_bool] = ACTIONS(4092), + [anon_sym_int] = ACTIONS(4092), + [anon_sym_uint] = ACTIONS(4092), + [anon_sym_float] = ACTIONS(4092), + [anon_sym_range] = ACTIONS(4092), + [anon_sym_i8] = ACTIONS(4092), + [anon_sym_i16] = ACTIONS(4092), + [anon_sym_i32] = ACTIONS(4092), + [anon_sym_i64] = ACTIONS(4092), + [anon_sym_u8] = ACTIONS(4092), + [anon_sym_u16] = ACTIONS(4092), + [anon_sym_u32] = ACTIONS(4092), + [anon_sym_u64] = ACTIONS(4092), + [anon_sym_isize] = ACTIONS(4092), + [anon_sym_usize] = ACTIONS(4092), + [anon_sym_f32] = ACTIONS(4092), + [anon_sym_f64] = ACTIONS(4092), + [anon_sym_c_char] = ACTIONS(4092), + [anon_sym_c_schar] = ACTIONS(4092), + [anon_sym_c_uchar] = ACTIONS(4092), + [anon_sym_c_short] = ACTIONS(4092), + [anon_sym_c_ushort] = ACTIONS(4092), + [anon_sym_c_int] = ACTIONS(4092), + [anon_sym_c_uint] = ACTIONS(4092), + [anon_sym_c_long] = ACTIONS(4092), + [anon_sym_c_ulong] = ACTIONS(4092), + [anon_sym_c_longlong] = ACTIONS(4092), + [anon_sym_c_ulonglong] = ACTIONS(4092), + [anon_sym_c_float] = ACTIONS(4092), + [anon_sym_c_double] = ACTIONS(4092), + [anon_sym_c_longdouble] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_yield] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_defer] = ACTIONS(4092), + [anon_sym_errdefer] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_expand] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_match] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [sym_none] = ACTIONS(4092), + [sym_undefined] = ACTIONS(4092), + [sym_sink] = ACTIONS(4092), + [sym_integer] = ACTIONS(4092), + [sym_float] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_multiline_string] = ACTIONS(4090), + [sym_character] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4090), + }, + [STATE(1747)] = { + [ts_builtin_sym_end] = ACTIONS(4094), + [sym_identifier] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_test] = ACTIONS(4096), + [anon_sym_hide] = ACTIONS(4096), + [anon_sym_func] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_DOLLAR] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_void] = ACTIONS(4096), + [anon_sym_type] = ACTIONS(4096), + [anon_sym_anyopaque] = ACTIONS(4096), + [anon_sym_bool] = ACTIONS(4096), + [anon_sym_int] = ACTIONS(4096), + [anon_sym_uint] = ACTIONS(4096), + [anon_sym_float] = ACTIONS(4096), + [anon_sym_range] = ACTIONS(4096), + [anon_sym_i8] = ACTIONS(4096), + [anon_sym_i16] = ACTIONS(4096), + [anon_sym_i32] = ACTIONS(4096), + [anon_sym_i64] = ACTIONS(4096), + [anon_sym_u8] = ACTIONS(4096), + [anon_sym_u16] = ACTIONS(4096), + [anon_sym_u32] = ACTIONS(4096), + [anon_sym_u64] = ACTIONS(4096), + [anon_sym_isize] = ACTIONS(4096), + [anon_sym_usize] = ACTIONS(4096), + [anon_sym_f32] = ACTIONS(4096), + [anon_sym_f64] = ACTIONS(4096), + [anon_sym_c_char] = ACTIONS(4096), + [anon_sym_c_schar] = ACTIONS(4096), + [anon_sym_c_uchar] = ACTIONS(4096), + [anon_sym_c_short] = ACTIONS(4096), + [anon_sym_c_ushort] = ACTIONS(4096), + [anon_sym_c_int] = ACTIONS(4096), + [anon_sym_c_uint] = ACTIONS(4096), + [anon_sym_c_long] = ACTIONS(4096), + [anon_sym_c_ulong] = ACTIONS(4096), + [anon_sym_c_longlong] = ACTIONS(4096), + [anon_sym_c_ulonglong] = ACTIONS(4096), + [anon_sym_c_float] = ACTIONS(4096), + [anon_sym_c_double] = ACTIONS(4096), + [anon_sym_c_longdouble] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_yield] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_defer] = ACTIONS(4096), + [anon_sym_errdefer] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_expand] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_match] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4096), + [anon_sym_false] = ACTIONS(4096), + [sym_none] = ACTIONS(4096), + [sym_undefined] = ACTIONS(4096), + [sym_sink] = ACTIONS(4096), + [sym_integer] = ACTIONS(4096), + [sym_float] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_multiline_string] = ACTIONS(4094), + [sym_character] = ACTIONS(4094), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4094), + }, + [STATE(1748)] = { + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), + [anon_sym_test] = ACTIONS(4100), + [anon_sym_hide] = ACTIONS(4100), + [anon_sym_func] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_void] = ACTIONS(4100), + [anon_sym_type] = ACTIONS(4100), + [anon_sym_anyopaque] = ACTIONS(4100), + [anon_sym_bool] = ACTIONS(4100), + [anon_sym_int] = ACTIONS(4100), + [anon_sym_uint] = ACTIONS(4100), + [anon_sym_float] = ACTIONS(4100), + [anon_sym_range] = ACTIONS(4100), + [anon_sym_i8] = ACTIONS(4100), + [anon_sym_i16] = ACTIONS(4100), + [anon_sym_i32] = ACTIONS(4100), + [anon_sym_i64] = ACTIONS(4100), + [anon_sym_u8] = ACTIONS(4100), + [anon_sym_u16] = ACTIONS(4100), + [anon_sym_u32] = ACTIONS(4100), + [anon_sym_u64] = ACTIONS(4100), + [anon_sym_isize] = ACTIONS(4100), + [anon_sym_usize] = ACTIONS(4100), + [anon_sym_f32] = ACTIONS(4100), + [anon_sym_f64] = ACTIONS(4100), + [anon_sym_c_char] = ACTIONS(4100), + [anon_sym_c_schar] = ACTIONS(4100), + [anon_sym_c_uchar] = ACTIONS(4100), + [anon_sym_c_short] = ACTIONS(4100), + [anon_sym_c_ushort] = ACTIONS(4100), + [anon_sym_c_int] = ACTIONS(4100), + [anon_sym_c_uint] = ACTIONS(4100), + [anon_sym_c_long] = ACTIONS(4100), + [anon_sym_c_ulong] = ACTIONS(4100), + [anon_sym_c_longlong] = ACTIONS(4100), + [anon_sym_c_ulonglong] = ACTIONS(4100), + [anon_sym_c_float] = ACTIONS(4100), + [anon_sym_c_double] = ACTIONS(4100), + [anon_sym_c_longdouble] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_yield] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_defer] = ACTIONS(4100), + [anon_sym_errdefer] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_else] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_expand] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_match] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_true] = ACTIONS(4100), + [anon_sym_false] = ACTIONS(4100), + [sym_none] = ACTIONS(4100), + [sym_undefined] = ACTIONS(4100), + [sym_sink] = ACTIONS(4100), + [sym_integer] = ACTIONS(4100), + [sym_float] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_multiline_string] = ACTIONS(4098), + [sym_character] = ACTIONS(4098), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4098), + }, + [STATE(1749)] = { + [ts_builtin_sym_end] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4104), + [anon_sym_import] = ACTIONS(4104), + [anon_sym_test] = ACTIONS(4104), + [anon_sym_hide] = ACTIONS(4104), + [anon_sym_func] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_DOLLAR] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_void] = ACTIONS(4104), + [anon_sym_type] = ACTIONS(4104), + [anon_sym_anyopaque] = ACTIONS(4104), + [anon_sym_bool] = ACTIONS(4104), + [anon_sym_int] = ACTIONS(4104), + [anon_sym_uint] = ACTIONS(4104), + [anon_sym_float] = ACTIONS(4104), + [anon_sym_range] = ACTIONS(4104), + [anon_sym_i8] = ACTIONS(4104), + [anon_sym_i16] = ACTIONS(4104), + [anon_sym_i32] = ACTIONS(4104), + [anon_sym_i64] = ACTIONS(4104), + [anon_sym_u8] = ACTIONS(4104), + [anon_sym_u16] = ACTIONS(4104), + [anon_sym_u32] = ACTIONS(4104), + [anon_sym_u64] = ACTIONS(4104), + [anon_sym_isize] = ACTIONS(4104), + [anon_sym_usize] = ACTIONS(4104), + [anon_sym_f32] = ACTIONS(4104), + [anon_sym_f64] = ACTIONS(4104), + [anon_sym_c_char] = ACTIONS(4104), + [anon_sym_c_schar] = ACTIONS(4104), + [anon_sym_c_uchar] = ACTIONS(4104), + [anon_sym_c_short] = ACTIONS(4104), + [anon_sym_c_ushort] = ACTIONS(4104), + [anon_sym_c_int] = ACTIONS(4104), + [anon_sym_c_uint] = ACTIONS(4104), + [anon_sym_c_long] = ACTIONS(4104), + [anon_sym_c_ulong] = ACTIONS(4104), + [anon_sym_c_longlong] = ACTIONS(4104), + [anon_sym_c_ulonglong] = ACTIONS(4104), + [anon_sym_c_float] = ACTIONS(4104), + [anon_sym_c_double] = ACTIONS(4104), + [anon_sym_c_longdouble] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_yield] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_defer] = ACTIONS(4104), + [anon_sym_errdefer] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_expand] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_match] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [sym_none] = ACTIONS(4104), + [sym_undefined] = ACTIONS(4104), + [sym_sink] = ACTIONS(4104), + [sym_integer] = ACTIONS(4104), + [sym_float] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_multiline_string] = ACTIONS(4102), + [sym_character] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4102), + }, + [STATE(1750)] = { + [ts_builtin_sym_end] = ACTIONS(4106), + [sym_identifier] = ACTIONS(4108), + [anon_sym_import] = ACTIONS(4108), + [anon_sym_test] = ACTIONS(4108), + [anon_sym_hide] = ACTIONS(4108), + [anon_sym_func] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4106), + [anon_sym_RPAREN] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_RBRACE] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_DOLLAR] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4106), + [anon_sym_void] = ACTIONS(4108), + [anon_sym_type] = ACTIONS(4108), + [anon_sym_anyopaque] = ACTIONS(4108), + [anon_sym_bool] = ACTIONS(4108), + [anon_sym_int] = ACTIONS(4108), + [anon_sym_uint] = ACTIONS(4108), + [anon_sym_float] = ACTIONS(4108), + [anon_sym_range] = ACTIONS(4108), + [anon_sym_i8] = ACTIONS(4108), + [anon_sym_i16] = ACTIONS(4108), + [anon_sym_i32] = ACTIONS(4108), + [anon_sym_i64] = ACTIONS(4108), + [anon_sym_u8] = ACTIONS(4108), + [anon_sym_u16] = ACTIONS(4108), + [anon_sym_u32] = ACTIONS(4108), + [anon_sym_u64] = ACTIONS(4108), + [anon_sym_isize] = ACTIONS(4108), + [anon_sym_usize] = ACTIONS(4108), + [anon_sym_f32] = ACTIONS(4108), + [anon_sym_f64] = ACTIONS(4108), + [anon_sym_c_char] = ACTIONS(4108), + [anon_sym_c_schar] = ACTIONS(4108), + [anon_sym_c_uchar] = ACTIONS(4108), + [anon_sym_c_short] = ACTIONS(4108), + [anon_sym_c_ushort] = ACTIONS(4108), + [anon_sym_c_int] = ACTIONS(4108), + [anon_sym_c_uint] = ACTIONS(4108), + [anon_sym_c_long] = ACTIONS(4108), + [anon_sym_c_ulong] = ACTIONS(4108), + [anon_sym_c_longlong] = ACTIONS(4108), + [anon_sym_c_ulonglong] = ACTIONS(4108), + [anon_sym_c_float] = ACTIONS(4108), + [anon_sym_c_double] = ACTIONS(4108), + [anon_sym_c_longdouble] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_defer] = ACTIONS(4108), + [anon_sym_errdefer] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_expand] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_match] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [sym_none] = ACTIONS(4108), + [sym_undefined] = ACTIONS(4108), + [sym_sink] = ACTIONS(4108), + [sym_integer] = ACTIONS(4108), + [sym_float] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_multiline_string] = ACTIONS(4106), + [sym_character] = ACTIONS(4106), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4106), }, - [STATE(1709)] = { - [aux_sym_import_declaration_repeat1] = STATE(3183), - [sym_identifier] = ACTIONS(4099), - [anon_sym_func] = ACTIONS(4099), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_struct] = ACTIONS(4099), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_DOLLAR] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_void] = ACTIONS(4099), - [anon_sym_anyopaque] = ACTIONS(4099), - [anon_sym_bool] = ACTIONS(4099), - [anon_sym_int] = ACTIONS(4099), - [anon_sym_uint] = ACTIONS(4099), - [anon_sym_float] = ACTIONS(4099), - [anon_sym_range] = ACTIONS(4099), - [anon_sym_i8] = ACTIONS(4099), - [anon_sym_i16] = ACTIONS(4099), - [anon_sym_i32] = ACTIONS(4099), - [anon_sym_i64] = ACTIONS(4099), - [anon_sym_u8] = ACTIONS(4099), - [anon_sym_u16] = ACTIONS(4099), - [anon_sym_u32] = ACTIONS(4099), - [anon_sym_u64] = ACTIONS(4099), - [anon_sym_isize] = ACTIONS(4099), - [anon_sym_usize] = ACTIONS(4099), - [anon_sym_f32] = ACTIONS(4099), - [anon_sym_f64] = ACTIONS(4099), - [anon_sym_c_char] = ACTIONS(4099), - [anon_sym_c_schar] = ACTIONS(4099), - [anon_sym_c_uchar] = ACTIONS(4099), - [anon_sym_c_short] = ACTIONS(4099), - [anon_sym_c_ushort] = ACTIONS(4099), - [anon_sym_c_int] = ACTIONS(4099), - [anon_sym_c_uint] = ACTIONS(4099), - [anon_sym_c_long] = ACTIONS(4099), - [anon_sym_c_ulong] = ACTIONS(4099), - [anon_sym_c_longlong] = ACTIONS(4099), - [anon_sym_c_ulonglong] = ACTIONS(4099), - [anon_sym_c_float] = ACTIONS(4099), - [anon_sym_c_double] = ACTIONS(4099), - [anon_sym_c_longdouble] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_yield] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_defer] = ACTIONS(4099), - [anon_sym_errdefer] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4109), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_expand] = ACTIONS(4099), - [anon_sym_for] = ACTIONS(4099), - [anon_sym_match] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(4101), - [anon_sym_TILDE] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [sym_none] = ACTIONS(4099), - [sym_undefined] = ACTIONS(4099), - [sym_sink] = ACTIONS(4099), - [sym_integer] = ACTIONS(4099), - [sym_float] = ACTIONS(4101), - [anon_sym_DQUOTE] = ACTIONS(4101), - [sym_multiline_string] = ACTIONS(4101), - [sym_character] = ACTIONS(4101), + [STATE(1751)] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1024), + [anon_sym_import] = ACTIONS(1024), + [anon_sym_test] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_func] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_void] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_anyopaque] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_int] = ACTIONS(1024), + [anon_sym_uint] = ACTIONS(1024), + [anon_sym_float] = ACTIONS(1024), + [anon_sym_range] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_c_char] = ACTIONS(1024), + [anon_sym_c_schar] = ACTIONS(1024), + [anon_sym_c_uchar] = ACTIONS(1024), + [anon_sym_c_short] = ACTIONS(1024), + [anon_sym_c_ushort] = ACTIONS(1024), + [anon_sym_c_int] = ACTIONS(1024), + [anon_sym_c_uint] = ACTIONS(1024), + [anon_sym_c_long] = ACTIONS(1024), + [anon_sym_c_ulong] = ACTIONS(1024), + [anon_sym_c_longlong] = ACTIONS(1024), + [anon_sym_c_ulonglong] = ACTIONS(1024), + [anon_sym_c_float] = ACTIONS(1024), + [anon_sym_c_double] = ACTIONS(1024), + [anon_sym_c_longdouble] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_defer] = ACTIONS(1024), + [anon_sym_errdefer] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_expand] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [sym_none] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1024), + [sym_sink] = ACTIONS(1024), + [sym_integer] = ACTIONS(1024), + [sym_float] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_multiline_string] = ACTIONS(1022), + [sym_character] = ACTIONS(1022), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4111), + [sym__newline] = ACTIONS(1022), }, - [STATE(1710)] = { - [aux_sym_import_declaration_repeat1] = STATE(3202), - [sym_identifier] = ACTIONS(4114), - [anon_sym_func] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4116), - [anon_sym_RBRACE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_DOLLAR] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_void] = ACTIONS(4114), - [anon_sym_anyopaque] = ACTIONS(4114), - [anon_sym_bool] = ACTIONS(4114), - [anon_sym_int] = ACTIONS(4114), - [anon_sym_uint] = ACTIONS(4114), - [anon_sym_float] = ACTIONS(4114), - [anon_sym_range] = ACTIONS(4114), - [anon_sym_i8] = ACTIONS(4114), - [anon_sym_i16] = ACTIONS(4114), - [anon_sym_i32] = ACTIONS(4114), - [anon_sym_i64] = ACTIONS(4114), - [anon_sym_u8] = ACTIONS(4114), - [anon_sym_u16] = ACTIONS(4114), - [anon_sym_u32] = ACTIONS(4114), - [anon_sym_u64] = ACTIONS(4114), - [anon_sym_isize] = ACTIONS(4114), - [anon_sym_usize] = ACTIONS(4114), - [anon_sym_f32] = ACTIONS(4114), - [anon_sym_f64] = ACTIONS(4114), - [anon_sym_c_char] = ACTIONS(4114), - [anon_sym_c_schar] = ACTIONS(4114), - [anon_sym_c_uchar] = ACTIONS(4114), - [anon_sym_c_short] = ACTIONS(4114), - [anon_sym_c_ushort] = ACTIONS(4114), - [anon_sym_c_int] = ACTIONS(4114), - [anon_sym_c_uint] = ACTIONS(4114), - [anon_sym_c_long] = ACTIONS(4114), - [anon_sym_c_ulong] = ACTIONS(4114), - [anon_sym_c_longlong] = ACTIONS(4114), - [anon_sym_c_ulonglong] = ACTIONS(4114), - [anon_sym_c_float] = ACTIONS(4114), - [anon_sym_c_double] = ACTIONS(4114), - [anon_sym_c_longdouble] = ACTIONS(4114), - [anon_sym_return] = ACTIONS(4114), - [anon_sym_yield] = ACTIONS(4114), - [anon_sym_break] = ACTIONS(4114), - [anon_sym_continue] = ACTIONS(4114), - [anon_sym_defer] = ACTIONS(4114), - [anon_sym_errdefer] = ACTIONS(4114), - [anon_sym_if] = ACTIONS(4114), - [anon_sym_else] = ACTIONS(4118), - [anon_sym_while] = ACTIONS(4114), - [anon_sym_expand] = ACTIONS(4114), - [anon_sym_for] = ACTIONS(4114), - [anon_sym_match] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_true] = ACTIONS(4114), - [anon_sym_false] = ACTIONS(4114), - [sym_none] = ACTIONS(4114), - [sym_undefined] = ACTIONS(4114), - [sym_sink] = ACTIONS(4114), - [sym_integer] = ACTIONS(4114), - [sym_float] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(4116), - [sym_multiline_string] = ACTIONS(4116), - [sym_character] = ACTIONS(4116), + [STATE(1752)] = { + [ts_builtin_sym_end] = ACTIONS(4110), + [sym_identifier] = ACTIONS(4112), + [anon_sym_import] = ACTIONS(4112), + [anon_sym_test] = ACTIONS(4112), + [anon_sym_hide] = ACTIONS(4112), + [anon_sym_func] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_void] = ACTIONS(4112), + [anon_sym_type] = ACTIONS(4112), + [anon_sym_anyopaque] = ACTIONS(4112), + [anon_sym_bool] = ACTIONS(4112), + [anon_sym_int] = ACTIONS(4112), + [anon_sym_uint] = ACTIONS(4112), + [anon_sym_float] = ACTIONS(4112), + [anon_sym_range] = ACTIONS(4112), + [anon_sym_i8] = ACTIONS(4112), + [anon_sym_i16] = ACTIONS(4112), + [anon_sym_i32] = ACTIONS(4112), + [anon_sym_i64] = ACTIONS(4112), + [anon_sym_u8] = ACTIONS(4112), + [anon_sym_u16] = ACTIONS(4112), + [anon_sym_u32] = ACTIONS(4112), + [anon_sym_u64] = ACTIONS(4112), + [anon_sym_isize] = ACTIONS(4112), + [anon_sym_usize] = ACTIONS(4112), + [anon_sym_f32] = ACTIONS(4112), + [anon_sym_f64] = ACTIONS(4112), + [anon_sym_c_char] = ACTIONS(4112), + [anon_sym_c_schar] = ACTIONS(4112), + [anon_sym_c_uchar] = ACTIONS(4112), + [anon_sym_c_short] = ACTIONS(4112), + [anon_sym_c_ushort] = ACTIONS(4112), + [anon_sym_c_int] = ACTIONS(4112), + [anon_sym_c_uint] = ACTIONS(4112), + [anon_sym_c_long] = ACTIONS(4112), + [anon_sym_c_ulong] = ACTIONS(4112), + [anon_sym_c_longlong] = ACTIONS(4112), + [anon_sym_c_ulonglong] = ACTIONS(4112), + [anon_sym_c_float] = ACTIONS(4112), + [anon_sym_c_double] = ACTIONS(4112), + [anon_sym_c_longdouble] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_defer] = ACTIONS(4112), + [anon_sym_errdefer] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_else] = ACTIONS(4112), + [anon_sym_while] = ACTIONS(4112), + [anon_sym_expand] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_match] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4112), + [anon_sym_false] = ACTIONS(4112), + [sym_none] = ACTIONS(4112), + [sym_undefined] = ACTIONS(4112), + [sym_sink] = ACTIONS(4112), + [sym_integer] = ACTIONS(4112), + [sym_float] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_multiline_string] = ACTIONS(4110), + [sym_character] = ACTIONS(4110), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4120), + [sym__newline] = ACTIONS(4110), }, - [STATE(1711)] = { - [aux_sym_import_declaration_repeat1] = STATE(3246), - [sym_identifier] = ACTIONS(4114), - [anon_sym_func] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4116), - [anon_sym_RBRACE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_DOLLAR] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_void] = ACTIONS(4114), - [anon_sym_anyopaque] = ACTIONS(4114), - [anon_sym_bool] = ACTIONS(4114), - [anon_sym_int] = ACTIONS(4114), - [anon_sym_uint] = ACTIONS(4114), - [anon_sym_float] = ACTIONS(4114), - [anon_sym_range] = ACTIONS(4114), - [anon_sym_i8] = ACTIONS(4114), - [anon_sym_i16] = ACTIONS(4114), - [anon_sym_i32] = ACTIONS(4114), - [anon_sym_i64] = ACTIONS(4114), - [anon_sym_u8] = ACTIONS(4114), - [anon_sym_u16] = ACTIONS(4114), - [anon_sym_u32] = ACTIONS(4114), - [anon_sym_u64] = ACTIONS(4114), - [anon_sym_isize] = ACTIONS(4114), - [anon_sym_usize] = ACTIONS(4114), - [anon_sym_f32] = ACTIONS(4114), - [anon_sym_f64] = ACTIONS(4114), - [anon_sym_c_char] = ACTIONS(4114), - [anon_sym_c_schar] = ACTIONS(4114), - [anon_sym_c_uchar] = ACTIONS(4114), - [anon_sym_c_short] = ACTIONS(4114), - [anon_sym_c_ushort] = ACTIONS(4114), - [anon_sym_c_int] = ACTIONS(4114), - [anon_sym_c_uint] = ACTIONS(4114), - [anon_sym_c_long] = ACTIONS(4114), - [anon_sym_c_ulong] = ACTIONS(4114), - [anon_sym_c_longlong] = ACTIONS(4114), - [anon_sym_c_ulonglong] = ACTIONS(4114), - [anon_sym_c_float] = ACTIONS(4114), - [anon_sym_c_double] = ACTIONS(4114), - [anon_sym_c_longdouble] = ACTIONS(4114), - [anon_sym_return] = ACTIONS(4114), - [anon_sym_yield] = ACTIONS(4114), - [anon_sym_break] = ACTIONS(4114), - [anon_sym_continue] = ACTIONS(4114), - [anon_sym_defer] = ACTIONS(4114), - [anon_sym_errdefer] = ACTIONS(4114), - [anon_sym_if] = ACTIONS(4114), - [anon_sym_else] = ACTIONS(4123), - [anon_sym_while] = ACTIONS(4114), - [anon_sym_expand] = ACTIONS(4114), - [anon_sym_for] = ACTIONS(4114), - [anon_sym_match] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_true] = ACTIONS(4114), - [anon_sym_false] = ACTIONS(4114), - [sym_none] = ACTIONS(4114), - [sym_undefined] = ACTIONS(4114), - [sym_sink] = ACTIONS(4114), - [sym_integer] = ACTIONS(4114), - [sym_float] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(4116), - [sym_multiline_string] = ACTIONS(4116), - [sym_character] = ACTIONS(4116), + [STATE(1753)] = { + [ts_builtin_sym_end] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4116), + [anon_sym_import] = ACTIONS(4116), + [anon_sym_test] = ACTIONS(4116), + [anon_sym_hide] = ACTIONS(4116), + [anon_sym_func] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_DOLLAR] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_void] = ACTIONS(4116), + [anon_sym_type] = ACTIONS(4116), + [anon_sym_anyopaque] = ACTIONS(4116), + [anon_sym_bool] = ACTIONS(4116), + [anon_sym_int] = ACTIONS(4116), + [anon_sym_uint] = ACTIONS(4116), + [anon_sym_float] = ACTIONS(4116), + [anon_sym_range] = ACTIONS(4116), + [anon_sym_i8] = ACTIONS(4116), + [anon_sym_i16] = ACTIONS(4116), + [anon_sym_i32] = ACTIONS(4116), + [anon_sym_i64] = ACTIONS(4116), + [anon_sym_u8] = ACTIONS(4116), + [anon_sym_u16] = ACTIONS(4116), + [anon_sym_u32] = ACTIONS(4116), + [anon_sym_u64] = ACTIONS(4116), + [anon_sym_isize] = ACTIONS(4116), + [anon_sym_usize] = ACTIONS(4116), + [anon_sym_f32] = ACTIONS(4116), + [anon_sym_f64] = ACTIONS(4116), + [anon_sym_c_char] = ACTIONS(4116), + [anon_sym_c_schar] = ACTIONS(4116), + [anon_sym_c_uchar] = ACTIONS(4116), + [anon_sym_c_short] = ACTIONS(4116), + [anon_sym_c_ushort] = ACTIONS(4116), + [anon_sym_c_int] = ACTIONS(4116), + [anon_sym_c_uint] = ACTIONS(4116), + [anon_sym_c_long] = ACTIONS(4116), + [anon_sym_c_ulong] = ACTIONS(4116), + [anon_sym_c_longlong] = ACTIONS(4116), + [anon_sym_c_ulonglong] = ACTIONS(4116), + [anon_sym_c_float] = ACTIONS(4116), + [anon_sym_c_double] = ACTIONS(4116), + [anon_sym_c_longdouble] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_yield] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_defer] = ACTIONS(4116), + [anon_sym_errdefer] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4116), + [anon_sym_while] = ACTIONS(4116), + [anon_sym_expand] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_match] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_true] = ACTIONS(4116), + [anon_sym_false] = ACTIONS(4116), + [sym_none] = ACTIONS(4116), + [sym_undefined] = ACTIONS(4116), + [sym_sink] = ACTIONS(4116), + [sym_integer] = ACTIONS(4116), + [sym_float] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [sym_multiline_string] = ACTIONS(4114), + [sym_character] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4114), + }, + [STATE(1754)] = { + [ts_builtin_sym_end] = ACTIONS(4118), + [sym_identifier] = ACTIONS(4120), + [anon_sym_import] = ACTIONS(4120), + [anon_sym_test] = ACTIONS(4120), + [anon_sym_hide] = ACTIONS(4120), + [anon_sym_func] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_RPAREN] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_DOLLAR] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_void] = ACTIONS(4120), + [anon_sym_type] = ACTIONS(4120), + [anon_sym_anyopaque] = ACTIONS(4120), + [anon_sym_bool] = ACTIONS(4120), + [anon_sym_int] = ACTIONS(4120), + [anon_sym_uint] = ACTIONS(4120), + [anon_sym_float] = ACTIONS(4120), + [anon_sym_range] = ACTIONS(4120), + [anon_sym_i8] = ACTIONS(4120), + [anon_sym_i16] = ACTIONS(4120), + [anon_sym_i32] = ACTIONS(4120), + [anon_sym_i64] = ACTIONS(4120), + [anon_sym_u8] = ACTIONS(4120), + [anon_sym_u16] = ACTIONS(4120), + [anon_sym_u32] = ACTIONS(4120), + [anon_sym_u64] = ACTIONS(4120), + [anon_sym_isize] = ACTIONS(4120), + [anon_sym_usize] = ACTIONS(4120), + [anon_sym_f32] = ACTIONS(4120), + [anon_sym_f64] = ACTIONS(4120), + [anon_sym_c_char] = ACTIONS(4120), + [anon_sym_c_schar] = ACTIONS(4120), + [anon_sym_c_uchar] = ACTIONS(4120), + [anon_sym_c_short] = ACTIONS(4120), + [anon_sym_c_ushort] = ACTIONS(4120), + [anon_sym_c_int] = ACTIONS(4120), + [anon_sym_c_uint] = ACTIONS(4120), + [anon_sym_c_long] = ACTIONS(4120), + [anon_sym_c_ulong] = ACTIONS(4120), + [anon_sym_c_longlong] = ACTIONS(4120), + [anon_sym_c_ulonglong] = ACTIONS(4120), + [anon_sym_c_float] = ACTIONS(4120), + [anon_sym_c_double] = ACTIONS(4120), + [anon_sym_c_longdouble] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_yield] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_defer] = ACTIONS(4120), + [anon_sym_errdefer] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_expand] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_match] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [sym_none] = ACTIONS(4120), + [sym_undefined] = ACTIONS(4120), + [sym_sink] = ACTIONS(4120), + [sym_integer] = ACTIONS(4120), + [sym_float] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [sym_multiline_string] = ACTIONS(4118), + [sym_character] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4118), + }, + [STATE(1755)] = { + [ts_builtin_sym_end] = ACTIONS(4122), + [sym_identifier] = ACTIONS(4124), + [anon_sym_import] = ACTIONS(4124), + [anon_sym_test] = ACTIONS(4124), + [anon_sym_hide] = ACTIONS(4124), + [anon_sym_func] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_DOLLAR] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_void] = ACTIONS(4124), + [anon_sym_type] = ACTIONS(4124), + [anon_sym_anyopaque] = ACTIONS(4124), + [anon_sym_bool] = ACTIONS(4124), + [anon_sym_int] = ACTIONS(4124), + [anon_sym_uint] = ACTIONS(4124), + [anon_sym_float] = ACTIONS(4124), + [anon_sym_range] = ACTIONS(4124), + [anon_sym_i8] = ACTIONS(4124), + [anon_sym_i16] = ACTIONS(4124), + [anon_sym_i32] = ACTIONS(4124), + [anon_sym_i64] = ACTIONS(4124), + [anon_sym_u8] = ACTIONS(4124), + [anon_sym_u16] = ACTIONS(4124), + [anon_sym_u32] = ACTIONS(4124), + [anon_sym_u64] = ACTIONS(4124), + [anon_sym_isize] = ACTIONS(4124), + [anon_sym_usize] = ACTIONS(4124), + [anon_sym_f32] = ACTIONS(4124), + [anon_sym_f64] = ACTIONS(4124), + [anon_sym_c_char] = ACTIONS(4124), + [anon_sym_c_schar] = ACTIONS(4124), + [anon_sym_c_uchar] = ACTIONS(4124), + [anon_sym_c_short] = ACTIONS(4124), + [anon_sym_c_ushort] = ACTIONS(4124), + [anon_sym_c_int] = ACTIONS(4124), + [anon_sym_c_uint] = ACTIONS(4124), + [anon_sym_c_long] = ACTIONS(4124), + [anon_sym_c_ulong] = ACTIONS(4124), + [anon_sym_c_longlong] = ACTIONS(4124), + [anon_sym_c_ulonglong] = ACTIONS(4124), + [anon_sym_c_float] = ACTIONS(4124), + [anon_sym_c_double] = ACTIONS(4124), + [anon_sym_c_longdouble] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_yield] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_defer] = ACTIONS(4124), + [anon_sym_errdefer] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4124), + [anon_sym_while] = ACTIONS(4124), + [anon_sym_expand] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_match] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4124), + [anon_sym_false] = ACTIONS(4124), + [sym_none] = ACTIONS(4124), + [sym_undefined] = ACTIONS(4124), + [sym_sink] = ACTIONS(4124), + [sym_integer] = ACTIONS(4124), + [sym_float] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [sym_multiline_string] = ACTIONS(4122), + [sym_character] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4122), + }, + [STATE(1756)] = { + [ts_builtin_sym_end] = ACTIONS(4126), + [sym_identifier] = ACTIONS(4128), + [anon_sym_import] = ACTIONS(4128), + [anon_sym_test] = ACTIONS(4128), + [anon_sym_hide] = ACTIONS(4128), + [anon_sym_func] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4126), + [anon_sym_RPAREN] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_DOLLAR] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_void] = ACTIONS(4128), + [anon_sym_type] = ACTIONS(4128), + [anon_sym_anyopaque] = ACTIONS(4128), + [anon_sym_bool] = ACTIONS(4128), + [anon_sym_int] = ACTIONS(4128), + [anon_sym_uint] = ACTIONS(4128), + [anon_sym_float] = ACTIONS(4128), + [anon_sym_range] = ACTIONS(4128), + [anon_sym_i8] = ACTIONS(4128), + [anon_sym_i16] = ACTIONS(4128), + [anon_sym_i32] = ACTIONS(4128), + [anon_sym_i64] = ACTIONS(4128), + [anon_sym_u8] = ACTIONS(4128), + [anon_sym_u16] = ACTIONS(4128), + [anon_sym_u32] = ACTIONS(4128), + [anon_sym_u64] = ACTIONS(4128), + [anon_sym_isize] = ACTIONS(4128), + [anon_sym_usize] = ACTIONS(4128), + [anon_sym_f32] = ACTIONS(4128), + [anon_sym_f64] = ACTIONS(4128), + [anon_sym_c_char] = ACTIONS(4128), + [anon_sym_c_schar] = ACTIONS(4128), + [anon_sym_c_uchar] = ACTIONS(4128), + [anon_sym_c_short] = ACTIONS(4128), + [anon_sym_c_ushort] = ACTIONS(4128), + [anon_sym_c_int] = ACTIONS(4128), + [anon_sym_c_uint] = ACTIONS(4128), + [anon_sym_c_long] = ACTIONS(4128), + [anon_sym_c_ulong] = ACTIONS(4128), + [anon_sym_c_longlong] = ACTIONS(4128), + [anon_sym_c_ulonglong] = ACTIONS(4128), + [anon_sym_c_float] = ACTIONS(4128), + [anon_sym_c_double] = ACTIONS(4128), + [anon_sym_c_longdouble] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_yield] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_defer] = ACTIONS(4128), + [anon_sym_errdefer] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_expand] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_match] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [sym_none] = ACTIONS(4128), + [sym_undefined] = ACTIONS(4128), + [sym_sink] = ACTIONS(4128), + [sym_integer] = ACTIONS(4128), + [sym_float] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym_multiline_string] = ACTIONS(4126), + [sym_character] = ACTIONS(4126), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4126), }, - [STATE(1712)] = { - [aux_sym_import_declaration_repeat1] = STATE(3149), - [sym_identifier] = ACTIONS(4089), - [anon_sym_func] = ACTIONS(4089), - [anon_sym_BANG] = ACTIONS(4091), - [anon_sym_struct] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4091), - [anon_sym_void] = ACTIONS(4089), - [anon_sym_anyopaque] = ACTIONS(4089), - [anon_sym_bool] = ACTIONS(4089), - [anon_sym_int] = ACTIONS(4089), - [anon_sym_uint] = ACTIONS(4089), - [anon_sym_float] = ACTIONS(4089), - [anon_sym_range] = ACTIONS(4089), - [anon_sym_i8] = ACTIONS(4089), - [anon_sym_i16] = ACTIONS(4089), - [anon_sym_i32] = ACTIONS(4089), - [anon_sym_i64] = ACTIONS(4089), - [anon_sym_u8] = ACTIONS(4089), - [anon_sym_u16] = ACTIONS(4089), - [anon_sym_u32] = ACTIONS(4089), - [anon_sym_u64] = ACTIONS(4089), - [anon_sym_isize] = ACTIONS(4089), - [anon_sym_usize] = ACTIONS(4089), - [anon_sym_f32] = ACTIONS(4089), - [anon_sym_f64] = ACTIONS(4089), - [anon_sym_c_char] = ACTIONS(4089), - [anon_sym_c_schar] = ACTIONS(4089), - [anon_sym_c_uchar] = ACTIONS(4089), - [anon_sym_c_short] = ACTIONS(4089), - [anon_sym_c_ushort] = ACTIONS(4089), - [anon_sym_c_int] = ACTIONS(4089), - [anon_sym_c_uint] = ACTIONS(4089), - [anon_sym_c_long] = ACTIONS(4089), - [anon_sym_c_ulong] = ACTIONS(4089), - [anon_sym_c_longlong] = ACTIONS(4089), - [anon_sym_c_ulonglong] = ACTIONS(4089), - [anon_sym_c_float] = ACTIONS(4089), - [anon_sym_c_double] = ACTIONS(4089), - [anon_sym_c_longdouble] = ACTIONS(4089), - [anon_sym_return] = ACTIONS(4089), - [anon_sym_yield] = ACTIONS(4089), - [anon_sym_break] = ACTIONS(4089), - [anon_sym_continue] = ACTIONS(4089), - [anon_sym_defer] = ACTIONS(4089), - [anon_sym_errdefer] = ACTIONS(4089), - [anon_sym_if] = ACTIONS(4089), - [anon_sym_else] = ACTIONS(4129), - [anon_sym_while] = ACTIONS(4089), - [anon_sym_expand] = ACTIONS(4089), - [anon_sym_for] = ACTIONS(4089), - [anon_sym_match] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - [anon_sym_TILDE] = ACTIONS(4091), - [anon_sym_try] = ACTIONS(4089), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [sym_none] = ACTIONS(4089), - [sym_undefined] = ACTIONS(4089), - [sym_sink] = ACTIONS(4089), - [sym_integer] = ACTIONS(4089), - [sym_float] = ACTIONS(4091), - [anon_sym_DQUOTE] = ACTIONS(4091), - [sym_multiline_string] = ACTIONS(4091), - [sym_character] = ACTIONS(4091), + [STATE(1757)] = { + [ts_builtin_sym_end] = ACTIONS(4130), + [sym_identifier] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_test] = ACTIONS(4132), + [anon_sym_hide] = ACTIONS(4132), + [anon_sym_func] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4130), + [anon_sym_RPAREN] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_RBRACE] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_DOLLAR] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_void] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4132), + [anon_sym_anyopaque] = ACTIONS(4132), + [anon_sym_bool] = ACTIONS(4132), + [anon_sym_int] = ACTIONS(4132), + [anon_sym_uint] = ACTIONS(4132), + [anon_sym_float] = ACTIONS(4132), + [anon_sym_range] = ACTIONS(4132), + [anon_sym_i8] = ACTIONS(4132), + [anon_sym_i16] = ACTIONS(4132), + [anon_sym_i32] = ACTIONS(4132), + [anon_sym_i64] = ACTIONS(4132), + [anon_sym_u8] = ACTIONS(4132), + [anon_sym_u16] = ACTIONS(4132), + [anon_sym_u32] = ACTIONS(4132), + [anon_sym_u64] = ACTIONS(4132), + [anon_sym_isize] = ACTIONS(4132), + [anon_sym_usize] = ACTIONS(4132), + [anon_sym_f32] = ACTIONS(4132), + [anon_sym_f64] = ACTIONS(4132), + [anon_sym_c_char] = ACTIONS(4132), + [anon_sym_c_schar] = ACTIONS(4132), + [anon_sym_c_uchar] = ACTIONS(4132), + [anon_sym_c_short] = ACTIONS(4132), + [anon_sym_c_ushort] = ACTIONS(4132), + [anon_sym_c_int] = ACTIONS(4132), + [anon_sym_c_uint] = ACTIONS(4132), + [anon_sym_c_long] = ACTIONS(4132), + [anon_sym_c_ulong] = ACTIONS(4132), + [anon_sym_c_longlong] = ACTIONS(4132), + [anon_sym_c_ulonglong] = ACTIONS(4132), + [anon_sym_c_float] = ACTIONS(4132), + [anon_sym_c_double] = ACTIONS(4132), + [anon_sym_c_longdouble] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_yield] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_defer] = ACTIONS(4132), + [anon_sym_errdefer] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_else] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_expand] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_match] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_true] = ACTIONS(4132), + [anon_sym_false] = ACTIONS(4132), + [sym_none] = ACTIONS(4132), + [sym_undefined] = ACTIONS(4132), + [sym_sink] = ACTIONS(4132), + [sym_integer] = ACTIONS(4132), + [sym_float] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [sym_multiline_string] = ACTIONS(4130), + [sym_character] = ACTIONS(4130), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4131), + [sym__newline] = ACTIONS(4130), }, - [STATE(1713)] = { - [aux_sym_import_declaration_repeat1] = STATE(3243), - [sym_identifier] = ACTIONS(4134), - [anon_sym_func] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_DOLLAR] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_void] = ACTIONS(4134), - [anon_sym_anyopaque] = ACTIONS(4134), - [anon_sym_bool] = ACTIONS(4134), - [anon_sym_int] = ACTIONS(4134), - [anon_sym_uint] = ACTIONS(4134), - [anon_sym_float] = ACTIONS(4134), - [anon_sym_range] = ACTIONS(4134), - [anon_sym_i8] = ACTIONS(4134), - [anon_sym_i16] = ACTIONS(4134), - [anon_sym_i32] = ACTIONS(4134), - [anon_sym_i64] = ACTIONS(4134), - [anon_sym_u8] = ACTIONS(4134), - [anon_sym_u16] = ACTIONS(4134), - [anon_sym_u32] = ACTIONS(4134), - [anon_sym_u64] = ACTIONS(4134), - [anon_sym_isize] = ACTIONS(4134), - [anon_sym_usize] = ACTIONS(4134), - [anon_sym_f32] = ACTIONS(4134), - [anon_sym_f64] = ACTIONS(4134), - [anon_sym_c_char] = ACTIONS(4134), - [anon_sym_c_schar] = ACTIONS(4134), - [anon_sym_c_uchar] = ACTIONS(4134), - [anon_sym_c_short] = ACTIONS(4134), - [anon_sym_c_ushort] = ACTIONS(4134), - [anon_sym_c_int] = ACTIONS(4134), - [anon_sym_c_uint] = ACTIONS(4134), - [anon_sym_c_long] = ACTIONS(4134), - [anon_sym_c_ulong] = ACTIONS(4134), - [anon_sym_c_longlong] = ACTIONS(4134), - [anon_sym_c_ulonglong] = ACTIONS(4134), - [anon_sym_c_float] = ACTIONS(4134), - [anon_sym_c_double] = ACTIONS(4134), - [anon_sym_c_longdouble] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_yield] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_defer] = ACTIONS(4134), - [anon_sym_errdefer] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_expand] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_match] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_false] = ACTIONS(4134), - [sym_none] = ACTIONS(4134), - [sym_undefined] = ACTIONS(4134), - [sym_sink] = ACTIONS(4134), - [sym_integer] = ACTIONS(4134), - [sym_float] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_multiline_string] = ACTIONS(4136), - [sym_character] = ACTIONS(4136), + [STATE(1758)] = { + [ts_builtin_sym_end] = ACTIONS(4134), + [sym_identifier] = ACTIONS(4136), + [anon_sym_import] = ACTIONS(4136), + [anon_sym_test] = ACTIONS(4136), + [anon_sym_hide] = ACTIONS(4136), + [anon_sym_func] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4134), + [anon_sym_RPAREN] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_DOLLAR] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_void] = ACTIONS(4136), + [anon_sym_type] = ACTIONS(4136), + [anon_sym_anyopaque] = ACTIONS(4136), + [anon_sym_bool] = ACTIONS(4136), + [anon_sym_int] = ACTIONS(4136), + [anon_sym_uint] = ACTIONS(4136), + [anon_sym_float] = ACTIONS(4136), + [anon_sym_range] = ACTIONS(4136), + [anon_sym_i8] = ACTIONS(4136), + [anon_sym_i16] = ACTIONS(4136), + [anon_sym_i32] = ACTIONS(4136), + [anon_sym_i64] = ACTIONS(4136), + [anon_sym_u8] = ACTIONS(4136), + [anon_sym_u16] = ACTIONS(4136), + [anon_sym_u32] = ACTIONS(4136), + [anon_sym_u64] = ACTIONS(4136), + [anon_sym_isize] = ACTIONS(4136), + [anon_sym_usize] = ACTIONS(4136), + [anon_sym_f32] = ACTIONS(4136), + [anon_sym_f64] = ACTIONS(4136), + [anon_sym_c_char] = ACTIONS(4136), + [anon_sym_c_schar] = ACTIONS(4136), + [anon_sym_c_uchar] = ACTIONS(4136), + [anon_sym_c_short] = ACTIONS(4136), + [anon_sym_c_ushort] = ACTIONS(4136), + [anon_sym_c_int] = ACTIONS(4136), + [anon_sym_c_uint] = ACTIONS(4136), + [anon_sym_c_long] = ACTIONS(4136), + [anon_sym_c_ulong] = ACTIONS(4136), + [anon_sym_c_longlong] = ACTIONS(4136), + [anon_sym_c_ulonglong] = ACTIONS(4136), + [anon_sym_c_float] = ACTIONS(4136), + [anon_sym_c_double] = ACTIONS(4136), + [anon_sym_c_longdouble] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_yield] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_defer] = ACTIONS(4136), + [anon_sym_errdefer] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_expand] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_match] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [sym_none] = ACTIONS(4136), + [sym_undefined] = ACTIONS(4136), + [sym_sink] = ACTIONS(4136), + [sym_integer] = ACTIONS(4136), + [sym_float] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_multiline_string] = ACTIONS(4134), + [sym_character] = ACTIONS(4134), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4141), + [sym__newline] = ACTIONS(4134), }, - [STATE(1714)] = { - [aux_sym_import_declaration_repeat1] = STATE(3239), + [STATE(1759)] = { + [ts_builtin_sym_end] = ACTIONS(4138), + [sym_identifier] = ACTIONS(4140), + [anon_sym_import] = ACTIONS(4140), + [anon_sym_test] = ACTIONS(4140), + [anon_sym_hide] = ACTIONS(4140), + [anon_sym_func] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_RPAREN] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_DOLLAR] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_void] = ACTIONS(4140), + [anon_sym_type] = ACTIONS(4140), + [anon_sym_anyopaque] = ACTIONS(4140), + [anon_sym_bool] = ACTIONS(4140), + [anon_sym_int] = ACTIONS(4140), + [anon_sym_uint] = ACTIONS(4140), + [anon_sym_float] = ACTIONS(4140), + [anon_sym_range] = ACTIONS(4140), + [anon_sym_i8] = ACTIONS(4140), + [anon_sym_i16] = ACTIONS(4140), + [anon_sym_i32] = ACTIONS(4140), + [anon_sym_i64] = ACTIONS(4140), + [anon_sym_u8] = ACTIONS(4140), + [anon_sym_u16] = ACTIONS(4140), + [anon_sym_u32] = ACTIONS(4140), + [anon_sym_u64] = ACTIONS(4140), + [anon_sym_isize] = ACTIONS(4140), + [anon_sym_usize] = ACTIONS(4140), + [anon_sym_f32] = ACTIONS(4140), + [anon_sym_f64] = ACTIONS(4140), + [anon_sym_c_char] = ACTIONS(4140), + [anon_sym_c_schar] = ACTIONS(4140), + [anon_sym_c_uchar] = ACTIONS(4140), + [anon_sym_c_short] = ACTIONS(4140), + [anon_sym_c_ushort] = ACTIONS(4140), + [anon_sym_c_int] = ACTIONS(4140), + [anon_sym_c_uint] = ACTIONS(4140), + [anon_sym_c_long] = ACTIONS(4140), + [anon_sym_c_ulong] = ACTIONS(4140), + [anon_sym_c_longlong] = ACTIONS(4140), + [anon_sym_c_ulonglong] = ACTIONS(4140), + [anon_sym_c_float] = ACTIONS(4140), + [anon_sym_c_double] = ACTIONS(4140), + [anon_sym_c_longdouble] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_yield] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_defer] = ACTIONS(4140), + [anon_sym_errdefer] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_expand] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_match] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [sym_none] = ACTIONS(4140), + [sym_undefined] = ACTIONS(4140), + [sym_sink] = ACTIONS(4140), + [sym_integer] = ACTIONS(4140), + [sym_float] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [sym_multiline_string] = ACTIONS(4138), + [sym_character] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4138), + }, + [STATE(1760)] = { + [ts_builtin_sym_end] = ACTIONS(4142), [sym_identifier] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_test] = ACTIONS(4144), + [anon_sym_hide] = ACTIONS(4144), [anon_sym_func] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4142), [anon_sym_struct] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_DOLLAR] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_DOLLAR] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), [anon_sym_void] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), [anon_sym_anyopaque] = ACTIONS(4144), [anon_sym_bool] = ACTIONS(4144), [anon_sym_int] = ACTIONS(4144), @@ -176851,389 +185056,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(4144), [anon_sym_errdefer] = ACTIONS(4144), [anon_sym_if] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4144), [anon_sym_while] = ACTIONS(4144), [anon_sym_expand] = ACTIONS(4144), [anon_sym_for] = ACTIONS(4144), [anon_sym_match] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), [anon_sym_try] = ACTIONS(4144), - [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4142), [anon_sym_true] = ACTIONS(4144), [anon_sym_false] = ACTIONS(4144), [sym_none] = ACTIONS(4144), [sym_undefined] = ACTIONS(4144), [sym_sink] = ACTIONS(4144), [sym_integer] = ACTIONS(4144), + [sym_float] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(4142), + [sym_multiline_string] = ACTIONS(4142), + [sym_character] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4142), + }, + [STATE(1761)] = { + [ts_builtin_sym_end] = ACTIONS(4146), + [sym_identifier] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), + [anon_sym_test] = ACTIONS(4148), + [anon_sym_hide] = ACTIONS(4148), + [anon_sym_func] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_RPAREN] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_DOLLAR] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_void] = ACTIONS(4148), + [anon_sym_type] = ACTIONS(4148), + [anon_sym_anyopaque] = ACTIONS(4148), + [anon_sym_bool] = ACTIONS(4148), + [anon_sym_int] = ACTIONS(4148), + [anon_sym_uint] = ACTIONS(4148), + [anon_sym_float] = ACTIONS(4148), + [anon_sym_range] = ACTIONS(4148), + [anon_sym_i8] = ACTIONS(4148), + [anon_sym_i16] = ACTIONS(4148), + [anon_sym_i32] = ACTIONS(4148), + [anon_sym_i64] = ACTIONS(4148), + [anon_sym_u8] = ACTIONS(4148), + [anon_sym_u16] = ACTIONS(4148), + [anon_sym_u32] = ACTIONS(4148), + [anon_sym_u64] = ACTIONS(4148), + [anon_sym_isize] = ACTIONS(4148), + [anon_sym_usize] = ACTIONS(4148), + [anon_sym_f32] = ACTIONS(4148), + [anon_sym_f64] = ACTIONS(4148), + [anon_sym_c_char] = ACTIONS(4148), + [anon_sym_c_schar] = ACTIONS(4148), + [anon_sym_c_uchar] = ACTIONS(4148), + [anon_sym_c_short] = ACTIONS(4148), + [anon_sym_c_ushort] = ACTIONS(4148), + [anon_sym_c_int] = ACTIONS(4148), + [anon_sym_c_uint] = ACTIONS(4148), + [anon_sym_c_long] = ACTIONS(4148), + [anon_sym_c_ulong] = ACTIONS(4148), + [anon_sym_c_longlong] = ACTIONS(4148), + [anon_sym_c_ulonglong] = ACTIONS(4148), + [anon_sym_c_float] = ACTIONS(4148), + [anon_sym_c_double] = ACTIONS(4148), + [anon_sym_c_longdouble] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_yield] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_defer] = ACTIONS(4148), + [anon_sym_errdefer] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_expand] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_match] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [sym_none] = ACTIONS(4148), + [sym_undefined] = ACTIONS(4148), + [sym_sink] = ACTIONS(4148), + [sym_integer] = ACTIONS(4148), [sym_float] = ACTIONS(4146), [anon_sym_DQUOTE] = ACTIONS(4146), [sym_multiline_string] = ACTIONS(4146), [sym_character] = ACTIONS(4146), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4146), + }, + [STATE(1762)] = { + [ts_builtin_sym_end] = ACTIONS(4150), + [sym_identifier] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), + [anon_sym_test] = ACTIONS(4152), + [anon_sym_hide] = ACTIONS(4152), + [anon_sym_func] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_DOLLAR] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_void] = ACTIONS(4152), + [anon_sym_type] = ACTIONS(4152), + [anon_sym_anyopaque] = ACTIONS(4152), + [anon_sym_bool] = ACTIONS(4152), + [anon_sym_int] = ACTIONS(4152), + [anon_sym_uint] = ACTIONS(4152), + [anon_sym_float] = ACTIONS(4152), + [anon_sym_range] = ACTIONS(4152), + [anon_sym_i8] = ACTIONS(4152), + [anon_sym_i16] = ACTIONS(4152), + [anon_sym_i32] = ACTIONS(4152), + [anon_sym_i64] = ACTIONS(4152), + [anon_sym_u8] = ACTIONS(4152), + [anon_sym_u16] = ACTIONS(4152), + [anon_sym_u32] = ACTIONS(4152), + [anon_sym_u64] = ACTIONS(4152), + [anon_sym_isize] = ACTIONS(4152), + [anon_sym_usize] = ACTIONS(4152), + [anon_sym_f32] = ACTIONS(4152), + [anon_sym_f64] = ACTIONS(4152), + [anon_sym_c_char] = ACTIONS(4152), + [anon_sym_c_schar] = ACTIONS(4152), + [anon_sym_c_uchar] = ACTIONS(4152), + [anon_sym_c_short] = ACTIONS(4152), + [anon_sym_c_ushort] = ACTIONS(4152), + [anon_sym_c_int] = ACTIONS(4152), + [anon_sym_c_uint] = ACTIONS(4152), + [anon_sym_c_long] = ACTIONS(4152), + [anon_sym_c_ulong] = ACTIONS(4152), + [anon_sym_c_longlong] = ACTIONS(4152), + [anon_sym_c_ulonglong] = ACTIONS(4152), + [anon_sym_c_float] = ACTIONS(4152), + [anon_sym_c_double] = ACTIONS(4152), + [anon_sym_c_longdouble] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_yield] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_defer] = ACTIONS(4152), + [anon_sym_errdefer] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_expand] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_match] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [sym_none] = ACTIONS(4152), + [sym_undefined] = ACTIONS(4152), + [sym_sink] = ACTIONS(4152), + [sym_integer] = ACTIONS(4152), + [sym_float] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_multiline_string] = ACTIONS(4150), + [sym_character] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4150), }, - [STATE(1715)] = { - [aux_sym_import_declaration_repeat1] = STATE(3181), - [sym_identifier] = ACTIONS(4153), - [anon_sym_func] = ACTIONS(4153), - [anon_sym_BANG] = ACTIONS(4155), - [anon_sym_struct] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_DASH] = ACTIONS(4155), - [anon_sym_DOLLAR] = ACTIONS(4155), - [anon_sym_LBRACK] = ACTIONS(4155), - [anon_sym_void] = ACTIONS(4153), - [anon_sym_anyopaque] = ACTIONS(4153), - [anon_sym_bool] = ACTIONS(4153), - [anon_sym_int] = ACTIONS(4153), - [anon_sym_uint] = ACTIONS(4153), - [anon_sym_float] = ACTIONS(4153), - [anon_sym_range] = ACTIONS(4153), - [anon_sym_i8] = ACTIONS(4153), - [anon_sym_i16] = ACTIONS(4153), - [anon_sym_i32] = ACTIONS(4153), - [anon_sym_i64] = ACTIONS(4153), - [anon_sym_u8] = ACTIONS(4153), - [anon_sym_u16] = ACTIONS(4153), - [anon_sym_u32] = ACTIONS(4153), - [anon_sym_u64] = ACTIONS(4153), - [anon_sym_isize] = ACTIONS(4153), - [anon_sym_usize] = ACTIONS(4153), - [anon_sym_f32] = ACTIONS(4153), - [anon_sym_f64] = ACTIONS(4153), - [anon_sym_c_char] = ACTIONS(4153), - [anon_sym_c_schar] = ACTIONS(4153), - [anon_sym_c_uchar] = ACTIONS(4153), - [anon_sym_c_short] = ACTIONS(4153), - [anon_sym_c_ushort] = ACTIONS(4153), - [anon_sym_c_int] = ACTIONS(4153), - [anon_sym_c_uint] = ACTIONS(4153), - [anon_sym_c_long] = ACTIONS(4153), - [anon_sym_c_ulong] = ACTIONS(4153), - [anon_sym_c_longlong] = ACTIONS(4153), - [anon_sym_c_ulonglong] = ACTIONS(4153), - [anon_sym_c_float] = ACTIONS(4153), - [anon_sym_c_double] = ACTIONS(4153), - [anon_sym_c_longdouble] = ACTIONS(4153), - [anon_sym_return] = ACTIONS(4153), - [anon_sym_yield] = ACTIONS(4153), - [anon_sym_break] = ACTIONS(4153), - [anon_sym_continue] = ACTIONS(4153), - [anon_sym_defer] = ACTIONS(4153), - [anon_sym_errdefer] = ACTIONS(4153), - [anon_sym_if] = ACTIONS(4153), - [anon_sym_else] = ACTIONS(4157), - [anon_sym_while] = ACTIONS(4153), - [anon_sym_expand] = ACTIONS(4153), - [anon_sym_for] = ACTIONS(4153), - [anon_sym_match] = ACTIONS(4153), - [anon_sym_AMP] = ACTIONS(4155), - [anon_sym_TILDE] = ACTIONS(4155), - [anon_sym_try] = ACTIONS(4153), - [anon_sym_DOT] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [sym_none] = ACTIONS(4153), - [sym_undefined] = ACTIONS(4153), - [sym_sink] = ACTIONS(4153), - [sym_integer] = ACTIONS(4153), - [sym_float] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4155), - [sym_multiline_string] = ACTIONS(4155), - [sym_character] = ACTIONS(4155), + [STATE(1763)] = { + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_test] = ACTIONS(4156), + [anon_sym_hide] = ACTIONS(4156), + [anon_sym_func] = ACTIONS(4156), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_void] = ACTIONS(4156), + [anon_sym_type] = ACTIONS(4156), + [anon_sym_anyopaque] = ACTIONS(4156), + [anon_sym_bool] = ACTIONS(4156), + [anon_sym_int] = ACTIONS(4156), + [anon_sym_uint] = ACTIONS(4156), + [anon_sym_float] = ACTIONS(4156), + [anon_sym_range] = ACTIONS(4156), + [anon_sym_i8] = ACTIONS(4156), + [anon_sym_i16] = ACTIONS(4156), + [anon_sym_i32] = ACTIONS(4156), + [anon_sym_i64] = ACTIONS(4156), + [anon_sym_u8] = ACTIONS(4156), + [anon_sym_u16] = ACTIONS(4156), + [anon_sym_u32] = ACTIONS(4156), + [anon_sym_u64] = ACTIONS(4156), + [anon_sym_isize] = ACTIONS(4156), + [anon_sym_usize] = ACTIONS(4156), + [anon_sym_f32] = ACTIONS(4156), + [anon_sym_f64] = ACTIONS(4156), + [anon_sym_c_char] = ACTIONS(4156), + [anon_sym_c_schar] = ACTIONS(4156), + [anon_sym_c_uchar] = ACTIONS(4156), + [anon_sym_c_short] = ACTIONS(4156), + [anon_sym_c_ushort] = ACTIONS(4156), + [anon_sym_c_int] = ACTIONS(4156), + [anon_sym_c_uint] = ACTIONS(4156), + [anon_sym_c_long] = ACTIONS(4156), + [anon_sym_c_ulong] = ACTIONS(4156), + [anon_sym_c_longlong] = ACTIONS(4156), + [anon_sym_c_ulonglong] = ACTIONS(4156), + [anon_sym_c_float] = ACTIONS(4156), + [anon_sym_c_double] = ACTIONS(4156), + [anon_sym_c_longdouble] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_yield] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_defer] = ACTIONS(4156), + [anon_sym_errdefer] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_expand] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_match] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [sym_none] = ACTIONS(4156), + [sym_undefined] = ACTIONS(4156), + [sym_sink] = ACTIONS(4156), + [sym_integer] = ACTIONS(4156), + [sym_float] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_multiline_string] = ACTIONS(4154), + [sym_character] = ACTIONS(4154), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4159), + [sym__newline] = ACTIONS(4154), }, - [STATE(1716)] = { - [aux_sym_import_declaration_repeat1] = STATE(3241), - [sym_identifier] = ACTIONS(4144), - [anon_sym_func] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_DOLLAR] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_void] = ACTIONS(4144), - [anon_sym_anyopaque] = ACTIONS(4144), - [anon_sym_bool] = ACTIONS(4144), - [anon_sym_int] = ACTIONS(4144), - [anon_sym_uint] = ACTIONS(4144), - [anon_sym_float] = ACTIONS(4144), - [anon_sym_range] = ACTIONS(4144), - [anon_sym_i8] = ACTIONS(4144), - [anon_sym_i16] = ACTIONS(4144), - [anon_sym_i32] = ACTIONS(4144), - [anon_sym_i64] = ACTIONS(4144), - [anon_sym_u8] = ACTIONS(4144), - [anon_sym_u16] = ACTIONS(4144), - [anon_sym_u32] = ACTIONS(4144), - [anon_sym_u64] = ACTIONS(4144), - [anon_sym_isize] = ACTIONS(4144), - [anon_sym_usize] = ACTIONS(4144), - [anon_sym_f32] = ACTIONS(4144), - [anon_sym_f64] = ACTIONS(4144), - [anon_sym_c_char] = ACTIONS(4144), - [anon_sym_c_schar] = ACTIONS(4144), - [anon_sym_c_uchar] = ACTIONS(4144), - [anon_sym_c_short] = ACTIONS(4144), - [anon_sym_c_ushort] = ACTIONS(4144), - [anon_sym_c_int] = ACTIONS(4144), - [anon_sym_c_uint] = ACTIONS(4144), - [anon_sym_c_long] = ACTIONS(4144), - [anon_sym_c_ulong] = ACTIONS(4144), - [anon_sym_c_longlong] = ACTIONS(4144), - [anon_sym_c_ulonglong] = ACTIONS(4144), - [anon_sym_c_float] = ACTIONS(4144), - [anon_sym_c_double] = ACTIONS(4144), - [anon_sym_c_longdouble] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_yield] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_defer] = ACTIONS(4144), - [anon_sym_errdefer] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_expand] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_match] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_true] = ACTIONS(4144), - [anon_sym_false] = ACTIONS(4144), - [sym_none] = ACTIONS(4144), - [sym_undefined] = ACTIONS(4144), - [sym_sink] = ACTIONS(4144), - [sym_integer] = ACTIONS(4144), - [sym_float] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_multiline_string] = ACTIONS(4146), - [sym_character] = ACTIONS(4146), + [STATE(1764)] = { + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_test] = ACTIONS(4160), + [anon_sym_hide] = ACTIONS(4160), + [anon_sym_func] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_DOLLAR] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_void] = ACTIONS(4160), + [anon_sym_type] = ACTIONS(4160), + [anon_sym_anyopaque] = ACTIONS(4160), + [anon_sym_bool] = ACTIONS(4160), + [anon_sym_int] = ACTIONS(4160), + [anon_sym_uint] = ACTIONS(4160), + [anon_sym_float] = ACTIONS(4160), + [anon_sym_range] = ACTIONS(4160), + [anon_sym_i8] = ACTIONS(4160), + [anon_sym_i16] = ACTIONS(4160), + [anon_sym_i32] = ACTIONS(4160), + [anon_sym_i64] = ACTIONS(4160), + [anon_sym_u8] = ACTIONS(4160), + [anon_sym_u16] = ACTIONS(4160), + [anon_sym_u32] = ACTIONS(4160), + [anon_sym_u64] = ACTIONS(4160), + [anon_sym_isize] = ACTIONS(4160), + [anon_sym_usize] = ACTIONS(4160), + [anon_sym_f32] = ACTIONS(4160), + [anon_sym_f64] = ACTIONS(4160), + [anon_sym_c_char] = ACTIONS(4160), + [anon_sym_c_schar] = ACTIONS(4160), + [anon_sym_c_uchar] = ACTIONS(4160), + [anon_sym_c_short] = ACTIONS(4160), + [anon_sym_c_ushort] = ACTIONS(4160), + [anon_sym_c_int] = ACTIONS(4160), + [anon_sym_c_uint] = ACTIONS(4160), + [anon_sym_c_long] = ACTIONS(4160), + [anon_sym_c_ulong] = ACTIONS(4160), + [anon_sym_c_longlong] = ACTIONS(4160), + [anon_sym_c_ulonglong] = ACTIONS(4160), + [anon_sym_c_float] = ACTIONS(4160), + [anon_sym_c_double] = ACTIONS(4160), + [anon_sym_c_longdouble] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_yield] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_defer] = ACTIONS(4160), + [anon_sym_errdefer] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_expand] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_match] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [sym_none] = ACTIONS(4160), + [sym_undefined] = ACTIONS(4160), + [sym_sink] = ACTIONS(4160), + [sym_integer] = ACTIONS(4160), + [sym_float] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_multiline_string] = ACTIONS(4158), + [sym_character] = ACTIONS(4158), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4165), + [sym__newline] = ACTIONS(4158), }, - [STATE(1717)] = { - [aux_sym_import_declaration_repeat1] = STATE(3155), - [sym_identifier] = ACTIONS(4134), - [anon_sym_func] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_DOLLAR] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_void] = ACTIONS(4134), - [anon_sym_anyopaque] = ACTIONS(4134), - [anon_sym_bool] = ACTIONS(4134), - [anon_sym_int] = ACTIONS(4134), - [anon_sym_uint] = ACTIONS(4134), - [anon_sym_float] = ACTIONS(4134), - [anon_sym_range] = ACTIONS(4134), - [anon_sym_i8] = ACTIONS(4134), - [anon_sym_i16] = ACTIONS(4134), - [anon_sym_i32] = ACTIONS(4134), - [anon_sym_i64] = ACTIONS(4134), - [anon_sym_u8] = ACTIONS(4134), - [anon_sym_u16] = ACTIONS(4134), - [anon_sym_u32] = ACTIONS(4134), - [anon_sym_u64] = ACTIONS(4134), - [anon_sym_isize] = ACTIONS(4134), - [anon_sym_usize] = ACTIONS(4134), - [anon_sym_f32] = ACTIONS(4134), - [anon_sym_f64] = ACTIONS(4134), - [anon_sym_c_char] = ACTIONS(4134), - [anon_sym_c_schar] = ACTIONS(4134), - [anon_sym_c_uchar] = ACTIONS(4134), - [anon_sym_c_short] = ACTIONS(4134), - [anon_sym_c_ushort] = ACTIONS(4134), - [anon_sym_c_int] = ACTIONS(4134), - [anon_sym_c_uint] = ACTIONS(4134), - [anon_sym_c_long] = ACTIONS(4134), - [anon_sym_c_ulong] = ACTIONS(4134), - [anon_sym_c_longlong] = ACTIONS(4134), - [anon_sym_c_ulonglong] = ACTIONS(4134), - [anon_sym_c_float] = ACTIONS(4134), - [anon_sym_c_double] = ACTIONS(4134), - [anon_sym_c_longdouble] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_yield] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_defer] = ACTIONS(4134), - [anon_sym_errdefer] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), + [STATE(1765)] = { + [ts_builtin_sym_end] = ACTIONS(4162), + [sym_identifier] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), + [anon_sym_test] = ACTIONS(4164), + [anon_sym_hide] = ACTIONS(4164), + [anon_sym_func] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_DOLLAR] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_void] = ACTIONS(4164), + [anon_sym_type] = ACTIONS(4164), + [anon_sym_anyopaque] = ACTIONS(4164), + [anon_sym_bool] = ACTIONS(4164), + [anon_sym_int] = ACTIONS(4164), + [anon_sym_uint] = ACTIONS(4164), + [anon_sym_float] = ACTIONS(4164), + [anon_sym_range] = ACTIONS(4164), + [anon_sym_i8] = ACTIONS(4164), + [anon_sym_i16] = ACTIONS(4164), + [anon_sym_i32] = ACTIONS(4164), + [anon_sym_i64] = ACTIONS(4164), + [anon_sym_u8] = ACTIONS(4164), + [anon_sym_u16] = ACTIONS(4164), + [anon_sym_u32] = ACTIONS(4164), + [anon_sym_u64] = ACTIONS(4164), + [anon_sym_isize] = ACTIONS(4164), + [anon_sym_usize] = ACTIONS(4164), + [anon_sym_f32] = ACTIONS(4164), + [anon_sym_f64] = ACTIONS(4164), + [anon_sym_c_char] = ACTIONS(4164), + [anon_sym_c_schar] = ACTIONS(4164), + [anon_sym_c_uchar] = ACTIONS(4164), + [anon_sym_c_short] = ACTIONS(4164), + [anon_sym_c_ushort] = ACTIONS(4164), + [anon_sym_c_int] = ACTIONS(4164), + [anon_sym_c_uint] = ACTIONS(4164), + [anon_sym_c_long] = ACTIONS(4164), + [anon_sym_c_ulong] = ACTIONS(4164), + [anon_sym_c_longlong] = ACTIONS(4164), + [anon_sym_c_ulonglong] = ACTIONS(4164), + [anon_sym_c_float] = ACTIONS(4164), + [anon_sym_c_double] = ACTIONS(4164), + [anon_sym_c_longdouble] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_yield] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_defer] = ACTIONS(4164), + [anon_sym_errdefer] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_expand] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_match] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [sym_none] = ACTIONS(4164), + [sym_undefined] = ACTIONS(4164), + [sym_sink] = ACTIONS(4164), + [sym_integer] = ACTIONS(4164), + [sym_float] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_multiline_string] = ACTIONS(4162), + [sym_character] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4162), + }, + [STATE(1766)] = { + [ts_builtin_sym_end] = ACTIONS(4166), + [sym_identifier] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), + [anon_sym_test] = ACTIONS(4168), + [anon_sym_hide] = ACTIONS(4168), + [anon_sym_func] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_DOLLAR] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_void] = ACTIONS(4168), + [anon_sym_type] = ACTIONS(4168), + [anon_sym_anyopaque] = ACTIONS(4168), + [anon_sym_bool] = ACTIONS(4168), + [anon_sym_int] = ACTIONS(4168), + [anon_sym_uint] = ACTIONS(4168), + [anon_sym_float] = ACTIONS(4168), + [anon_sym_range] = ACTIONS(4168), + [anon_sym_i8] = ACTIONS(4168), + [anon_sym_i16] = ACTIONS(4168), + [anon_sym_i32] = ACTIONS(4168), + [anon_sym_i64] = ACTIONS(4168), + [anon_sym_u8] = ACTIONS(4168), + [anon_sym_u16] = ACTIONS(4168), + [anon_sym_u32] = ACTIONS(4168), + [anon_sym_u64] = ACTIONS(4168), + [anon_sym_isize] = ACTIONS(4168), + [anon_sym_usize] = ACTIONS(4168), + [anon_sym_f32] = ACTIONS(4168), + [anon_sym_f64] = ACTIONS(4168), + [anon_sym_c_char] = ACTIONS(4168), + [anon_sym_c_schar] = ACTIONS(4168), + [anon_sym_c_uchar] = ACTIONS(4168), + [anon_sym_c_short] = ACTIONS(4168), + [anon_sym_c_ushort] = ACTIONS(4168), + [anon_sym_c_int] = ACTIONS(4168), + [anon_sym_c_uint] = ACTIONS(4168), + [anon_sym_c_long] = ACTIONS(4168), + [anon_sym_c_ulong] = ACTIONS(4168), + [anon_sym_c_longlong] = ACTIONS(4168), + [anon_sym_c_ulonglong] = ACTIONS(4168), + [anon_sym_c_float] = ACTIONS(4168), + [anon_sym_c_double] = ACTIONS(4168), + [anon_sym_c_longdouble] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_yield] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_defer] = ACTIONS(4168), + [anon_sym_errdefer] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), [anon_sym_else] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_expand] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_match] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_false] = ACTIONS(4134), - [sym_none] = ACTIONS(4134), - [sym_undefined] = ACTIONS(4134), - [sym_sink] = ACTIONS(4134), - [sym_integer] = ACTIONS(4134), - [sym_float] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_multiline_string] = ACTIONS(4136), - [sym_character] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_expand] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_match] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4168), + [anon_sym_false] = ACTIONS(4168), + [sym_none] = ACTIONS(4168), + [sym_undefined] = ACTIONS(4168), + [sym_sink] = ACTIONS(4168), + [sym_integer] = ACTIONS(4168), + [sym_float] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_multiline_string] = ACTIONS(4166), + [sym_character] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4166), + }, + [STATE(1767)] = { + [ts_builtin_sym_end] = ACTIONS(4170), + [sym_identifier] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), + [anon_sym_test] = ACTIONS(4172), + [anon_sym_hide] = ACTIONS(4172), + [anon_sym_func] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [anon_sym_RPAREN] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_DOLLAR] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_void] = ACTIONS(4172), + [anon_sym_type] = ACTIONS(4172), + [anon_sym_anyopaque] = ACTIONS(4172), + [anon_sym_bool] = ACTIONS(4172), + [anon_sym_int] = ACTIONS(4172), + [anon_sym_uint] = ACTIONS(4172), + [anon_sym_float] = ACTIONS(4172), + [anon_sym_range] = ACTIONS(4172), + [anon_sym_i8] = ACTIONS(4172), + [anon_sym_i16] = ACTIONS(4172), + [anon_sym_i32] = ACTIONS(4172), + [anon_sym_i64] = ACTIONS(4172), + [anon_sym_u8] = ACTIONS(4172), + [anon_sym_u16] = ACTIONS(4172), + [anon_sym_u32] = ACTIONS(4172), + [anon_sym_u64] = ACTIONS(4172), + [anon_sym_isize] = ACTIONS(4172), + [anon_sym_usize] = ACTIONS(4172), + [anon_sym_f32] = ACTIONS(4172), + [anon_sym_f64] = ACTIONS(4172), + [anon_sym_c_char] = ACTIONS(4172), + [anon_sym_c_schar] = ACTIONS(4172), + [anon_sym_c_uchar] = ACTIONS(4172), + [anon_sym_c_short] = ACTIONS(4172), + [anon_sym_c_ushort] = ACTIONS(4172), + [anon_sym_c_int] = ACTIONS(4172), + [anon_sym_c_uint] = ACTIONS(4172), + [anon_sym_c_long] = ACTIONS(4172), + [anon_sym_c_ulong] = ACTIONS(4172), + [anon_sym_c_longlong] = ACTIONS(4172), + [anon_sym_c_ulonglong] = ACTIONS(4172), + [anon_sym_c_float] = ACTIONS(4172), + [anon_sym_c_double] = ACTIONS(4172), + [anon_sym_c_longdouble] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_yield] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_defer] = ACTIONS(4172), + [anon_sym_errdefer] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_expand] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_match] = ACTIONS(4172), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_true] = ACTIONS(4172), + [anon_sym_false] = ACTIONS(4172), + [sym_none] = ACTIONS(4172), + [sym_undefined] = ACTIONS(4172), + [sym_sink] = ACTIONS(4172), + [sym_integer] = ACTIONS(4172), + [sym_float] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_multiline_string] = ACTIONS(4170), + [sym_character] = ACTIONS(4170), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4170), }, - [STATE(1718)] = { - [aux_sym_import_declaration_repeat1] = STATE(3244), - [sym_identifier] = ACTIONS(4153), - [anon_sym_func] = ACTIONS(4153), - [anon_sym_BANG] = ACTIONS(4155), - [anon_sym_struct] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_DASH] = ACTIONS(4155), - [anon_sym_DOLLAR] = ACTIONS(4155), - [anon_sym_LBRACK] = ACTIONS(4155), - [anon_sym_void] = ACTIONS(4153), - [anon_sym_anyopaque] = ACTIONS(4153), - [anon_sym_bool] = ACTIONS(4153), - [anon_sym_int] = ACTIONS(4153), - [anon_sym_uint] = ACTIONS(4153), - [anon_sym_float] = ACTIONS(4153), - [anon_sym_range] = ACTIONS(4153), - [anon_sym_i8] = ACTIONS(4153), - [anon_sym_i16] = ACTIONS(4153), - [anon_sym_i32] = ACTIONS(4153), - [anon_sym_i64] = ACTIONS(4153), - [anon_sym_u8] = ACTIONS(4153), - [anon_sym_u16] = ACTIONS(4153), - [anon_sym_u32] = ACTIONS(4153), - [anon_sym_u64] = ACTIONS(4153), - [anon_sym_isize] = ACTIONS(4153), - [anon_sym_usize] = ACTIONS(4153), - [anon_sym_f32] = ACTIONS(4153), - [anon_sym_f64] = ACTIONS(4153), - [anon_sym_c_char] = ACTIONS(4153), - [anon_sym_c_schar] = ACTIONS(4153), - [anon_sym_c_uchar] = ACTIONS(4153), - [anon_sym_c_short] = ACTIONS(4153), - [anon_sym_c_ushort] = ACTIONS(4153), - [anon_sym_c_int] = ACTIONS(4153), - [anon_sym_c_uint] = ACTIONS(4153), - [anon_sym_c_long] = ACTIONS(4153), - [anon_sym_c_ulong] = ACTIONS(4153), - [anon_sym_c_longlong] = ACTIONS(4153), - [anon_sym_c_ulonglong] = ACTIONS(4153), - [anon_sym_c_float] = ACTIONS(4153), - [anon_sym_c_double] = ACTIONS(4153), - [anon_sym_c_longdouble] = ACTIONS(4153), - [anon_sym_return] = ACTIONS(4153), - [anon_sym_yield] = ACTIONS(4153), - [anon_sym_break] = ACTIONS(4153), - [anon_sym_continue] = ACTIONS(4153), - [anon_sym_defer] = ACTIONS(4153), - [anon_sym_errdefer] = ACTIONS(4153), - [anon_sym_if] = ACTIONS(4153), - [anon_sym_else] = ACTIONS(4173), - [anon_sym_while] = ACTIONS(4153), - [anon_sym_expand] = ACTIONS(4153), - [anon_sym_for] = ACTIONS(4153), - [anon_sym_match] = ACTIONS(4153), - [anon_sym_AMP] = ACTIONS(4155), - [anon_sym_TILDE] = ACTIONS(4155), - [anon_sym_try] = ACTIONS(4153), - [anon_sym_DOT] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [sym_none] = ACTIONS(4153), - [sym_undefined] = ACTIONS(4153), - [sym_sink] = ACTIONS(4153), - [sym_integer] = ACTIONS(4153), - [sym_float] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4155), - [sym_multiline_string] = ACTIONS(4155), - [sym_character] = ACTIONS(4155), + [STATE(1768)] = { + [ts_builtin_sym_end] = ACTIONS(4174), + [sym_identifier] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), + [anon_sym_test] = ACTIONS(4176), + [anon_sym_hide] = ACTIONS(4176), + [anon_sym_func] = ACTIONS(4176), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4174), + [anon_sym_void] = ACTIONS(4176), + [anon_sym_type] = ACTIONS(4176), + [anon_sym_anyopaque] = ACTIONS(4176), + [anon_sym_bool] = ACTIONS(4176), + [anon_sym_int] = ACTIONS(4176), + [anon_sym_uint] = ACTIONS(4176), + [anon_sym_float] = ACTIONS(4176), + [anon_sym_range] = ACTIONS(4176), + [anon_sym_i8] = ACTIONS(4176), + [anon_sym_i16] = ACTIONS(4176), + [anon_sym_i32] = ACTIONS(4176), + [anon_sym_i64] = ACTIONS(4176), + [anon_sym_u8] = ACTIONS(4176), + [anon_sym_u16] = ACTIONS(4176), + [anon_sym_u32] = ACTIONS(4176), + [anon_sym_u64] = ACTIONS(4176), + [anon_sym_isize] = ACTIONS(4176), + [anon_sym_usize] = ACTIONS(4176), + [anon_sym_f32] = ACTIONS(4176), + [anon_sym_f64] = ACTIONS(4176), + [anon_sym_c_char] = ACTIONS(4176), + [anon_sym_c_schar] = ACTIONS(4176), + [anon_sym_c_uchar] = ACTIONS(4176), + [anon_sym_c_short] = ACTIONS(4176), + [anon_sym_c_ushort] = ACTIONS(4176), + [anon_sym_c_int] = ACTIONS(4176), + [anon_sym_c_uint] = ACTIONS(4176), + [anon_sym_c_long] = ACTIONS(4176), + [anon_sym_c_ulong] = ACTIONS(4176), + [anon_sym_c_longlong] = ACTIONS(4176), + [anon_sym_c_ulonglong] = ACTIONS(4176), + [anon_sym_c_float] = ACTIONS(4176), + [anon_sym_c_double] = ACTIONS(4176), + [anon_sym_c_longdouble] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_yield] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_defer] = ACTIONS(4176), + [anon_sym_errdefer] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_expand] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_match] = ACTIONS(4176), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [sym_none] = ACTIONS(4176), + [sym_undefined] = ACTIONS(4176), + [sym_sink] = ACTIONS(4176), + [sym_integer] = ACTIONS(4176), + [sym_float] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_multiline_string] = ACTIONS(4174), + [sym_character] = ACTIONS(4174), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4176), + [sym__newline] = ACTIONS(4174), }, - [STATE(1719)] = { - [sym_identifier] = ACTIONS(4179), - [anon_sym_func] = ACTIONS(4179), + [STATE(1769)] = { + [ts_builtin_sym_end] = ACTIONS(4178), + [sym_identifier] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), + [anon_sym_test] = ACTIONS(4180), + [anon_sym_hide] = ACTIONS(4180), + [anon_sym_func] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4178), + [anon_sym_RPAREN] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_DOLLAR] = ACTIONS(4178), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym_void] = ACTIONS(4180), + [anon_sym_type] = ACTIONS(4180), + [anon_sym_anyopaque] = ACTIONS(4180), + [anon_sym_bool] = ACTIONS(4180), + [anon_sym_int] = ACTIONS(4180), + [anon_sym_uint] = ACTIONS(4180), + [anon_sym_float] = ACTIONS(4180), + [anon_sym_range] = ACTIONS(4180), + [anon_sym_i8] = ACTIONS(4180), + [anon_sym_i16] = ACTIONS(4180), + [anon_sym_i32] = ACTIONS(4180), + [anon_sym_i64] = ACTIONS(4180), + [anon_sym_u8] = ACTIONS(4180), + [anon_sym_u16] = ACTIONS(4180), + [anon_sym_u32] = ACTIONS(4180), + [anon_sym_u64] = ACTIONS(4180), + [anon_sym_isize] = ACTIONS(4180), + [anon_sym_usize] = ACTIONS(4180), + [anon_sym_f32] = ACTIONS(4180), + [anon_sym_f64] = ACTIONS(4180), + [anon_sym_c_char] = ACTIONS(4180), + [anon_sym_c_schar] = ACTIONS(4180), + [anon_sym_c_uchar] = ACTIONS(4180), + [anon_sym_c_short] = ACTIONS(4180), + [anon_sym_c_ushort] = ACTIONS(4180), + [anon_sym_c_int] = ACTIONS(4180), + [anon_sym_c_uint] = ACTIONS(4180), + [anon_sym_c_long] = ACTIONS(4180), + [anon_sym_c_ulong] = ACTIONS(4180), + [anon_sym_c_longlong] = ACTIONS(4180), + [anon_sym_c_ulonglong] = ACTIONS(4180), + [anon_sym_c_float] = ACTIONS(4180), + [anon_sym_c_double] = ACTIONS(4180), + [anon_sym_c_longdouble] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_yield] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_defer] = ACTIONS(4180), + [anon_sym_errdefer] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_expand] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_match] = ACTIONS(4180), + [anon_sym_AMP] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_true] = ACTIONS(4180), + [anon_sym_false] = ACTIONS(4180), + [sym_none] = ACTIONS(4180), + [sym_undefined] = ACTIONS(4180), + [sym_sink] = ACTIONS(4180), + [sym_integer] = ACTIONS(4180), + [sym_float] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_multiline_string] = ACTIONS(4178), + [sym_character] = ACTIONS(4178), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4178), + }, + [STATE(1770)] = { + [ts_builtin_sym_end] = ACTIONS(4182), + [sym_identifier] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), + [anon_sym_test] = ACTIONS(4184), + [anon_sym_hide] = ACTIONS(4184), + [anon_sym_func] = ACTIONS(4184), [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_struct] = ACTIONS(4179), + [anon_sym_struct] = ACTIONS(4184), [anon_sym_LPAREN] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), [anon_sym_LBRACE] = ACTIONS(4182), [anon_sym_RBRACE] = ACTIONS(4182), [anon_sym_DASH] = ACTIONS(4182), [anon_sym_DOLLAR] = ACTIONS(4182), [anon_sym_LBRACK] = ACTIONS(4182), - [anon_sym_void] = ACTIONS(4179), - [anon_sym_anyopaque] = ACTIONS(4179), - [anon_sym_bool] = ACTIONS(4179), - [anon_sym_int] = ACTIONS(4179), - [anon_sym_uint] = ACTIONS(4179), - [anon_sym_float] = ACTIONS(4179), - [anon_sym_range] = ACTIONS(4179), - [anon_sym_i8] = ACTIONS(4179), - [anon_sym_i16] = ACTIONS(4179), - [anon_sym_i32] = ACTIONS(4179), - [anon_sym_i64] = ACTIONS(4179), - [anon_sym_u8] = ACTIONS(4179), - [anon_sym_u16] = ACTIONS(4179), - [anon_sym_u32] = ACTIONS(4179), - [anon_sym_u64] = ACTIONS(4179), - [anon_sym_isize] = ACTIONS(4179), - [anon_sym_usize] = ACTIONS(4179), - [anon_sym_f32] = ACTIONS(4179), - [anon_sym_f64] = ACTIONS(4179), - [anon_sym_c_char] = ACTIONS(4179), - [anon_sym_c_schar] = ACTIONS(4179), - [anon_sym_c_uchar] = ACTIONS(4179), - [anon_sym_c_short] = ACTIONS(4179), - [anon_sym_c_ushort] = ACTIONS(4179), - [anon_sym_c_int] = ACTIONS(4179), - [anon_sym_c_uint] = ACTIONS(4179), - [anon_sym_c_long] = ACTIONS(4179), - [anon_sym_c_ulong] = ACTIONS(4179), - [anon_sym_c_longlong] = ACTIONS(4179), - [anon_sym_c_ulonglong] = ACTIONS(4179), - [anon_sym_c_float] = ACTIONS(4179), - [anon_sym_c_double] = ACTIONS(4179), - [anon_sym_c_longdouble] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4185), - [anon_sym_yield] = ACTIONS(4185), - [anon_sym_break] = ACTIONS(4185), - [anon_sym_continue] = ACTIONS(4185), - [anon_sym_defer] = ACTIONS(4185), - [anon_sym_errdefer] = ACTIONS(4185), - [anon_sym_if] = ACTIONS(4185), - [anon_sym_while] = ACTIONS(4185), - [anon_sym_expand] = ACTIONS(4185), - [anon_sym_for] = ACTIONS(4185), - [anon_sym_match] = ACTIONS(4185), + [anon_sym_void] = ACTIONS(4184), + [anon_sym_type] = ACTIONS(4184), + [anon_sym_anyopaque] = ACTIONS(4184), + [anon_sym_bool] = ACTIONS(4184), + [anon_sym_int] = ACTIONS(4184), + [anon_sym_uint] = ACTIONS(4184), + [anon_sym_float] = ACTIONS(4184), + [anon_sym_range] = ACTIONS(4184), + [anon_sym_i8] = ACTIONS(4184), + [anon_sym_i16] = ACTIONS(4184), + [anon_sym_i32] = ACTIONS(4184), + [anon_sym_i64] = ACTIONS(4184), + [anon_sym_u8] = ACTIONS(4184), + [anon_sym_u16] = ACTIONS(4184), + [anon_sym_u32] = ACTIONS(4184), + [anon_sym_u64] = ACTIONS(4184), + [anon_sym_isize] = ACTIONS(4184), + [anon_sym_usize] = ACTIONS(4184), + [anon_sym_f32] = ACTIONS(4184), + [anon_sym_f64] = ACTIONS(4184), + [anon_sym_c_char] = ACTIONS(4184), + [anon_sym_c_schar] = ACTIONS(4184), + [anon_sym_c_uchar] = ACTIONS(4184), + [anon_sym_c_short] = ACTIONS(4184), + [anon_sym_c_ushort] = ACTIONS(4184), + [anon_sym_c_int] = ACTIONS(4184), + [anon_sym_c_uint] = ACTIONS(4184), + [anon_sym_c_long] = ACTIONS(4184), + [anon_sym_c_ulong] = ACTIONS(4184), + [anon_sym_c_longlong] = ACTIONS(4184), + [anon_sym_c_ulonglong] = ACTIONS(4184), + [anon_sym_c_float] = ACTIONS(4184), + [anon_sym_c_double] = ACTIONS(4184), + [anon_sym_c_longdouble] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_yield] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_defer] = ACTIONS(4184), + [anon_sym_errdefer] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_expand] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_match] = ACTIONS(4184), [anon_sym_AMP] = ACTIONS(4182), [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_try] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4184), [anon_sym_DOT] = ACTIONS(4182), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [sym_none] = ACTIONS(4179), - [sym_undefined] = ACTIONS(4179), - [sym_sink] = ACTIONS(4179), - [sym_integer] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [sym_none] = ACTIONS(4184), + [sym_undefined] = ACTIONS(4184), + [sym_sink] = ACTIONS(4184), + [sym_integer] = ACTIONS(4184), [sym_float] = ACTIONS(4182), [anon_sym_DQUOTE] = ACTIONS(4182), [sym_multiline_string] = ACTIONS(4182), @@ -177241,218 +185868,8263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(4182), }, - [STATE(1720)] = { - [sym_identifier] = ACTIONS(4187), - [anon_sym_func] = ACTIONS(4187), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_struct] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_void] = ACTIONS(4187), - [anon_sym_anyopaque] = ACTIONS(4187), - [anon_sym_bool] = ACTIONS(4187), - [anon_sym_int] = ACTIONS(4187), - [anon_sym_uint] = ACTIONS(4187), - [anon_sym_float] = ACTIONS(4187), - [anon_sym_range] = ACTIONS(4187), - [anon_sym_i8] = ACTIONS(4187), - [anon_sym_i16] = ACTIONS(4187), - [anon_sym_i32] = ACTIONS(4187), - [anon_sym_i64] = ACTIONS(4187), - [anon_sym_u8] = ACTIONS(4187), - [anon_sym_u16] = ACTIONS(4187), - [anon_sym_u32] = ACTIONS(4187), - [anon_sym_u64] = ACTIONS(4187), - [anon_sym_isize] = ACTIONS(4187), - [anon_sym_usize] = ACTIONS(4187), - [anon_sym_f32] = ACTIONS(4187), - [anon_sym_f64] = ACTIONS(4187), - [anon_sym_c_char] = ACTIONS(4187), - [anon_sym_c_schar] = ACTIONS(4187), - [anon_sym_c_uchar] = ACTIONS(4187), - [anon_sym_c_short] = ACTIONS(4187), - [anon_sym_c_ushort] = ACTIONS(4187), - [anon_sym_c_int] = ACTIONS(4187), - [anon_sym_c_uint] = ACTIONS(4187), - [anon_sym_c_long] = ACTIONS(4187), - [anon_sym_c_ulong] = ACTIONS(4187), - [anon_sym_c_longlong] = ACTIONS(4187), - [anon_sym_c_ulonglong] = ACTIONS(4187), - [anon_sym_c_float] = ACTIONS(4187), - [anon_sym_c_double] = ACTIONS(4187), - [anon_sym_c_longdouble] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_yield] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_defer] = ACTIONS(4187), - [anon_sym_errdefer] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_while] = ACTIONS(4187), - [anon_sym_expand] = ACTIONS(4187), - [anon_sym_for] = ACTIONS(4187), - [anon_sym_match] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_TILDE] = ACTIONS(4189), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [sym_none] = ACTIONS(4187), - [sym_undefined] = ACTIONS(4187), - [sym_sink] = ACTIONS(4187), - [sym_integer] = ACTIONS(4187), - [sym_float] = ACTIONS(4189), - [anon_sym_DQUOTE] = ACTIONS(4189), - [sym_multiline_string] = ACTIONS(4189), - [sym_character] = ACTIONS(4189), + [STATE(1771)] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_test] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_func] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_void] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_anyopaque] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_uint] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_range] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_c_char] = ACTIONS(1008), + [anon_sym_c_schar] = ACTIONS(1008), + [anon_sym_c_uchar] = ACTIONS(1008), + [anon_sym_c_short] = ACTIONS(1008), + [anon_sym_c_ushort] = ACTIONS(1008), + [anon_sym_c_int] = ACTIONS(1008), + [anon_sym_c_uint] = ACTIONS(1008), + [anon_sym_c_long] = ACTIONS(1008), + [anon_sym_c_ulong] = ACTIONS(1008), + [anon_sym_c_longlong] = ACTIONS(1008), + [anon_sym_c_ulonglong] = ACTIONS(1008), + [anon_sym_c_float] = ACTIONS(1008), + [anon_sym_c_double] = ACTIONS(1008), + [anon_sym_c_longdouble] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_defer] = ACTIONS(1008), + [anon_sym_errdefer] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_expand] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [sym_none] = ACTIONS(1008), + [sym_undefined] = ACTIONS(1008), + [sym_sink] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [sym_float] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_multiline_string] = ACTIONS(1006), + [sym_character] = ACTIONS(1006), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4189), + [sym__newline] = ACTIONS(1006), }, - [STATE(1721)] = { - [sym_identifier] = ACTIONS(4191), - [anon_sym_func] = ACTIONS(4191), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_struct] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4193), - [anon_sym_LBRACE] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_DOLLAR] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_void] = ACTIONS(4191), - [anon_sym_anyopaque] = ACTIONS(4191), - [anon_sym_bool] = ACTIONS(4191), - [anon_sym_int] = ACTIONS(4191), - [anon_sym_uint] = ACTIONS(4191), - [anon_sym_float] = ACTIONS(4191), - [anon_sym_range] = ACTIONS(4191), - [anon_sym_i8] = ACTIONS(4191), - [anon_sym_i16] = ACTIONS(4191), - [anon_sym_i32] = ACTIONS(4191), - [anon_sym_i64] = ACTIONS(4191), - [anon_sym_u8] = ACTIONS(4191), - [anon_sym_u16] = ACTIONS(4191), - [anon_sym_u32] = ACTIONS(4191), - [anon_sym_u64] = ACTIONS(4191), - [anon_sym_isize] = ACTIONS(4191), - [anon_sym_usize] = ACTIONS(4191), - [anon_sym_f32] = ACTIONS(4191), - [anon_sym_f64] = ACTIONS(4191), - [anon_sym_c_char] = ACTIONS(4191), - [anon_sym_c_schar] = ACTIONS(4191), - [anon_sym_c_uchar] = ACTIONS(4191), - [anon_sym_c_short] = ACTIONS(4191), - [anon_sym_c_ushort] = ACTIONS(4191), - [anon_sym_c_int] = ACTIONS(4191), - [anon_sym_c_uint] = ACTIONS(4191), - [anon_sym_c_long] = ACTIONS(4191), - [anon_sym_c_ulong] = ACTIONS(4191), - [anon_sym_c_longlong] = ACTIONS(4191), - [anon_sym_c_ulonglong] = ACTIONS(4191), - [anon_sym_c_float] = ACTIONS(4191), - [anon_sym_c_double] = ACTIONS(4191), - [anon_sym_c_longdouble] = ACTIONS(4191), - [anon_sym_return] = ACTIONS(4191), - [anon_sym_yield] = ACTIONS(4191), - [anon_sym_break] = ACTIONS(4191), - [anon_sym_continue] = ACTIONS(4191), - [anon_sym_defer] = ACTIONS(4191), - [anon_sym_errdefer] = ACTIONS(4191), - [anon_sym_if] = ACTIONS(4191), - [anon_sym_while] = ACTIONS(4191), - [anon_sym_expand] = ACTIONS(4191), - [anon_sym_for] = ACTIONS(4191), - [anon_sym_match] = ACTIONS(4191), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_TILDE] = ACTIONS(4193), - [anon_sym_try] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_true] = ACTIONS(4191), - [anon_sym_false] = ACTIONS(4191), - [sym_none] = ACTIONS(4191), - [sym_undefined] = ACTIONS(4191), - [sym_sink] = ACTIONS(4191), - [sym_integer] = ACTIONS(4191), - [sym_float] = ACTIONS(4193), - [anon_sym_DQUOTE] = ACTIONS(4193), - [sym_multiline_string] = ACTIONS(4193), - [sym_character] = ACTIONS(4193), + [STATE(1772)] = { + [ts_builtin_sym_end] = ACTIONS(4186), + [sym_identifier] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), + [anon_sym_test] = ACTIONS(4188), + [anon_sym_hide] = ACTIONS(4188), + [anon_sym_func] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4186), + [anon_sym_DOLLAR] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_void] = ACTIONS(4188), + [anon_sym_type] = ACTIONS(4188), + [anon_sym_anyopaque] = ACTIONS(4188), + [anon_sym_bool] = ACTIONS(4188), + [anon_sym_int] = ACTIONS(4188), + [anon_sym_uint] = ACTIONS(4188), + [anon_sym_float] = ACTIONS(4188), + [anon_sym_range] = ACTIONS(4188), + [anon_sym_i8] = ACTIONS(4188), + [anon_sym_i16] = ACTIONS(4188), + [anon_sym_i32] = ACTIONS(4188), + [anon_sym_i64] = ACTIONS(4188), + [anon_sym_u8] = ACTIONS(4188), + [anon_sym_u16] = ACTIONS(4188), + [anon_sym_u32] = ACTIONS(4188), + [anon_sym_u64] = ACTIONS(4188), + [anon_sym_isize] = ACTIONS(4188), + [anon_sym_usize] = ACTIONS(4188), + [anon_sym_f32] = ACTIONS(4188), + [anon_sym_f64] = ACTIONS(4188), + [anon_sym_c_char] = ACTIONS(4188), + [anon_sym_c_schar] = ACTIONS(4188), + [anon_sym_c_uchar] = ACTIONS(4188), + [anon_sym_c_short] = ACTIONS(4188), + [anon_sym_c_ushort] = ACTIONS(4188), + [anon_sym_c_int] = ACTIONS(4188), + [anon_sym_c_uint] = ACTIONS(4188), + [anon_sym_c_long] = ACTIONS(4188), + [anon_sym_c_ulong] = ACTIONS(4188), + [anon_sym_c_longlong] = ACTIONS(4188), + [anon_sym_c_ulonglong] = ACTIONS(4188), + [anon_sym_c_float] = ACTIONS(4188), + [anon_sym_c_double] = ACTIONS(4188), + [anon_sym_c_longdouble] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_defer] = ACTIONS(4188), + [anon_sym_errdefer] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_expand] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_match] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4186), + [anon_sym_true] = ACTIONS(4188), + [anon_sym_false] = ACTIONS(4188), + [sym_none] = ACTIONS(4188), + [sym_undefined] = ACTIONS(4188), + [sym_sink] = ACTIONS(4188), + [sym_integer] = ACTIONS(4188), + [sym_float] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_multiline_string] = ACTIONS(4186), + [sym_character] = ACTIONS(4186), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4193), + [sym__newline] = ACTIONS(4186), }, - [STATE(1722)] = { - [sym_identifier] = ACTIONS(4195), - [anon_sym_func] = ACTIONS(4195), - [anon_sym_BANG] = ACTIONS(4197), - [anon_sym_struct] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_LBRACE] = ACTIONS(4197), - [anon_sym_DASH] = ACTIONS(4197), - [anon_sym_DOLLAR] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_void] = ACTIONS(4195), - [anon_sym_anyopaque] = ACTIONS(4195), - [anon_sym_bool] = ACTIONS(4195), - [anon_sym_int] = ACTIONS(4195), - [anon_sym_uint] = ACTIONS(4195), - [anon_sym_float] = ACTIONS(4195), - [anon_sym_range] = ACTIONS(4195), - [anon_sym_i8] = ACTIONS(4195), - [anon_sym_i16] = ACTIONS(4195), - [anon_sym_i32] = ACTIONS(4195), - [anon_sym_i64] = ACTIONS(4195), - [anon_sym_u8] = ACTIONS(4195), - [anon_sym_u16] = ACTIONS(4195), - [anon_sym_u32] = ACTIONS(4195), - [anon_sym_u64] = ACTIONS(4195), - [anon_sym_isize] = ACTIONS(4195), - [anon_sym_usize] = ACTIONS(4195), - [anon_sym_f32] = ACTIONS(4195), - [anon_sym_f64] = ACTIONS(4195), - [anon_sym_c_char] = ACTIONS(4195), - [anon_sym_c_schar] = ACTIONS(4195), - [anon_sym_c_uchar] = ACTIONS(4195), - [anon_sym_c_short] = ACTIONS(4195), - [anon_sym_c_ushort] = ACTIONS(4195), - [anon_sym_c_int] = ACTIONS(4195), - [anon_sym_c_uint] = ACTIONS(4195), - [anon_sym_c_long] = ACTIONS(4195), - [anon_sym_c_ulong] = ACTIONS(4195), - [anon_sym_c_longlong] = ACTIONS(4195), - [anon_sym_c_ulonglong] = ACTIONS(4195), - [anon_sym_c_float] = ACTIONS(4195), - [anon_sym_c_double] = ACTIONS(4195), - [anon_sym_c_longdouble] = ACTIONS(4195), - [anon_sym_return] = ACTIONS(4195), - [anon_sym_yield] = ACTIONS(4195), - [anon_sym_break] = ACTIONS(4195), - [anon_sym_continue] = ACTIONS(4195), - [anon_sym_defer] = ACTIONS(4195), - [anon_sym_errdefer] = ACTIONS(4195), - [anon_sym_if] = ACTIONS(4195), - [anon_sym_while] = ACTIONS(4195), - [anon_sym_expand] = ACTIONS(4195), - [anon_sym_for] = ACTIONS(4195), - [anon_sym_match] = ACTIONS(4195), - [anon_sym_AMP] = ACTIONS(4197), - [anon_sym_TILDE] = ACTIONS(4197), - [anon_sym_try] = ACTIONS(4195), - [anon_sym_DOT] = ACTIONS(4197), - [anon_sym_true] = ACTIONS(4195), - [anon_sym_false] = ACTIONS(4195), - [sym_none] = ACTIONS(4195), - [sym_undefined] = ACTIONS(4195), - [sym_sink] = ACTIONS(4195), - [sym_integer] = ACTIONS(4195), - [sym_float] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(4197), - [sym_multiline_string] = ACTIONS(4197), - [sym_character] = ACTIONS(4197), + [STATE(1773)] = { + [ts_builtin_sym_end] = ACTIONS(4190), + [sym_identifier] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), + [anon_sym_test] = ACTIONS(4192), + [anon_sym_hide] = ACTIONS(4192), + [anon_sym_func] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_DOLLAR] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_void] = ACTIONS(4192), + [anon_sym_type] = ACTIONS(4192), + [anon_sym_anyopaque] = ACTIONS(4192), + [anon_sym_bool] = ACTIONS(4192), + [anon_sym_int] = ACTIONS(4192), + [anon_sym_uint] = ACTIONS(4192), + [anon_sym_float] = ACTIONS(4192), + [anon_sym_range] = ACTIONS(4192), + [anon_sym_i8] = ACTIONS(4192), + [anon_sym_i16] = ACTIONS(4192), + [anon_sym_i32] = ACTIONS(4192), + [anon_sym_i64] = ACTIONS(4192), + [anon_sym_u8] = ACTIONS(4192), + [anon_sym_u16] = ACTIONS(4192), + [anon_sym_u32] = ACTIONS(4192), + [anon_sym_u64] = ACTIONS(4192), + [anon_sym_isize] = ACTIONS(4192), + [anon_sym_usize] = ACTIONS(4192), + [anon_sym_f32] = ACTIONS(4192), + [anon_sym_f64] = ACTIONS(4192), + [anon_sym_c_char] = ACTIONS(4192), + [anon_sym_c_schar] = ACTIONS(4192), + [anon_sym_c_uchar] = ACTIONS(4192), + [anon_sym_c_short] = ACTIONS(4192), + [anon_sym_c_ushort] = ACTIONS(4192), + [anon_sym_c_int] = ACTIONS(4192), + [anon_sym_c_uint] = ACTIONS(4192), + [anon_sym_c_long] = ACTIONS(4192), + [anon_sym_c_ulong] = ACTIONS(4192), + [anon_sym_c_longlong] = ACTIONS(4192), + [anon_sym_c_ulonglong] = ACTIONS(4192), + [anon_sym_c_float] = ACTIONS(4192), + [anon_sym_c_double] = ACTIONS(4192), + [anon_sym_c_longdouble] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_yield] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_defer] = ACTIONS(4192), + [anon_sym_errdefer] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_expand] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_match] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_true] = ACTIONS(4192), + [anon_sym_false] = ACTIONS(4192), + [sym_none] = ACTIONS(4192), + [sym_undefined] = ACTIONS(4192), + [sym_sink] = ACTIONS(4192), + [sym_integer] = ACTIONS(4192), + [sym_float] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_multiline_string] = ACTIONS(4190), + [sym_character] = ACTIONS(4190), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(4197), + [sym__newline] = ACTIONS(4190), + }, + [STATE(1774)] = { + [ts_builtin_sym_end] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), + [anon_sym_test] = ACTIONS(4196), + [anon_sym_hide] = ACTIONS(4196), + [anon_sym_func] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4194), + [anon_sym_RPAREN] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_DOLLAR] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4194), + [anon_sym_void] = ACTIONS(4196), + [anon_sym_type] = ACTIONS(4196), + [anon_sym_anyopaque] = ACTIONS(4196), + [anon_sym_bool] = ACTIONS(4196), + [anon_sym_int] = ACTIONS(4196), + [anon_sym_uint] = ACTIONS(4196), + [anon_sym_float] = ACTIONS(4196), + [anon_sym_range] = ACTIONS(4196), + [anon_sym_i8] = ACTIONS(4196), + [anon_sym_i16] = ACTIONS(4196), + [anon_sym_i32] = ACTIONS(4196), + [anon_sym_i64] = ACTIONS(4196), + [anon_sym_u8] = ACTIONS(4196), + [anon_sym_u16] = ACTIONS(4196), + [anon_sym_u32] = ACTIONS(4196), + [anon_sym_u64] = ACTIONS(4196), + [anon_sym_isize] = ACTIONS(4196), + [anon_sym_usize] = ACTIONS(4196), + [anon_sym_f32] = ACTIONS(4196), + [anon_sym_f64] = ACTIONS(4196), + [anon_sym_c_char] = ACTIONS(4196), + [anon_sym_c_schar] = ACTIONS(4196), + [anon_sym_c_uchar] = ACTIONS(4196), + [anon_sym_c_short] = ACTIONS(4196), + [anon_sym_c_ushort] = ACTIONS(4196), + [anon_sym_c_int] = ACTIONS(4196), + [anon_sym_c_uint] = ACTIONS(4196), + [anon_sym_c_long] = ACTIONS(4196), + [anon_sym_c_ulong] = ACTIONS(4196), + [anon_sym_c_longlong] = ACTIONS(4196), + [anon_sym_c_ulonglong] = ACTIONS(4196), + [anon_sym_c_float] = ACTIONS(4196), + [anon_sym_c_double] = ACTIONS(4196), + [anon_sym_c_longdouble] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_yield] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_defer] = ACTIONS(4196), + [anon_sym_errdefer] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_expand] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_match] = ACTIONS(4196), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [sym_none] = ACTIONS(4196), + [sym_undefined] = ACTIONS(4196), + [sym_sink] = ACTIONS(4196), + [sym_integer] = ACTIONS(4196), + [sym_float] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_multiline_string] = ACTIONS(4194), + [sym_character] = ACTIONS(4194), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4194), + }, + [STATE(1775)] = { + [ts_builtin_sym_end] = ACTIONS(4198), + [sym_identifier] = ACTIONS(4200), + [anon_sym_import] = ACTIONS(4200), + [anon_sym_test] = ACTIONS(4200), + [anon_sym_hide] = ACTIONS(4200), + [anon_sym_func] = ACTIONS(4200), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym_RPAREN] = ACTIONS(4198), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_DOLLAR] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_void] = ACTIONS(4200), + [anon_sym_type] = ACTIONS(4200), + [anon_sym_anyopaque] = ACTIONS(4200), + [anon_sym_bool] = ACTIONS(4200), + [anon_sym_int] = ACTIONS(4200), + [anon_sym_uint] = ACTIONS(4200), + [anon_sym_float] = ACTIONS(4200), + [anon_sym_range] = ACTIONS(4200), + [anon_sym_i8] = ACTIONS(4200), + [anon_sym_i16] = ACTIONS(4200), + [anon_sym_i32] = ACTIONS(4200), + [anon_sym_i64] = ACTIONS(4200), + [anon_sym_u8] = ACTIONS(4200), + [anon_sym_u16] = ACTIONS(4200), + [anon_sym_u32] = ACTIONS(4200), + [anon_sym_u64] = ACTIONS(4200), + [anon_sym_isize] = ACTIONS(4200), + [anon_sym_usize] = ACTIONS(4200), + [anon_sym_f32] = ACTIONS(4200), + [anon_sym_f64] = ACTIONS(4200), + [anon_sym_c_char] = ACTIONS(4200), + [anon_sym_c_schar] = ACTIONS(4200), + [anon_sym_c_uchar] = ACTIONS(4200), + [anon_sym_c_short] = ACTIONS(4200), + [anon_sym_c_ushort] = ACTIONS(4200), + [anon_sym_c_int] = ACTIONS(4200), + [anon_sym_c_uint] = ACTIONS(4200), + [anon_sym_c_long] = ACTIONS(4200), + [anon_sym_c_ulong] = ACTIONS(4200), + [anon_sym_c_longlong] = ACTIONS(4200), + [anon_sym_c_ulonglong] = ACTIONS(4200), + [anon_sym_c_float] = ACTIONS(4200), + [anon_sym_c_double] = ACTIONS(4200), + [anon_sym_c_longdouble] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_yield] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_defer] = ACTIONS(4200), + [anon_sym_errdefer] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_else] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_expand] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_match] = ACTIONS(4200), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4200), + [anon_sym_false] = ACTIONS(4200), + [sym_none] = ACTIONS(4200), + [sym_undefined] = ACTIONS(4200), + [sym_sink] = ACTIONS(4200), + [sym_integer] = ACTIONS(4200), + [sym_float] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_multiline_string] = ACTIONS(4198), + [sym_character] = ACTIONS(4198), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4198), + }, + [STATE(1776)] = { + [ts_builtin_sym_end] = ACTIONS(4202), + [sym_identifier] = ACTIONS(4204), + [anon_sym_import] = ACTIONS(4204), + [anon_sym_test] = ACTIONS(4204), + [anon_sym_hide] = ACTIONS(4204), + [anon_sym_func] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_struct] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_DOLLAR] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_void] = ACTIONS(4204), + [anon_sym_type] = ACTIONS(4204), + [anon_sym_anyopaque] = ACTIONS(4204), + [anon_sym_bool] = ACTIONS(4204), + [anon_sym_int] = ACTIONS(4204), + [anon_sym_uint] = ACTIONS(4204), + [anon_sym_float] = ACTIONS(4204), + [anon_sym_range] = ACTIONS(4204), + [anon_sym_i8] = ACTIONS(4204), + [anon_sym_i16] = ACTIONS(4204), + [anon_sym_i32] = ACTIONS(4204), + [anon_sym_i64] = ACTIONS(4204), + [anon_sym_u8] = ACTIONS(4204), + [anon_sym_u16] = ACTIONS(4204), + [anon_sym_u32] = ACTIONS(4204), + [anon_sym_u64] = ACTIONS(4204), + [anon_sym_isize] = ACTIONS(4204), + [anon_sym_usize] = ACTIONS(4204), + [anon_sym_f32] = ACTIONS(4204), + [anon_sym_f64] = ACTIONS(4204), + [anon_sym_c_char] = ACTIONS(4204), + [anon_sym_c_schar] = ACTIONS(4204), + [anon_sym_c_uchar] = ACTIONS(4204), + [anon_sym_c_short] = ACTIONS(4204), + [anon_sym_c_ushort] = ACTIONS(4204), + [anon_sym_c_int] = ACTIONS(4204), + [anon_sym_c_uint] = ACTIONS(4204), + [anon_sym_c_long] = ACTIONS(4204), + [anon_sym_c_ulong] = ACTIONS(4204), + [anon_sym_c_longlong] = ACTIONS(4204), + [anon_sym_c_ulonglong] = ACTIONS(4204), + [anon_sym_c_float] = ACTIONS(4204), + [anon_sym_c_double] = ACTIONS(4204), + [anon_sym_c_longdouble] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_yield] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_defer] = ACTIONS(4204), + [anon_sym_errdefer] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_expand] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_match] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [sym_none] = ACTIONS(4204), + [sym_undefined] = ACTIONS(4204), + [sym_sink] = ACTIONS(4204), + [sym_integer] = ACTIONS(4204), + [sym_float] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [sym_multiline_string] = ACTIONS(4202), + [sym_character] = ACTIONS(4202), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4202), + }, + [STATE(1777)] = { + [ts_builtin_sym_end] = ACTIONS(4206), + [sym_identifier] = ACTIONS(4208), + [anon_sym_import] = ACTIONS(4208), + [anon_sym_test] = ACTIONS(4208), + [anon_sym_hide] = ACTIONS(4208), + [anon_sym_func] = ACTIONS(4208), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_struct] = ACTIONS(4208), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_DOLLAR] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_void] = ACTIONS(4208), + [anon_sym_type] = ACTIONS(4208), + [anon_sym_anyopaque] = ACTIONS(4208), + [anon_sym_bool] = ACTIONS(4208), + [anon_sym_int] = ACTIONS(4208), + [anon_sym_uint] = ACTIONS(4208), + [anon_sym_float] = ACTIONS(4208), + [anon_sym_range] = ACTIONS(4208), + [anon_sym_i8] = ACTIONS(4208), + [anon_sym_i16] = ACTIONS(4208), + [anon_sym_i32] = ACTIONS(4208), + [anon_sym_i64] = ACTIONS(4208), + [anon_sym_u8] = ACTIONS(4208), + [anon_sym_u16] = ACTIONS(4208), + [anon_sym_u32] = ACTIONS(4208), + [anon_sym_u64] = ACTIONS(4208), + [anon_sym_isize] = ACTIONS(4208), + [anon_sym_usize] = ACTIONS(4208), + [anon_sym_f32] = ACTIONS(4208), + [anon_sym_f64] = ACTIONS(4208), + [anon_sym_c_char] = ACTIONS(4208), + [anon_sym_c_schar] = ACTIONS(4208), + [anon_sym_c_uchar] = ACTIONS(4208), + [anon_sym_c_short] = ACTIONS(4208), + [anon_sym_c_ushort] = ACTIONS(4208), + [anon_sym_c_int] = ACTIONS(4208), + [anon_sym_c_uint] = ACTIONS(4208), + [anon_sym_c_long] = ACTIONS(4208), + [anon_sym_c_ulong] = ACTIONS(4208), + [anon_sym_c_longlong] = ACTIONS(4208), + [anon_sym_c_ulonglong] = ACTIONS(4208), + [anon_sym_c_float] = ACTIONS(4208), + [anon_sym_c_double] = ACTIONS(4208), + [anon_sym_c_longdouble] = ACTIONS(4208), + [anon_sym_return] = ACTIONS(4208), + [anon_sym_yield] = ACTIONS(4208), + [anon_sym_break] = ACTIONS(4208), + [anon_sym_continue] = ACTIONS(4208), + [anon_sym_defer] = ACTIONS(4208), + [anon_sym_errdefer] = ACTIONS(4208), + [anon_sym_if] = ACTIONS(4208), + [anon_sym_else] = ACTIONS(4208), + [anon_sym_while] = ACTIONS(4208), + [anon_sym_expand] = ACTIONS(4208), + [anon_sym_for] = ACTIONS(4208), + [anon_sym_match] = ACTIONS(4208), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_try] = ACTIONS(4208), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4208), + [anon_sym_false] = ACTIONS(4208), + [sym_none] = ACTIONS(4208), + [sym_undefined] = ACTIONS(4208), + [sym_sink] = ACTIONS(4208), + [sym_integer] = ACTIONS(4208), + [sym_float] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [sym_multiline_string] = ACTIONS(4206), + [sym_character] = ACTIONS(4206), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4206), + }, + [STATE(1778)] = { + [ts_builtin_sym_end] = ACTIONS(4210), + [sym_identifier] = ACTIONS(4212), + [anon_sym_import] = ACTIONS(4212), + [anon_sym_test] = ACTIONS(4212), + [anon_sym_hide] = ACTIONS(4212), + [anon_sym_func] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_struct] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_RPAREN] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_void] = ACTIONS(4212), + [anon_sym_type] = ACTIONS(4212), + [anon_sym_anyopaque] = ACTIONS(4212), + [anon_sym_bool] = ACTIONS(4212), + [anon_sym_int] = ACTIONS(4212), + [anon_sym_uint] = ACTIONS(4212), + [anon_sym_float] = ACTIONS(4212), + [anon_sym_range] = ACTIONS(4212), + [anon_sym_i8] = ACTIONS(4212), + [anon_sym_i16] = ACTIONS(4212), + [anon_sym_i32] = ACTIONS(4212), + [anon_sym_i64] = ACTIONS(4212), + [anon_sym_u8] = ACTIONS(4212), + [anon_sym_u16] = ACTIONS(4212), + [anon_sym_u32] = ACTIONS(4212), + [anon_sym_u64] = ACTIONS(4212), + [anon_sym_isize] = ACTIONS(4212), + [anon_sym_usize] = ACTIONS(4212), + [anon_sym_f32] = ACTIONS(4212), + [anon_sym_f64] = ACTIONS(4212), + [anon_sym_c_char] = ACTIONS(4212), + [anon_sym_c_schar] = ACTIONS(4212), + [anon_sym_c_uchar] = ACTIONS(4212), + [anon_sym_c_short] = ACTIONS(4212), + [anon_sym_c_ushort] = ACTIONS(4212), + [anon_sym_c_int] = ACTIONS(4212), + [anon_sym_c_uint] = ACTIONS(4212), + [anon_sym_c_long] = ACTIONS(4212), + [anon_sym_c_ulong] = ACTIONS(4212), + [anon_sym_c_longlong] = ACTIONS(4212), + [anon_sym_c_ulonglong] = ACTIONS(4212), + [anon_sym_c_float] = ACTIONS(4212), + [anon_sym_c_double] = ACTIONS(4212), + [anon_sym_c_longdouble] = ACTIONS(4212), + [anon_sym_return] = ACTIONS(4212), + [anon_sym_yield] = ACTIONS(4212), + [anon_sym_break] = ACTIONS(4212), + [anon_sym_continue] = ACTIONS(4212), + [anon_sym_defer] = ACTIONS(4212), + [anon_sym_errdefer] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_expand] = ACTIONS(4212), + [anon_sym_for] = ACTIONS(4212), + [anon_sym_match] = ACTIONS(4212), + [anon_sym_AMP] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_true] = ACTIONS(4212), + [anon_sym_false] = ACTIONS(4212), + [sym_none] = ACTIONS(4212), + [sym_undefined] = ACTIONS(4212), + [sym_sink] = ACTIONS(4212), + [sym_integer] = ACTIONS(4212), + [sym_float] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_multiline_string] = ACTIONS(4210), + [sym_character] = ACTIONS(4210), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4210), + }, + [STATE(1779)] = { + [ts_builtin_sym_end] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4216), + [anon_sym_import] = ACTIONS(4216), + [anon_sym_test] = ACTIONS(4216), + [anon_sym_hide] = ACTIONS(4216), + [anon_sym_func] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_struct] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4214), + [anon_sym_RPAREN] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_RBRACE] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_DOLLAR] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4214), + [anon_sym_void] = ACTIONS(4216), + [anon_sym_type] = ACTIONS(4216), + [anon_sym_anyopaque] = ACTIONS(4216), + [anon_sym_bool] = ACTIONS(4216), + [anon_sym_int] = ACTIONS(4216), + [anon_sym_uint] = ACTIONS(4216), + [anon_sym_float] = ACTIONS(4216), + [anon_sym_range] = ACTIONS(4216), + [anon_sym_i8] = ACTIONS(4216), + [anon_sym_i16] = ACTIONS(4216), + [anon_sym_i32] = ACTIONS(4216), + [anon_sym_i64] = ACTIONS(4216), + [anon_sym_u8] = ACTIONS(4216), + [anon_sym_u16] = ACTIONS(4216), + [anon_sym_u32] = ACTIONS(4216), + [anon_sym_u64] = ACTIONS(4216), + [anon_sym_isize] = ACTIONS(4216), + [anon_sym_usize] = ACTIONS(4216), + [anon_sym_f32] = ACTIONS(4216), + [anon_sym_f64] = ACTIONS(4216), + [anon_sym_c_char] = ACTIONS(4216), + [anon_sym_c_schar] = ACTIONS(4216), + [anon_sym_c_uchar] = ACTIONS(4216), + [anon_sym_c_short] = ACTIONS(4216), + [anon_sym_c_ushort] = ACTIONS(4216), + [anon_sym_c_int] = ACTIONS(4216), + [anon_sym_c_uint] = ACTIONS(4216), + [anon_sym_c_long] = ACTIONS(4216), + [anon_sym_c_ulong] = ACTIONS(4216), + [anon_sym_c_longlong] = ACTIONS(4216), + [anon_sym_c_ulonglong] = ACTIONS(4216), + [anon_sym_c_float] = ACTIONS(4216), + [anon_sym_c_double] = ACTIONS(4216), + [anon_sym_c_longdouble] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_yield] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_defer] = ACTIONS(4216), + [anon_sym_errdefer] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_expand] = ACTIONS(4216), + [anon_sym_for] = ACTIONS(4216), + [anon_sym_match] = ACTIONS(4216), + [anon_sym_AMP] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [sym_none] = ACTIONS(4216), + [sym_undefined] = ACTIONS(4216), + [sym_sink] = ACTIONS(4216), + [sym_integer] = ACTIONS(4216), + [sym_float] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [sym_multiline_string] = ACTIONS(4214), + [sym_character] = ACTIONS(4214), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4214), + }, + [STATE(1780)] = { + [ts_builtin_sym_end] = ACTIONS(4218), + [sym_identifier] = ACTIONS(4220), + [anon_sym_import] = ACTIONS(4220), + [anon_sym_test] = ACTIONS(4220), + [anon_sym_hide] = ACTIONS(4220), + [anon_sym_func] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_struct] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_DOLLAR] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_void] = ACTIONS(4220), + [anon_sym_type] = ACTIONS(4220), + [anon_sym_anyopaque] = ACTIONS(4220), + [anon_sym_bool] = ACTIONS(4220), + [anon_sym_int] = ACTIONS(4220), + [anon_sym_uint] = ACTIONS(4220), + [anon_sym_float] = ACTIONS(4220), + [anon_sym_range] = ACTIONS(4220), + [anon_sym_i8] = ACTIONS(4220), + [anon_sym_i16] = ACTIONS(4220), + [anon_sym_i32] = ACTIONS(4220), + [anon_sym_i64] = ACTIONS(4220), + [anon_sym_u8] = ACTIONS(4220), + [anon_sym_u16] = ACTIONS(4220), + [anon_sym_u32] = ACTIONS(4220), + [anon_sym_u64] = ACTIONS(4220), + [anon_sym_isize] = ACTIONS(4220), + [anon_sym_usize] = ACTIONS(4220), + [anon_sym_f32] = ACTIONS(4220), + [anon_sym_f64] = ACTIONS(4220), + [anon_sym_c_char] = ACTIONS(4220), + [anon_sym_c_schar] = ACTIONS(4220), + [anon_sym_c_uchar] = ACTIONS(4220), + [anon_sym_c_short] = ACTIONS(4220), + [anon_sym_c_ushort] = ACTIONS(4220), + [anon_sym_c_int] = ACTIONS(4220), + [anon_sym_c_uint] = ACTIONS(4220), + [anon_sym_c_long] = ACTIONS(4220), + [anon_sym_c_ulong] = ACTIONS(4220), + [anon_sym_c_longlong] = ACTIONS(4220), + [anon_sym_c_ulonglong] = ACTIONS(4220), + [anon_sym_c_float] = ACTIONS(4220), + [anon_sym_c_double] = ACTIONS(4220), + [anon_sym_c_longdouble] = ACTIONS(4220), + [anon_sym_return] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4220), + [anon_sym_break] = ACTIONS(4220), + [anon_sym_continue] = ACTIONS(4220), + [anon_sym_defer] = ACTIONS(4220), + [anon_sym_errdefer] = ACTIONS(4220), + [anon_sym_if] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4220), + [anon_sym_while] = ACTIONS(4220), + [anon_sym_expand] = ACTIONS(4220), + [anon_sym_for] = ACTIONS(4220), + [anon_sym_match] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_TILDE] = ACTIONS(4218), + [anon_sym_try] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4220), + [anon_sym_false] = ACTIONS(4220), + [sym_none] = ACTIONS(4220), + [sym_undefined] = ACTIONS(4220), + [sym_sink] = ACTIONS(4220), + [sym_integer] = ACTIONS(4220), + [sym_float] = ACTIONS(4218), + [anon_sym_DQUOTE] = ACTIONS(4218), + [sym_multiline_string] = ACTIONS(4218), + [sym_character] = ACTIONS(4218), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4218), + }, + [STATE(1781)] = { + [ts_builtin_sym_end] = ACTIONS(4222), + [sym_identifier] = ACTIONS(4224), + [anon_sym_import] = ACTIONS(4224), + [anon_sym_test] = ACTIONS(4224), + [anon_sym_hide] = ACTIONS(4224), + [anon_sym_func] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_struct] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym_RPAREN] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_DOLLAR] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4222), + [anon_sym_void] = ACTIONS(4224), + [anon_sym_type] = ACTIONS(4224), + [anon_sym_anyopaque] = ACTIONS(4224), + [anon_sym_bool] = ACTIONS(4224), + [anon_sym_int] = ACTIONS(4224), + [anon_sym_uint] = ACTIONS(4224), + [anon_sym_float] = ACTIONS(4224), + [anon_sym_range] = ACTIONS(4224), + [anon_sym_i8] = ACTIONS(4224), + [anon_sym_i16] = ACTIONS(4224), + [anon_sym_i32] = ACTIONS(4224), + [anon_sym_i64] = ACTIONS(4224), + [anon_sym_u8] = ACTIONS(4224), + [anon_sym_u16] = ACTIONS(4224), + [anon_sym_u32] = ACTIONS(4224), + [anon_sym_u64] = ACTIONS(4224), + [anon_sym_isize] = ACTIONS(4224), + [anon_sym_usize] = ACTIONS(4224), + [anon_sym_f32] = ACTIONS(4224), + [anon_sym_f64] = ACTIONS(4224), + [anon_sym_c_char] = ACTIONS(4224), + [anon_sym_c_schar] = ACTIONS(4224), + [anon_sym_c_uchar] = ACTIONS(4224), + [anon_sym_c_short] = ACTIONS(4224), + [anon_sym_c_ushort] = ACTIONS(4224), + [anon_sym_c_int] = ACTIONS(4224), + [anon_sym_c_uint] = ACTIONS(4224), + [anon_sym_c_long] = ACTIONS(4224), + [anon_sym_c_ulong] = ACTIONS(4224), + [anon_sym_c_longlong] = ACTIONS(4224), + [anon_sym_c_ulonglong] = ACTIONS(4224), + [anon_sym_c_float] = ACTIONS(4224), + [anon_sym_c_double] = ACTIONS(4224), + [anon_sym_c_longdouble] = ACTIONS(4224), + [anon_sym_return] = ACTIONS(4224), + [anon_sym_yield] = ACTIONS(4224), + [anon_sym_break] = ACTIONS(4224), + [anon_sym_continue] = ACTIONS(4224), + [anon_sym_defer] = ACTIONS(4224), + [anon_sym_errdefer] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4224), + [anon_sym_else] = ACTIONS(4224), + [anon_sym_while] = ACTIONS(4224), + [anon_sym_expand] = ACTIONS(4224), + [anon_sym_for] = ACTIONS(4224), + [anon_sym_match] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_true] = ACTIONS(4224), + [anon_sym_false] = ACTIONS(4224), + [sym_none] = ACTIONS(4224), + [sym_undefined] = ACTIONS(4224), + [sym_sink] = ACTIONS(4224), + [sym_integer] = ACTIONS(4224), + [sym_float] = ACTIONS(4222), + [anon_sym_DQUOTE] = ACTIONS(4222), + [sym_multiline_string] = ACTIONS(4222), + [sym_character] = ACTIONS(4222), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4222), + }, + [STATE(1782)] = { + [ts_builtin_sym_end] = ACTIONS(4226), + [sym_identifier] = ACTIONS(4228), + [anon_sym_import] = ACTIONS(4228), + [anon_sym_test] = ACTIONS(4228), + [anon_sym_hide] = ACTIONS(4228), + [anon_sym_func] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_RPAREN] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4226), + [anon_sym_RBRACE] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_void] = ACTIONS(4228), + [anon_sym_type] = ACTIONS(4228), + [anon_sym_anyopaque] = ACTIONS(4228), + [anon_sym_bool] = ACTIONS(4228), + [anon_sym_int] = ACTIONS(4228), + [anon_sym_uint] = ACTIONS(4228), + [anon_sym_float] = ACTIONS(4228), + [anon_sym_range] = ACTIONS(4228), + [anon_sym_i8] = ACTIONS(4228), + [anon_sym_i16] = ACTIONS(4228), + [anon_sym_i32] = ACTIONS(4228), + [anon_sym_i64] = ACTIONS(4228), + [anon_sym_u8] = ACTIONS(4228), + [anon_sym_u16] = ACTIONS(4228), + [anon_sym_u32] = ACTIONS(4228), + [anon_sym_u64] = ACTIONS(4228), + [anon_sym_isize] = ACTIONS(4228), + [anon_sym_usize] = ACTIONS(4228), + [anon_sym_f32] = ACTIONS(4228), + [anon_sym_f64] = ACTIONS(4228), + [anon_sym_c_char] = ACTIONS(4228), + [anon_sym_c_schar] = ACTIONS(4228), + [anon_sym_c_uchar] = ACTIONS(4228), + [anon_sym_c_short] = ACTIONS(4228), + [anon_sym_c_ushort] = ACTIONS(4228), + [anon_sym_c_int] = ACTIONS(4228), + [anon_sym_c_uint] = ACTIONS(4228), + [anon_sym_c_long] = ACTIONS(4228), + [anon_sym_c_ulong] = ACTIONS(4228), + [anon_sym_c_longlong] = ACTIONS(4228), + [anon_sym_c_ulonglong] = ACTIONS(4228), + [anon_sym_c_float] = ACTIONS(4228), + [anon_sym_c_double] = ACTIONS(4228), + [anon_sym_c_longdouble] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_yield] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_defer] = ACTIONS(4228), + [anon_sym_errdefer] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_expand] = ACTIONS(4228), + [anon_sym_for] = ACTIONS(4228), + [anon_sym_match] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_TILDE] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [sym_none] = ACTIONS(4228), + [sym_undefined] = ACTIONS(4228), + [sym_sink] = ACTIONS(4228), + [sym_integer] = ACTIONS(4228), + [sym_float] = ACTIONS(4226), + [anon_sym_DQUOTE] = ACTIONS(4226), + [sym_multiline_string] = ACTIONS(4226), + [sym_character] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4226), + }, + [STATE(1783)] = { + [ts_builtin_sym_end] = ACTIONS(4230), + [sym_identifier] = ACTIONS(4232), + [anon_sym_import] = ACTIONS(4232), + [anon_sym_test] = ACTIONS(4232), + [anon_sym_hide] = ACTIONS(4232), + [anon_sym_func] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_struct] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_DOLLAR] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_void] = ACTIONS(4232), + [anon_sym_type] = ACTIONS(4232), + [anon_sym_anyopaque] = ACTIONS(4232), + [anon_sym_bool] = ACTIONS(4232), + [anon_sym_int] = ACTIONS(4232), + [anon_sym_uint] = ACTIONS(4232), + [anon_sym_float] = ACTIONS(4232), + [anon_sym_range] = ACTIONS(4232), + [anon_sym_i8] = ACTIONS(4232), + [anon_sym_i16] = ACTIONS(4232), + [anon_sym_i32] = ACTIONS(4232), + [anon_sym_i64] = ACTIONS(4232), + [anon_sym_u8] = ACTIONS(4232), + [anon_sym_u16] = ACTIONS(4232), + [anon_sym_u32] = ACTIONS(4232), + [anon_sym_u64] = ACTIONS(4232), + [anon_sym_isize] = ACTIONS(4232), + [anon_sym_usize] = ACTIONS(4232), + [anon_sym_f32] = ACTIONS(4232), + [anon_sym_f64] = ACTIONS(4232), + [anon_sym_c_char] = ACTIONS(4232), + [anon_sym_c_schar] = ACTIONS(4232), + [anon_sym_c_uchar] = ACTIONS(4232), + [anon_sym_c_short] = ACTIONS(4232), + [anon_sym_c_ushort] = ACTIONS(4232), + [anon_sym_c_int] = ACTIONS(4232), + [anon_sym_c_uint] = ACTIONS(4232), + [anon_sym_c_long] = ACTIONS(4232), + [anon_sym_c_ulong] = ACTIONS(4232), + [anon_sym_c_longlong] = ACTIONS(4232), + [anon_sym_c_ulonglong] = ACTIONS(4232), + [anon_sym_c_float] = ACTIONS(4232), + [anon_sym_c_double] = ACTIONS(4232), + [anon_sym_c_longdouble] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_defer] = ACTIONS(4232), + [anon_sym_errdefer] = ACTIONS(4232), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_expand] = ACTIONS(4232), + [anon_sym_for] = ACTIONS(4232), + [anon_sym_match] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4230), + [anon_sym_TILDE] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [sym_none] = ACTIONS(4232), + [sym_undefined] = ACTIONS(4232), + [sym_sink] = ACTIONS(4232), + [sym_integer] = ACTIONS(4232), + [sym_float] = ACTIONS(4230), + [anon_sym_DQUOTE] = ACTIONS(4230), + [sym_multiline_string] = ACTIONS(4230), + [sym_character] = ACTIONS(4230), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4230), + }, + [STATE(1784)] = { + [ts_builtin_sym_end] = ACTIONS(4234), + [sym_identifier] = ACTIONS(4236), + [anon_sym_import] = ACTIONS(4236), + [anon_sym_test] = ACTIONS(4236), + [anon_sym_hide] = ACTIONS(4236), + [anon_sym_func] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_struct] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_DOLLAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_void] = ACTIONS(4236), + [anon_sym_type] = ACTIONS(4236), + [anon_sym_anyopaque] = ACTIONS(4236), + [anon_sym_bool] = ACTIONS(4236), + [anon_sym_int] = ACTIONS(4236), + [anon_sym_uint] = ACTIONS(4236), + [anon_sym_float] = ACTIONS(4236), + [anon_sym_range] = ACTIONS(4236), + [anon_sym_i8] = ACTIONS(4236), + [anon_sym_i16] = ACTIONS(4236), + [anon_sym_i32] = ACTIONS(4236), + [anon_sym_i64] = ACTIONS(4236), + [anon_sym_u8] = ACTIONS(4236), + [anon_sym_u16] = ACTIONS(4236), + [anon_sym_u32] = ACTIONS(4236), + [anon_sym_u64] = ACTIONS(4236), + [anon_sym_isize] = ACTIONS(4236), + [anon_sym_usize] = ACTIONS(4236), + [anon_sym_f32] = ACTIONS(4236), + [anon_sym_f64] = ACTIONS(4236), + [anon_sym_c_char] = ACTIONS(4236), + [anon_sym_c_schar] = ACTIONS(4236), + [anon_sym_c_uchar] = ACTIONS(4236), + [anon_sym_c_short] = ACTIONS(4236), + [anon_sym_c_ushort] = ACTIONS(4236), + [anon_sym_c_int] = ACTIONS(4236), + [anon_sym_c_uint] = ACTIONS(4236), + [anon_sym_c_long] = ACTIONS(4236), + [anon_sym_c_ulong] = ACTIONS(4236), + [anon_sym_c_longlong] = ACTIONS(4236), + [anon_sym_c_ulonglong] = ACTIONS(4236), + [anon_sym_c_float] = ACTIONS(4236), + [anon_sym_c_double] = ACTIONS(4236), + [anon_sym_c_longdouble] = ACTIONS(4236), + [anon_sym_return] = ACTIONS(4236), + [anon_sym_yield] = ACTIONS(4236), + [anon_sym_break] = ACTIONS(4236), + [anon_sym_continue] = ACTIONS(4236), + [anon_sym_defer] = ACTIONS(4236), + [anon_sym_errdefer] = ACTIONS(4236), + [anon_sym_if] = ACTIONS(4236), + [anon_sym_else] = ACTIONS(4236), + [anon_sym_while] = ACTIONS(4236), + [anon_sym_expand] = ACTIONS(4236), + [anon_sym_for] = ACTIONS(4236), + [anon_sym_match] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_TILDE] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4236), + [anon_sym_false] = ACTIONS(4236), + [sym_none] = ACTIONS(4236), + [sym_undefined] = ACTIONS(4236), + [sym_sink] = ACTIONS(4236), + [sym_integer] = ACTIONS(4236), + [sym_float] = ACTIONS(4234), + [anon_sym_DQUOTE] = ACTIONS(4234), + [sym_multiline_string] = ACTIONS(4234), + [sym_character] = ACTIONS(4234), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4234), + }, + [STATE(1785)] = { + [ts_builtin_sym_end] = ACTIONS(4238), + [sym_identifier] = ACTIONS(4240), + [anon_sym_import] = ACTIONS(4240), + [anon_sym_test] = ACTIONS(4240), + [anon_sym_hide] = ACTIONS(4240), + [anon_sym_func] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4238), + [anon_sym_RPAREN] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_RBRACE] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_DOLLAR] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4238), + [anon_sym_void] = ACTIONS(4240), + [anon_sym_type] = ACTIONS(4240), + [anon_sym_anyopaque] = ACTIONS(4240), + [anon_sym_bool] = ACTIONS(4240), + [anon_sym_int] = ACTIONS(4240), + [anon_sym_uint] = ACTIONS(4240), + [anon_sym_float] = ACTIONS(4240), + [anon_sym_range] = ACTIONS(4240), + [anon_sym_i8] = ACTIONS(4240), + [anon_sym_i16] = ACTIONS(4240), + [anon_sym_i32] = ACTIONS(4240), + [anon_sym_i64] = ACTIONS(4240), + [anon_sym_u8] = ACTIONS(4240), + [anon_sym_u16] = ACTIONS(4240), + [anon_sym_u32] = ACTIONS(4240), + [anon_sym_u64] = ACTIONS(4240), + [anon_sym_isize] = ACTIONS(4240), + [anon_sym_usize] = ACTIONS(4240), + [anon_sym_f32] = ACTIONS(4240), + [anon_sym_f64] = ACTIONS(4240), + [anon_sym_c_char] = ACTIONS(4240), + [anon_sym_c_schar] = ACTIONS(4240), + [anon_sym_c_uchar] = ACTIONS(4240), + [anon_sym_c_short] = ACTIONS(4240), + [anon_sym_c_ushort] = ACTIONS(4240), + [anon_sym_c_int] = ACTIONS(4240), + [anon_sym_c_uint] = ACTIONS(4240), + [anon_sym_c_long] = ACTIONS(4240), + [anon_sym_c_ulong] = ACTIONS(4240), + [anon_sym_c_longlong] = ACTIONS(4240), + [anon_sym_c_ulonglong] = ACTIONS(4240), + [anon_sym_c_float] = ACTIONS(4240), + [anon_sym_c_double] = ACTIONS(4240), + [anon_sym_c_longdouble] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_yield] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_defer] = ACTIONS(4240), + [anon_sym_errdefer] = ACTIONS(4240), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_expand] = ACTIONS(4240), + [anon_sym_for] = ACTIONS(4240), + [anon_sym_match] = ACTIONS(4240), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_TILDE] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [sym_none] = ACTIONS(4240), + [sym_undefined] = ACTIONS(4240), + [sym_sink] = ACTIONS(4240), + [sym_integer] = ACTIONS(4240), + [sym_float] = ACTIONS(4238), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym_multiline_string] = ACTIONS(4238), + [sym_character] = ACTIONS(4238), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4238), + }, + [STATE(1786)] = { + [ts_builtin_sym_end] = ACTIONS(4242), + [sym_identifier] = ACTIONS(4244), + [anon_sym_import] = ACTIONS(4244), + [anon_sym_test] = ACTIONS(4244), + [anon_sym_hide] = ACTIONS(4244), + [anon_sym_func] = ACTIONS(4244), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_struct] = ACTIONS(4244), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_DOLLAR] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_void] = ACTIONS(4244), + [anon_sym_type] = ACTIONS(4244), + [anon_sym_anyopaque] = ACTIONS(4244), + [anon_sym_bool] = ACTIONS(4244), + [anon_sym_int] = ACTIONS(4244), + [anon_sym_uint] = ACTIONS(4244), + [anon_sym_float] = ACTIONS(4244), + [anon_sym_range] = ACTIONS(4244), + [anon_sym_i8] = ACTIONS(4244), + [anon_sym_i16] = ACTIONS(4244), + [anon_sym_i32] = ACTIONS(4244), + [anon_sym_i64] = ACTIONS(4244), + [anon_sym_u8] = ACTIONS(4244), + [anon_sym_u16] = ACTIONS(4244), + [anon_sym_u32] = ACTIONS(4244), + [anon_sym_u64] = ACTIONS(4244), + [anon_sym_isize] = ACTIONS(4244), + [anon_sym_usize] = ACTIONS(4244), + [anon_sym_f32] = ACTIONS(4244), + [anon_sym_f64] = ACTIONS(4244), + [anon_sym_c_char] = ACTIONS(4244), + [anon_sym_c_schar] = ACTIONS(4244), + [anon_sym_c_uchar] = ACTIONS(4244), + [anon_sym_c_short] = ACTIONS(4244), + [anon_sym_c_ushort] = ACTIONS(4244), + [anon_sym_c_int] = ACTIONS(4244), + [anon_sym_c_uint] = ACTIONS(4244), + [anon_sym_c_long] = ACTIONS(4244), + [anon_sym_c_ulong] = ACTIONS(4244), + [anon_sym_c_longlong] = ACTIONS(4244), + [anon_sym_c_ulonglong] = ACTIONS(4244), + [anon_sym_c_float] = ACTIONS(4244), + [anon_sym_c_double] = ACTIONS(4244), + [anon_sym_c_longdouble] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_yield] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_defer] = ACTIONS(4244), + [anon_sym_errdefer] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_expand] = ACTIONS(4244), + [anon_sym_for] = ACTIONS(4244), + [anon_sym_match] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [sym_none] = ACTIONS(4244), + [sym_undefined] = ACTIONS(4244), + [sym_sink] = ACTIONS(4244), + [sym_integer] = ACTIONS(4244), + [sym_float] = ACTIONS(4242), + [anon_sym_DQUOTE] = ACTIONS(4242), + [sym_multiline_string] = ACTIONS(4242), + [sym_character] = ACTIONS(4242), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4242), + }, + [STATE(1787)] = { + [ts_builtin_sym_end] = ACTIONS(4246), + [sym_identifier] = ACTIONS(4248), + [anon_sym_import] = ACTIONS(4248), + [anon_sym_test] = ACTIONS(4248), + [anon_sym_hide] = ACTIONS(4248), + [anon_sym_func] = ACTIONS(4248), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_DOLLAR] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_void] = ACTIONS(4248), + [anon_sym_type] = ACTIONS(4248), + [anon_sym_anyopaque] = ACTIONS(4248), + [anon_sym_bool] = ACTIONS(4248), + [anon_sym_int] = ACTIONS(4248), + [anon_sym_uint] = ACTIONS(4248), + [anon_sym_float] = ACTIONS(4248), + [anon_sym_range] = ACTIONS(4248), + [anon_sym_i8] = ACTIONS(4248), + [anon_sym_i16] = ACTIONS(4248), + [anon_sym_i32] = ACTIONS(4248), + [anon_sym_i64] = ACTIONS(4248), + [anon_sym_u8] = ACTIONS(4248), + [anon_sym_u16] = ACTIONS(4248), + [anon_sym_u32] = ACTIONS(4248), + [anon_sym_u64] = ACTIONS(4248), + [anon_sym_isize] = ACTIONS(4248), + [anon_sym_usize] = ACTIONS(4248), + [anon_sym_f32] = ACTIONS(4248), + [anon_sym_f64] = ACTIONS(4248), + [anon_sym_c_char] = ACTIONS(4248), + [anon_sym_c_schar] = ACTIONS(4248), + [anon_sym_c_uchar] = ACTIONS(4248), + [anon_sym_c_short] = ACTIONS(4248), + [anon_sym_c_ushort] = ACTIONS(4248), + [anon_sym_c_int] = ACTIONS(4248), + [anon_sym_c_uint] = ACTIONS(4248), + [anon_sym_c_long] = ACTIONS(4248), + [anon_sym_c_ulong] = ACTIONS(4248), + [anon_sym_c_longlong] = ACTIONS(4248), + [anon_sym_c_ulonglong] = ACTIONS(4248), + [anon_sym_c_float] = ACTIONS(4248), + [anon_sym_c_double] = ACTIONS(4248), + [anon_sym_c_longdouble] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_yield] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_defer] = ACTIONS(4248), + [anon_sym_errdefer] = ACTIONS(4248), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_expand] = ACTIONS(4248), + [anon_sym_for] = ACTIONS(4248), + [anon_sym_match] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [sym_none] = ACTIONS(4248), + [sym_undefined] = ACTIONS(4248), + [sym_sink] = ACTIONS(4248), + [sym_integer] = ACTIONS(4248), + [sym_float] = ACTIONS(4246), + [anon_sym_DQUOTE] = ACTIONS(4246), + [sym_multiline_string] = ACTIONS(4246), + [sym_character] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4246), + }, + [STATE(1788)] = { + [ts_builtin_sym_end] = ACTIONS(4250), + [sym_identifier] = ACTIONS(4252), + [anon_sym_import] = ACTIONS(4252), + [anon_sym_test] = ACTIONS(4252), + [anon_sym_hide] = ACTIONS(4252), + [anon_sym_func] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_struct] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_void] = ACTIONS(4252), + [anon_sym_type] = ACTIONS(4252), + [anon_sym_anyopaque] = ACTIONS(4252), + [anon_sym_bool] = ACTIONS(4252), + [anon_sym_int] = ACTIONS(4252), + [anon_sym_uint] = ACTIONS(4252), + [anon_sym_float] = ACTIONS(4252), + [anon_sym_range] = ACTIONS(4252), + [anon_sym_i8] = ACTIONS(4252), + [anon_sym_i16] = ACTIONS(4252), + [anon_sym_i32] = ACTIONS(4252), + [anon_sym_i64] = ACTIONS(4252), + [anon_sym_u8] = ACTIONS(4252), + [anon_sym_u16] = ACTIONS(4252), + [anon_sym_u32] = ACTIONS(4252), + [anon_sym_u64] = ACTIONS(4252), + [anon_sym_isize] = ACTIONS(4252), + [anon_sym_usize] = ACTIONS(4252), + [anon_sym_f32] = ACTIONS(4252), + [anon_sym_f64] = ACTIONS(4252), + [anon_sym_c_char] = ACTIONS(4252), + [anon_sym_c_schar] = ACTIONS(4252), + [anon_sym_c_uchar] = ACTIONS(4252), + [anon_sym_c_short] = ACTIONS(4252), + [anon_sym_c_ushort] = ACTIONS(4252), + [anon_sym_c_int] = ACTIONS(4252), + [anon_sym_c_uint] = ACTIONS(4252), + [anon_sym_c_long] = ACTIONS(4252), + [anon_sym_c_ulong] = ACTIONS(4252), + [anon_sym_c_longlong] = ACTIONS(4252), + [anon_sym_c_ulonglong] = ACTIONS(4252), + [anon_sym_c_float] = ACTIONS(4252), + [anon_sym_c_double] = ACTIONS(4252), + [anon_sym_c_longdouble] = ACTIONS(4252), + [anon_sym_return] = ACTIONS(4252), + [anon_sym_yield] = ACTIONS(4252), + [anon_sym_break] = ACTIONS(4252), + [anon_sym_continue] = ACTIONS(4252), + [anon_sym_defer] = ACTIONS(4252), + [anon_sym_errdefer] = ACTIONS(4252), + [anon_sym_if] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4252), + [anon_sym_while] = ACTIONS(4252), + [anon_sym_expand] = ACTIONS(4252), + [anon_sym_for] = ACTIONS(4252), + [anon_sym_match] = ACTIONS(4252), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_TILDE] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4252), + [anon_sym_false] = ACTIONS(4252), + [sym_none] = ACTIONS(4252), + [sym_undefined] = ACTIONS(4252), + [sym_sink] = ACTIONS(4252), + [sym_integer] = ACTIONS(4252), + [sym_float] = ACTIONS(4250), + [anon_sym_DQUOTE] = ACTIONS(4250), + [sym_multiline_string] = ACTIONS(4250), + [sym_character] = ACTIONS(4250), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4250), + }, + [STATE(1789)] = { + [ts_builtin_sym_end] = ACTIONS(4254), + [sym_identifier] = ACTIONS(4256), + [anon_sym_import] = ACTIONS(4256), + [anon_sym_test] = ACTIONS(4256), + [anon_sym_hide] = ACTIONS(4256), + [anon_sym_func] = ACTIONS(4256), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_struct] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4254), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_DOLLAR] = ACTIONS(4254), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_void] = ACTIONS(4256), + [anon_sym_type] = ACTIONS(4256), + [anon_sym_anyopaque] = ACTIONS(4256), + [anon_sym_bool] = ACTIONS(4256), + [anon_sym_int] = ACTIONS(4256), + [anon_sym_uint] = ACTIONS(4256), + [anon_sym_float] = ACTIONS(4256), + [anon_sym_range] = ACTIONS(4256), + [anon_sym_i8] = ACTIONS(4256), + [anon_sym_i16] = ACTIONS(4256), + [anon_sym_i32] = ACTIONS(4256), + [anon_sym_i64] = ACTIONS(4256), + [anon_sym_u8] = ACTIONS(4256), + [anon_sym_u16] = ACTIONS(4256), + [anon_sym_u32] = ACTIONS(4256), + [anon_sym_u64] = ACTIONS(4256), + [anon_sym_isize] = ACTIONS(4256), + [anon_sym_usize] = ACTIONS(4256), + [anon_sym_f32] = ACTIONS(4256), + [anon_sym_f64] = ACTIONS(4256), + [anon_sym_c_char] = ACTIONS(4256), + [anon_sym_c_schar] = ACTIONS(4256), + [anon_sym_c_uchar] = ACTIONS(4256), + [anon_sym_c_short] = ACTIONS(4256), + [anon_sym_c_ushort] = ACTIONS(4256), + [anon_sym_c_int] = ACTIONS(4256), + [anon_sym_c_uint] = ACTIONS(4256), + [anon_sym_c_long] = ACTIONS(4256), + [anon_sym_c_ulong] = ACTIONS(4256), + [anon_sym_c_longlong] = ACTIONS(4256), + [anon_sym_c_ulonglong] = ACTIONS(4256), + [anon_sym_c_float] = ACTIONS(4256), + [anon_sym_c_double] = ACTIONS(4256), + [anon_sym_c_longdouble] = ACTIONS(4256), + [anon_sym_return] = ACTIONS(4256), + [anon_sym_yield] = ACTIONS(4256), + [anon_sym_break] = ACTIONS(4256), + [anon_sym_continue] = ACTIONS(4256), + [anon_sym_defer] = ACTIONS(4256), + [anon_sym_errdefer] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4256), + [anon_sym_while] = ACTIONS(4256), + [anon_sym_expand] = ACTIONS(4256), + [anon_sym_for] = ACTIONS(4256), + [anon_sym_match] = ACTIONS(4256), + [anon_sym_AMP] = ACTIONS(4254), + [anon_sym_TILDE] = ACTIONS(4254), + [anon_sym_try] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_true] = ACTIONS(4256), + [anon_sym_false] = ACTIONS(4256), + [sym_none] = ACTIONS(4256), + [sym_undefined] = ACTIONS(4256), + [sym_sink] = ACTIONS(4256), + [sym_integer] = ACTIONS(4256), + [sym_float] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4254), + [sym_multiline_string] = ACTIONS(4254), + [sym_character] = ACTIONS(4254), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4254), + }, + [STATE(1790)] = { + [ts_builtin_sym_end] = ACTIONS(4258), + [sym_identifier] = ACTIONS(4260), + [anon_sym_import] = ACTIONS(4260), + [anon_sym_test] = ACTIONS(4260), + [anon_sym_hide] = ACTIONS(4260), + [anon_sym_func] = ACTIONS(4260), + [anon_sym_BANG] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4260), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_DOLLAR] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_void] = ACTIONS(4260), + [anon_sym_type] = ACTIONS(4260), + [anon_sym_anyopaque] = ACTIONS(4260), + [anon_sym_bool] = ACTIONS(4260), + [anon_sym_int] = ACTIONS(4260), + [anon_sym_uint] = ACTIONS(4260), + [anon_sym_float] = ACTIONS(4260), + [anon_sym_range] = ACTIONS(4260), + [anon_sym_i8] = ACTIONS(4260), + [anon_sym_i16] = ACTIONS(4260), + [anon_sym_i32] = ACTIONS(4260), + [anon_sym_i64] = ACTIONS(4260), + [anon_sym_u8] = ACTIONS(4260), + [anon_sym_u16] = ACTIONS(4260), + [anon_sym_u32] = ACTIONS(4260), + [anon_sym_u64] = ACTIONS(4260), + [anon_sym_isize] = ACTIONS(4260), + [anon_sym_usize] = ACTIONS(4260), + [anon_sym_f32] = ACTIONS(4260), + [anon_sym_f64] = ACTIONS(4260), + [anon_sym_c_char] = ACTIONS(4260), + [anon_sym_c_schar] = ACTIONS(4260), + [anon_sym_c_uchar] = ACTIONS(4260), + [anon_sym_c_short] = ACTIONS(4260), + [anon_sym_c_ushort] = ACTIONS(4260), + [anon_sym_c_int] = ACTIONS(4260), + [anon_sym_c_uint] = ACTIONS(4260), + [anon_sym_c_long] = ACTIONS(4260), + [anon_sym_c_ulong] = ACTIONS(4260), + [anon_sym_c_longlong] = ACTIONS(4260), + [anon_sym_c_ulonglong] = ACTIONS(4260), + [anon_sym_c_float] = ACTIONS(4260), + [anon_sym_c_double] = ACTIONS(4260), + [anon_sym_c_longdouble] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_yield] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_defer] = ACTIONS(4260), + [anon_sym_errdefer] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), + [anon_sym_expand] = ACTIONS(4260), + [anon_sym_for] = ACTIONS(4260), + [anon_sym_match] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_DOT] = ACTIONS(4258), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [sym_none] = ACTIONS(4260), + [sym_undefined] = ACTIONS(4260), + [sym_sink] = ACTIONS(4260), + [sym_integer] = ACTIONS(4260), + [sym_float] = ACTIONS(4258), + [anon_sym_DQUOTE] = ACTIONS(4258), + [sym_multiline_string] = ACTIONS(4258), + [sym_character] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4258), + }, + [STATE(1791)] = { + [ts_builtin_sym_end] = ACTIONS(4262), + [sym_identifier] = ACTIONS(4264), + [anon_sym_import] = ACTIONS(4264), + [anon_sym_test] = ACTIONS(4264), + [anon_sym_hide] = ACTIONS(4264), + [anon_sym_func] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_void] = ACTIONS(4264), + [anon_sym_type] = ACTIONS(4264), + [anon_sym_anyopaque] = ACTIONS(4264), + [anon_sym_bool] = ACTIONS(4264), + [anon_sym_int] = ACTIONS(4264), + [anon_sym_uint] = ACTIONS(4264), + [anon_sym_float] = ACTIONS(4264), + [anon_sym_range] = ACTIONS(4264), + [anon_sym_i8] = ACTIONS(4264), + [anon_sym_i16] = ACTIONS(4264), + [anon_sym_i32] = ACTIONS(4264), + [anon_sym_i64] = ACTIONS(4264), + [anon_sym_u8] = ACTIONS(4264), + [anon_sym_u16] = ACTIONS(4264), + [anon_sym_u32] = ACTIONS(4264), + [anon_sym_u64] = ACTIONS(4264), + [anon_sym_isize] = ACTIONS(4264), + [anon_sym_usize] = ACTIONS(4264), + [anon_sym_f32] = ACTIONS(4264), + [anon_sym_f64] = ACTIONS(4264), + [anon_sym_c_char] = ACTIONS(4264), + [anon_sym_c_schar] = ACTIONS(4264), + [anon_sym_c_uchar] = ACTIONS(4264), + [anon_sym_c_short] = ACTIONS(4264), + [anon_sym_c_ushort] = ACTIONS(4264), + [anon_sym_c_int] = ACTIONS(4264), + [anon_sym_c_uint] = ACTIONS(4264), + [anon_sym_c_long] = ACTIONS(4264), + [anon_sym_c_ulong] = ACTIONS(4264), + [anon_sym_c_longlong] = ACTIONS(4264), + [anon_sym_c_ulonglong] = ACTIONS(4264), + [anon_sym_c_float] = ACTIONS(4264), + [anon_sym_c_double] = ACTIONS(4264), + [anon_sym_c_longdouble] = ACTIONS(4264), + [anon_sym_return] = ACTIONS(4264), + [anon_sym_yield] = ACTIONS(4264), + [anon_sym_break] = ACTIONS(4264), + [anon_sym_continue] = ACTIONS(4264), + [anon_sym_defer] = ACTIONS(4264), + [anon_sym_errdefer] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4264), + [anon_sym_else] = ACTIONS(4264), + [anon_sym_while] = ACTIONS(4264), + [anon_sym_expand] = ACTIONS(4264), + [anon_sym_for] = ACTIONS(4264), + [anon_sym_match] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_TILDE] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [sym_none] = ACTIONS(4264), + [sym_undefined] = ACTIONS(4264), + [sym_sink] = ACTIONS(4264), + [sym_integer] = ACTIONS(4264), + [sym_float] = ACTIONS(4262), + [anon_sym_DQUOTE] = ACTIONS(4262), + [sym_multiline_string] = ACTIONS(4262), + [sym_character] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4262), + }, + [STATE(1792)] = { + [ts_builtin_sym_end] = ACTIONS(4266), + [sym_identifier] = ACTIONS(4268), + [anon_sym_import] = ACTIONS(4268), + [anon_sym_test] = ACTIONS(4268), + [anon_sym_hide] = ACTIONS(4268), + [anon_sym_func] = ACTIONS(4268), + [anon_sym_BANG] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4268), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym_RPAREN] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_DOLLAR] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_void] = ACTIONS(4268), + [anon_sym_type] = ACTIONS(4268), + [anon_sym_anyopaque] = ACTIONS(4268), + [anon_sym_bool] = ACTIONS(4268), + [anon_sym_int] = ACTIONS(4268), + [anon_sym_uint] = ACTIONS(4268), + [anon_sym_float] = ACTIONS(4268), + [anon_sym_range] = ACTIONS(4268), + [anon_sym_i8] = ACTIONS(4268), + [anon_sym_i16] = ACTIONS(4268), + [anon_sym_i32] = ACTIONS(4268), + [anon_sym_i64] = ACTIONS(4268), + [anon_sym_u8] = ACTIONS(4268), + [anon_sym_u16] = ACTIONS(4268), + [anon_sym_u32] = ACTIONS(4268), + [anon_sym_u64] = ACTIONS(4268), + [anon_sym_isize] = ACTIONS(4268), + [anon_sym_usize] = ACTIONS(4268), + [anon_sym_f32] = ACTIONS(4268), + [anon_sym_f64] = ACTIONS(4268), + [anon_sym_c_char] = ACTIONS(4268), + [anon_sym_c_schar] = ACTIONS(4268), + [anon_sym_c_uchar] = ACTIONS(4268), + [anon_sym_c_short] = ACTIONS(4268), + [anon_sym_c_ushort] = ACTIONS(4268), + [anon_sym_c_int] = ACTIONS(4268), + [anon_sym_c_uint] = ACTIONS(4268), + [anon_sym_c_long] = ACTIONS(4268), + [anon_sym_c_ulong] = ACTIONS(4268), + [anon_sym_c_longlong] = ACTIONS(4268), + [anon_sym_c_ulonglong] = ACTIONS(4268), + [anon_sym_c_float] = ACTIONS(4268), + [anon_sym_c_double] = ACTIONS(4268), + [anon_sym_c_longdouble] = ACTIONS(4268), + [anon_sym_return] = ACTIONS(4268), + [anon_sym_yield] = ACTIONS(4268), + [anon_sym_break] = ACTIONS(4268), + [anon_sym_continue] = ACTIONS(4268), + [anon_sym_defer] = ACTIONS(4268), + [anon_sym_errdefer] = ACTIONS(4268), + [anon_sym_if] = ACTIONS(4268), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_while] = ACTIONS(4268), + [anon_sym_expand] = ACTIONS(4268), + [anon_sym_for] = ACTIONS(4268), + [anon_sym_match] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_TILDE] = ACTIONS(4266), + [anon_sym_try] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_true] = ACTIONS(4268), + [anon_sym_false] = ACTIONS(4268), + [sym_none] = ACTIONS(4268), + [sym_undefined] = ACTIONS(4268), + [sym_sink] = ACTIONS(4268), + [sym_integer] = ACTIONS(4268), + [sym_float] = ACTIONS(4266), + [anon_sym_DQUOTE] = ACTIONS(4266), + [sym_multiline_string] = ACTIONS(4266), + [sym_character] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4266), + }, + [STATE(1793)] = { + [ts_builtin_sym_end] = ACTIONS(4270), + [sym_identifier] = ACTIONS(4272), + [anon_sym_import] = ACTIONS(4272), + [anon_sym_test] = ACTIONS(4272), + [anon_sym_hide] = ACTIONS(4272), + [anon_sym_func] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4272), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_RPAREN] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_void] = ACTIONS(4272), + [anon_sym_type] = ACTIONS(4272), + [anon_sym_anyopaque] = ACTIONS(4272), + [anon_sym_bool] = ACTIONS(4272), + [anon_sym_int] = ACTIONS(4272), + [anon_sym_uint] = ACTIONS(4272), + [anon_sym_float] = ACTIONS(4272), + [anon_sym_range] = ACTIONS(4272), + [anon_sym_i8] = ACTIONS(4272), + [anon_sym_i16] = ACTIONS(4272), + [anon_sym_i32] = ACTIONS(4272), + [anon_sym_i64] = ACTIONS(4272), + [anon_sym_u8] = ACTIONS(4272), + [anon_sym_u16] = ACTIONS(4272), + [anon_sym_u32] = ACTIONS(4272), + [anon_sym_u64] = ACTIONS(4272), + [anon_sym_isize] = ACTIONS(4272), + [anon_sym_usize] = ACTIONS(4272), + [anon_sym_f32] = ACTIONS(4272), + [anon_sym_f64] = ACTIONS(4272), + [anon_sym_c_char] = ACTIONS(4272), + [anon_sym_c_schar] = ACTIONS(4272), + [anon_sym_c_uchar] = ACTIONS(4272), + [anon_sym_c_short] = ACTIONS(4272), + [anon_sym_c_ushort] = ACTIONS(4272), + [anon_sym_c_int] = ACTIONS(4272), + [anon_sym_c_uint] = ACTIONS(4272), + [anon_sym_c_long] = ACTIONS(4272), + [anon_sym_c_ulong] = ACTIONS(4272), + [anon_sym_c_longlong] = ACTIONS(4272), + [anon_sym_c_ulonglong] = ACTIONS(4272), + [anon_sym_c_float] = ACTIONS(4272), + [anon_sym_c_double] = ACTIONS(4272), + [anon_sym_c_longdouble] = ACTIONS(4272), + [anon_sym_return] = ACTIONS(4272), + [anon_sym_yield] = ACTIONS(4272), + [anon_sym_break] = ACTIONS(4272), + [anon_sym_continue] = ACTIONS(4272), + [anon_sym_defer] = ACTIONS(4272), + [anon_sym_errdefer] = ACTIONS(4272), + [anon_sym_if] = ACTIONS(4272), + [anon_sym_else] = ACTIONS(4272), + [anon_sym_while] = ACTIONS(4272), + [anon_sym_expand] = ACTIONS(4272), + [anon_sym_for] = ACTIONS(4272), + [anon_sym_match] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_TILDE] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_true] = ACTIONS(4272), + [anon_sym_false] = ACTIONS(4272), + [sym_none] = ACTIONS(4272), + [sym_undefined] = ACTIONS(4272), + [sym_sink] = ACTIONS(4272), + [sym_integer] = ACTIONS(4272), + [sym_float] = ACTIONS(4270), + [anon_sym_DQUOTE] = ACTIONS(4270), + [sym_multiline_string] = ACTIONS(4270), + [sym_character] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4270), + }, + [STATE(1794)] = { + [ts_builtin_sym_end] = ACTIONS(4274), + [sym_identifier] = ACTIONS(4276), + [anon_sym_import] = ACTIONS(4276), + [anon_sym_test] = ACTIONS(4276), + [anon_sym_hide] = ACTIONS(4276), + [anon_sym_func] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4274), + [anon_sym_RPAREN] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_RBRACE] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_DOLLAR] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_void] = ACTIONS(4276), + [anon_sym_type] = ACTIONS(4276), + [anon_sym_anyopaque] = ACTIONS(4276), + [anon_sym_bool] = ACTIONS(4276), + [anon_sym_int] = ACTIONS(4276), + [anon_sym_uint] = ACTIONS(4276), + [anon_sym_float] = ACTIONS(4276), + [anon_sym_range] = ACTIONS(4276), + [anon_sym_i8] = ACTIONS(4276), + [anon_sym_i16] = ACTIONS(4276), + [anon_sym_i32] = ACTIONS(4276), + [anon_sym_i64] = ACTIONS(4276), + [anon_sym_u8] = ACTIONS(4276), + [anon_sym_u16] = ACTIONS(4276), + [anon_sym_u32] = ACTIONS(4276), + [anon_sym_u64] = ACTIONS(4276), + [anon_sym_isize] = ACTIONS(4276), + [anon_sym_usize] = ACTIONS(4276), + [anon_sym_f32] = ACTIONS(4276), + [anon_sym_f64] = ACTIONS(4276), + [anon_sym_c_char] = ACTIONS(4276), + [anon_sym_c_schar] = ACTIONS(4276), + [anon_sym_c_uchar] = ACTIONS(4276), + [anon_sym_c_short] = ACTIONS(4276), + [anon_sym_c_ushort] = ACTIONS(4276), + [anon_sym_c_int] = ACTIONS(4276), + [anon_sym_c_uint] = ACTIONS(4276), + [anon_sym_c_long] = ACTIONS(4276), + [anon_sym_c_ulong] = ACTIONS(4276), + [anon_sym_c_longlong] = ACTIONS(4276), + [anon_sym_c_ulonglong] = ACTIONS(4276), + [anon_sym_c_float] = ACTIONS(4276), + [anon_sym_c_double] = ACTIONS(4276), + [anon_sym_c_longdouble] = ACTIONS(4276), + [anon_sym_return] = ACTIONS(4276), + [anon_sym_yield] = ACTIONS(4276), + [anon_sym_break] = ACTIONS(4276), + [anon_sym_continue] = ACTIONS(4276), + [anon_sym_defer] = ACTIONS(4276), + [anon_sym_errdefer] = ACTIONS(4276), + [anon_sym_if] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4276), + [anon_sym_while] = ACTIONS(4276), + [anon_sym_expand] = ACTIONS(4276), + [anon_sym_for] = ACTIONS(4276), + [anon_sym_match] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_TILDE] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_true] = ACTIONS(4276), + [anon_sym_false] = ACTIONS(4276), + [sym_none] = ACTIONS(4276), + [sym_undefined] = ACTIONS(4276), + [sym_sink] = ACTIONS(4276), + [sym_integer] = ACTIONS(4276), + [sym_float] = ACTIONS(4274), + [anon_sym_DQUOTE] = ACTIONS(4274), + [sym_multiline_string] = ACTIONS(4274), + [sym_character] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4274), + }, + [STATE(1795)] = { + [ts_builtin_sym_end] = ACTIONS(4278), + [sym_identifier] = ACTIONS(4280), + [anon_sym_import] = ACTIONS(4280), + [anon_sym_test] = ACTIONS(4280), + [anon_sym_hide] = ACTIONS(4280), + [anon_sym_func] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4278), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_DOLLAR] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_void] = ACTIONS(4280), + [anon_sym_type] = ACTIONS(4280), + [anon_sym_anyopaque] = ACTIONS(4280), + [anon_sym_bool] = ACTIONS(4280), + [anon_sym_int] = ACTIONS(4280), + [anon_sym_uint] = ACTIONS(4280), + [anon_sym_float] = ACTIONS(4280), + [anon_sym_range] = ACTIONS(4280), + [anon_sym_i8] = ACTIONS(4280), + [anon_sym_i16] = ACTIONS(4280), + [anon_sym_i32] = ACTIONS(4280), + [anon_sym_i64] = ACTIONS(4280), + [anon_sym_u8] = ACTIONS(4280), + [anon_sym_u16] = ACTIONS(4280), + [anon_sym_u32] = ACTIONS(4280), + [anon_sym_u64] = ACTIONS(4280), + [anon_sym_isize] = ACTIONS(4280), + [anon_sym_usize] = ACTIONS(4280), + [anon_sym_f32] = ACTIONS(4280), + [anon_sym_f64] = ACTIONS(4280), + [anon_sym_c_char] = ACTIONS(4280), + [anon_sym_c_schar] = ACTIONS(4280), + [anon_sym_c_uchar] = ACTIONS(4280), + [anon_sym_c_short] = ACTIONS(4280), + [anon_sym_c_ushort] = ACTIONS(4280), + [anon_sym_c_int] = ACTIONS(4280), + [anon_sym_c_uint] = ACTIONS(4280), + [anon_sym_c_long] = ACTIONS(4280), + [anon_sym_c_ulong] = ACTIONS(4280), + [anon_sym_c_longlong] = ACTIONS(4280), + [anon_sym_c_ulonglong] = ACTIONS(4280), + [anon_sym_c_float] = ACTIONS(4280), + [anon_sym_c_double] = ACTIONS(4280), + [anon_sym_c_longdouble] = ACTIONS(4280), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_yield] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_defer] = ACTIONS(4280), + [anon_sym_errdefer] = ACTIONS(4280), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_while] = ACTIONS(4280), + [anon_sym_expand] = ACTIONS(4280), + [anon_sym_for] = ACTIONS(4280), + [anon_sym_match] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [sym_none] = ACTIONS(4280), + [sym_undefined] = ACTIONS(4280), + [sym_sink] = ACTIONS(4280), + [sym_integer] = ACTIONS(4280), + [sym_float] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [sym_multiline_string] = ACTIONS(4278), + [sym_character] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4278), + }, + [STATE(1796)] = { + [ts_builtin_sym_end] = ACTIONS(4282), + [sym_identifier] = ACTIONS(4284), + [anon_sym_import] = ACTIONS(4284), + [anon_sym_test] = ACTIONS(4284), + [anon_sym_hide] = ACTIONS(4284), + [anon_sym_func] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_DOLLAR] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_void] = ACTIONS(4284), + [anon_sym_type] = ACTIONS(4284), + [anon_sym_anyopaque] = ACTIONS(4284), + [anon_sym_bool] = ACTIONS(4284), + [anon_sym_int] = ACTIONS(4284), + [anon_sym_uint] = ACTIONS(4284), + [anon_sym_float] = ACTIONS(4284), + [anon_sym_range] = ACTIONS(4284), + [anon_sym_i8] = ACTIONS(4284), + [anon_sym_i16] = ACTIONS(4284), + [anon_sym_i32] = ACTIONS(4284), + [anon_sym_i64] = ACTIONS(4284), + [anon_sym_u8] = ACTIONS(4284), + [anon_sym_u16] = ACTIONS(4284), + [anon_sym_u32] = ACTIONS(4284), + [anon_sym_u64] = ACTIONS(4284), + [anon_sym_isize] = ACTIONS(4284), + [anon_sym_usize] = ACTIONS(4284), + [anon_sym_f32] = ACTIONS(4284), + [anon_sym_f64] = ACTIONS(4284), + [anon_sym_c_char] = ACTIONS(4284), + [anon_sym_c_schar] = ACTIONS(4284), + [anon_sym_c_uchar] = ACTIONS(4284), + [anon_sym_c_short] = ACTIONS(4284), + [anon_sym_c_ushort] = ACTIONS(4284), + [anon_sym_c_int] = ACTIONS(4284), + [anon_sym_c_uint] = ACTIONS(4284), + [anon_sym_c_long] = ACTIONS(4284), + [anon_sym_c_ulong] = ACTIONS(4284), + [anon_sym_c_longlong] = ACTIONS(4284), + [anon_sym_c_ulonglong] = ACTIONS(4284), + [anon_sym_c_float] = ACTIONS(4284), + [anon_sym_c_double] = ACTIONS(4284), + [anon_sym_c_longdouble] = ACTIONS(4284), + [anon_sym_return] = ACTIONS(4284), + [anon_sym_yield] = ACTIONS(4284), + [anon_sym_break] = ACTIONS(4284), + [anon_sym_continue] = ACTIONS(4284), + [anon_sym_defer] = ACTIONS(4284), + [anon_sym_errdefer] = ACTIONS(4284), + [anon_sym_if] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4284), + [anon_sym_while] = ACTIONS(4284), + [anon_sym_expand] = ACTIONS(4284), + [anon_sym_for] = ACTIONS(4284), + [anon_sym_match] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_TILDE] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4284), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_true] = ACTIONS(4284), + [anon_sym_false] = ACTIONS(4284), + [sym_none] = ACTIONS(4284), + [sym_undefined] = ACTIONS(4284), + [sym_sink] = ACTIONS(4284), + [sym_integer] = ACTIONS(4284), + [sym_float] = ACTIONS(4282), + [anon_sym_DQUOTE] = ACTIONS(4282), + [sym_multiline_string] = ACTIONS(4282), + [sym_character] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4282), + }, + [STATE(1797)] = { + [ts_builtin_sym_end] = ACTIONS(4286), + [sym_identifier] = ACTIONS(4288), + [anon_sym_import] = ACTIONS(4288), + [anon_sym_test] = ACTIONS(4288), + [anon_sym_hide] = ACTIONS(4288), + [anon_sym_func] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4286), + [anon_sym_RPAREN] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_RBRACE] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_DOLLAR] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_void] = ACTIONS(4288), + [anon_sym_type] = ACTIONS(4288), + [anon_sym_anyopaque] = ACTIONS(4288), + [anon_sym_bool] = ACTIONS(4288), + [anon_sym_int] = ACTIONS(4288), + [anon_sym_uint] = ACTIONS(4288), + [anon_sym_float] = ACTIONS(4288), + [anon_sym_range] = ACTIONS(4288), + [anon_sym_i8] = ACTIONS(4288), + [anon_sym_i16] = ACTIONS(4288), + [anon_sym_i32] = ACTIONS(4288), + [anon_sym_i64] = ACTIONS(4288), + [anon_sym_u8] = ACTIONS(4288), + [anon_sym_u16] = ACTIONS(4288), + [anon_sym_u32] = ACTIONS(4288), + [anon_sym_u64] = ACTIONS(4288), + [anon_sym_isize] = ACTIONS(4288), + [anon_sym_usize] = ACTIONS(4288), + [anon_sym_f32] = ACTIONS(4288), + [anon_sym_f64] = ACTIONS(4288), + [anon_sym_c_char] = ACTIONS(4288), + [anon_sym_c_schar] = ACTIONS(4288), + [anon_sym_c_uchar] = ACTIONS(4288), + [anon_sym_c_short] = ACTIONS(4288), + [anon_sym_c_ushort] = ACTIONS(4288), + [anon_sym_c_int] = ACTIONS(4288), + [anon_sym_c_uint] = ACTIONS(4288), + [anon_sym_c_long] = ACTIONS(4288), + [anon_sym_c_ulong] = ACTIONS(4288), + [anon_sym_c_longlong] = ACTIONS(4288), + [anon_sym_c_ulonglong] = ACTIONS(4288), + [anon_sym_c_float] = ACTIONS(4288), + [anon_sym_c_double] = ACTIONS(4288), + [anon_sym_c_longdouble] = ACTIONS(4288), + [anon_sym_return] = ACTIONS(4288), + [anon_sym_yield] = ACTIONS(4288), + [anon_sym_break] = ACTIONS(4288), + [anon_sym_continue] = ACTIONS(4288), + [anon_sym_defer] = ACTIONS(4288), + [anon_sym_errdefer] = ACTIONS(4288), + [anon_sym_if] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4288), + [anon_sym_while] = ACTIONS(4288), + [anon_sym_expand] = ACTIONS(4288), + [anon_sym_for] = ACTIONS(4288), + [anon_sym_match] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_TILDE] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4288), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_true] = ACTIONS(4288), + [anon_sym_false] = ACTIONS(4288), + [sym_none] = ACTIONS(4288), + [sym_undefined] = ACTIONS(4288), + [sym_sink] = ACTIONS(4288), + [sym_integer] = ACTIONS(4288), + [sym_float] = ACTIONS(4286), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym_multiline_string] = ACTIONS(4286), + [sym_character] = ACTIONS(4286), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4286), + }, + [STATE(1798)] = { + [ts_builtin_sym_end] = ACTIONS(4290), + [sym_identifier] = ACTIONS(4292), + [anon_sym_import] = ACTIONS(4292), + [anon_sym_test] = ACTIONS(4292), + [anon_sym_hide] = ACTIONS(4292), + [anon_sym_func] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(4290), + [anon_sym_RPAREN] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4290), + [anon_sym_RBRACE] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_DOLLAR] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4290), + [anon_sym_void] = ACTIONS(4292), + [anon_sym_type] = ACTIONS(4292), + [anon_sym_anyopaque] = ACTIONS(4292), + [anon_sym_bool] = ACTIONS(4292), + [anon_sym_int] = ACTIONS(4292), + [anon_sym_uint] = ACTIONS(4292), + [anon_sym_float] = ACTIONS(4292), + [anon_sym_range] = ACTIONS(4292), + [anon_sym_i8] = ACTIONS(4292), + [anon_sym_i16] = ACTIONS(4292), + [anon_sym_i32] = ACTIONS(4292), + [anon_sym_i64] = ACTIONS(4292), + [anon_sym_u8] = ACTIONS(4292), + [anon_sym_u16] = ACTIONS(4292), + [anon_sym_u32] = ACTIONS(4292), + [anon_sym_u64] = ACTIONS(4292), + [anon_sym_isize] = ACTIONS(4292), + [anon_sym_usize] = ACTIONS(4292), + [anon_sym_f32] = ACTIONS(4292), + [anon_sym_f64] = ACTIONS(4292), + [anon_sym_c_char] = ACTIONS(4292), + [anon_sym_c_schar] = ACTIONS(4292), + [anon_sym_c_uchar] = ACTIONS(4292), + [anon_sym_c_short] = ACTIONS(4292), + [anon_sym_c_ushort] = ACTIONS(4292), + [anon_sym_c_int] = ACTIONS(4292), + [anon_sym_c_uint] = ACTIONS(4292), + [anon_sym_c_long] = ACTIONS(4292), + [anon_sym_c_ulong] = ACTIONS(4292), + [anon_sym_c_longlong] = ACTIONS(4292), + [anon_sym_c_ulonglong] = ACTIONS(4292), + [anon_sym_c_float] = ACTIONS(4292), + [anon_sym_c_double] = ACTIONS(4292), + [anon_sym_c_longdouble] = ACTIONS(4292), + [anon_sym_return] = ACTIONS(4292), + [anon_sym_yield] = ACTIONS(4292), + [anon_sym_break] = ACTIONS(4292), + [anon_sym_continue] = ACTIONS(4292), + [anon_sym_defer] = ACTIONS(4292), + [anon_sym_errdefer] = ACTIONS(4292), + [anon_sym_if] = ACTIONS(4292), + [anon_sym_else] = ACTIONS(4292), + [anon_sym_while] = ACTIONS(4292), + [anon_sym_expand] = ACTIONS(4292), + [anon_sym_for] = ACTIONS(4292), + [anon_sym_match] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_TILDE] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_true] = ACTIONS(4292), + [anon_sym_false] = ACTIONS(4292), + [sym_none] = ACTIONS(4292), + [sym_undefined] = ACTIONS(4292), + [sym_sink] = ACTIONS(4292), + [sym_integer] = ACTIONS(4292), + [sym_float] = ACTIONS(4290), + [anon_sym_DQUOTE] = ACTIONS(4290), + [sym_multiline_string] = ACTIONS(4290), + [sym_character] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4290), + }, + [STATE(1799)] = { + [ts_builtin_sym_end] = ACTIONS(4294), + [sym_identifier] = ACTIONS(4296), + [anon_sym_import] = ACTIONS(4296), + [anon_sym_test] = ACTIONS(4296), + [anon_sym_hide] = ACTIONS(4296), + [anon_sym_func] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4294), + [anon_sym_RPAREN] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4294), + [anon_sym_RBRACE] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_DOLLAR] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_void] = ACTIONS(4296), + [anon_sym_type] = ACTIONS(4296), + [anon_sym_anyopaque] = ACTIONS(4296), + [anon_sym_bool] = ACTIONS(4296), + [anon_sym_int] = ACTIONS(4296), + [anon_sym_uint] = ACTIONS(4296), + [anon_sym_float] = ACTIONS(4296), + [anon_sym_range] = ACTIONS(4296), + [anon_sym_i8] = ACTIONS(4296), + [anon_sym_i16] = ACTIONS(4296), + [anon_sym_i32] = ACTIONS(4296), + [anon_sym_i64] = ACTIONS(4296), + [anon_sym_u8] = ACTIONS(4296), + [anon_sym_u16] = ACTIONS(4296), + [anon_sym_u32] = ACTIONS(4296), + [anon_sym_u64] = ACTIONS(4296), + [anon_sym_isize] = ACTIONS(4296), + [anon_sym_usize] = ACTIONS(4296), + [anon_sym_f32] = ACTIONS(4296), + [anon_sym_f64] = ACTIONS(4296), + [anon_sym_c_char] = ACTIONS(4296), + [anon_sym_c_schar] = ACTIONS(4296), + [anon_sym_c_uchar] = ACTIONS(4296), + [anon_sym_c_short] = ACTIONS(4296), + [anon_sym_c_ushort] = ACTIONS(4296), + [anon_sym_c_int] = ACTIONS(4296), + [anon_sym_c_uint] = ACTIONS(4296), + [anon_sym_c_long] = ACTIONS(4296), + [anon_sym_c_ulong] = ACTIONS(4296), + [anon_sym_c_longlong] = ACTIONS(4296), + [anon_sym_c_ulonglong] = ACTIONS(4296), + [anon_sym_c_float] = ACTIONS(4296), + [anon_sym_c_double] = ACTIONS(4296), + [anon_sym_c_longdouble] = ACTIONS(4296), + [anon_sym_return] = ACTIONS(4296), + [anon_sym_yield] = ACTIONS(4296), + [anon_sym_break] = ACTIONS(4296), + [anon_sym_continue] = ACTIONS(4296), + [anon_sym_defer] = ACTIONS(4296), + [anon_sym_errdefer] = ACTIONS(4296), + [anon_sym_if] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4296), + [anon_sym_while] = ACTIONS(4296), + [anon_sym_expand] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(4296), + [anon_sym_match] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_TILDE] = ACTIONS(4294), + [anon_sym_try] = ACTIONS(4296), + [anon_sym_DOT] = ACTIONS(4294), + [anon_sym_true] = ACTIONS(4296), + [anon_sym_false] = ACTIONS(4296), + [sym_none] = ACTIONS(4296), + [sym_undefined] = ACTIONS(4296), + [sym_sink] = ACTIONS(4296), + [sym_integer] = ACTIONS(4296), + [sym_float] = ACTIONS(4294), + [anon_sym_DQUOTE] = ACTIONS(4294), + [sym_multiline_string] = ACTIONS(4294), + [sym_character] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4294), + }, + [STATE(1800)] = { + [ts_builtin_sym_end] = ACTIONS(4298), + [sym_identifier] = ACTIONS(4300), + [anon_sym_import] = ACTIONS(4300), + [anon_sym_test] = ACTIONS(4300), + [anon_sym_hide] = ACTIONS(4300), + [anon_sym_func] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_struct] = ACTIONS(4300), + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_RPAREN] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4298), + [anon_sym_RBRACE] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_DOLLAR] = ACTIONS(4298), + [anon_sym_LBRACK] = ACTIONS(4298), + [anon_sym_void] = ACTIONS(4300), + [anon_sym_type] = ACTIONS(4300), + [anon_sym_anyopaque] = ACTIONS(4300), + [anon_sym_bool] = ACTIONS(4300), + [anon_sym_int] = ACTIONS(4300), + [anon_sym_uint] = ACTIONS(4300), + [anon_sym_float] = ACTIONS(4300), + [anon_sym_range] = ACTIONS(4300), + [anon_sym_i8] = ACTIONS(4300), + [anon_sym_i16] = ACTIONS(4300), + [anon_sym_i32] = ACTIONS(4300), + [anon_sym_i64] = ACTIONS(4300), + [anon_sym_u8] = ACTIONS(4300), + [anon_sym_u16] = ACTIONS(4300), + [anon_sym_u32] = ACTIONS(4300), + [anon_sym_u64] = ACTIONS(4300), + [anon_sym_isize] = ACTIONS(4300), + [anon_sym_usize] = ACTIONS(4300), + [anon_sym_f32] = ACTIONS(4300), + [anon_sym_f64] = ACTIONS(4300), + [anon_sym_c_char] = ACTIONS(4300), + [anon_sym_c_schar] = ACTIONS(4300), + [anon_sym_c_uchar] = ACTIONS(4300), + [anon_sym_c_short] = ACTIONS(4300), + [anon_sym_c_ushort] = ACTIONS(4300), + [anon_sym_c_int] = ACTIONS(4300), + [anon_sym_c_uint] = ACTIONS(4300), + [anon_sym_c_long] = ACTIONS(4300), + [anon_sym_c_ulong] = ACTIONS(4300), + [anon_sym_c_longlong] = ACTIONS(4300), + [anon_sym_c_ulonglong] = ACTIONS(4300), + [anon_sym_c_float] = ACTIONS(4300), + [anon_sym_c_double] = ACTIONS(4300), + [anon_sym_c_longdouble] = ACTIONS(4300), + [anon_sym_return] = ACTIONS(4300), + [anon_sym_yield] = ACTIONS(4300), + [anon_sym_break] = ACTIONS(4300), + [anon_sym_continue] = ACTIONS(4300), + [anon_sym_defer] = ACTIONS(4300), + [anon_sym_errdefer] = ACTIONS(4300), + [anon_sym_if] = ACTIONS(4300), + [anon_sym_else] = ACTIONS(4300), + [anon_sym_while] = ACTIONS(4300), + [anon_sym_expand] = ACTIONS(4300), + [anon_sym_for] = ACTIONS(4300), + [anon_sym_match] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_TILDE] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4300), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [sym_none] = ACTIONS(4300), + [sym_undefined] = ACTIONS(4300), + [sym_sink] = ACTIONS(4300), + [sym_integer] = ACTIONS(4300), + [sym_float] = ACTIONS(4298), + [anon_sym_DQUOTE] = ACTIONS(4298), + [sym_multiline_string] = ACTIONS(4298), + [sym_character] = ACTIONS(4298), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4298), + }, + [STATE(1801)] = { + [ts_builtin_sym_end] = ACTIONS(4302), + [sym_identifier] = ACTIONS(4304), + [anon_sym_import] = ACTIONS(4304), + [anon_sym_test] = ACTIONS(4304), + [anon_sym_hide] = ACTIONS(4304), + [anon_sym_func] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_struct] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_RPAREN] = ACTIONS(4302), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4302), + [anon_sym_DOLLAR] = ACTIONS(4302), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_void] = ACTIONS(4304), + [anon_sym_type] = ACTIONS(4304), + [anon_sym_anyopaque] = ACTIONS(4304), + [anon_sym_bool] = ACTIONS(4304), + [anon_sym_int] = ACTIONS(4304), + [anon_sym_uint] = ACTIONS(4304), + [anon_sym_float] = ACTIONS(4304), + [anon_sym_range] = ACTIONS(4304), + [anon_sym_i8] = ACTIONS(4304), + [anon_sym_i16] = ACTIONS(4304), + [anon_sym_i32] = ACTIONS(4304), + [anon_sym_i64] = ACTIONS(4304), + [anon_sym_u8] = ACTIONS(4304), + [anon_sym_u16] = ACTIONS(4304), + [anon_sym_u32] = ACTIONS(4304), + [anon_sym_u64] = ACTIONS(4304), + [anon_sym_isize] = ACTIONS(4304), + [anon_sym_usize] = ACTIONS(4304), + [anon_sym_f32] = ACTIONS(4304), + [anon_sym_f64] = ACTIONS(4304), + [anon_sym_c_char] = ACTIONS(4304), + [anon_sym_c_schar] = ACTIONS(4304), + [anon_sym_c_uchar] = ACTIONS(4304), + [anon_sym_c_short] = ACTIONS(4304), + [anon_sym_c_ushort] = ACTIONS(4304), + [anon_sym_c_int] = ACTIONS(4304), + [anon_sym_c_uint] = ACTIONS(4304), + [anon_sym_c_long] = ACTIONS(4304), + [anon_sym_c_ulong] = ACTIONS(4304), + [anon_sym_c_longlong] = ACTIONS(4304), + [anon_sym_c_ulonglong] = ACTIONS(4304), + [anon_sym_c_float] = ACTIONS(4304), + [anon_sym_c_double] = ACTIONS(4304), + [anon_sym_c_longdouble] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_yield] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_defer] = ACTIONS(4304), + [anon_sym_errdefer] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_while] = ACTIONS(4304), + [anon_sym_expand] = ACTIONS(4304), + [anon_sym_for] = ACTIONS(4304), + [anon_sym_match] = ACTIONS(4304), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4302), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [sym_none] = ACTIONS(4304), + [sym_undefined] = ACTIONS(4304), + [sym_sink] = ACTIONS(4304), + [sym_integer] = ACTIONS(4304), + [sym_float] = ACTIONS(4302), + [anon_sym_DQUOTE] = ACTIONS(4302), + [sym_multiline_string] = ACTIONS(4302), + [sym_character] = ACTIONS(4302), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4302), + }, + [STATE(1802)] = { + [ts_builtin_sym_end] = ACTIONS(4306), + [sym_identifier] = ACTIONS(4308), + [anon_sym_import] = ACTIONS(4308), + [anon_sym_test] = ACTIONS(4308), + [anon_sym_hide] = ACTIONS(4308), + [anon_sym_func] = ACTIONS(4308), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_struct] = ACTIONS(4308), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_RPAREN] = ACTIONS(4306), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_DASH] = ACTIONS(4306), + [anon_sym_DOLLAR] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_void] = ACTIONS(4308), + [anon_sym_type] = ACTIONS(4308), + [anon_sym_anyopaque] = ACTIONS(4308), + [anon_sym_bool] = ACTIONS(4308), + [anon_sym_int] = ACTIONS(4308), + [anon_sym_uint] = ACTIONS(4308), + [anon_sym_float] = ACTIONS(4308), + [anon_sym_range] = ACTIONS(4308), + [anon_sym_i8] = ACTIONS(4308), + [anon_sym_i16] = ACTIONS(4308), + [anon_sym_i32] = ACTIONS(4308), + [anon_sym_i64] = ACTIONS(4308), + [anon_sym_u8] = ACTIONS(4308), + [anon_sym_u16] = ACTIONS(4308), + [anon_sym_u32] = ACTIONS(4308), + [anon_sym_u64] = ACTIONS(4308), + [anon_sym_isize] = ACTIONS(4308), + [anon_sym_usize] = ACTIONS(4308), + [anon_sym_f32] = ACTIONS(4308), + [anon_sym_f64] = ACTIONS(4308), + [anon_sym_c_char] = ACTIONS(4308), + [anon_sym_c_schar] = ACTIONS(4308), + [anon_sym_c_uchar] = ACTIONS(4308), + [anon_sym_c_short] = ACTIONS(4308), + [anon_sym_c_ushort] = ACTIONS(4308), + [anon_sym_c_int] = ACTIONS(4308), + [anon_sym_c_uint] = ACTIONS(4308), + [anon_sym_c_long] = ACTIONS(4308), + [anon_sym_c_ulong] = ACTIONS(4308), + [anon_sym_c_longlong] = ACTIONS(4308), + [anon_sym_c_ulonglong] = ACTIONS(4308), + [anon_sym_c_float] = ACTIONS(4308), + [anon_sym_c_double] = ACTIONS(4308), + [anon_sym_c_longdouble] = ACTIONS(4308), + [anon_sym_return] = ACTIONS(4308), + [anon_sym_yield] = ACTIONS(4308), + [anon_sym_break] = ACTIONS(4308), + [anon_sym_continue] = ACTIONS(4308), + [anon_sym_defer] = ACTIONS(4308), + [anon_sym_errdefer] = ACTIONS(4308), + [anon_sym_if] = ACTIONS(4308), + [anon_sym_else] = ACTIONS(4308), + [anon_sym_while] = ACTIONS(4308), + [anon_sym_expand] = ACTIONS(4308), + [anon_sym_for] = ACTIONS(4308), + [anon_sym_match] = ACTIONS(4308), + [anon_sym_AMP] = ACTIONS(4306), + [anon_sym_TILDE] = ACTIONS(4306), + [anon_sym_try] = ACTIONS(4308), + [anon_sym_DOT] = ACTIONS(4306), + [anon_sym_true] = ACTIONS(4308), + [anon_sym_false] = ACTIONS(4308), + [sym_none] = ACTIONS(4308), + [sym_undefined] = ACTIONS(4308), + [sym_sink] = ACTIONS(4308), + [sym_integer] = ACTIONS(4308), + [sym_float] = ACTIONS(4306), + [anon_sym_DQUOTE] = ACTIONS(4306), + [sym_multiline_string] = ACTIONS(4306), + [sym_character] = ACTIONS(4306), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4306), + }, + [STATE(1803)] = { + [ts_builtin_sym_end] = ACTIONS(4310), + [sym_identifier] = ACTIONS(4312), + [anon_sym_import] = ACTIONS(4312), + [anon_sym_test] = ACTIONS(4312), + [anon_sym_hide] = ACTIONS(4312), + [anon_sym_func] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [anon_sym_DOLLAR] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_void] = ACTIONS(4312), + [anon_sym_type] = ACTIONS(4312), + [anon_sym_anyopaque] = ACTIONS(4312), + [anon_sym_bool] = ACTIONS(4312), + [anon_sym_int] = ACTIONS(4312), + [anon_sym_uint] = ACTIONS(4312), + [anon_sym_float] = ACTIONS(4312), + [anon_sym_range] = ACTIONS(4312), + [anon_sym_i8] = ACTIONS(4312), + [anon_sym_i16] = ACTIONS(4312), + [anon_sym_i32] = ACTIONS(4312), + [anon_sym_i64] = ACTIONS(4312), + [anon_sym_u8] = ACTIONS(4312), + [anon_sym_u16] = ACTIONS(4312), + [anon_sym_u32] = ACTIONS(4312), + [anon_sym_u64] = ACTIONS(4312), + [anon_sym_isize] = ACTIONS(4312), + [anon_sym_usize] = ACTIONS(4312), + [anon_sym_f32] = ACTIONS(4312), + [anon_sym_f64] = ACTIONS(4312), + [anon_sym_c_char] = ACTIONS(4312), + [anon_sym_c_schar] = ACTIONS(4312), + [anon_sym_c_uchar] = ACTIONS(4312), + [anon_sym_c_short] = ACTIONS(4312), + [anon_sym_c_ushort] = ACTIONS(4312), + [anon_sym_c_int] = ACTIONS(4312), + [anon_sym_c_uint] = ACTIONS(4312), + [anon_sym_c_long] = ACTIONS(4312), + [anon_sym_c_ulong] = ACTIONS(4312), + [anon_sym_c_longlong] = ACTIONS(4312), + [anon_sym_c_ulonglong] = ACTIONS(4312), + [anon_sym_c_float] = ACTIONS(4312), + [anon_sym_c_double] = ACTIONS(4312), + [anon_sym_c_longdouble] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_yield] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_defer] = ACTIONS(4312), + [anon_sym_errdefer] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_expand] = ACTIONS(4312), + [anon_sym_for] = ACTIONS(4312), + [anon_sym_match] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(4310), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [sym_none] = ACTIONS(4312), + [sym_undefined] = ACTIONS(4312), + [sym_sink] = ACTIONS(4312), + [sym_integer] = ACTIONS(4312), + [sym_float] = ACTIONS(4310), + [anon_sym_DQUOTE] = ACTIONS(4310), + [sym_multiline_string] = ACTIONS(4310), + [sym_character] = ACTIONS(4310), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4310), + }, + [STATE(1804)] = { + [ts_builtin_sym_end] = ACTIONS(4314), + [sym_identifier] = ACTIONS(4316), + [anon_sym_import] = ACTIONS(4316), + [anon_sym_test] = ACTIONS(4316), + [anon_sym_hide] = ACTIONS(4316), + [anon_sym_func] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_struct] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym_RPAREN] = ACTIONS(4314), + [anon_sym_LBRACE] = ACTIONS(4314), + [anon_sym_RBRACE] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [anon_sym_DOLLAR] = ACTIONS(4314), + [anon_sym_LBRACK] = ACTIONS(4314), + [anon_sym_void] = ACTIONS(4316), + [anon_sym_type] = ACTIONS(4316), + [anon_sym_anyopaque] = ACTIONS(4316), + [anon_sym_bool] = ACTIONS(4316), + [anon_sym_int] = ACTIONS(4316), + [anon_sym_uint] = ACTIONS(4316), + [anon_sym_float] = ACTIONS(4316), + [anon_sym_range] = ACTIONS(4316), + [anon_sym_i8] = ACTIONS(4316), + [anon_sym_i16] = ACTIONS(4316), + [anon_sym_i32] = ACTIONS(4316), + [anon_sym_i64] = ACTIONS(4316), + [anon_sym_u8] = ACTIONS(4316), + [anon_sym_u16] = ACTIONS(4316), + [anon_sym_u32] = ACTIONS(4316), + [anon_sym_u64] = ACTIONS(4316), + [anon_sym_isize] = ACTIONS(4316), + [anon_sym_usize] = ACTIONS(4316), + [anon_sym_f32] = ACTIONS(4316), + [anon_sym_f64] = ACTIONS(4316), + [anon_sym_c_char] = ACTIONS(4316), + [anon_sym_c_schar] = ACTIONS(4316), + [anon_sym_c_uchar] = ACTIONS(4316), + [anon_sym_c_short] = ACTIONS(4316), + [anon_sym_c_ushort] = ACTIONS(4316), + [anon_sym_c_int] = ACTIONS(4316), + [anon_sym_c_uint] = ACTIONS(4316), + [anon_sym_c_long] = ACTIONS(4316), + [anon_sym_c_ulong] = ACTIONS(4316), + [anon_sym_c_longlong] = ACTIONS(4316), + [anon_sym_c_ulonglong] = ACTIONS(4316), + [anon_sym_c_float] = ACTIONS(4316), + [anon_sym_c_double] = ACTIONS(4316), + [anon_sym_c_longdouble] = ACTIONS(4316), + [anon_sym_return] = ACTIONS(4316), + [anon_sym_yield] = ACTIONS(4316), + [anon_sym_break] = ACTIONS(4316), + [anon_sym_continue] = ACTIONS(4316), + [anon_sym_defer] = ACTIONS(4316), + [anon_sym_errdefer] = ACTIONS(4316), + [anon_sym_if] = ACTIONS(4316), + [anon_sym_else] = ACTIONS(4316), + [anon_sym_while] = ACTIONS(4316), + [anon_sym_expand] = ACTIONS(4316), + [anon_sym_for] = ACTIONS(4316), + [anon_sym_match] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [anon_sym_TILDE] = ACTIONS(4314), + [anon_sym_try] = ACTIONS(4316), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_true] = ACTIONS(4316), + [anon_sym_false] = ACTIONS(4316), + [sym_none] = ACTIONS(4316), + [sym_undefined] = ACTIONS(4316), + [sym_sink] = ACTIONS(4316), + [sym_integer] = ACTIONS(4316), + [sym_float] = ACTIONS(4314), + [anon_sym_DQUOTE] = ACTIONS(4314), + [sym_multiline_string] = ACTIONS(4314), + [sym_character] = ACTIONS(4314), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4314), + }, + [STATE(1805)] = { + [ts_builtin_sym_end] = ACTIONS(4318), + [sym_identifier] = ACTIONS(4320), + [anon_sym_import] = ACTIONS(4320), + [anon_sym_test] = ACTIONS(4320), + [anon_sym_hide] = ACTIONS(4320), + [anon_sym_func] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_struct] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4318), + [anon_sym_RPAREN] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4318), + [anon_sym_RBRACE] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_DOLLAR] = ACTIONS(4318), + [anon_sym_LBRACK] = ACTIONS(4318), + [anon_sym_void] = ACTIONS(4320), + [anon_sym_type] = ACTIONS(4320), + [anon_sym_anyopaque] = ACTIONS(4320), + [anon_sym_bool] = ACTIONS(4320), + [anon_sym_int] = ACTIONS(4320), + [anon_sym_uint] = ACTIONS(4320), + [anon_sym_float] = ACTIONS(4320), + [anon_sym_range] = ACTIONS(4320), + [anon_sym_i8] = ACTIONS(4320), + [anon_sym_i16] = ACTIONS(4320), + [anon_sym_i32] = ACTIONS(4320), + [anon_sym_i64] = ACTIONS(4320), + [anon_sym_u8] = ACTIONS(4320), + [anon_sym_u16] = ACTIONS(4320), + [anon_sym_u32] = ACTIONS(4320), + [anon_sym_u64] = ACTIONS(4320), + [anon_sym_isize] = ACTIONS(4320), + [anon_sym_usize] = ACTIONS(4320), + [anon_sym_f32] = ACTIONS(4320), + [anon_sym_f64] = ACTIONS(4320), + [anon_sym_c_char] = ACTIONS(4320), + [anon_sym_c_schar] = ACTIONS(4320), + [anon_sym_c_uchar] = ACTIONS(4320), + [anon_sym_c_short] = ACTIONS(4320), + [anon_sym_c_ushort] = ACTIONS(4320), + [anon_sym_c_int] = ACTIONS(4320), + [anon_sym_c_uint] = ACTIONS(4320), + [anon_sym_c_long] = ACTIONS(4320), + [anon_sym_c_ulong] = ACTIONS(4320), + [anon_sym_c_longlong] = ACTIONS(4320), + [anon_sym_c_ulonglong] = ACTIONS(4320), + [anon_sym_c_float] = ACTIONS(4320), + [anon_sym_c_double] = ACTIONS(4320), + [anon_sym_c_longdouble] = ACTIONS(4320), + [anon_sym_return] = ACTIONS(4320), + [anon_sym_yield] = ACTIONS(4320), + [anon_sym_break] = ACTIONS(4320), + [anon_sym_continue] = ACTIONS(4320), + [anon_sym_defer] = ACTIONS(4320), + [anon_sym_errdefer] = ACTIONS(4320), + [anon_sym_if] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4320), + [anon_sym_while] = ACTIONS(4320), + [anon_sym_expand] = ACTIONS(4320), + [anon_sym_for] = ACTIONS(4320), + [anon_sym_match] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4320), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_true] = ACTIONS(4320), + [anon_sym_false] = ACTIONS(4320), + [sym_none] = ACTIONS(4320), + [sym_undefined] = ACTIONS(4320), + [sym_sink] = ACTIONS(4320), + [sym_integer] = ACTIONS(4320), + [sym_float] = ACTIONS(4318), + [anon_sym_DQUOTE] = ACTIONS(4318), + [sym_multiline_string] = ACTIONS(4318), + [sym_character] = ACTIONS(4318), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4318), + }, + [STATE(1806)] = { + [ts_builtin_sym_end] = ACTIONS(4322), + [sym_identifier] = ACTIONS(4324), + [anon_sym_import] = ACTIONS(4324), + [anon_sym_test] = ACTIONS(4324), + [anon_sym_hide] = ACTIONS(4324), + [anon_sym_func] = ACTIONS(4324), + [anon_sym_BANG] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4322), + [anon_sym_RPAREN] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_DASH] = ACTIONS(4322), + [anon_sym_DOLLAR] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_void] = ACTIONS(4324), + [anon_sym_type] = ACTIONS(4324), + [anon_sym_anyopaque] = ACTIONS(4324), + [anon_sym_bool] = ACTIONS(4324), + [anon_sym_int] = ACTIONS(4324), + [anon_sym_uint] = ACTIONS(4324), + [anon_sym_float] = ACTIONS(4324), + [anon_sym_range] = ACTIONS(4324), + [anon_sym_i8] = ACTIONS(4324), + [anon_sym_i16] = ACTIONS(4324), + [anon_sym_i32] = ACTIONS(4324), + [anon_sym_i64] = ACTIONS(4324), + [anon_sym_u8] = ACTIONS(4324), + [anon_sym_u16] = ACTIONS(4324), + [anon_sym_u32] = ACTIONS(4324), + [anon_sym_u64] = ACTIONS(4324), + [anon_sym_isize] = ACTIONS(4324), + [anon_sym_usize] = ACTIONS(4324), + [anon_sym_f32] = ACTIONS(4324), + [anon_sym_f64] = ACTIONS(4324), + [anon_sym_c_char] = ACTIONS(4324), + [anon_sym_c_schar] = ACTIONS(4324), + [anon_sym_c_uchar] = ACTIONS(4324), + [anon_sym_c_short] = ACTIONS(4324), + [anon_sym_c_ushort] = ACTIONS(4324), + [anon_sym_c_int] = ACTIONS(4324), + [anon_sym_c_uint] = ACTIONS(4324), + [anon_sym_c_long] = ACTIONS(4324), + [anon_sym_c_ulong] = ACTIONS(4324), + [anon_sym_c_longlong] = ACTIONS(4324), + [anon_sym_c_ulonglong] = ACTIONS(4324), + [anon_sym_c_float] = ACTIONS(4324), + [anon_sym_c_double] = ACTIONS(4324), + [anon_sym_c_longdouble] = ACTIONS(4324), + [anon_sym_return] = ACTIONS(4324), + [anon_sym_yield] = ACTIONS(4324), + [anon_sym_break] = ACTIONS(4324), + [anon_sym_continue] = ACTIONS(4324), + [anon_sym_defer] = ACTIONS(4324), + [anon_sym_errdefer] = ACTIONS(4324), + [anon_sym_if] = ACTIONS(4324), + [anon_sym_else] = ACTIONS(4324), + [anon_sym_while] = ACTIONS(4324), + [anon_sym_expand] = ACTIONS(4324), + [anon_sym_for] = ACTIONS(4324), + [anon_sym_match] = ACTIONS(4324), + [anon_sym_AMP] = ACTIONS(4322), + [anon_sym_TILDE] = ACTIONS(4322), + [anon_sym_try] = ACTIONS(4324), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_true] = ACTIONS(4324), + [anon_sym_false] = ACTIONS(4324), + [sym_none] = ACTIONS(4324), + [sym_undefined] = ACTIONS(4324), + [sym_sink] = ACTIONS(4324), + [sym_integer] = ACTIONS(4324), + [sym_float] = ACTIONS(4322), + [anon_sym_DQUOTE] = ACTIONS(4322), + [sym_multiline_string] = ACTIONS(4322), + [sym_character] = ACTIONS(4322), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4322), + }, + [STATE(1807)] = { + [ts_builtin_sym_end] = ACTIONS(4326), + [sym_identifier] = ACTIONS(4328), + [anon_sym_import] = ACTIONS(4328), + [anon_sym_test] = ACTIONS(4328), + [anon_sym_hide] = ACTIONS(4328), + [anon_sym_func] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_struct] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4326), + [anon_sym_RBRACE] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4326), + [anon_sym_LBRACK] = ACTIONS(4326), + [anon_sym_void] = ACTIONS(4328), + [anon_sym_type] = ACTIONS(4328), + [anon_sym_anyopaque] = ACTIONS(4328), + [anon_sym_bool] = ACTIONS(4328), + [anon_sym_int] = ACTIONS(4328), + [anon_sym_uint] = ACTIONS(4328), + [anon_sym_float] = ACTIONS(4328), + [anon_sym_range] = ACTIONS(4328), + [anon_sym_i8] = ACTIONS(4328), + [anon_sym_i16] = ACTIONS(4328), + [anon_sym_i32] = ACTIONS(4328), + [anon_sym_i64] = ACTIONS(4328), + [anon_sym_u8] = ACTIONS(4328), + [anon_sym_u16] = ACTIONS(4328), + [anon_sym_u32] = ACTIONS(4328), + [anon_sym_u64] = ACTIONS(4328), + [anon_sym_isize] = ACTIONS(4328), + [anon_sym_usize] = ACTIONS(4328), + [anon_sym_f32] = ACTIONS(4328), + [anon_sym_f64] = ACTIONS(4328), + [anon_sym_c_char] = ACTIONS(4328), + [anon_sym_c_schar] = ACTIONS(4328), + [anon_sym_c_uchar] = ACTIONS(4328), + [anon_sym_c_short] = ACTIONS(4328), + [anon_sym_c_ushort] = ACTIONS(4328), + [anon_sym_c_int] = ACTIONS(4328), + [anon_sym_c_uint] = ACTIONS(4328), + [anon_sym_c_long] = ACTIONS(4328), + [anon_sym_c_ulong] = ACTIONS(4328), + [anon_sym_c_longlong] = ACTIONS(4328), + [anon_sym_c_ulonglong] = ACTIONS(4328), + [anon_sym_c_float] = ACTIONS(4328), + [anon_sym_c_double] = ACTIONS(4328), + [anon_sym_c_longdouble] = ACTIONS(4328), + [anon_sym_return] = ACTIONS(4328), + [anon_sym_yield] = ACTIONS(4328), + [anon_sym_break] = ACTIONS(4328), + [anon_sym_continue] = ACTIONS(4328), + [anon_sym_defer] = ACTIONS(4328), + [anon_sym_errdefer] = ACTIONS(4328), + [anon_sym_if] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4328), + [anon_sym_while] = ACTIONS(4328), + [anon_sym_expand] = ACTIONS(4328), + [anon_sym_for] = ACTIONS(4328), + [anon_sym_match] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4326), + [anon_sym_TILDE] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_true] = ACTIONS(4328), + [anon_sym_false] = ACTIONS(4328), + [sym_none] = ACTIONS(4328), + [sym_undefined] = ACTIONS(4328), + [sym_sink] = ACTIONS(4328), + [sym_integer] = ACTIONS(4328), + [sym_float] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4326), + [sym_multiline_string] = ACTIONS(4326), + [sym_character] = ACTIONS(4326), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4326), + }, + [STATE(1808)] = { + [ts_builtin_sym_end] = ACTIONS(4330), + [sym_identifier] = ACTIONS(4332), + [anon_sym_import] = ACTIONS(4332), + [anon_sym_test] = ACTIONS(4332), + [anon_sym_hide] = ACTIONS(4332), + [anon_sym_func] = ACTIONS(4332), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_struct] = ACTIONS(4332), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_RBRACE] = ACTIONS(4330), + [anon_sym_DASH] = ACTIONS(4330), + [anon_sym_DOLLAR] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(4330), + [anon_sym_void] = ACTIONS(4332), + [anon_sym_type] = ACTIONS(4332), + [anon_sym_anyopaque] = ACTIONS(4332), + [anon_sym_bool] = ACTIONS(4332), + [anon_sym_int] = ACTIONS(4332), + [anon_sym_uint] = ACTIONS(4332), + [anon_sym_float] = ACTIONS(4332), + [anon_sym_range] = ACTIONS(4332), + [anon_sym_i8] = ACTIONS(4332), + [anon_sym_i16] = ACTIONS(4332), + [anon_sym_i32] = ACTIONS(4332), + [anon_sym_i64] = ACTIONS(4332), + [anon_sym_u8] = ACTIONS(4332), + [anon_sym_u16] = ACTIONS(4332), + [anon_sym_u32] = ACTIONS(4332), + [anon_sym_u64] = ACTIONS(4332), + [anon_sym_isize] = ACTIONS(4332), + [anon_sym_usize] = ACTIONS(4332), + [anon_sym_f32] = ACTIONS(4332), + [anon_sym_f64] = ACTIONS(4332), + [anon_sym_c_char] = ACTIONS(4332), + [anon_sym_c_schar] = ACTIONS(4332), + [anon_sym_c_uchar] = ACTIONS(4332), + [anon_sym_c_short] = ACTIONS(4332), + [anon_sym_c_ushort] = ACTIONS(4332), + [anon_sym_c_int] = ACTIONS(4332), + [anon_sym_c_uint] = ACTIONS(4332), + [anon_sym_c_long] = ACTIONS(4332), + [anon_sym_c_ulong] = ACTIONS(4332), + [anon_sym_c_longlong] = ACTIONS(4332), + [anon_sym_c_ulonglong] = ACTIONS(4332), + [anon_sym_c_float] = ACTIONS(4332), + [anon_sym_c_double] = ACTIONS(4332), + [anon_sym_c_longdouble] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_yield] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_defer] = ACTIONS(4332), + [anon_sym_errdefer] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_expand] = ACTIONS(4332), + [anon_sym_for] = ACTIONS(4332), + [anon_sym_match] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [sym_none] = ACTIONS(4332), + [sym_undefined] = ACTIONS(4332), + [sym_sink] = ACTIONS(4332), + [sym_integer] = ACTIONS(4332), + [sym_float] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4330), + [sym_multiline_string] = ACTIONS(4330), + [sym_character] = ACTIONS(4330), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4330), + }, + [STATE(1809)] = { + [ts_builtin_sym_end] = ACTIONS(4334), + [sym_identifier] = ACTIONS(4336), + [anon_sym_import] = ACTIONS(4336), + [anon_sym_test] = ACTIONS(4336), + [anon_sym_hide] = ACTIONS(4336), + [anon_sym_func] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4334), + [anon_sym_struct] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_DASH] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_void] = ACTIONS(4336), + [anon_sym_type] = ACTIONS(4336), + [anon_sym_anyopaque] = ACTIONS(4336), + [anon_sym_bool] = ACTIONS(4336), + [anon_sym_int] = ACTIONS(4336), + [anon_sym_uint] = ACTIONS(4336), + [anon_sym_float] = ACTIONS(4336), + [anon_sym_range] = ACTIONS(4336), + [anon_sym_i8] = ACTIONS(4336), + [anon_sym_i16] = ACTIONS(4336), + [anon_sym_i32] = ACTIONS(4336), + [anon_sym_i64] = ACTIONS(4336), + [anon_sym_u8] = ACTIONS(4336), + [anon_sym_u16] = ACTIONS(4336), + [anon_sym_u32] = ACTIONS(4336), + [anon_sym_u64] = ACTIONS(4336), + [anon_sym_isize] = ACTIONS(4336), + [anon_sym_usize] = ACTIONS(4336), + [anon_sym_f32] = ACTIONS(4336), + [anon_sym_f64] = ACTIONS(4336), + [anon_sym_c_char] = ACTIONS(4336), + [anon_sym_c_schar] = ACTIONS(4336), + [anon_sym_c_uchar] = ACTIONS(4336), + [anon_sym_c_short] = ACTIONS(4336), + [anon_sym_c_ushort] = ACTIONS(4336), + [anon_sym_c_int] = ACTIONS(4336), + [anon_sym_c_uint] = ACTIONS(4336), + [anon_sym_c_long] = ACTIONS(4336), + [anon_sym_c_ulong] = ACTIONS(4336), + [anon_sym_c_longlong] = ACTIONS(4336), + [anon_sym_c_ulonglong] = ACTIONS(4336), + [anon_sym_c_float] = ACTIONS(4336), + [anon_sym_c_double] = ACTIONS(4336), + [anon_sym_c_longdouble] = ACTIONS(4336), + [anon_sym_return] = ACTIONS(4336), + [anon_sym_yield] = ACTIONS(4336), + [anon_sym_break] = ACTIONS(4336), + [anon_sym_continue] = ACTIONS(4336), + [anon_sym_defer] = ACTIONS(4336), + [anon_sym_errdefer] = ACTIONS(4336), + [anon_sym_if] = ACTIONS(4336), + [anon_sym_else] = ACTIONS(4336), + [anon_sym_while] = ACTIONS(4336), + [anon_sym_expand] = ACTIONS(4336), + [anon_sym_for] = ACTIONS(4336), + [anon_sym_match] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4334), + [anon_sym_TILDE] = ACTIONS(4334), + [anon_sym_try] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4336), + [anon_sym_false] = ACTIONS(4336), + [sym_none] = ACTIONS(4336), + [sym_undefined] = ACTIONS(4336), + [sym_sink] = ACTIONS(4336), + [sym_integer] = ACTIONS(4336), + [sym_float] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [sym_multiline_string] = ACTIONS(4334), + [sym_character] = ACTIONS(4334), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4334), + }, + [STATE(1810)] = { + [ts_builtin_sym_end] = ACTIONS(4338), + [sym_identifier] = ACTIONS(4340), + [anon_sym_import] = ACTIONS(4340), + [anon_sym_test] = ACTIONS(4340), + [anon_sym_hide] = ACTIONS(4340), + [anon_sym_func] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_struct] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym_RPAREN] = ACTIONS(4338), + [anon_sym_LBRACE] = ACTIONS(4338), + [anon_sym_RBRACE] = ACTIONS(4338), + [anon_sym_DASH] = ACTIONS(4338), + [anon_sym_DOLLAR] = ACTIONS(4338), + [anon_sym_LBRACK] = ACTIONS(4338), + [anon_sym_void] = ACTIONS(4340), + [anon_sym_type] = ACTIONS(4340), + [anon_sym_anyopaque] = ACTIONS(4340), + [anon_sym_bool] = ACTIONS(4340), + [anon_sym_int] = ACTIONS(4340), + [anon_sym_uint] = ACTIONS(4340), + [anon_sym_float] = ACTIONS(4340), + [anon_sym_range] = ACTIONS(4340), + [anon_sym_i8] = ACTIONS(4340), + [anon_sym_i16] = ACTIONS(4340), + [anon_sym_i32] = ACTIONS(4340), + [anon_sym_i64] = ACTIONS(4340), + [anon_sym_u8] = ACTIONS(4340), + [anon_sym_u16] = ACTIONS(4340), + [anon_sym_u32] = ACTIONS(4340), + [anon_sym_u64] = ACTIONS(4340), + [anon_sym_isize] = ACTIONS(4340), + [anon_sym_usize] = ACTIONS(4340), + [anon_sym_f32] = ACTIONS(4340), + [anon_sym_f64] = ACTIONS(4340), + [anon_sym_c_char] = ACTIONS(4340), + [anon_sym_c_schar] = ACTIONS(4340), + [anon_sym_c_uchar] = ACTIONS(4340), + [anon_sym_c_short] = ACTIONS(4340), + [anon_sym_c_ushort] = ACTIONS(4340), + [anon_sym_c_int] = ACTIONS(4340), + [anon_sym_c_uint] = ACTIONS(4340), + [anon_sym_c_long] = ACTIONS(4340), + [anon_sym_c_ulong] = ACTIONS(4340), + [anon_sym_c_longlong] = ACTIONS(4340), + [anon_sym_c_ulonglong] = ACTIONS(4340), + [anon_sym_c_float] = ACTIONS(4340), + [anon_sym_c_double] = ACTIONS(4340), + [anon_sym_c_longdouble] = ACTIONS(4340), + [anon_sym_return] = ACTIONS(4340), + [anon_sym_yield] = ACTIONS(4340), + [anon_sym_break] = ACTIONS(4340), + [anon_sym_continue] = ACTIONS(4340), + [anon_sym_defer] = ACTIONS(4340), + [anon_sym_errdefer] = ACTIONS(4340), + [anon_sym_if] = ACTIONS(4340), + [anon_sym_else] = ACTIONS(4340), + [anon_sym_while] = ACTIONS(4340), + [anon_sym_expand] = ACTIONS(4340), + [anon_sym_for] = ACTIONS(4340), + [anon_sym_match] = ACTIONS(4340), + [anon_sym_AMP] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4338), + [anon_sym_try] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_true] = ACTIONS(4340), + [anon_sym_false] = ACTIONS(4340), + [sym_none] = ACTIONS(4340), + [sym_undefined] = ACTIONS(4340), + [sym_sink] = ACTIONS(4340), + [sym_integer] = ACTIONS(4340), + [sym_float] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4338), + [sym_multiline_string] = ACTIONS(4338), + [sym_character] = ACTIONS(4338), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4338), + }, + [STATE(1811)] = { + [ts_builtin_sym_end] = ACTIONS(4342), + [sym_identifier] = ACTIONS(4344), + [anon_sym_import] = ACTIONS(4344), + [anon_sym_test] = ACTIONS(4344), + [anon_sym_hide] = ACTIONS(4344), + [anon_sym_func] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_struct] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_RPAREN] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_void] = ACTIONS(4344), + [anon_sym_type] = ACTIONS(4344), + [anon_sym_anyopaque] = ACTIONS(4344), + [anon_sym_bool] = ACTIONS(4344), + [anon_sym_int] = ACTIONS(4344), + [anon_sym_uint] = ACTIONS(4344), + [anon_sym_float] = ACTIONS(4344), + [anon_sym_range] = ACTIONS(4344), + [anon_sym_i8] = ACTIONS(4344), + [anon_sym_i16] = ACTIONS(4344), + [anon_sym_i32] = ACTIONS(4344), + [anon_sym_i64] = ACTIONS(4344), + [anon_sym_u8] = ACTIONS(4344), + [anon_sym_u16] = ACTIONS(4344), + [anon_sym_u32] = ACTIONS(4344), + [anon_sym_u64] = ACTIONS(4344), + [anon_sym_isize] = ACTIONS(4344), + [anon_sym_usize] = ACTIONS(4344), + [anon_sym_f32] = ACTIONS(4344), + [anon_sym_f64] = ACTIONS(4344), + [anon_sym_c_char] = ACTIONS(4344), + [anon_sym_c_schar] = ACTIONS(4344), + [anon_sym_c_uchar] = ACTIONS(4344), + [anon_sym_c_short] = ACTIONS(4344), + [anon_sym_c_ushort] = ACTIONS(4344), + [anon_sym_c_int] = ACTIONS(4344), + [anon_sym_c_uint] = ACTIONS(4344), + [anon_sym_c_long] = ACTIONS(4344), + [anon_sym_c_ulong] = ACTIONS(4344), + [anon_sym_c_longlong] = ACTIONS(4344), + [anon_sym_c_ulonglong] = ACTIONS(4344), + [anon_sym_c_float] = ACTIONS(4344), + [anon_sym_c_double] = ACTIONS(4344), + [anon_sym_c_longdouble] = ACTIONS(4344), + [anon_sym_return] = ACTIONS(4344), + [anon_sym_yield] = ACTIONS(4344), + [anon_sym_break] = ACTIONS(4344), + [anon_sym_continue] = ACTIONS(4344), + [anon_sym_defer] = ACTIONS(4344), + [anon_sym_errdefer] = ACTIONS(4344), + [anon_sym_if] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4344), + [anon_sym_while] = ACTIONS(4344), + [anon_sym_expand] = ACTIONS(4344), + [anon_sym_for] = ACTIONS(4344), + [anon_sym_match] = ACTIONS(4344), + [anon_sym_AMP] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_true] = ACTIONS(4344), + [anon_sym_false] = ACTIONS(4344), + [sym_none] = ACTIONS(4344), + [sym_undefined] = ACTIONS(4344), + [sym_sink] = ACTIONS(4344), + [sym_integer] = ACTIONS(4344), + [sym_float] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [sym_multiline_string] = ACTIONS(4342), + [sym_character] = ACTIONS(4342), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4342), + }, + [STATE(1812)] = { + [ts_builtin_sym_end] = ACTIONS(4346), + [sym_identifier] = ACTIONS(4348), + [anon_sym_import] = ACTIONS(4348), + [anon_sym_test] = ACTIONS(4348), + [anon_sym_hide] = ACTIONS(4348), + [anon_sym_func] = ACTIONS(4348), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_struct] = ACTIONS(4348), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_RPAREN] = ACTIONS(4346), + [anon_sym_LBRACE] = ACTIONS(4346), + [anon_sym_RBRACE] = ACTIONS(4346), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_void] = ACTIONS(4348), + [anon_sym_type] = ACTIONS(4348), + [anon_sym_anyopaque] = ACTIONS(4348), + [anon_sym_bool] = ACTIONS(4348), + [anon_sym_int] = ACTIONS(4348), + [anon_sym_uint] = ACTIONS(4348), + [anon_sym_float] = ACTIONS(4348), + [anon_sym_range] = ACTIONS(4348), + [anon_sym_i8] = ACTIONS(4348), + [anon_sym_i16] = ACTIONS(4348), + [anon_sym_i32] = ACTIONS(4348), + [anon_sym_i64] = ACTIONS(4348), + [anon_sym_u8] = ACTIONS(4348), + [anon_sym_u16] = ACTIONS(4348), + [anon_sym_u32] = ACTIONS(4348), + [anon_sym_u64] = ACTIONS(4348), + [anon_sym_isize] = ACTIONS(4348), + [anon_sym_usize] = ACTIONS(4348), + [anon_sym_f32] = ACTIONS(4348), + [anon_sym_f64] = ACTIONS(4348), + [anon_sym_c_char] = ACTIONS(4348), + [anon_sym_c_schar] = ACTIONS(4348), + [anon_sym_c_uchar] = ACTIONS(4348), + [anon_sym_c_short] = ACTIONS(4348), + [anon_sym_c_ushort] = ACTIONS(4348), + [anon_sym_c_int] = ACTIONS(4348), + [anon_sym_c_uint] = ACTIONS(4348), + [anon_sym_c_long] = ACTIONS(4348), + [anon_sym_c_ulong] = ACTIONS(4348), + [anon_sym_c_longlong] = ACTIONS(4348), + [anon_sym_c_ulonglong] = ACTIONS(4348), + [anon_sym_c_float] = ACTIONS(4348), + [anon_sym_c_double] = ACTIONS(4348), + [anon_sym_c_longdouble] = ACTIONS(4348), + [anon_sym_return] = ACTIONS(4348), + [anon_sym_yield] = ACTIONS(4348), + [anon_sym_break] = ACTIONS(4348), + [anon_sym_continue] = ACTIONS(4348), + [anon_sym_defer] = ACTIONS(4348), + [anon_sym_errdefer] = ACTIONS(4348), + [anon_sym_if] = ACTIONS(4348), + [anon_sym_else] = ACTIONS(4348), + [anon_sym_while] = ACTIONS(4348), + [anon_sym_expand] = ACTIONS(4348), + [anon_sym_for] = ACTIONS(4348), + [anon_sym_match] = ACTIONS(4348), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4346), + [anon_sym_try] = ACTIONS(4348), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_true] = ACTIONS(4348), + [anon_sym_false] = ACTIONS(4348), + [sym_none] = ACTIONS(4348), + [sym_undefined] = ACTIONS(4348), + [sym_sink] = ACTIONS(4348), + [sym_integer] = ACTIONS(4348), + [sym_float] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4346), + [sym_multiline_string] = ACTIONS(4346), + [sym_character] = ACTIONS(4346), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4346), + }, + [STATE(1813)] = { + [ts_builtin_sym_end] = ACTIONS(4350), + [sym_identifier] = ACTIONS(4352), + [anon_sym_import] = ACTIONS(4352), + [anon_sym_test] = ACTIONS(4352), + [anon_sym_hide] = ACTIONS(4352), + [anon_sym_func] = ACTIONS(4352), + [anon_sym_BANG] = ACTIONS(4350), + [anon_sym_struct] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4350), + [anon_sym_RPAREN] = ACTIONS(4350), + [anon_sym_LBRACE] = ACTIONS(4350), + [anon_sym_RBRACE] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_DOLLAR] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_void] = ACTIONS(4352), + [anon_sym_type] = ACTIONS(4352), + [anon_sym_anyopaque] = ACTIONS(4352), + [anon_sym_bool] = ACTIONS(4352), + [anon_sym_int] = ACTIONS(4352), + [anon_sym_uint] = ACTIONS(4352), + [anon_sym_float] = ACTIONS(4352), + [anon_sym_range] = ACTIONS(4352), + [anon_sym_i8] = ACTIONS(4352), + [anon_sym_i16] = ACTIONS(4352), + [anon_sym_i32] = ACTIONS(4352), + [anon_sym_i64] = ACTIONS(4352), + [anon_sym_u8] = ACTIONS(4352), + [anon_sym_u16] = ACTIONS(4352), + [anon_sym_u32] = ACTIONS(4352), + [anon_sym_u64] = ACTIONS(4352), + [anon_sym_isize] = ACTIONS(4352), + [anon_sym_usize] = ACTIONS(4352), + [anon_sym_f32] = ACTIONS(4352), + [anon_sym_f64] = ACTIONS(4352), + [anon_sym_c_char] = ACTIONS(4352), + [anon_sym_c_schar] = ACTIONS(4352), + [anon_sym_c_uchar] = ACTIONS(4352), + [anon_sym_c_short] = ACTIONS(4352), + [anon_sym_c_ushort] = ACTIONS(4352), + [anon_sym_c_int] = ACTIONS(4352), + [anon_sym_c_uint] = ACTIONS(4352), + [anon_sym_c_long] = ACTIONS(4352), + [anon_sym_c_ulong] = ACTIONS(4352), + [anon_sym_c_longlong] = ACTIONS(4352), + [anon_sym_c_ulonglong] = ACTIONS(4352), + [anon_sym_c_float] = ACTIONS(4352), + [anon_sym_c_double] = ACTIONS(4352), + [anon_sym_c_longdouble] = ACTIONS(4352), + [anon_sym_return] = ACTIONS(4352), + [anon_sym_yield] = ACTIONS(4352), + [anon_sym_break] = ACTIONS(4352), + [anon_sym_continue] = ACTIONS(4352), + [anon_sym_defer] = ACTIONS(4352), + [anon_sym_errdefer] = ACTIONS(4352), + [anon_sym_if] = ACTIONS(4352), + [anon_sym_else] = ACTIONS(4352), + [anon_sym_while] = ACTIONS(4352), + [anon_sym_expand] = ACTIONS(4352), + [anon_sym_for] = ACTIONS(4352), + [anon_sym_match] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4350), + [anon_sym_TILDE] = ACTIONS(4350), + [anon_sym_try] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(4350), + [anon_sym_true] = ACTIONS(4352), + [anon_sym_false] = ACTIONS(4352), + [sym_none] = ACTIONS(4352), + [sym_undefined] = ACTIONS(4352), + [sym_sink] = ACTIONS(4352), + [sym_integer] = ACTIONS(4352), + [sym_float] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4350), + [sym_multiline_string] = ACTIONS(4350), + [sym_character] = ACTIONS(4350), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4350), + }, + [STATE(1814)] = { + [ts_builtin_sym_end] = ACTIONS(4354), + [sym_identifier] = ACTIONS(4356), + [anon_sym_import] = ACTIONS(4356), + [anon_sym_test] = ACTIONS(4356), + [anon_sym_hide] = ACTIONS(4356), + [anon_sym_func] = ACTIONS(4356), + [anon_sym_BANG] = ACTIONS(4354), + [anon_sym_struct] = ACTIONS(4356), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym_RPAREN] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_RBRACE] = ACTIONS(4354), + [anon_sym_DASH] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(4354), + [anon_sym_LBRACK] = ACTIONS(4354), + [anon_sym_void] = ACTIONS(4356), + [anon_sym_type] = ACTIONS(4356), + [anon_sym_anyopaque] = ACTIONS(4356), + [anon_sym_bool] = ACTIONS(4356), + [anon_sym_int] = ACTIONS(4356), + [anon_sym_uint] = ACTIONS(4356), + [anon_sym_float] = ACTIONS(4356), + [anon_sym_range] = ACTIONS(4356), + [anon_sym_i8] = ACTIONS(4356), + [anon_sym_i16] = ACTIONS(4356), + [anon_sym_i32] = ACTIONS(4356), + [anon_sym_i64] = ACTIONS(4356), + [anon_sym_u8] = ACTIONS(4356), + [anon_sym_u16] = ACTIONS(4356), + [anon_sym_u32] = ACTIONS(4356), + [anon_sym_u64] = ACTIONS(4356), + [anon_sym_isize] = ACTIONS(4356), + [anon_sym_usize] = ACTIONS(4356), + [anon_sym_f32] = ACTIONS(4356), + [anon_sym_f64] = ACTIONS(4356), + [anon_sym_c_char] = ACTIONS(4356), + [anon_sym_c_schar] = ACTIONS(4356), + [anon_sym_c_uchar] = ACTIONS(4356), + [anon_sym_c_short] = ACTIONS(4356), + [anon_sym_c_ushort] = ACTIONS(4356), + [anon_sym_c_int] = ACTIONS(4356), + [anon_sym_c_uint] = ACTIONS(4356), + [anon_sym_c_long] = ACTIONS(4356), + [anon_sym_c_ulong] = ACTIONS(4356), + [anon_sym_c_longlong] = ACTIONS(4356), + [anon_sym_c_ulonglong] = ACTIONS(4356), + [anon_sym_c_float] = ACTIONS(4356), + [anon_sym_c_double] = ACTIONS(4356), + [anon_sym_c_longdouble] = ACTIONS(4356), + [anon_sym_return] = ACTIONS(4356), + [anon_sym_yield] = ACTIONS(4356), + [anon_sym_break] = ACTIONS(4356), + [anon_sym_continue] = ACTIONS(4356), + [anon_sym_defer] = ACTIONS(4356), + [anon_sym_errdefer] = ACTIONS(4356), + [anon_sym_if] = ACTIONS(4356), + [anon_sym_else] = ACTIONS(4356), + [anon_sym_while] = ACTIONS(4356), + [anon_sym_expand] = ACTIONS(4356), + [anon_sym_for] = ACTIONS(4356), + [anon_sym_match] = ACTIONS(4356), + [anon_sym_AMP] = ACTIONS(4354), + [anon_sym_TILDE] = ACTIONS(4354), + [anon_sym_try] = ACTIONS(4356), + [anon_sym_DOT] = ACTIONS(4354), + [anon_sym_true] = ACTIONS(4356), + [anon_sym_false] = ACTIONS(4356), + [sym_none] = ACTIONS(4356), + [sym_undefined] = ACTIONS(4356), + [sym_sink] = ACTIONS(4356), + [sym_integer] = ACTIONS(4356), + [sym_float] = ACTIONS(4354), + [anon_sym_DQUOTE] = ACTIONS(4354), + [sym_multiline_string] = ACTIONS(4354), + [sym_character] = ACTIONS(4354), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4354), + }, + [STATE(1815)] = { + [ts_builtin_sym_end] = ACTIONS(4358), + [sym_identifier] = ACTIONS(4360), + [anon_sym_import] = ACTIONS(4360), + [anon_sym_test] = ACTIONS(4360), + [anon_sym_hide] = ACTIONS(4360), + [anon_sym_func] = ACTIONS(4360), + [anon_sym_BANG] = ACTIONS(4358), + [anon_sym_struct] = ACTIONS(4360), + [anon_sym_LPAREN] = ACTIONS(4358), + [anon_sym_RPAREN] = ACTIONS(4358), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_DASH] = ACTIONS(4358), + [anon_sym_DOLLAR] = ACTIONS(4358), + [anon_sym_LBRACK] = ACTIONS(4358), + [anon_sym_void] = ACTIONS(4360), + [anon_sym_type] = ACTIONS(4360), + [anon_sym_anyopaque] = ACTIONS(4360), + [anon_sym_bool] = ACTIONS(4360), + [anon_sym_int] = ACTIONS(4360), + [anon_sym_uint] = ACTIONS(4360), + [anon_sym_float] = ACTIONS(4360), + [anon_sym_range] = ACTIONS(4360), + [anon_sym_i8] = ACTIONS(4360), + [anon_sym_i16] = ACTIONS(4360), + [anon_sym_i32] = ACTIONS(4360), + [anon_sym_i64] = ACTIONS(4360), + [anon_sym_u8] = ACTIONS(4360), + [anon_sym_u16] = ACTIONS(4360), + [anon_sym_u32] = ACTIONS(4360), + [anon_sym_u64] = ACTIONS(4360), + [anon_sym_isize] = ACTIONS(4360), + [anon_sym_usize] = ACTIONS(4360), + [anon_sym_f32] = ACTIONS(4360), + [anon_sym_f64] = ACTIONS(4360), + [anon_sym_c_char] = ACTIONS(4360), + [anon_sym_c_schar] = ACTIONS(4360), + [anon_sym_c_uchar] = ACTIONS(4360), + [anon_sym_c_short] = ACTIONS(4360), + [anon_sym_c_ushort] = ACTIONS(4360), + [anon_sym_c_int] = ACTIONS(4360), + [anon_sym_c_uint] = ACTIONS(4360), + [anon_sym_c_long] = ACTIONS(4360), + [anon_sym_c_ulong] = ACTIONS(4360), + [anon_sym_c_longlong] = ACTIONS(4360), + [anon_sym_c_ulonglong] = ACTIONS(4360), + [anon_sym_c_float] = ACTIONS(4360), + [anon_sym_c_double] = ACTIONS(4360), + [anon_sym_c_longdouble] = ACTIONS(4360), + [anon_sym_return] = ACTIONS(4360), + [anon_sym_yield] = ACTIONS(4360), + [anon_sym_break] = ACTIONS(4360), + [anon_sym_continue] = ACTIONS(4360), + [anon_sym_defer] = ACTIONS(4360), + [anon_sym_errdefer] = ACTIONS(4360), + [anon_sym_if] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4360), + [anon_sym_while] = ACTIONS(4360), + [anon_sym_expand] = ACTIONS(4360), + [anon_sym_for] = ACTIONS(4360), + [anon_sym_match] = ACTIONS(4360), + [anon_sym_AMP] = ACTIONS(4358), + [anon_sym_TILDE] = ACTIONS(4358), + [anon_sym_try] = ACTIONS(4360), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_true] = ACTIONS(4360), + [anon_sym_false] = ACTIONS(4360), + [sym_none] = ACTIONS(4360), + [sym_undefined] = ACTIONS(4360), + [sym_sink] = ACTIONS(4360), + [sym_integer] = ACTIONS(4360), + [sym_float] = ACTIONS(4358), + [anon_sym_DQUOTE] = ACTIONS(4358), + [sym_multiline_string] = ACTIONS(4358), + [sym_character] = ACTIONS(4358), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4358), + }, + [STATE(1816)] = { + [ts_builtin_sym_end] = ACTIONS(4362), + [sym_identifier] = ACTIONS(4364), + [anon_sym_import] = ACTIONS(4364), + [anon_sym_test] = ACTIONS(4364), + [anon_sym_hide] = ACTIONS(4364), + [anon_sym_func] = ACTIONS(4364), + [anon_sym_BANG] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_LPAREN] = ACTIONS(4362), + [anon_sym_RPAREN] = ACTIONS(4362), + [anon_sym_LBRACE] = ACTIONS(4362), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_DOLLAR] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_void] = ACTIONS(4364), + [anon_sym_type] = ACTIONS(4364), + [anon_sym_anyopaque] = ACTIONS(4364), + [anon_sym_bool] = ACTIONS(4364), + [anon_sym_int] = ACTIONS(4364), + [anon_sym_uint] = ACTIONS(4364), + [anon_sym_float] = ACTIONS(4364), + [anon_sym_range] = ACTIONS(4364), + [anon_sym_i8] = ACTIONS(4364), + [anon_sym_i16] = ACTIONS(4364), + [anon_sym_i32] = ACTIONS(4364), + [anon_sym_i64] = ACTIONS(4364), + [anon_sym_u8] = ACTIONS(4364), + [anon_sym_u16] = ACTIONS(4364), + [anon_sym_u32] = ACTIONS(4364), + [anon_sym_u64] = ACTIONS(4364), + [anon_sym_isize] = ACTIONS(4364), + [anon_sym_usize] = ACTIONS(4364), + [anon_sym_f32] = ACTIONS(4364), + [anon_sym_f64] = ACTIONS(4364), + [anon_sym_c_char] = ACTIONS(4364), + [anon_sym_c_schar] = ACTIONS(4364), + [anon_sym_c_uchar] = ACTIONS(4364), + [anon_sym_c_short] = ACTIONS(4364), + [anon_sym_c_ushort] = ACTIONS(4364), + [anon_sym_c_int] = ACTIONS(4364), + [anon_sym_c_uint] = ACTIONS(4364), + [anon_sym_c_long] = ACTIONS(4364), + [anon_sym_c_ulong] = ACTIONS(4364), + [anon_sym_c_longlong] = ACTIONS(4364), + [anon_sym_c_ulonglong] = ACTIONS(4364), + [anon_sym_c_float] = ACTIONS(4364), + [anon_sym_c_double] = ACTIONS(4364), + [anon_sym_c_longdouble] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4364), + [anon_sym_yield] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4364), + [anon_sym_continue] = ACTIONS(4364), + [anon_sym_defer] = ACTIONS(4364), + [anon_sym_errdefer] = ACTIONS(4364), + [anon_sym_if] = ACTIONS(4364), + [anon_sym_else] = ACTIONS(4364), + [anon_sym_while] = ACTIONS(4364), + [anon_sym_expand] = ACTIONS(4364), + [anon_sym_for] = ACTIONS(4364), + [anon_sym_match] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4362), + [anon_sym_TILDE] = ACTIONS(4362), + [anon_sym_try] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [sym_none] = ACTIONS(4364), + [sym_undefined] = ACTIONS(4364), + [sym_sink] = ACTIONS(4364), + [sym_integer] = ACTIONS(4364), + [sym_float] = ACTIONS(4362), + [anon_sym_DQUOTE] = ACTIONS(4362), + [sym_multiline_string] = ACTIONS(4362), + [sym_character] = ACTIONS(4362), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4362), + }, + [STATE(1817)] = { + [ts_builtin_sym_end] = ACTIONS(4366), + [sym_identifier] = ACTIONS(4368), + [anon_sym_import] = ACTIONS(4368), + [anon_sym_test] = ACTIONS(4368), + [anon_sym_hide] = ACTIONS(4368), + [anon_sym_func] = ACTIONS(4368), + [anon_sym_BANG] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4368), + [anon_sym_LPAREN] = ACTIONS(4366), + [anon_sym_RPAREN] = ACTIONS(4366), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_DASH] = ACTIONS(4366), + [anon_sym_DOLLAR] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(4366), + [anon_sym_void] = ACTIONS(4368), + [anon_sym_type] = ACTIONS(4368), + [anon_sym_anyopaque] = ACTIONS(4368), + [anon_sym_bool] = ACTIONS(4368), + [anon_sym_int] = ACTIONS(4368), + [anon_sym_uint] = ACTIONS(4368), + [anon_sym_float] = ACTIONS(4368), + [anon_sym_range] = ACTIONS(4368), + [anon_sym_i8] = ACTIONS(4368), + [anon_sym_i16] = ACTIONS(4368), + [anon_sym_i32] = ACTIONS(4368), + [anon_sym_i64] = ACTIONS(4368), + [anon_sym_u8] = ACTIONS(4368), + [anon_sym_u16] = ACTIONS(4368), + [anon_sym_u32] = ACTIONS(4368), + [anon_sym_u64] = ACTIONS(4368), + [anon_sym_isize] = ACTIONS(4368), + [anon_sym_usize] = ACTIONS(4368), + [anon_sym_f32] = ACTIONS(4368), + [anon_sym_f64] = ACTIONS(4368), + [anon_sym_c_char] = ACTIONS(4368), + [anon_sym_c_schar] = ACTIONS(4368), + [anon_sym_c_uchar] = ACTIONS(4368), + [anon_sym_c_short] = ACTIONS(4368), + [anon_sym_c_ushort] = ACTIONS(4368), + [anon_sym_c_int] = ACTIONS(4368), + [anon_sym_c_uint] = ACTIONS(4368), + [anon_sym_c_long] = ACTIONS(4368), + [anon_sym_c_ulong] = ACTIONS(4368), + [anon_sym_c_longlong] = ACTIONS(4368), + [anon_sym_c_ulonglong] = ACTIONS(4368), + [anon_sym_c_float] = ACTIONS(4368), + [anon_sym_c_double] = ACTIONS(4368), + [anon_sym_c_longdouble] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4368), + [anon_sym_yield] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4368), + [anon_sym_continue] = ACTIONS(4368), + [anon_sym_defer] = ACTIONS(4368), + [anon_sym_errdefer] = ACTIONS(4368), + [anon_sym_if] = ACTIONS(4368), + [anon_sym_else] = ACTIONS(4368), + [anon_sym_while] = ACTIONS(4368), + [anon_sym_expand] = ACTIONS(4368), + [anon_sym_for] = ACTIONS(4368), + [anon_sym_match] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_try] = ACTIONS(4368), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_true] = ACTIONS(4368), + [anon_sym_false] = ACTIONS(4368), + [sym_none] = ACTIONS(4368), + [sym_undefined] = ACTIONS(4368), + [sym_sink] = ACTIONS(4368), + [sym_integer] = ACTIONS(4368), + [sym_float] = ACTIONS(4366), + [anon_sym_DQUOTE] = ACTIONS(4366), + [sym_multiline_string] = ACTIONS(4366), + [sym_character] = ACTIONS(4366), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4366), + }, + [STATE(1818)] = { + [ts_builtin_sym_end] = ACTIONS(4370), + [sym_identifier] = ACTIONS(4372), + [anon_sym_import] = ACTIONS(4372), + [anon_sym_test] = ACTIONS(4372), + [anon_sym_hide] = ACTIONS(4372), + [anon_sym_func] = ACTIONS(4372), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4372), + [anon_sym_LPAREN] = ACTIONS(4370), + [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_LBRACE] = ACTIONS(4370), + [anon_sym_RBRACE] = ACTIONS(4370), + [anon_sym_DASH] = ACTIONS(4370), + [anon_sym_DOLLAR] = ACTIONS(4370), + [anon_sym_LBRACK] = ACTIONS(4370), + [anon_sym_void] = ACTIONS(4372), + [anon_sym_type] = ACTIONS(4372), + [anon_sym_anyopaque] = ACTIONS(4372), + [anon_sym_bool] = ACTIONS(4372), + [anon_sym_int] = ACTIONS(4372), + [anon_sym_uint] = ACTIONS(4372), + [anon_sym_float] = ACTIONS(4372), + [anon_sym_range] = ACTIONS(4372), + [anon_sym_i8] = ACTIONS(4372), + [anon_sym_i16] = ACTIONS(4372), + [anon_sym_i32] = ACTIONS(4372), + [anon_sym_i64] = ACTIONS(4372), + [anon_sym_u8] = ACTIONS(4372), + [anon_sym_u16] = ACTIONS(4372), + [anon_sym_u32] = ACTIONS(4372), + [anon_sym_u64] = ACTIONS(4372), + [anon_sym_isize] = ACTIONS(4372), + [anon_sym_usize] = ACTIONS(4372), + [anon_sym_f32] = ACTIONS(4372), + [anon_sym_f64] = ACTIONS(4372), + [anon_sym_c_char] = ACTIONS(4372), + [anon_sym_c_schar] = ACTIONS(4372), + [anon_sym_c_uchar] = ACTIONS(4372), + [anon_sym_c_short] = ACTIONS(4372), + [anon_sym_c_ushort] = ACTIONS(4372), + [anon_sym_c_int] = ACTIONS(4372), + [anon_sym_c_uint] = ACTIONS(4372), + [anon_sym_c_long] = ACTIONS(4372), + [anon_sym_c_ulong] = ACTIONS(4372), + [anon_sym_c_longlong] = ACTIONS(4372), + [anon_sym_c_ulonglong] = ACTIONS(4372), + [anon_sym_c_float] = ACTIONS(4372), + [anon_sym_c_double] = ACTIONS(4372), + [anon_sym_c_longdouble] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4372), + [anon_sym_yield] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4372), + [anon_sym_continue] = ACTIONS(4372), + [anon_sym_defer] = ACTIONS(4372), + [anon_sym_errdefer] = ACTIONS(4372), + [anon_sym_if] = ACTIONS(4372), + [anon_sym_else] = ACTIONS(4372), + [anon_sym_while] = ACTIONS(4372), + [anon_sym_expand] = ACTIONS(4372), + [anon_sym_for] = ACTIONS(4372), + [anon_sym_match] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_try] = ACTIONS(4372), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_true] = ACTIONS(4372), + [anon_sym_false] = ACTIONS(4372), + [sym_none] = ACTIONS(4372), + [sym_undefined] = ACTIONS(4372), + [sym_sink] = ACTIONS(4372), + [sym_integer] = ACTIONS(4372), + [sym_float] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4370), + [sym_multiline_string] = ACTIONS(4370), + [sym_character] = ACTIONS(4370), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4370), + }, + [STATE(1819)] = { + [ts_builtin_sym_end] = ACTIONS(4374), + [sym_identifier] = ACTIONS(4376), + [anon_sym_import] = ACTIONS(4376), + [anon_sym_test] = ACTIONS(4376), + [anon_sym_hide] = ACTIONS(4376), + [anon_sym_func] = ACTIONS(4376), + [anon_sym_BANG] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4376), + [anon_sym_LPAREN] = ACTIONS(4374), + [anon_sym_RPAREN] = ACTIONS(4374), + [anon_sym_LBRACE] = ACTIONS(4374), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_DASH] = ACTIONS(4374), + [anon_sym_DOLLAR] = ACTIONS(4374), + [anon_sym_LBRACK] = ACTIONS(4374), + [anon_sym_void] = ACTIONS(4376), + [anon_sym_type] = ACTIONS(4376), + [anon_sym_anyopaque] = ACTIONS(4376), + [anon_sym_bool] = ACTIONS(4376), + [anon_sym_int] = ACTIONS(4376), + [anon_sym_uint] = ACTIONS(4376), + [anon_sym_float] = ACTIONS(4376), + [anon_sym_range] = ACTIONS(4376), + [anon_sym_i8] = ACTIONS(4376), + [anon_sym_i16] = ACTIONS(4376), + [anon_sym_i32] = ACTIONS(4376), + [anon_sym_i64] = ACTIONS(4376), + [anon_sym_u8] = ACTIONS(4376), + [anon_sym_u16] = ACTIONS(4376), + [anon_sym_u32] = ACTIONS(4376), + [anon_sym_u64] = ACTIONS(4376), + [anon_sym_isize] = ACTIONS(4376), + [anon_sym_usize] = ACTIONS(4376), + [anon_sym_f32] = ACTIONS(4376), + [anon_sym_f64] = ACTIONS(4376), + [anon_sym_c_char] = ACTIONS(4376), + [anon_sym_c_schar] = ACTIONS(4376), + [anon_sym_c_uchar] = ACTIONS(4376), + [anon_sym_c_short] = ACTIONS(4376), + [anon_sym_c_ushort] = ACTIONS(4376), + [anon_sym_c_int] = ACTIONS(4376), + [anon_sym_c_uint] = ACTIONS(4376), + [anon_sym_c_long] = ACTIONS(4376), + [anon_sym_c_ulong] = ACTIONS(4376), + [anon_sym_c_longlong] = ACTIONS(4376), + [anon_sym_c_ulonglong] = ACTIONS(4376), + [anon_sym_c_float] = ACTIONS(4376), + [anon_sym_c_double] = ACTIONS(4376), + [anon_sym_c_longdouble] = ACTIONS(4376), + [anon_sym_return] = ACTIONS(4376), + [anon_sym_yield] = ACTIONS(4376), + [anon_sym_break] = ACTIONS(4376), + [anon_sym_continue] = ACTIONS(4376), + [anon_sym_defer] = ACTIONS(4376), + [anon_sym_errdefer] = ACTIONS(4376), + [anon_sym_if] = ACTIONS(4376), + [anon_sym_else] = ACTIONS(4376), + [anon_sym_while] = ACTIONS(4376), + [anon_sym_expand] = ACTIONS(4376), + [anon_sym_for] = ACTIONS(4376), + [anon_sym_match] = ACTIONS(4376), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4374), + [anon_sym_try] = ACTIONS(4376), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_true] = ACTIONS(4376), + [anon_sym_false] = ACTIONS(4376), + [sym_none] = ACTIONS(4376), + [sym_undefined] = ACTIONS(4376), + [sym_sink] = ACTIONS(4376), + [sym_integer] = ACTIONS(4376), + [sym_float] = ACTIONS(4374), + [anon_sym_DQUOTE] = ACTIONS(4374), + [sym_multiline_string] = ACTIONS(4374), + [sym_character] = ACTIONS(4374), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4374), + }, + [STATE(1820)] = { + [ts_builtin_sym_end] = ACTIONS(4378), + [sym_identifier] = ACTIONS(4380), + [anon_sym_import] = ACTIONS(4380), + [anon_sym_test] = ACTIONS(4380), + [anon_sym_hide] = ACTIONS(4380), + [anon_sym_func] = ACTIONS(4380), + [anon_sym_BANG] = ACTIONS(4378), + [anon_sym_struct] = ACTIONS(4380), + [anon_sym_LPAREN] = ACTIONS(4378), + [anon_sym_RPAREN] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4378), + [anon_sym_DOLLAR] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(4378), + [anon_sym_void] = ACTIONS(4380), + [anon_sym_type] = ACTIONS(4380), + [anon_sym_anyopaque] = ACTIONS(4380), + [anon_sym_bool] = ACTIONS(4380), + [anon_sym_int] = ACTIONS(4380), + [anon_sym_uint] = ACTIONS(4380), + [anon_sym_float] = ACTIONS(4380), + [anon_sym_range] = ACTIONS(4380), + [anon_sym_i8] = ACTIONS(4380), + [anon_sym_i16] = ACTIONS(4380), + [anon_sym_i32] = ACTIONS(4380), + [anon_sym_i64] = ACTIONS(4380), + [anon_sym_u8] = ACTIONS(4380), + [anon_sym_u16] = ACTIONS(4380), + [anon_sym_u32] = ACTIONS(4380), + [anon_sym_u64] = ACTIONS(4380), + [anon_sym_isize] = ACTIONS(4380), + [anon_sym_usize] = ACTIONS(4380), + [anon_sym_f32] = ACTIONS(4380), + [anon_sym_f64] = ACTIONS(4380), + [anon_sym_c_char] = ACTIONS(4380), + [anon_sym_c_schar] = ACTIONS(4380), + [anon_sym_c_uchar] = ACTIONS(4380), + [anon_sym_c_short] = ACTIONS(4380), + [anon_sym_c_ushort] = ACTIONS(4380), + [anon_sym_c_int] = ACTIONS(4380), + [anon_sym_c_uint] = ACTIONS(4380), + [anon_sym_c_long] = ACTIONS(4380), + [anon_sym_c_ulong] = ACTIONS(4380), + [anon_sym_c_longlong] = ACTIONS(4380), + [anon_sym_c_ulonglong] = ACTIONS(4380), + [anon_sym_c_float] = ACTIONS(4380), + [anon_sym_c_double] = ACTIONS(4380), + [anon_sym_c_longdouble] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4380), + [anon_sym_yield] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4380), + [anon_sym_continue] = ACTIONS(4380), + [anon_sym_defer] = ACTIONS(4380), + [anon_sym_errdefer] = ACTIONS(4380), + [anon_sym_if] = ACTIONS(4380), + [anon_sym_else] = ACTIONS(4380), + [anon_sym_while] = ACTIONS(4380), + [anon_sym_expand] = ACTIONS(4380), + [anon_sym_for] = ACTIONS(4380), + [anon_sym_match] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_try] = ACTIONS(4380), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_true] = ACTIONS(4380), + [anon_sym_false] = ACTIONS(4380), + [sym_none] = ACTIONS(4380), + [sym_undefined] = ACTIONS(4380), + [sym_sink] = ACTIONS(4380), + [sym_integer] = ACTIONS(4380), + [sym_float] = ACTIONS(4378), + [anon_sym_DQUOTE] = ACTIONS(4378), + [sym_multiline_string] = ACTIONS(4378), + [sym_character] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4378), + }, + [STATE(1821)] = { + [ts_builtin_sym_end] = ACTIONS(4382), + [sym_identifier] = ACTIONS(4384), + [anon_sym_import] = ACTIONS(4384), + [anon_sym_test] = ACTIONS(4384), + [anon_sym_hide] = ACTIONS(4384), + [anon_sym_func] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4382), + [anon_sym_RPAREN] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4382), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_DOLLAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4382), + [anon_sym_void] = ACTIONS(4384), + [anon_sym_type] = ACTIONS(4384), + [anon_sym_anyopaque] = ACTIONS(4384), + [anon_sym_bool] = ACTIONS(4384), + [anon_sym_int] = ACTIONS(4384), + [anon_sym_uint] = ACTIONS(4384), + [anon_sym_float] = ACTIONS(4384), + [anon_sym_range] = ACTIONS(4384), + [anon_sym_i8] = ACTIONS(4384), + [anon_sym_i16] = ACTIONS(4384), + [anon_sym_i32] = ACTIONS(4384), + [anon_sym_i64] = ACTIONS(4384), + [anon_sym_u8] = ACTIONS(4384), + [anon_sym_u16] = ACTIONS(4384), + [anon_sym_u32] = ACTIONS(4384), + [anon_sym_u64] = ACTIONS(4384), + [anon_sym_isize] = ACTIONS(4384), + [anon_sym_usize] = ACTIONS(4384), + [anon_sym_f32] = ACTIONS(4384), + [anon_sym_f64] = ACTIONS(4384), + [anon_sym_c_char] = ACTIONS(4384), + [anon_sym_c_schar] = ACTIONS(4384), + [anon_sym_c_uchar] = ACTIONS(4384), + [anon_sym_c_short] = ACTIONS(4384), + [anon_sym_c_ushort] = ACTIONS(4384), + [anon_sym_c_int] = ACTIONS(4384), + [anon_sym_c_uint] = ACTIONS(4384), + [anon_sym_c_long] = ACTIONS(4384), + [anon_sym_c_ulong] = ACTIONS(4384), + [anon_sym_c_longlong] = ACTIONS(4384), + [anon_sym_c_ulonglong] = ACTIONS(4384), + [anon_sym_c_float] = ACTIONS(4384), + [anon_sym_c_double] = ACTIONS(4384), + [anon_sym_c_longdouble] = ACTIONS(4384), + [anon_sym_return] = ACTIONS(4384), + [anon_sym_yield] = ACTIONS(4384), + [anon_sym_break] = ACTIONS(4384), + [anon_sym_continue] = ACTIONS(4384), + [anon_sym_defer] = ACTIONS(4384), + [anon_sym_errdefer] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4384), + [anon_sym_while] = ACTIONS(4384), + [anon_sym_expand] = ACTIONS(4384), + [anon_sym_for] = ACTIONS(4384), + [anon_sym_match] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_true] = ACTIONS(4384), + [anon_sym_false] = ACTIONS(4384), + [sym_none] = ACTIONS(4384), + [sym_undefined] = ACTIONS(4384), + [sym_sink] = ACTIONS(4384), + [sym_integer] = ACTIONS(4384), + [sym_float] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4382), + [sym_multiline_string] = ACTIONS(4382), + [sym_character] = ACTIONS(4382), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4382), + }, + [STATE(1822)] = { + [ts_builtin_sym_end] = ACTIONS(4386), + [sym_identifier] = ACTIONS(4388), + [anon_sym_import] = ACTIONS(4388), + [anon_sym_test] = ACTIONS(4388), + [anon_sym_hide] = ACTIONS(4388), + [anon_sym_func] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4386), + [anon_sym_RPAREN] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4386), + [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_DOLLAR] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(4386), + [anon_sym_void] = ACTIONS(4388), + [anon_sym_type] = ACTIONS(4388), + [anon_sym_anyopaque] = ACTIONS(4388), + [anon_sym_bool] = ACTIONS(4388), + [anon_sym_int] = ACTIONS(4388), + [anon_sym_uint] = ACTIONS(4388), + [anon_sym_float] = ACTIONS(4388), + [anon_sym_range] = ACTIONS(4388), + [anon_sym_i8] = ACTIONS(4388), + [anon_sym_i16] = ACTIONS(4388), + [anon_sym_i32] = ACTIONS(4388), + [anon_sym_i64] = ACTIONS(4388), + [anon_sym_u8] = ACTIONS(4388), + [anon_sym_u16] = ACTIONS(4388), + [anon_sym_u32] = ACTIONS(4388), + [anon_sym_u64] = ACTIONS(4388), + [anon_sym_isize] = ACTIONS(4388), + [anon_sym_usize] = ACTIONS(4388), + [anon_sym_f32] = ACTIONS(4388), + [anon_sym_f64] = ACTIONS(4388), + [anon_sym_c_char] = ACTIONS(4388), + [anon_sym_c_schar] = ACTIONS(4388), + [anon_sym_c_uchar] = ACTIONS(4388), + [anon_sym_c_short] = ACTIONS(4388), + [anon_sym_c_ushort] = ACTIONS(4388), + [anon_sym_c_int] = ACTIONS(4388), + [anon_sym_c_uint] = ACTIONS(4388), + [anon_sym_c_long] = ACTIONS(4388), + [anon_sym_c_ulong] = ACTIONS(4388), + [anon_sym_c_longlong] = ACTIONS(4388), + [anon_sym_c_ulonglong] = ACTIONS(4388), + [anon_sym_c_float] = ACTIONS(4388), + [anon_sym_c_double] = ACTIONS(4388), + [anon_sym_c_longdouble] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_yield] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_continue] = ACTIONS(4388), + [anon_sym_defer] = ACTIONS(4388), + [anon_sym_errdefer] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_while] = ACTIONS(4388), + [anon_sym_expand] = ACTIONS(4388), + [anon_sym_for] = ACTIONS(4388), + [anon_sym_match] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_true] = ACTIONS(4388), + [anon_sym_false] = ACTIONS(4388), + [sym_none] = ACTIONS(4388), + [sym_undefined] = ACTIONS(4388), + [sym_sink] = ACTIONS(4388), + [sym_integer] = ACTIONS(4388), + [sym_float] = ACTIONS(4386), + [anon_sym_DQUOTE] = ACTIONS(4386), + [sym_multiline_string] = ACTIONS(4386), + [sym_character] = ACTIONS(4386), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4386), + }, + [STATE(1823)] = { + [ts_builtin_sym_end] = ACTIONS(4390), + [sym_identifier] = ACTIONS(4392), + [anon_sym_import] = ACTIONS(4392), + [anon_sym_test] = ACTIONS(4392), + [anon_sym_hide] = ACTIONS(4392), + [anon_sym_func] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_DOLLAR] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_void] = ACTIONS(4392), + [anon_sym_type] = ACTIONS(4392), + [anon_sym_anyopaque] = ACTIONS(4392), + [anon_sym_bool] = ACTIONS(4392), + [anon_sym_int] = ACTIONS(4392), + [anon_sym_uint] = ACTIONS(4392), + [anon_sym_float] = ACTIONS(4392), + [anon_sym_range] = ACTIONS(4392), + [anon_sym_i8] = ACTIONS(4392), + [anon_sym_i16] = ACTIONS(4392), + [anon_sym_i32] = ACTIONS(4392), + [anon_sym_i64] = ACTIONS(4392), + [anon_sym_u8] = ACTIONS(4392), + [anon_sym_u16] = ACTIONS(4392), + [anon_sym_u32] = ACTIONS(4392), + [anon_sym_u64] = ACTIONS(4392), + [anon_sym_isize] = ACTIONS(4392), + [anon_sym_usize] = ACTIONS(4392), + [anon_sym_f32] = ACTIONS(4392), + [anon_sym_f64] = ACTIONS(4392), + [anon_sym_c_char] = ACTIONS(4392), + [anon_sym_c_schar] = ACTIONS(4392), + [anon_sym_c_uchar] = ACTIONS(4392), + [anon_sym_c_short] = ACTIONS(4392), + [anon_sym_c_ushort] = ACTIONS(4392), + [anon_sym_c_int] = ACTIONS(4392), + [anon_sym_c_uint] = ACTIONS(4392), + [anon_sym_c_long] = ACTIONS(4392), + [anon_sym_c_ulong] = ACTIONS(4392), + [anon_sym_c_longlong] = ACTIONS(4392), + [anon_sym_c_ulonglong] = ACTIONS(4392), + [anon_sym_c_float] = ACTIONS(4392), + [anon_sym_c_double] = ACTIONS(4392), + [anon_sym_c_longdouble] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4392), + [anon_sym_yield] = ACTIONS(4392), + [anon_sym_break] = ACTIONS(4392), + [anon_sym_continue] = ACTIONS(4392), + [anon_sym_defer] = ACTIONS(4392), + [anon_sym_errdefer] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4392), + [anon_sym_while] = ACTIONS(4392), + [anon_sym_expand] = ACTIONS(4392), + [anon_sym_for] = ACTIONS(4392), + [anon_sym_match] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_true] = ACTIONS(4392), + [anon_sym_false] = ACTIONS(4392), + [sym_none] = ACTIONS(4392), + [sym_undefined] = ACTIONS(4392), + [sym_sink] = ACTIONS(4392), + [sym_integer] = ACTIONS(4392), + [sym_float] = ACTIONS(4390), + [anon_sym_DQUOTE] = ACTIONS(4390), + [sym_multiline_string] = ACTIONS(4390), + [sym_character] = ACTIONS(4390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4390), + }, + [STATE(1824)] = { + [ts_builtin_sym_end] = ACTIONS(4394), + [sym_identifier] = ACTIONS(4396), + [anon_sym_import] = ACTIONS(4396), + [anon_sym_test] = ACTIONS(4396), + [anon_sym_hide] = ACTIONS(4396), + [anon_sym_func] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym_RPAREN] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4394), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4394), + [anon_sym_void] = ACTIONS(4396), + [anon_sym_type] = ACTIONS(4396), + [anon_sym_anyopaque] = ACTIONS(4396), + [anon_sym_bool] = ACTIONS(4396), + [anon_sym_int] = ACTIONS(4396), + [anon_sym_uint] = ACTIONS(4396), + [anon_sym_float] = ACTIONS(4396), + [anon_sym_range] = ACTIONS(4396), + [anon_sym_i8] = ACTIONS(4396), + [anon_sym_i16] = ACTIONS(4396), + [anon_sym_i32] = ACTIONS(4396), + [anon_sym_i64] = ACTIONS(4396), + [anon_sym_u8] = ACTIONS(4396), + [anon_sym_u16] = ACTIONS(4396), + [anon_sym_u32] = ACTIONS(4396), + [anon_sym_u64] = ACTIONS(4396), + [anon_sym_isize] = ACTIONS(4396), + [anon_sym_usize] = ACTIONS(4396), + [anon_sym_f32] = ACTIONS(4396), + [anon_sym_f64] = ACTIONS(4396), + [anon_sym_c_char] = ACTIONS(4396), + [anon_sym_c_schar] = ACTIONS(4396), + [anon_sym_c_uchar] = ACTIONS(4396), + [anon_sym_c_short] = ACTIONS(4396), + [anon_sym_c_ushort] = ACTIONS(4396), + [anon_sym_c_int] = ACTIONS(4396), + [anon_sym_c_uint] = ACTIONS(4396), + [anon_sym_c_long] = ACTIONS(4396), + [anon_sym_c_ulong] = ACTIONS(4396), + [anon_sym_c_longlong] = ACTIONS(4396), + [anon_sym_c_ulonglong] = ACTIONS(4396), + [anon_sym_c_float] = ACTIONS(4396), + [anon_sym_c_double] = ACTIONS(4396), + [anon_sym_c_longdouble] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_yield] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_defer] = ACTIONS(4396), + [anon_sym_errdefer] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_expand] = ACTIONS(4396), + [anon_sym_for] = ACTIONS(4396), + [anon_sym_match] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [sym_none] = ACTIONS(4396), + [sym_undefined] = ACTIONS(4396), + [sym_sink] = ACTIONS(4396), + [sym_integer] = ACTIONS(4396), + [sym_float] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(4394), + [sym_multiline_string] = ACTIONS(4394), + [sym_character] = ACTIONS(4394), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4394), + }, + [STATE(1825)] = { + [ts_builtin_sym_end] = ACTIONS(4398), + [sym_identifier] = ACTIONS(4400), + [anon_sym_import] = ACTIONS(4400), + [anon_sym_test] = ACTIONS(4400), + [anon_sym_hide] = ACTIONS(4400), + [anon_sym_func] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(4398), + [anon_sym_struct] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_void] = ACTIONS(4400), + [anon_sym_type] = ACTIONS(4400), + [anon_sym_anyopaque] = ACTIONS(4400), + [anon_sym_bool] = ACTIONS(4400), + [anon_sym_int] = ACTIONS(4400), + [anon_sym_uint] = ACTIONS(4400), + [anon_sym_float] = ACTIONS(4400), + [anon_sym_range] = ACTIONS(4400), + [anon_sym_i8] = ACTIONS(4400), + [anon_sym_i16] = ACTIONS(4400), + [anon_sym_i32] = ACTIONS(4400), + [anon_sym_i64] = ACTIONS(4400), + [anon_sym_u8] = ACTIONS(4400), + [anon_sym_u16] = ACTIONS(4400), + [anon_sym_u32] = ACTIONS(4400), + [anon_sym_u64] = ACTIONS(4400), + [anon_sym_isize] = ACTIONS(4400), + [anon_sym_usize] = ACTIONS(4400), + [anon_sym_f32] = ACTIONS(4400), + [anon_sym_f64] = ACTIONS(4400), + [anon_sym_c_char] = ACTIONS(4400), + [anon_sym_c_schar] = ACTIONS(4400), + [anon_sym_c_uchar] = ACTIONS(4400), + [anon_sym_c_short] = ACTIONS(4400), + [anon_sym_c_ushort] = ACTIONS(4400), + [anon_sym_c_int] = ACTIONS(4400), + [anon_sym_c_uint] = ACTIONS(4400), + [anon_sym_c_long] = ACTIONS(4400), + [anon_sym_c_ulong] = ACTIONS(4400), + [anon_sym_c_longlong] = ACTIONS(4400), + [anon_sym_c_ulonglong] = ACTIONS(4400), + [anon_sym_c_float] = ACTIONS(4400), + [anon_sym_c_double] = ACTIONS(4400), + [anon_sym_c_longdouble] = ACTIONS(4400), + [anon_sym_return] = ACTIONS(4400), + [anon_sym_yield] = ACTIONS(4400), + [anon_sym_break] = ACTIONS(4400), + [anon_sym_continue] = ACTIONS(4400), + [anon_sym_defer] = ACTIONS(4400), + [anon_sym_errdefer] = ACTIONS(4400), + [anon_sym_if] = ACTIONS(4400), + [anon_sym_else] = ACTIONS(4400), + [anon_sym_while] = ACTIONS(4400), + [anon_sym_expand] = ACTIONS(4400), + [anon_sym_for] = ACTIONS(4400), + [anon_sym_match] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [anon_sym_try] = ACTIONS(4400), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4400), + [anon_sym_false] = ACTIONS(4400), + [sym_none] = ACTIONS(4400), + [sym_undefined] = ACTIONS(4400), + [sym_sink] = ACTIONS(4400), + [sym_integer] = ACTIONS(4400), + [sym_float] = ACTIONS(4398), + [anon_sym_DQUOTE] = ACTIONS(4398), + [sym_multiline_string] = ACTIONS(4398), + [sym_character] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4398), + }, + [STATE(1826)] = { + [ts_builtin_sym_end] = ACTIONS(4402), + [sym_identifier] = ACTIONS(4404), + [anon_sym_import] = ACTIONS(4404), + [anon_sym_test] = ACTIONS(4404), + [anon_sym_hide] = ACTIONS(4404), + [anon_sym_func] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_struct] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4402), + [anon_sym_RPAREN] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4402), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_DOLLAR] = ACTIONS(4402), + [anon_sym_LBRACK] = ACTIONS(4402), + [anon_sym_void] = ACTIONS(4404), + [anon_sym_type] = ACTIONS(4404), + [anon_sym_anyopaque] = ACTIONS(4404), + [anon_sym_bool] = ACTIONS(4404), + [anon_sym_int] = ACTIONS(4404), + [anon_sym_uint] = ACTIONS(4404), + [anon_sym_float] = ACTIONS(4404), + [anon_sym_range] = ACTIONS(4404), + [anon_sym_i8] = ACTIONS(4404), + [anon_sym_i16] = ACTIONS(4404), + [anon_sym_i32] = ACTIONS(4404), + [anon_sym_i64] = ACTIONS(4404), + [anon_sym_u8] = ACTIONS(4404), + [anon_sym_u16] = ACTIONS(4404), + [anon_sym_u32] = ACTIONS(4404), + [anon_sym_u64] = ACTIONS(4404), + [anon_sym_isize] = ACTIONS(4404), + [anon_sym_usize] = ACTIONS(4404), + [anon_sym_f32] = ACTIONS(4404), + [anon_sym_f64] = ACTIONS(4404), + [anon_sym_c_char] = ACTIONS(4404), + [anon_sym_c_schar] = ACTIONS(4404), + [anon_sym_c_uchar] = ACTIONS(4404), + [anon_sym_c_short] = ACTIONS(4404), + [anon_sym_c_ushort] = ACTIONS(4404), + [anon_sym_c_int] = ACTIONS(4404), + [anon_sym_c_uint] = ACTIONS(4404), + [anon_sym_c_long] = ACTIONS(4404), + [anon_sym_c_ulong] = ACTIONS(4404), + [anon_sym_c_longlong] = ACTIONS(4404), + [anon_sym_c_ulonglong] = ACTIONS(4404), + [anon_sym_c_float] = ACTIONS(4404), + [anon_sym_c_double] = ACTIONS(4404), + [anon_sym_c_longdouble] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4404), + [anon_sym_yield] = ACTIONS(4404), + [anon_sym_break] = ACTIONS(4404), + [anon_sym_continue] = ACTIONS(4404), + [anon_sym_defer] = ACTIONS(4404), + [anon_sym_errdefer] = ACTIONS(4404), + [anon_sym_if] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4404), + [anon_sym_while] = ACTIONS(4404), + [anon_sym_expand] = ACTIONS(4404), + [anon_sym_for] = ACTIONS(4404), + [anon_sym_match] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4404), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_true] = ACTIONS(4404), + [anon_sym_false] = ACTIONS(4404), + [sym_none] = ACTIONS(4404), + [sym_undefined] = ACTIONS(4404), + [sym_sink] = ACTIONS(4404), + [sym_integer] = ACTIONS(4404), + [sym_float] = ACTIONS(4402), + [anon_sym_DQUOTE] = ACTIONS(4402), + [sym_multiline_string] = ACTIONS(4402), + [sym_character] = ACTIONS(4402), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4402), + }, + [STATE(1827)] = { + [ts_builtin_sym_end] = ACTIONS(4406), + [sym_identifier] = ACTIONS(4408), + [anon_sym_import] = ACTIONS(4408), + [anon_sym_test] = ACTIONS(4408), + [anon_sym_hide] = ACTIONS(4408), + [anon_sym_func] = ACTIONS(4408), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4408), + [anon_sym_LPAREN] = ACTIONS(4406), + [anon_sym_RPAREN] = ACTIONS(4406), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_RBRACE] = ACTIONS(4406), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4406), + [anon_sym_void] = ACTIONS(4408), + [anon_sym_type] = ACTIONS(4408), + [anon_sym_anyopaque] = ACTIONS(4408), + [anon_sym_bool] = ACTIONS(4408), + [anon_sym_int] = ACTIONS(4408), + [anon_sym_uint] = ACTIONS(4408), + [anon_sym_float] = ACTIONS(4408), + [anon_sym_range] = ACTIONS(4408), + [anon_sym_i8] = ACTIONS(4408), + [anon_sym_i16] = ACTIONS(4408), + [anon_sym_i32] = ACTIONS(4408), + [anon_sym_i64] = ACTIONS(4408), + [anon_sym_u8] = ACTIONS(4408), + [anon_sym_u16] = ACTIONS(4408), + [anon_sym_u32] = ACTIONS(4408), + [anon_sym_u64] = ACTIONS(4408), + [anon_sym_isize] = ACTIONS(4408), + [anon_sym_usize] = ACTIONS(4408), + [anon_sym_f32] = ACTIONS(4408), + [anon_sym_f64] = ACTIONS(4408), + [anon_sym_c_char] = ACTIONS(4408), + [anon_sym_c_schar] = ACTIONS(4408), + [anon_sym_c_uchar] = ACTIONS(4408), + [anon_sym_c_short] = ACTIONS(4408), + [anon_sym_c_ushort] = ACTIONS(4408), + [anon_sym_c_int] = ACTIONS(4408), + [anon_sym_c_uint] = ACTIONS(4408), + [anon_sym_c_long] = ACTIONS(4408), + [anon_sym_c_ulong] = ACTIONS(4408), + [anon_sym_c_longlong] = ACTIONS(4408), + [anon_sym_c_ulonglong] = ACTIONS(4408), + [anon_sym_c_float] = ACTIONS(4408), + [anon_sym_c_double] = ACTIONS(4408), + [anon_sym_c_longdouble] = ACTIONS(4408), + [anon_sym_return] = ACTIONS(4408), + [anon_sym_yield] = ACTIONS(4408), + [anon_sym_break] = ACTIONS(4408), + [anon_sym_continue] = ACTIONS(4408), + [anon_sym_defer] = ACTIONS(4408), + [anon_sym_errdefer] = ACTIONS(4408), + [anon_sym_if] = ACTIONS(4408), + [anon_sym_else] = ACTIONS(4408), + [anon_sym_while] = ACTIONS(4408), + [anon_sym_expand] = ACTIONS(4408), + [anon_sym_for] = ACTIONS(4408), + [anon_sym_match] = ACTIONS(4408), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4406), + [anon_sym_try] = ACTIONS(4408), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [sym_none] = ACTIONS(4408), + [sym_undefined] = ACTIONS(4408), + [sym_sink] = ACTIONS(4408), + [sym_integer] = ACTIONS(4408), + [sym_float] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(4406), + [sym_multiline_string] = ACTIONS(4406), + [sym_character] = ACTIONS(4406), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4406), + }, + [STATE(1828)] = { + [ts_builtin_sym_end] = ACTIONS(4410), + [sym_identifier] = ACTIONS(4412), + [anon_sym_import] = ACTIONS(4412), + [anon_sym_test] = ACTIONS(4412), + [anon_sym_hide] = ACTIONS(4412), + [anon_sym_func] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_struct] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_RPAREN] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4410), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_DOLLAR] = ACTIONS(4410), + [anon_sym_LBRACK] = ACTIONS(4410), + [anon_sym_void] = ACTIONS(4412), + [anon_sym_type] = ACTIONS(4412), + [anon_sym_anyopaque] = ACTIONS(4412), + [anon_sym_bool] = ACTIONS(4412), + [anon_sym_int] = ACTIONS(4412), + [anon_sym_uint] = ACTIONS(4412), + [anon_sym_float] = ACTIONS(4412), + [anon_sym_range] = ACTIONS(4412), + [anon_sym_i8] = ACTIONS(4412), + [anon_sym_i16] = ACTIONS(4412), + [anon_sym_i32] = ACTIONS(4412), + [anon_sym_i64] = ACTIONS(4412), + [anon_sym_u8] = ACTIONS(4412), + [anon_sym_u16] = ACTIONS(4412), + [anon_sym_u32] = ACTIONS(4412), + [anon_sym_u64] = ACTIONS(4412), + [anon_sym_isize] = ACTIONS(4412), + [anon_sym_usize] = ACTIONS(4412), + [anon_sym_f32] = ACTIONS(4412), + [anon_sym_f64] = ACTIONS(4412), + [anon_sym_c_char] = ACTIONS(4412), + [anon_sym_c_schar] = ACTIONS(4412), + [anon_sym_c_uchar] = ACTIONS(4412), + [anon_sym_c_short] = ACTIONS(4412), + [anon_sym_c_ushort] = ACTIONS(4412), + [anon_sym_c_int] = ACTIONS(4412), + [anon_sym_c_uint] = ACTIONS(4412), + [anon_sym_c_long] = ACTIONS(4412), + [anon_sym_c_ulong] = ACTIONS(4412), + [anon_sym_c_longlong] = ACTIONS(4412), + [anon_sym_c_ulonglong] = ACTIONS(4412), + [anon_sym_c_float] = ACTIONS(4412), + [anon_sym_c_double] = ACTIONS(4412), + [anon_sym_c_longdouble] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_yield] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_defer] = ACTIONS(4412), + [anon_sym_errdefer] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_expand] = ACTIONS(4412), + [anon_sym_for] = ACTIONS(4412), + [anon_sym_match] = ACTIONS(4412), + [anon_sym_AMP] = ACTIONS(4410), + [anon_sym_TILDE] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [sym_none] = ACTIONS(4412), + [sym_undefined] = ACTIONS(4412), + [sym_sink] = ACTIONS(4412), + [sym_integer] = ACTIONS(4412), + [sym_float] = ACTIONS(4410), + [anon_sym_DQUOTE] = ACTIONS(4410), + [sym_multiline_string] = ACTIONS(4410), + [sym_character] = ACTIONS(4410), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4410), + }, + [STATE(1829)] = { + [ts_builtin_sym_end] = ACTIONS(4414), + [sym_identifier] = ACTIONS(4416), + [anon_sym_import] = ACTIONS(4416), + [anon_sym_test] = ACTIONS(4416), + [anon_sym_hide] = ACTIONS(4416), + [anon_sym_func] = ACTIONS(4416), + [anon_sym_BANG] = ACTIONS(4414), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_RPAREN] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DOLLAR] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_void] = ACTIONS(4416), + [anon_sym_type] = ACTIONS(4416), + [anon_sym_anyopaque] = ACTIONS(4416), + [anon_sym_bool] = ACTIONS(4416), + [anon_sym_int] = ACTIONS(4416), + [anon_sym_uint] = ACTIONS(4416), + [anon_sym_float] = ACTIONS(4416), + [anon_sym_range] = ACTIONS(4416), + [anon_sym_i8] = ACTIONS(4416), + [anon_sym_i16] = ACTIONS(4416), + [anon_sym_i32] = ACTIONS(4416), + [anon_sym_i64] = ACTIONS(4416), + [anon_sym_u8] = ACTIONS(4416), + [anon_sym_u16] = ACTIONS(4416), + [anon_sym_u32] = ACTIONS(4416), + [anon_sym_u64] = ACTIONS(4416), + [anon_sym_isize] = ACTIONS(4416), + [anon_sym_usize] = ACTIONS(4416), + [anon_sym_f32] = ACTIONS(4416), + [anon_sym_f64] = ACTIONS(4416), + [anon_sym_c_char] = ACTIONS(4416), + [anon_sym_c_schar] = ACTIONS(4416), + [anon_sym_c_uchar] = ACTIONS(4416), + [anon_sym_c_short] = ACTIONS(4416), + [anon_sym_c_ushort] = ACTIONS(4416), + [anon_sym_c_int] = ACTIONS(4416), + [anon_sym_c_uint] = ACTIONS(4416), + [anon_sym_c_long] = ACTIONS(4416), + [anon_sym_c_ulong] = ACTIONS(4416), + [anon_sym_c_longlong] = ACTIONS(4416), + [anon_sym_c_ulonglong] = ACTIONS(4416), + [anon_sym_c_float] = ACTIONS(4416), + [anon_sym_c_double] = ACTIONS(4416), + [anon_sym_c_longdouble] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_yield] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_defer] = ACTIONS(4416), + [anon_sym_errdefer] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_expand] = ACTIONS(4416), + [anon_sym_for] = ACTIONS(4416), + [anon_sym_match] = ACTIONS(4416), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [sym_none] = ACTIONS(4416), + [sym_undefined] = ACTIONS(4416), + [sym_sink] = ACTIONS(4416), + [sym_integer] = ACTIONS(4416), + [sym_float] = ACTIONS(4414), + [anon_sym_DQUOTE] = ACTIONS(4414), + [sym_multiline_string] = ACTIONS(4414), + [sym_character] = ACTIONS(4414), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4414), + }, + [STATE(1830)] = { + [ts_builtin_sym_end] = ACTIONS(4418), + [sym_identifier] = ACTIONS(4420), + [anon_sym_import] = ACTIONS(4420), + [anon_sym_test] = ACTIONS(4420), + [anon_sym_hide] = ACTIONS(4420), + [anon_sym_func] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4418), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_DOLLAR] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_void] = ACTIONS(4420), + [anon_sym_type] = ACTIONS(4420), + [anon_sym_anyopaque] = ACTIONS(4420), + [anon_sym_bool] = ACTIONS(4420), + [anon_sym_int] = ACTIONS(4420), + [anon_sym_uint] = ACTIONS(4420), + [anon_sym_float] = ACTIONS(4420), + [anon_sym_range] = ACTIONS(4420), + [anon_sym_i8] = ACTIONS(4420), + [anon_sym_i16] = ACTIONS(4420), + [anon_sym_i32] = ACTIONS(4420), + [anon_sym_i64] = ACTIONS(4420), + [anon_sym_u8] = ACTIONS(4420), + [anon_sym_u16] = ACTIONS(4420), + [anon_sym_u32] = ACTIONS(4420), + [anon_sym_u64] = ACTIONS(4420), + [anon_sym_isize] = ACTIONS(4420), + [anon_sym_usize] = ACTIONS(4420), + [anon_sym_f32] = ACTIONS(4420), + [anon_sym_f64] = ACTIONS(4420), + [anon_sym_c_char] = ACTIONS(4420), + [anon_sym_c_schar] = ACTIONS(4420), + [anon_sym_c_uchar] = ACTIONS(4420), + [anon_sym_c_short] = ACTIONS(4420), + [anon_sym_c_ushort] = ACTIONS(4420), + [anon_sym_c_int] = ACTIONS(4420), + [anon_sym_c_uint] = ACTIONS(4420), + [anon_sym_c_long] = ACTIONS(4420), + [anon_sym_c_ulong] = ACTIONS(4420), + [anon_sym_c_longlong] = ACTIONS(4420), + [anon_sym_c_ulonglong] = ACTIONS(4420), + [anon_sym_c_float] = ACTIONS(4420), + [anon_sym_c_double] = ACTIONS(4420), + [anon_sym_c_longdouble] = ACTIONS(4420), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_yield] = ACTIONS(4420), + [anon_sym_break] = ACTIONS(4420), + [anon_sym_continue] = ACTIONS(4420), + [anon_sym_defer] = ACTIONS(4420), + [anon_sym_errdefer] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_else] = ACTIONS(4420), + [anon_sym_while] = ACTIONS(4420), + [anon_sym_expand] = ACTIONS(4420), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [sym_none] = ACTIONS(4420), + [sym_undefined] = ACTIONS(4420), + [sym_sink] = ACTIONS(4420), + [sym_integer] = ACTIONS(4420), + [sym_float] = ACTIONS(4418), + [anon_sym_DQUOTE] = ACTIONS(4418), + [sym_multiline_string] = ACTIONS(4418), + [sym_character] = ACTIONS(4418), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4418), + }, + [STATE(1831)] = { + [ts_builtin_sym_end] = ACTIONS(4422), + [sym_identifier] = ACTIONS(4424), + [anon_sym_import] = ACTIONS(4424), + [anon_sym_test] = ACTIONS(4424), + [anon_sym_hide] = ACTIONS(4424), + [anon_sym_func] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4422), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_RPAREN] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_void] = ACTIONS(4424), + [anon_sym_type] = ACTIONS(4424), + [anon_sym_anyopaque] = ACTIONS(4424), + [anon_sym_bool] = ACTIONS(4424), + [anon_sym_int] = ACTIONS(4424), + [anon_sym_uint] = ACTIONS(4424), + [anon_sym_float] = ACTIONS(4424), + [anon_sym_range] = ACTIONS(4424), + [anon_sym_i8] = ACTIONS(4424), + [anon_sym_i16] = ACTIONS(4424), + [anon_sym_i32] = ACTIONS(4424), + [anon_sym_i64] = ACTIONS(4424), + [anon_sym_u8] = ACTIONS(4424), + [anon_sym_u16] = ACTIONS(4424), + [anon_sym_u32] = ACTIONS(4424), + [anon_sym_u64] = ACTIONS(4424), + [anon_sym_isize] = ACTIONS(4424), + [anon_sym_usize] = ACTIONS(4424), + [anon_sym_f32] = ACTIONS(4424), + [anon_sym_f64] = ACTIONS(4424), + [anon_sym_c_char] = ACTIONS(4424), + [anon_sym_c_schar] = ACTIONS(4424), + [anon_sym_c_uchar] = ACTIONS(4424), + [anon_sym_c_short] = ACTIONS(4424), + [anon_sym_c_ushort] = ACTIONS(4424), + [anon_sym_c_int] = ACTIONS(4424), + [anon_sym_c_uint] = ACTIONS(4424), + [anon_sym_c_long] = ACTIONS(4424), + [anon_sym_c_ulong] = ACTIONS(4424), + [anon_sym_c_longlong] = ACTIONS(4424), + [anon_sym_c_ulonglong] = ACTIONS(4424), + [anon_sym_c_float] = ACTIONS(4424), + [anon_sym_c_double] = ACTIONS(4424), + [anon_sym_c_longdouble] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_yield] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_defer] = ACTIONS(4424), + [anon_sym_errdefer] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_expand] = ACTIONS(4424), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [sym_none] = ACTIONS(4424), + [sym_undefined] = ACTIONS(4424), + [sym_sink] = ACTIONS(4424), + [sym_integer] = ACTIONS(4424), + [sym_float] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(4422), + [sym_multiline_string] = ACTIONS(4422), + [sym_character] = ACTIONS(4422), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4422), + }, + [STATE(1832)] = { + [ts_builtin_sym_end] = ACTIONS(4426), + [sym_identifier] = ACTIONS(4428), + [anon_sym_import] = ACTIONS(4428), + [anon_sym_test] = ACTIONS(4428), + [anon_sym_hide] = ACTIONS(4428), + [anon_sym_func] = ACTIONS(4428), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_RPAREN] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_void] = ACTIONS(4428), + [anon_sym_type] = ACTIONS(4428), + [anon_sym_anyopaque] = ACTIONS(4428), + [anon_sym_bool] = ACTIONS(4428), + [anon_sym_int] = ACTIONS(4428), + [anon_sym_uint] = ACTIONS(4428), + [anon_sym_float] = ACTIONS(4428), + [anon_sym_range] = ACTIONS(4428), + [anon_sym_i8] = ACTIONS(4428), + [anon_sym_i16] = ACTIONS(4428), + [anon_sym_i32] = ACTIONS(4428), + [anon_sym_i64] = ACTIONS(4428), + [anon_sym_u8] = ACTIONS(4428), + [anon_sym_u16] = ACTIONS(4428), + [anon_sym_u32] = ACTIONS(4428), + [anon_sym_u64] = ACTIONS(4428), + [anon_sym_isize] = ACTIONS(4428), + [anon_sym_usize] = ACTIONS(4428), + [anon_sym_f32] = ACTIONS(4428), + [anon_sym_f64] = ACTIONS(4428), + [anon_sym_c_char] = ACTIONS(4428), + [anon_sym_c_schar] = ACTIONS(4428), + [anon_sym_c_uchar] = ACTIONS(4428), + [anon_sym_c_short] = ACTIONS(4428), + [anon_sym_c_ushort] = ACTIONS(4428), + [anon_sym_c_int] = ACTIONS(4428), + [anon_sym_c_uint] = ACTIONS(4428), + [anon_sym_c_long] = ACTIONS(4428), + [anon_sym_c_ulong] = ACTIONS(4428), + [anon_sym_c_longlong] = ACTIONS(4428), + [anon_sym_c_ulonglong] = ACTIONS(4428), + [anon_sym_c_float] = ACTIONS(4428), + [anon_sym_c_double] = ACTIONS(4428), + [anon_sym_c_longdouble] = ACTIONS(4428), + [anon_sym_return] = ACTIONS(4428), + [anon_sym_yield] = ACTIONS(4428), + [anon_sym_break] = ACTIONS(4428), + [anon_sym_continue] = ACTIONS(4428), + [anon_sym_defer] = ACTIONS(4428), + [anon_sym_errdefer] = ACTIONS(4428), + [anon_sym_if] = ACTIONS(4428), + [anon_sym_else] = ACTIONS(4428), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_expand] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4428), + [anon_sym_false] = ACTIONS(4428), + [sym_none] = ACTIONS(4428), + [sym_undefined] = ACTIONS(4428), + [sym_sink] = ACTIONS(4428), + [sym_integer] = ACTIONS(4428), + [sym_float] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [sym_multiline_string] = ACTIONS(4426), + [sym_character] = ACTIONS(4426), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4426), + }, + [STATE(1833)] = { + [ts_builtin_sym_end] = ACTIONS(4430), + [sym_identifier] = ACTIONS(4432), + [anon_sym_import] = ACTIONS(4432), + [anon_sym_test] = ACTIONS(4432), + [anon_sym_hide] = ACTIONS(4432), + [anon_sym_func] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym_RPAREN] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4430), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_DOLLAR] = ACTIONS(4430), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_void] = ACTIONS(4432), + [anon_sym_type] = ACTIONS(4432), + [anon_sym_anyopaque] = ACTIONS(4432), + [anon_sym_bool] = ACTIONS(4432), + [anon_sym_int] = ACTIONS(4432), + [anon_sym_uint] = ACTIONS(4432), + [anon_sym_float] = ACTIONS(4432), + [anon_sym_range] = ACTIONS(4432), + [anon_sym_i8] = ACTIONS(4432), + [anon_sym_i16] = ACTIONS(4432), + [anon_sym_i32] = ACTIONS(4432), + [anon_sym_i64] = ACTIONS(4432), + [anon_sym_u8] = ACTIONS(4432), + [anon_sym_u16] = ACTIONS(4432), + [anon_sym_u32] = ACTIONS(4432), + [anon_sym_u64] = ACTIONS(4432), + [anon_sym_isize] = ACTIONS(4432), + [anon_sym_usize] = ACTIONS(4432), + [anon_sym_f32] = ACTIONS(4432), + [anon_sym_f64] = ACTIONS(4432), + [anon_sym_c_char] = ACTIONS(4432), + [anon_sym_c_schar] = ACTIONS(4432), + [anon_sym_c_uchar] = ACTIONS(4432), + [anon_sym_c_short] = ACTIONS(4432), + [anon_sym_c_ushort] = ACTIONS(4432), + [anon_sym_c_int] = ACTIONS(4432), + [anon_sym_c_uint] = ACTIONS(4432), + [anon_sym_c_long] = ACTIONS(4432), + [anon_sym_c_ulong] = ACTIONS(4432), + [anon_sym_c_longlong] = ACTIONS(4432), + [anon_sym_c_ulonglong] = ACTIONS(4432), + [anon_sym_c_float] = ACTIONS(4432), + [anon_sym_c_double] = ACTIONS(4432), + [anon_sym_c_longdouble] = ACTIONS(4432), + [anon_sym_return] = ACTIONS(4432), + [anon_sym_yield] = ACTIONS(4432), + [anon_sym_break] = ACTIONS(4432), + [anon_sym_continue] = ACTIONS(4432), + [anon_sym_defer] = ACTIONS(4432), + [anon_sym_errdefer] = ACTIONS(4432), + [anon_sym_if] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4432), + [anon_sym_while] = ACTIONS(4432), + [anon_sym_expand] = ACTIONS(4432), + [anon_sym_for] = ACTIONS(4432), + [anon_sym_match] = ACTIONS(4432), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4432), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_true] = ACTIONS(4432), + [anon_sym_false] = ACTIONS(4432), + [sym_none] = ACTIONS(4432), + [sym_undefined] = ACTIONS(4432), + [sym_sink] = ACTIONS(4432), + [sym_integer] = ACTIONS(4432), + [sym_float] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4430), + [sym_multiline_string] = ACTIONS(4430), + [sym_character] = ACTIONS(4430), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4430), + }, + [STATE(1834)] = { + [ts_builtin_sym_end] = ACTIONS(4434), + [sym_identifier] = ACTIONS(4436), + [anon_sym_import] = ACTIONS(4436), + [anon_sym_test] = ACTIONS(4436), + [anon_sym_hide] = ACTIONS(4436), + [anon_sym_func] = ACTIONS(4436), + [anon_sym_BANG] = ACTIONS(4434), + [anon_sym_struct] = ACTIONS(4436), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym_RPAREN] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_DOLLAR] = ACTIONS(4434), + [anon_sym_LBRACK] = ACTIONS(4434), + [anon_sym_void] = ACTIONS(4436), + [anon_sym_type] = ACTIONS(4436), + [anon_sym_anyopaque] = ACTIONS(4436), + [anon_sym_bool] = ACTIONS(4436), + [anon_sym_int] = ACTIONS(4436), + [anon_sym_uint] = ACTIONS(4436), + [anon_sym_float] = ACTIONS(4436), + [anon_sym_range] = ACTIONS(4436), + [anon_sym_i8] = ACTIONS(4436), + [anon_sym_i16] = ACTIONS(4436), + [anon_sym_i32] = ACTIONS(4436), + [anon_sym_i64] = ACTIONS(4436), + [anon_sym_u8] = ACTIONS(4436), + [anon_sym_u16] = ACTIONS(4436), + [anon_sym_u32] = ACTIONS(4436), + [anon_sym_u64] = ACTIONS(4436), + [anon_sym_isize] = ACTIONS(4436), + [anon_sym_usize] = ACTIONS(4436), + [anon_sym_f32] = ACTIONS(4436), + [anon_sym_f64] = ACTIONS(4436), + [anon_sym_c_char] = ACTIONS(4436), + [anon_sym_c_schar] = ACTIONS(4436), + [anon_sym_c_uchar] = ACTIONS(4436), + [anon_sym_c_short] = ACTIONS(4436), + [anon_sym_c_ushort] = ACTIONS(4436), + [anon_sym_c_int] = ACTIONS(4436), + [anon_sym_c_uint] = ACTIONS(4436), + [anon_sym_c_long] = ACTIONS(4436), + [anon_sym_c_ulong] = ACTIONS(4436), + [anon_sym_c_longlong] = ACTIONS(4436), + [anon_sym_c_ulonglong] = ACTIONS(4436), + [anon_sym_c_float] = ACTIONS(4436), + [anon_sym_c_double] = ACTIONS(4436), + [anon_sym_c_longdouble] = ACTIONS(4436), + [anon_sym_return] = ACTIONS(4436), + [anon_sym_yield] = ACTIONS(4436), + [anon_sym_break] = ACTIONS(4436), + [anon_sym_continue] = ACTIONS(4436), + [anon_sym_defer] = ACTIONS(4436), + [anon_sym_errdefer] = ACTIONS(4436), + [anon_sym_if] = ACTIONS(4436), + [anon_sym_else] = ACTIONS(4436), + [anon_sym_while] = ACTIONS(4436), + [anon_sym_expand] = ACTIONS(4436), + [anon_sym_for] = ACTIONS(4436), + [anon_sym_match] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_try] = ACTIONS(4436), + [anon_sym_DOT] = ACTIONS(4434), + [anon_sym_true] = ACTIONS(4436), + [anon_sym_false] = ACTIONS(4436), + [sym_none] = ACTIONS(4436), + [sym_undefined] = ACTIONS(4436), + [sym_sink] = ACTIONS(4436), + [sym_integer] = ACTIONS(4436), + [sym_float] = ACTIONS(4434), + [anon_sym_DQUOTE] = ACTIONS(4434), + [sym_multiline_string] = ACTIONS(4434), + [sym_character] = ACTIONS(4434), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4434), + }, + [STATE(1835)] = { + [ts_builtin_sym_end] = ACTIONS(4438), + [sym_identifier] = ACTIONS(4440), + [anon_sym_import] = ACTIONS(4440), + [anon_sym_test] = ACTIONS(4440), + [anon_sym_hide] = ACTIONS(4440), + [anon_sym_func] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4438), + [anon_sym_RPAREN] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_DOLLAR] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4438), + [anon_sym_void] = ACTIONS(4440), + [anon_sym_type] = ACTIONS(4440), + [anon_sym_anyopaque] = ACTIONS(4440), + [anon_sym_bool] = ACTIONS(4440), + [anon_sym_int] = ACTIONS(4440), + [anon_sym_uint] = ACTIONS(4440), + [anon_sym_float] = ACTIONS(4440), + [anon_sym_range] = ACTIONS(4440), + [anon_sym_i8] = ACTIONS(4440), + [anon_sym_i16] = ACTIONS(4440), + [anon_sym_i32] = ACTIONS(4440), + [anon_sym_i64] = ACTIONS(4440), + [anon_sym_u8] = ACTIONS(4440), + [anon_sym_u16] = ACTIONS(4440), + [anon_sym_u32] = ACTIONS(4440), + [anon_sym_u64] = ACTIONS(4440), + [anon_sym_isize] = ACTIONS(4440), + [anon_sym_usize] = ACTIONS(4440), + [anon_sym_f32] = ACTIONS(4440), + [anon_sym_f64] = ACTIONS(4440), + [anon_sym_c_char] = ACTIONS(4440), + [anon_sym_c_schar] = ACTIONS(4440), + [anon_sym_c_uchar] = ACTIONS(4440), + [anon_sym_c_short] = ACTIONS(4440), + [anon_sym_c_ushort] = ACTIONS(4440), + [anon_sym_c_int] = ACTIONS(4440), + [anon_sym_c_uint] = ACTIONS(4440), + [anon_sym_c_long] = ACTIONS(4440), + [anon_sym_c_ulong] = ACTIONS(4440), + [anon_sym_c_longlong] = ACTIONS(4440), + [anon_sym_c_ulonglong] = ACTIONS(4440), + [anon_sym_c_float] = ACTIONS(4440), + [anon_sym_c_double] = ACTIONS(4440), + [anon_sym_c_longdouble] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4440), + [anon_sym_yield] = ACTIONS(4440), + [anon_sym_break] = ACTIONS(4440), + [anon_sym_continue] = ACTIONS(4440), + [anon_sym_defer] = ACTIONS(4440), + [anon_sym_errdefer] = ACTIONS(4440), + [anon_sym_if] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4440), + [anon_sym_while] = ACTIONS(4440), + [anon_sym_expand] = ACTIONS(4440), + [anon_sym_for] = ACTIONS(4440), + [anon_sym_match] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4440), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_true] = ACTIONS(4440), + [anon_sym_false] = ACTIONS(4440), + [sym_none] = ACTIONS(4440), + [sym_undefined] = ACTIONS(4440), + [sym_sink] = ACTIONS(4440), + [sym_integer] = ACTIONS(4440), + [sym_float] = ACTIONS(4438), + [anon_sym_DQUOTE] = ACTIONS(4438), + [sym_multiline_string] = ACTIONS(4438), + [sym_character] = ACTIONS(4438), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4438), + }, + [STATE(1836)] = { + [ts_builtin_sym_end] = ACTIONS(4442), + [sym_identifier] = ACTIONS(4444), + [anon_sym_import] = ACTIONS(4444), + [anon_sym_test] = ACTIONS(4444), + [anon_sym_hide] = ACTIONS(4444), + [anon_sym_func] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4442), + [anon_sym_RPAREN] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4442), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4442), + [anon_sym_void] = ACTIONS(4444), + [anon_sym_type] = ACTIONS(4444), + [anon_sym_anyopaque] = ACTIONS(4444), + [anon_sym_bool] = ACTIONS(4444), + [anon_sym_int] = ACTIONS(4444), + [anon_sym_uint] = ACTIONS(4444), + [anon_sym_float] = ACTIONS(4444), + [anon_sym_range] = ACTIONS(4444), + [anon_sym_i8] = ACTIONS(4444), + [anon_sym_i16] = ACTIONS(4444), + [anon_sym_i32] = ACTIONS(4444), + [anon_sym_i64] = ACTIONS(4444), + [anon_sym_u8] = ACTIONS(4444), + [anon_sym_u16] = ACTIONS(4444), + [anon_sym_u32] = ACTIONS(4444), + [anon_sym_u64] = ACTIONS(4444), + [anon_sym_isize] = ACTIONS(4444), + [anon_sym_usize] = ACTIONS(4444), + [anon_sym_f32] = ACTIONS(4444), + [anon_sym_f64] = ACTIONS(4444), + [anon_sym_c_char] = ACTIONS(4444), + [anon_sym_c_schar] = ACTIONS(4444), + [anon_sym_c_uchar] = ACTIONS(4444), + [anon_sym_c_short] = ACTIONS(4444), + [anon_sym_c_ushort] = ACTIONS(4444), + [anon_sym_c_int] = ACTIONS(4444), + [anon_sym_c_uint] = ACTIONS(4444), + [anon_sym_c_long] = ACTIONS(4444), + [anon_sym_c_ulong] = ACTIONS(4444), + [anon_sym_c_longlong] = ACTIONS(4444), + [anon_sym_c_ulonglong] = ACTIONS(4444), + [anon_sym_c_float] = ACTIONS(4444), + [anon_sym_c_double] = ACTIONS(4444), + [anon_sym_c_longdouble] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4444), + [anon_sym_yield] = ACTIONS(4444), + [anon_sym_break] = ACTIONS(4444), + [anon_sym_continue] = ACTIONS(4444), + [anon_sym_defer] = ACTIONS(4444), + [anon_sym_errdefer] = ACTIONS(4444), + [anon_sym_if] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4444), + [anon_sym_while] = ACTIONS(4444), + [anon_sym_expand] = ACTIONS(4444), + [anon_sym_for] = ACTIONS(4444), + [anon_sym_match] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4444), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_true] = ACTIONS(4444), + [anon_sym_false] = ACTIONS(4444), + [sym_none] = ACTIONS(4444), + [sym_undefined] = ACTIONS(4444), + [sym_sink] = ACTIONS(4444), + [sym_integer] = ACTIONS(4444), + [sym_float] = ACTIONS(4442), + [anon_sym_DQUOTE] = ACTIONS(4442), + [sym_multiline_string] = ACTIONS(4442), + [sym_character] = ACTIONS(4442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4442), + }, + [STATE(1837)] = { + [ts_builtin_sym_end] = ACTIONS(4446), + [sym_identifier] = ACTIONS(4448), + [anon_sym_import] = ACTIONS(4448), + [anon_sym_test] = ACTIONS(4448), + [anon_sym_hide] = ACTIONS(4448), + [anon_sym_func] = ACTIONS(4448), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym_RPAREN] = ACTIONS(4446), + [anon_sym_LBRACE] = ACTIONS(4446), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4446), + [anon_sym_void] = ACTIONS(4448), + [anon_sym_type] = ACTIONS(4448), + [anon_sym_anyopaque] = ACTIONS(4448), + [anon_sym_bool] = ACTIONS(4448), + [anon_sym_int] = ACTIONS(4448), + [anon_sym_uint] = ACTIONS(4448), + [anon_sym_float] = ACTIONS(4448), + [anon_sym_range] = ACTIONS(4448), + [anon_sym_i8] = ACTIONS(4448), + [anon_sym_i16] = ACTIONS(4448), + [anon_sym_i32] = ACTIONS(4448), + [anon_sym_i64] = ACTIONS(4448), + [anon_sym_u8] = ACTIONS(4448), + [anon_sym_u16] = ACTIONS(4448), + [anon_sym_u32] = ACTIONS(4448), + [anon_sym_u64] = ACTIONS(4448), + [anon_sym_isize] = ACTIONS(4448), + [anon_sym_usize] = ACTIONS(4448), + [anon_sym_f32] = ACTIONS(4448), + [anon_sym_f64] = ACTIONS(4448), + [anon_sym_c_char] = ACTIONS(4448), + [anon_sym_c_schar] = ACTIONS(4448), + [anon_sym_c_uchar] = ACTIONS(4448), + [anon_sym_c_short] = ACTIONS(4448), + [anon_sym_c_ushort] = ACTIONS(4448), + [anon_sym_c_int] = ACTIONS(4448), + [anon_sym_c_uint] = ACTIONS(4448), + [anon_sym_c_long] = ACTIONS(4448), + [anon_sym_c_ulong] = ACTIONS(4448), + [anon_sym_c_longlong] = ACTIONS(4448), + [anon_sym_c_ulonglong] = ACTIONS(4448), + [anon_sym_c_float] = ACTIONS(4448), + [anon_sym_c_double] = ACTIONS(4448), + [anon_sym_c_longdouble] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_yield] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_defer] = ACTIONS(4448), + [anon_sym_errdefer] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(4448), + [anon_sym_expand] = ACTIONS(4448), + [anon_sym_for] = ACTIONS(4448), + [anon_sym_match] = ACTIONS(4448), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_try] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [sym_none] = ACTIONS(4448), + [sym_undefined] = ACTIONS(4448), + [sym_sink] = ACTIONS(4448), + [sym_integer] = ACTIONS(4448), + [sym_float] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(4446), + [sym_multiline_string] = ACTIONS(4446), + [sym_character] = ACTIONS(4446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4446), + }, + [STATE(1838)] = { + [ts_builtin_sym_end] = ACTIONS(4450), + [sym_identifier] = ACTIONS(4452), + [anon_sym_import] = ACTIONS(4452), + [anon_sym_test] = ACTIONS(4452), + [anon_sym_hide] = ACTIONS(4452), + [anon_sym_func] = ACTIONS(4452), + [anon_sym_BANG] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_RPAREN] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_DOLLAR] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_void] = ACTIONS(4452), + [anon_sym_type] = ACTIONS(4452), + [anon_sym_anyopaque] = ACTIONS(4452), + [anon_sym_bool] = ACTIONS(4452), + [anon_sym_int] = ACTIONS(4452), + [anon_sym_uint] = ACTIONS(4452), + [anon_sym_float] = ACTIONS(4452), + [anon_sym_range] = ACTIONS(4452), + [anon_sym_i8] = ACTIONS(4452), + [anon_sym_i16] = ACTIONS(4452), + [anon_sym_i32] = ACTIONS(4452), + [anon_sym_i64] = ACTIONS(4452), + [anon_sym_u8] = ACTIONS(4452), + [anon_sym_u16] = ACTIONS(4452), + [anon_sym_u32] = ACTIONS(4452), + [anon_sym_u64] = ACTIONS(4452), + [anon_sym_isize] = ACTIONS(4452), + [anon_sym_usize] = ACTIONS(4452), + [anon_sym_f32] = ACTIONS(4452), + [anon_sym_f64] = ACTIONS(4452), + [anon_sym_c_char] = ACTIONS(4452), + [anon_sym_c_schar] = ACTIONS(4452), + [anon_sym_c_uchar] = ACTIONS(4452), + [anon_sym_c_short] = ACTIONS(4452), + [anon_sym_c_ushort] = ACTIONS(4452), + [anon_sym_c_int] = ACTIONS(4452), + [anon_sym_c_uint] = ACTIONS(4452), + [anon_sym_c_long] = ACTIONS(4452), + [anon_sym_c_ulong] = ACTIONS(4452), + [anon_sym_c_longlong] = ACTIONS(4452), + [anon_sym_c_ulonglong] = ACTIONS(4452), + [anon_sym_c_float] = ACTIONS(4452), + [anon_sym_c_double] = ACTIONS(4452), + [anon_sym_c_longdouble] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_yield] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_defer] = ACTIONS(4452), + [anon_sym_errdefer] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_expand] = ACTIONS(4452), + [anon_sym_for] = ACTIONS(4452), + [anon_sym_match] = ACTIONS(4452), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4450), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [sym_none] = ACTIONS(4452), + [sym_undefined] = ACTIONS(4452), + [sym_sink] = ACTIONS(4452), + [sym_integer] = ACTIONS(4452), + [sym_float] = ACTIONS(4450), + [anon_sym_DQUOTE] = ACTIONS(4450), + [sym_multiline_string] = ACTIONS(4450), + [sym_character] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4450), + }, + [STATE(1839)] = { + [ts_builtin_sym_end] = ACTIONS(4454), + [sym_identifier] = ACTIONS(4456), + [anon_sym_import] = ACTIONS(4456), + [anon_sym_test] = ACTIONS(4456), + [anon_sym_hide] = ACTIONS(4456), + [anon_sym_func] = ACTIONS(4456), + [anon_sym_BANG] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_DOLLAR] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_void] = ACTIONS(4456), + [anon_sym_type] = ACTIONS(4456), + [anon_sym_anyopaque] = ACTIONS(4456), + [anon_sym_bool] = ACTIONS(4456), + [anon_sym_int] = ACTIONS(4456), + [anon_sym_uint] = ACTIONS(4456), + [anon_sym_float] = ACTIONS(4456), + [anon_sym_range] = ACTIONS(4456), + [anon_sym_i8] = ACTIONS(4456), + [anon_sym_i16] = ACTIONS(4456), + [anon_sym_i32] = ACTIONS(4456), + [anon_sym_i64] = ACTIONS(4456), + [anon_sym_u8] = ACTIONS(4456), + [anon_sym_u16] = ACTIONS(4456), + [anon_sym_u32] = ACTIONS(4456), + [anon_sym_u64] = ACTIONS(4456), + [anon_sym_isize] = ACTIONS(4456), + [anon_sym_usize] = ACTIONS(4456), + [anon_sym_f32] = ACTIONS(4456), + [anon_sym_f64] = ACTIONS(4456), + [anon_sym_c_char] = ACTIONS(4456), + [anon_sym_c_schar] = ACTIONS(4456), + [anon_sym_c_uchar] = ACTIONS(4456), + [anon_sym_c_short] = ACTIONS(4456), + [anon_sym_c_ushort] = ACTIONS(4456), + [anon_sym_c_int] = ACTIONS(4456), + [anon_sym_c_uint] = ACTIONS(4456), + [anon_sym_c_long] = ACTIONS(4456), + [anon_sym_c_ulong] = ACTIONS(4456), + [anon_sym_c_longlong] = ACTIONS(4456), + [anon_sym_c_ulonglong] = ACTIONS(4456), + [anon_sym_c_float] = ACTIONS(4456), + [anon_sym_c_double] = ACTIONS(4456), + [anon_sym_c_longdouble] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_yield] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_defer] = ACTIONS(4456), + [anon_sym_errdefer] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_else] = ACTIONS(4456), + [anon_sym_while] = ACTIONS(4456), + [anon_sym_expand] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_match] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4456), + [anon_sym_false] = ACTIONS(4456), + [sym_none] = ACTIONS(4456), + [sym_undefined] = ACTIONS(4456), + [sym_sink] = ACTIONS(4456), + [sym_integer] = ACTIONS(4456), + [sym_float] = ACTIONS(4454), + [anon_sym_DQUOTE] = ACTIONS(4454), + [sym_multiline_string] = ACTIONS(4454), + [sym_character] = ACTIONS(4454), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4454), + }, + [STATE(1840)] = { + [ts_builtin_sym_end] = ACTIONS(4458), + [sym_identifier] = ACTIONS(4460), + [anon_sym_import] = ACTIONS(4460), + [anon_sym_test] = ACTIONS(4460), + [anon_sym_hide] = ACTIONS(4460), + [anon_sym_func] = ACTIONS(4460), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_void] = ACTIONS(4460), + [anon_sym_type] = ACTIONS(4460), + [anon_sym_anyopaque] = ACTIONS(4460), + [anon_sym_bool] = ACTIONS(4460), + [anon_sym_int] = ACTIONS(4460), + [anon_sym_uint] = ACTIONS(4460), + [anon_sym_float] = ACTIONS(4460), + [anon_sym_range] = ACTIONS(4460), + [anon_sym_i8] = ACTIONS(4460), + [anon_sym_i16] = ACTIONS(4460), + [anon_sym_i32] = ACTIONS(4460), + [anon_sym_i64] = ACTIONS(4460), + [anon_sym_u8] = ACTIONS(4460), + [anon_sym_u16] = ACTIONS(4460), + [anon_sym_u32] = ACTIONS(4460), + [anon_sym_u64] = ACTIONS(4460), + [anon_sym_isize] = ACTIONS(4460), + [anon_sym_usize] = ACTIONS(4460), + [anon_sym_f32] = ACTIONS(4460), + [anon_sym_f64] = ACTIONS(4460), + [anon_sym_c_char] = ACTIONS(4460), + [anon_sym_c_schar] = ACTIONS(4460), + [anon_sym_c_uchar] = ACTIONS(4460), + [anon_sym_c_short] = ACTIONS(4460), + [anon_sym_c_ushort] = ACTIONS(4460), + [anon_sym_c_int] = ACTIONS(4460), + [anon_sym_c_uint] = ACTIONS(4460), + [anon_sym_c_long] = ACTIONS(4460), + [anon_sym_c_ulong] = ACTIONS(4460), + [anon_sym_c_longlong] = ACTIONS(4460), + [anon_sym_c_ulonglong] = ACTIONS(4460), + [anon_sym_c_float] = ACTIONS(4460), + [anon_sym_c_double] = ACTIONS(4460), + [anon_sym_c_longdouble] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_yield] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_defer] = ACTIONS(4460), + [anon_sym_errdefer] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_expand] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_match] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_true] = ACTIONS(4460), + [anon_sym_false] = ACTIONS(4460), + [sym_none] = ACTIONS(4460), + [sym_undefined] = ACTIONS(4460), + [sym_sink] = ACTIONS(4460), + [sym_integer] = ACTIONS(4460), + [sym_float] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4458), + [sym_multiline_string] = ACTIONS(4458), + [sym_character] = ACTIONS(4458), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4458), + }, + [STATE(1841)] = { + [ts_builtin_sym_end] = ACTIONS(4462), + [sym_identifier] = ACTIONS(4464), + [anon_sym_import] = ACTIONS(4464), + [anon_sym_test] = ACTIONS(4464), + [anon_sym_hide] = ACTIONS(4464), + [anon_sym_func] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_DOLLAR] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_void] = ACTIONS(4464), + [anon_sym_type] = ACTIONS(4464), + [anon_sym_anyopaque] = ACTIONS(4464), + [anon_sym_bool] = ACTIONS(4464), + [anon_sym_int] = ACTIONS(4464), + [anon_sym_uint] = ACTIONS(4464), + [anon_sym_float] = ACTIONS(4464), + [anon_sym_range] = ACTIONS(4464), + [anon_sym_i8] = ACTIONS(4464), + [anon_sym_i16] = ACTIONS(4464), + [anon_sym_i32] = ACTIONS(4464), + [anon_sym_i64] = ACTIONS(4464), + [anon_sym_u8] = ACTIONS(4464), + [anon_sym_u16] = ACTIONS(4464), + [anon_sym_u32] = ACTIONS(4464), + [anon_sym_u64] = ACTIONS(4464), + [anon_sym_isize] = ACTIONS(4464), + [anon_sym_usize] = ACTIONS(4464), + [anon_sym_f32] = ACTIONS(4464), + [anon_sym_f64] = ACTIONS(4464), + [anon_sym_c_char] = ACTIONS(4464), + [anon_sym_c_schar] = ACTIONS(4464), + [anon_sym_c_uchar] = ACTIONS(4464), + [anon_sym_c_short] = ACTIONS(4464), + [anon_sym_c_ushort] = ACTIONS(4464), + [anon_sym_c_int] = ACTIONS(4464), + [anon_sym_c_uint] = ACTIONS(4464), + [anon_sym_c_long] = ACTIONS(4464), + [anon_sym_c_ulong] = ACTIONS(4464), + [anon_sym_c_longlong] = ACTIONS(4464), + [anon_sym_c_ulonglong] = ACTIONS(4464), + [anon_sym_c_float] = ACTIONS(4464), + [anon_sym_c_double] = ACTIONS(4464), + [anon_sym_c_longdouble] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_yield] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_defer] = ACTIONS(4464), + [anon_sym_errdefer] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_expand] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_match] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_true] = ACTIONS(4464), + [anon_sym_false] = ACTIONS(4464), + [sym_none] = ACTIONS(4464), + [sym_undefined] = ACTIONS(4464), + [sym_sink] = ACTIONS(4464), + [sym_integer] = ACTIONS(4464), + [sym_float] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym_multiline_string] = ACTIONS(4462), + [sym_character] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4462), + }, + [STATE(1842)] = { + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4468), + [anon_sym_import] = ACTIONS(4468), + [anon_sym_test] = ACTIONS(4468), + [anon_sym_hide] = ACTIONS(4468), + [anon_sym_func] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_void] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_anyopaque] = ACTIONS(4468), + [anon_sym_bool] = ACTIONS(4468), + [anon_sym_int] = ACTIONS(4468), + [anon_sym_uint] = ACTIONS(4468), + [anon_sym_float] = ACTIONS(4468), + [anon_sym_range] = ACTIONS(4468), + [anon_sym_i8] = ACTIONS(4468), + [anon_sym_i16] = ACTIONS(4468), + [anon_sym_i32] = ACTIONS(4468), + [anon_sym_i64] = ACTIONS(4468), + [anon_sym_u8] = ACTIONS(4468), + [anon_sym_u16] = ACTIONS(4468), + [anon_sym_u32] = ACTIONS(4468), + [anon_sym_u64] = ACTIONS(4468), + [anon_sym_isize] = ACTIONS(4468), + [anon_sym_usize] = ACTIONS(4468), + [anon_sym_f32] = ACTIONS(4468), + [anon_sym_f64] = ACTIONS(4468), + [anon_sym_c_char] = ACTIONS(4468), + [anon_sym_c_schar] = ACTIONS(4468), + [anon_sym_c_uchar] = ACTIONS(4468), + [anon_sym_c_short] = ACTIONS(4468), + [anon_sym_c_ushort] = ACTIONS(4468), + [anon_sym_c_int] = ACTIONS(4468), + [anon_sym_c_uint] = ACTIONS(4468), + [anon_sym_c_long] = ACTIONS(4468), + [anon_sym_c_ulong] = ACTIONS(4468), + [anon_sym_c_longlong] = ACTIONS(4468), + [anon_sym_c_ulonglong] = ACTIONS(4468), + [anon_sym_c_float] = ACTIONS(4468), + [anon_sym_c_double] = ACTIONS(4468), + [anon_sym_c_longdouble] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_yield] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_defer] = ACTIONS(4468), + [anon_sym_errdefer] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_expand] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [sym_none] = ACTIONS(4468), + [sym_undefined] = ACTIONS(4468), + [sym_sink] = ACTIONS(4468), + [sym_integer] = ACTIONS(4468), + [sym_float] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_multiline_string] = ACTIONS(4466), + [sym_character] = ACTIONS(4466), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4466), + }, + [STATE(1843)] = { + [aux_sym_import_declaration_repeat1] = STATE(3858), + [sym_identifier] = ACTIONS(4470), + [anon_sym_func] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_void] = ACTIONS(4470), + [anon_sym_type] = ACTIONS(4470), + [anon_sym_anyopaque] = ACTIONS(4470), + [anon_sym_bool] = ACTIONS(4470), + [anon_sym_int] = ACTIONS(4470), + [anon_sym_uint] = ACTIONS(4470), + [anon_sym_float] = ACTIONS(4470), + [anon_sym_range] = ACTIONS(4470), + [anon_sym_i8] = ACTIONS(4470), + [anon_sym_i16] = ACTIONS(4470), + [anon_sym_i32] = ACTIONS(4470), + [anon_sym_i64] = ACTIONS(4470), + [anon_sym_u8] = ACTIONS(4470), + [anon_sym_u16] = ACTIONS(4470), + [anon_sym_u32] = ACTIONS(4470), + [anon_sym_u64] = ACTIONS(4470), + [anon_sym_isize] = ACTIONS(4470), + [anon_sym_usize] = ACTIONS(4470), + [anon_sym_f32] = ACTIONS(4470), + [anon_sym_f64] = ACTIONS(4470), + [anon_sym_c_char] = ACTIONS(4470), + [anon_sym_c_schar] = ACTIONS(4470), + [anon_sym_c_uchar] = ACTIONS(4470), + [anon_sym_c_short] = ACTIONS(4470), + [anon_sym_c_ushort] = ACTIONS(4470), + [anon_sym_c_int] = ACTIONS(4470), + [anon_sym_c_uint] = ACTIONS(4470), + [anon_sym_c_long] = ACTIONS(4470), + [anon_sym_c_ulong] = ACTIONS(4470), + [anon_sym_c_longlong] = ACTIONS(4470), + [anon_sym_c_ulonglong] = ACTIONS(4470), + [anon_sym_c_float] = ACTIONS(4470), + [anon_sym_c_double] = ACTIONS(4470), + [anon_sym_c_longdouble] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_defer] = ACTIONS(4470), + [anon_sym_errdefer] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_else] = ACTIONS(4474), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_expand] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_match] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_true] = ACTIONS(4470), + [anon_sym_false] = ACTIONS(4470), + [sym_none] = ACTIONS(4470), + [sym_undefined] = ACTIONS(4470), + [sym_sink] = ACTIONS(4470), + [sym_integer] = ACTIONS(4470), + [sym_float] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_multiline_string] = ACTIONS(4472), + [sym_character] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4476), + }, + [STATE(1844)] = { + [aux_sym_import_declaration_repeat1] = STATE(3716), + [sym_identifier] = ACTIONS(4479), + [anon_sym_func] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_struct] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_void] = ACTIONS(4479), + [anon_sym_type] = ACTIONS(4479), + [anon_sym_anyopaque] = ACTIONS(4479), + [anon_sym_bool] = ACTIONS(4479), + [anon_sym_int] = ACTIONS(4479), + [anon_sym_uint] = ACTIONS(4479), + [anon_sym_float] = ACTIONS(4479), + [anon_sym_range] = ACTIONS(4479), + [anon_sym_i8] = ACTIONS(4479), + [anon_sym_i16] = ACTIONS(4479), + [anon_sym_i32] = ACTIONS(4479), + [anon_sym_i64] = ACTIONS(4479), + [anon_sym_u8] = ACTIONS(4479), + [anon_sym_u16] = ACTIONS(4479), + [anon_sym_u32] = ACTIONS(4479), + [anon_sym_u64] = ACTIONS(4479), + [anon_sym_isize] = ACTIONS(4479), + [anon_sym_usize] = ACTIONS(4479), + [anon_sym_f32] = ACTIONS(4479), + [anon_sym_f64] = ACTIONS(4479), + [anon_sym_c_char] = ACTIONS(4479), + [anon_sym_c_schar] = ACTIONS(4479), + [anon_sym_c_uchar] = ACTIONS(4479), + [anon_sym_c_short] = ACTIONS(4479), + [anon_sym_c_ushort] = ACTIONS(4479), + [anon_sym_c_int] = ACTIONS(4479), + [anon_sym_c_uint] = ACTIONS(4479), + [anon_sym_c_long] = ACTIONS(4479), + [anon_sym_c_ulong] = ACTIONS(4479), + [anon_sym_c_longlong] = ACTIONS(4479), + [anon_sym_c_ulonglong] = ACTIONS(4479), + [anon_sym_c_float] = ACTIONS(4479), + [anon_sym_c_double] = ACTIONS(4479), + [anon_sym_c_longdouble] = ACTIONS(4479), + [anon_sym_return] = ACTIONS(4479), + [anon_sym_yield] = ACTIONS(4479), + [anon_sym_break] = ACTIONS(4479), + [anon_sym_continue] = ACTIONS(4479), + [anon_sym_defer] = ACTIONS(4479), + [anon_sym_errdefer] = ACTIONS(4479), + [anon_sym_if] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4483), + [anon_sym_while] = ACTIONS(4479), + [anon_sym_expand] = ACTIONS(4479), + [anon_sym_for] = ACTIONS(4479), + [anon_sym_match] = ACTIONS(4479), + [anon_sym_AMP] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_true] = ACTIONS(4479), + [anon_sym_false] = ACTIONS(4479), + [sym_none] = ACTIONS(4479), + [sym_undefined] = ACTIONS(4479), + [sym_sink] = ACTIONS(4479), + [sym_integer] = ACTIONS(4479), + [sym_float] = ACTIONS(4481), + [anon_sym_DQUOTE] = ACTIONS(4481), + [sym_multiline_string] = ACTIONS(4481), + [sym_character] = ACTIONS(4481), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4485), + }, + [STATE(1845)] = { + [aux_sym_import_declaration_repeat1] = STATE(3804), + [sym_identifier] = ACTIONS(4488), + [anon_sym_func] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_void] = ACTIONS(4488), + [anon_sym_type] = ACTIONS(4488), + [anon_sym_anyopaque] = ACTIONS(4488), + [anon_sym_bool] = ACTIONS(4488), + [anon_sym_int] = ACTIONS(4488), + [anon_sym_uint] = ACTIONS(4488), + [anon_sym_float] = ACTIONS(4488), + [anon_sym_range] = ACTIONS(4488), + [anon_sym_i8] = ACTIONS(4488), + [anon_sym_i16] = ACTIONS(4488), + [anon_sym_i32] = ACTIONS(4488), + [anon_sym_i64] = ACTIONS(4488), + [anon_sym_u8] = ACTIONS(4488), + [anon_sym_u16] = ACTIONS(4488), + [anon_sym_u32] = ACTIONS(4488), + [anon_sym_u64] = ACTIONS(4488), + [anon_sym_isize] = ACTIONS(4488), + [anon_sym_usize] = ACTIONS(4488), + [anon_sym_f32] = ACTIONS(4488), + [anon_sym_f64] = ACTIONS(4488), + [anon_sym_c_char] = ACTIONS(4488), + [anon_sym_c_schar] = ACTIONS(4488), + [anon_sym_c_uchar] = ACTIONS(4488), + [anon_sym_c_short] = ACTIONS(4488), + [anon_sym_c_ushort] = ACTIONS(4488), + [anon_sym_c_int] = ACTIONS(4488), + [anon_sym_c_uint] = ACTIONS(4488), + [anon_sym_c_long] = ACTIONS(4488), + [anon_sym_c_ulong] = ACTIONS(4488), + [anon_sym_c_longlong] = ACTIONS(4488), + [anon_sym_c_ulonglong] = ACTIONS(4488), + [anon_sym_c_float] = ACTIONS(4488), + [anon_sym_c_double] = ACTIONS(4488), + [anon_sym_c_longdouble] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_yield] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_defer] = ACTIONS(4488), + [anon_sym_errdefer] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_else] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_expand] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_match] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [sym_none] = ACTIONS(4488), + [sym_undefined] = ACTIONS(4488), + [sym_sink] = ACTIONS(4488), + [sym_integer] = ACTIONS(4488), + [sym_float] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_multiline_string] = ACTIONS(4490), + [sym_character] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4494), + }, + [STATE(1846)] = { + [aux_sym_import_declaration_repeat1] = STATE(3836), + [sym_identifier] = ACTIONS(4497), + [anon_sym_func] = ACTIONS(4497), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_void] = ACTIONS(4497), + [anon_sym_type] = ACTIONS(4497), + [anon_sym_anyopaque] = ACTIONS(4497), + [anon_sym_bool] = ACTIONS(4497), + [anon_sym_int] = ACTIONS(4497), + [anon_sym_uint] = ACTIONS(4497), + [anon_sym_float] = ACTIONS(4497), + [anon_sym_range] = ACTIONS(4497), + [anon_sym_i8] = ACTIONS(4497), + [anon_sym_i16] = ACTIONS(4497), + [anon_sym_i32] = ACTIONS(4497), + [anon_sym_i64] = ACTIONS(4497), + [anon_sym_u8] = ACTIONS(4497), + [anon_sym_u16] = ACTIONS(4497), + [anon_sym_u32] = ACTIONS(4497), + [anon_sym_u64] = ACTIONS(4497), + [anon_sym_isize] = ACTIONS(4497), + [anon_sym_usize] = ACTIONS(4497), + [anon_sym_f32] = ACTIONS(4497), + [anon_sym_f64] = ACTIONS(4497), + [anon_sym_c_char] = ACTIONS(4497), + [anon_sym_c_schar] = ACTIONS(4497), + [anon_sym_c_uchar] = ACTIONS(4497), + [anon_sym_c_short] = ACTIONS(4497), + [anon_sym_c_ushort] = ACTIONS(4497), + [anon_sym_c_int] = ACTIONS(4497), + [anon_sym_c_uint] = ACTIONS(4497), + [anon_sym_c_long] = ACTIONS(4497), + [anon_sym_c_ulong] = ACTIONS(4497), + [anon_sym_c_longlong] = ACTIONS(4497), + [anon_sym_c_ulonglong] = ACTIONS(4497), + [anon_sym_c_float] = ACTIONS(4497), + [anon_sym_c_double] = ACTIONS(4497), + [anon_sym_c_longdouble] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_yield] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_defer] = ACTIONS(4497), + [anon_sym_errdefer] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4501), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_expand] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_match] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [sym_none] = ACTIONS(4497), + [sym_undefined] = ACTIONS(4497), + [sym_sink] = ACTIONS(4497), + [sym_integer] = ACTIONS(4497), + [sym_float] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [sym_multiline_string] = ACTIONS(4499), + [sym_character] = ACTIONS(4499), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4503), + }, + [STATE(1847)] = { + [aux_sym_import_declaration_repeat1] = STATE(3735), + [sym_identifier] = ACTIONS(4479), + [anon_sym_func] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_struct] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_void] = ACTIONS(4479), + [anon_sym_type] = ACTIONS(4479), + [anon_sym_anyopaque] = ACTIONS(4479), + [anon_sym_bool] = ACTIONS(4479), + [anon_sym_int] = ACTIONS(4479), + [anon_sym_uint] = ACTIONS(4479), + [anon_sym_float] = ACTIONS(4479), + [anon_sym_range] = ACTIONS(4479), + [anon_sym_i8] = ACTIONS(4479), + [anon_sym_i16] = ACTIONS(4479), + [anon_sym_i32] = ACTIONS(4479), + [anon_sym_i64] = ACTIONS(4479), + [anon_sym_u8] = ACTIONS(4479), + [anon_sym_u16] = ACTIONS(4479), + [anon_sym_u32] = ACTIONS(4479), + [anon_sym_u64] = ACTIONS(4479), + [anon_sym_isize] = ACTIONS(4479), + [anon_sym_usize] = ACTIONS(4479), + [anon_sym_f32] = ACTIONS(4479), + [anon_sym_f64] = ACTIONS(4479), + [anon_sym_c_char] = ACTIONS(4479), + [anon_sym_c_schar] = ACTIONS(4479), + [anon_sym_c_uchar] = ACTIONS(4479), + [anon_sym_c_short] = ACTIONS(4479), + [anon_sym_c_ushort] = ACTIONS(4479), + [anon_sym_c_int] = ACTIONS(4479), + [anon_sym_c_uint] = ACTIONS(4479), + [anon_sym_c_long] = ACTIONS(4479), + [anon_sym_c_ulong] = ACTIONS(4479), + [anon_sym_c_longlong] = ACTIONS(4479), + [anon_sym_c_ulonglong] = ACTIONS(4479), + [anon_sym_c_float] = ACTIONS(4479), + [anon_sym_c_double] = ACTIONS(4479), + [anon_sym_c_longdouble] = ACTIONS(4479), + [anon_sym_return] = ACTIONS(4479), + [anon_sym_yield] = ACTIONS(4479), + [anon_sym_break] = ACTIONS(4479), + [anon_sym_continue] = ACTIONS(4479), + [anon_sym_defer] = ACTIONS(4479), + [anon_sym_errdefer] = ACTIONS(4479), + [anon_sym_if] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_while] = ACTIONS(4479), + [anon_sym_expand] = ACTIONS(4479), + [anon_sym_for] = ACTIONS(4479), + [anon_sym_match] = ACTIONS(4479), + [anon_sym_AMP] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_true] = ACTIONS(4479), + [anon_sym_false] = ACTIONS(4479), + [sym_none] = ACTIONS(4479), + [sym_undefined] = ACTIONS(4479), + [sym_sink] = ACTIONS(4479), + [sym_integer] = ACTIONS(4479), + [sym_float] = ACTIONS(4481), + [anon_sym_DQUOTE] = ACTIONS(4481), + [sym_multiline_string] = ACTIONS(4481), + [sym_character] = ACTIONS(4481), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4509), + }, + [STATE(1848)] = { + [aux_sym_import_declaration_repeat1] = STATE(3738), + [sym_identifier] = ACTIONS(4488), + [anon_sym_func] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_void] = ACTIONS(4488), + [anon_sym_type] = ACTIONS(4488), + [anon_sym_anyopaque] = ACTIONS(4488), + [anon_sym_bool] = ACTIONS(4488), + [anon_sym_int] = ACTIONS(4488), + [anon_sym_uint] = ACTIONS(4488), + [anon_sym_float] = ACTIONS(4488), + [anon_sym_range] = ACTIONS(4488), + [anon_sym_i8] = ACTIONS(4488), + [anon_sym_i16] = ACTIONS(4488), + [anon_sym_i32] = ACTIONS(4488), + [anon_sym_i64] = ACTIONS(4488), + [anon_sym_u8] = ACTIONS(4488), + [anon_sym_u16] = ACTIONS(4488), + [anon_sym_u32] = ACTIONS(4488), + [anon_sym_u64] = ACTIONS(4488), + [anon_sym_isize] = ACTIONS(4488), + [anon_sym_usize] = ACTIONS(4488), + [anon_sym_f32] = ACTIONS(4488), + [anon_sym_f64] = ACTIONS(4488), + [anon_sym_c_char] = ACTIONS(4488), + [anon_sym_c_schar] = ACTIONS(4488), + [anon_sym_c_uchar] = ACTIONS(4488), + [anon_sym_c_short] = ACTIONS(4488), + [anon_sym_c_ushort] = ACTIONS(4488), + [anon_sym_c_int] = ACTIONS(4488), + [anon_sym_c_uint] = ACTIONS(4488), + [anon_sym_c_long] = ACTIONS(4488), + [anon_sym_c_ulong] = ACTIONS(4488), + [anon_sym_c_longlong] = ACTIONS(4488), + [anon_sym_c_ulonglong] = ACTIONS(4488), + [anon_sym_c_float] = ACTIONS(4488), + [anon_sym_c_double] = ACTIONS(4488), + [anon_sym_c_longdouble] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_yield] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_defer] = ACTIONS(4488), + [anon_sym_errdefer] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_else] = ACTIONS(4512), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_expand] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_match] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [sym_none] = ACTIONS(4488), + [sym_undefined] = ACTIONS(4488), + [sym_sink] = ACTIONS(4488), + [sym_integer] = ACTIONS(4488), + [sym_float] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_multiline_string] = ACTIONS(4490), + [sym_character] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4515), + }, + [STATE(1849)] = { + [aux_sym_import_declaration_repeat1] = STATE(3739), + [sym_identifier] = ACTIONS(4497), + [anon_sym_func] = ACTIONS(4497), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_void] = ACTIONS(4497), + [anon_sym_type] = ACTIONS(4497), + [anon_sym_anyopaque] = ACTIONS(4497), + [anon_sym_bool] = ACTIONS(4497), + [anon_sym_int] = ACTIONS(4497), + [anon_sym_uint] = ACTIONS(4497), + [anon_sym_float] = ACTIONS(4497), + [anon_sym_range] = ACTIONS(4497), + [anon_sym_i8] = ACTIONS(4497), + [anon_sym_i16] = ACTIONS(4497), + [anon_sym_i32] = ACTIONS(4497), + [anon_sym_i64] = ACTIONS(4497), + [anon_sym_u8] = ACTIONS(4497), + [anon_sym_u16] = ACTIONS(4497), + [anon_sym_u32] = ACTIONS(4497), + [anon_sym_u64] = ACTIONS(4497), + [anon_sym_isize] = ACTIONS(4497), + [anon_sym_usize] = ACTIONS(4497), + [anon_sym_f32] = ACTIONS(4497), + [anon_sym_f64] = ACTIONS(4497), + [anon_sym_c_char] = ACTIONS(4497), + [anon_sym_c_schar] = ACTIONS(4497), + [anon_sym_c_uchar] = ACTIONS(4497), + [anon_sym_c_short] = ACTIONS(4497), + [anon_sym_c_ushort] = ACTIONS(4497), + [anon_sym_c_int] = ACTIONS(4497), + [anon_sym_c_uint] = ACTIONS(4497), + [anon_sym_c_long] = ACTIONS(4497), + [anon_sym_c_ulong] = ACTIONS(4497), + [anon_sym_c_longlong] = ACTIONS(4497), + [anon_sym_c_ulonglong] = ACTIONS(4497), + [anon_sym_c_float] = ACTIONS(4497), + [anon_sym_c_double] = ACTIONS(4497), + [anon_sym_c_longdouble] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_yield] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_defer] = ACTIONS(4497), + [anon_sym_errdefer] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_expand] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_match] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [sym_none] = ACTIONS(4497), + [sym_undefined] = ACTIONS(4497), + [sym_sink] = ACTIONS(4497), + [sym_integer] = ACTIONS(4497), + [sym_float] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [sym_multiline_string] = ACTIONS(4499), + [sym_character] = ACTIONS(4499), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4521), + }, + [STATE(1850)] = { + [aux_sym_import_declaration_repeat1] = STATE(3740), + [sym_identifier] = ACTIONS(4524), + [anon_sym_func] = ACTIONS(4524), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4526), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4526), + [anon_sym_void] = ACTIONS(4524), + [anon_sym_type] = ACTIONS(4524), + [anon_sym_anyopaque] = ACTIONS(4524), + [anon_sym_bool] = ACTIONS(4524), + [anon_sym_int] = ACTIONS(4524), + [anon_sym_uint] = ACTIONS(4524), + [anon_sym_float] = ACTIONS(4524), + [anon_sym_range] = ACTIONS(4524), + [anon_sym_i8] = ACTIONS(4524), + [anon_sym_i16] = ACTIONS(4524), + [anon_sym_i32] = ACTIONS(4524), + [anon_sym_i64] = ACTIONS(4524), + [anon_sym_u8] = ACTIONS(4524), + [anon_sym_u16] = ACTIONS(4524), + [anon_sym_u32] = ACTIONS(4524), + [anon_sym_u64] = ACTIONS(4524), + [anon_sym_isize] = ACTIONS(4524), + [anon_sym_usize] = ACTIONS(4524), + [anon_sym_f32] = ACTIONS(4524), + [anon_sym_f64] = ACTIONS(4524), + [anon_sym_c_char] = ACTIONS(4524), + [anon_sym_c_schar] = ACTIONS(4524), + [anon_sym_c_uchar] = ACTIONS(4524), + [anon_sym_c_short] = ACTIONS(4524), + [anon_sym_c_ushort] = ACTIONS(4524), + [anon_sym_c_int] = ACTIONS(4524), + [anon_sym_c_uint] = ACTIONS(4524), + [anon_sym_c_long] = ACTIONS(4524), + [anon_sym_c_ulong] = ACTIONS(4524), + [anon_sym_c_longlong] = ACTIONS(4524), + [anon_sym_c_ulonglong] = ACTIONS(4524), + [anon_sym_c_float] = ACTIONS(4524), + [anon_sym_c_double] = ACTIONS(4524), + [anon_sym_c_longdouble] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4524), + [anon_sym_yield] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4524), + [anon_sym_continue] = ACTIONS(4524), + [anon_sym_defer] = ACTIONS(4524), + [anon_sym_errdefer] = ACTIONS(4524), + [anon_sym_if] = ACTIONS(4524), + [anon_sym_else] = ACTIONS(4528), + [anon_sym_while] = ACTIONS(4524), + [anon_sym_expand] = ACTIONS(4524), + [anon_sym_for] = ACTIONS(4524), + [anon_sym_match] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [anon_sym_try] = ACTIONS(4524), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_true] = ACTIONS(4524), + [anon_sym_false] = ACTIONS(4524), + [sym_none] = ACTIONS(4524), + [sym_undefined] = ACTIONS(4524), + [sym_sink] = ACTIONS(4524), + [sym_integer] = ACTIONS(4524), + [sym_float] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(4526), + [sym_multiline_string] = ACTIONS(4526), + [sym_character] = ACTIONS(4526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4531), + }, + [STATE(1851)] = { + [aux_sym_import_declaration_repeat1] = STATE(3787), + [sym_identifier] = ACTIONS(4524), + [anon_sym_func] = ACTIONS(4524), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4526), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4526), + [anon_sym_void] = ACTIONS(4524), + [anon_sym_type] = ACTIONS(4524), + [anon_sym_anyopaque] = ACTIONS(4524), + [anon_sym_bool] = ACTIONS(4524), + [anon_sym_int] = ACTIONS(4524), + [anon_sym_uint] = ACTIONS(4524), + [anon_sym_float] = ACTIONS(4524), + [anon_sym_range] = ACTIONS(4524), + [anon_sym_i8] = ACTIONS(4524), + [anon_sym_i16] = ACTIONS(4524), + [anon_sym_i32] = ACTIONS(4524), + [anon_sym_i64] = ACTIONS(4524), + [anon_sym_u8] = ACTIONS(4524), + [anon_sym_u16] = ACTIONS(4524), + [anon_sym_u32] = ACTIONS(4524), + [anon_sym_u64] = ACTIONS(4524), + [anon_sym_isize] = ACTIONS(4524), + [anon_sym_usize] = ACTIONS(4524), + [anon_sym_f32] = ACTIONS(4524), + [anon_sym_f64] = ACTIONS(4524), + [anon_sym_c_char] = ACTIONS(4524), + [anon_sym_c_schar] = ACTIONS(4524), + [anon_sym_c_uchar] = ACTIONS(4524), + [anon_sym_c_short] = ACTIONS(4524), + [anon_sym_c_ushort] = ACTIONS(4524), + [anon_sym_c_int] = ACTIONS(4524), + [anon_sym_c_uint] = ACTIONS(4524), + [anon_sym_c_long] = ACTIONS(4524), + [anon_sym_c_ulong] = ACTIONS(4524), + [anon_sym_c_longlong] = ACTIONS(4524), + [anon_sym_c_ulonglong] = ACTIONS(4524), + [anon_sym_c_float] = ACTIONS(4524), + [anon_sym_c_double] = ACTIONS(4524), + [anon_sym_c_longdouble] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4524), + [anon_sym_yield] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4524), + [anon_sym_continue] = ACTIONS(4524), + [anon_sym_defer] = ACTIONS(4524), + [anon_sym_errdefer] = ACTIONS(4524), + [anon_sym_if] = ACTIONS(4524), + [anon_sym_else] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4524), + [anon_sym_expand] = ACTIONS(4524), + [anon_sym_for] = ACTIONS(4524), + [anon_sym_match] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [anon_sym_try] = ACTIONS(4524), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_true] = ACTIONS(4524), + [anon_sym_false] = ACTIONS(4524), + [sym_none] = ACTIONS(4524), + [sym_undefined] = ACTIONS(4524), + [sym_sink] = ACTIONS(4524), + [sym_integer] = ACTIONS(4524), + [sym_float] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(4526), + [sym_multiline_string] = ACTIONS(4526), + [sym_character] = ACTIONS(4526), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4536), + }, + [STATE(1852)] = { + [aux_sym_import_declaration_repeat1] = STATE(3741), + [sym_identifier] = ACTIONS(4539), + [anon_sym_func] = ACTIONS(4539), + [anon_sym_BANG] = ACTIONS(4541), + [anon_sym_struct] = ACTIONS(4539), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_void] = ACTIONS(4539), + [anon_sym_type] = ACTIONS(4539), + [anon_sym_anyopaque] = ACTIONS(4539), + [anon_sym_bool] = ACTIONS(4539), + [anon_sym_int] = ACTIONS(4539), + [anon_sym_uint] = ACTIONS(4539), + [anon_sym_float] = ACTIONS(4539), + [anon_sym_range] = ACTIONS(4539), + [anon_sym_i8] = ACTIONS(4539), + [anon_sym_i16] = ACTIONS(4539), + [anon_sym_i32] = ACTIONS(4539), + [anon_sym_i64] = ACTIONS(4539), + [anon_sym_u8] = ACTIONS(4539), + [anon_sym_u16] = ACTIONS(4539), + [anon_sym_u32] = ACTIONS(4539), + [anon_sym_u64] = ACTIONS(4539), + [anon_sym_isize] = ACTIONS(4539), + [anon_sym_usize] = ACTIONS(4539), + [anon_sym_f32] = ACTIONS(4539), + [anon_sym_f64] = ACTIONS(4539), + [anon_sym_c_char] = ACTIONS(4539), + [anon_sym_c_schar] = ACTIONS(4539), + [anon_sym_c_uchar] = ACTIONS(4539), + [anon_sym_c_short] = ACTIONS(4539), + [anon_sym_c_ushort] = ACTIONS(4539), + [anon_sym_c_int] = ACTIONS(4539), + [anon_sym_c_uint] = ACTIONS(4539), + [anon_sym_c_long] = ACTIONS(4539), + [anon_sym_c_ulong] = ACTIONS(4539), + [anon_sym_c_longlong] = ACTIONS(4539), + [anon_sym_c_ulonglong] = ACTIONS(4539), + [anon_sym_c_float] = ACTIONS(4539), + [anon_sym_c_double] = ACTIONS(4539), + [anon_sym_c_longdouble] = ACTIONS(4539), + [anon_sym_return] = ACTIONS(4539), + [anon_sym_yield] = ACTIONS(4539), + [anon_sym_break] = ACTIONS(4539), + [anon_sym_continue] = ACTIONS(4539), + [anon_sym_defer] = ACTIONS(4539), + [anon_sym_errdefer] = ACTIONS(4539), + [anon_sym_if] = ACTIONS(4539), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_while] = ACTIONS(4539), + [anon_sym_expand] = ACTIONS(4539), + [anon_sym_for] = ACTIONS(4539), + [anon_sym_match] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_try] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_true] = ACTIONS(4539), + [anon_sym_false] = ACTIONS(4539), + [sym_none] = ACTIONS(4539), + [sym_undefined] = ACTIONS(4539), + [sym_sink] = ACTIONS(4539), + [sym_integer] = ACTIONS(4539), + [sym_float] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4541), + [sym_multiline_string] = ACTIONS(4541), + [sym_character] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4546), + }, + [STATE(1853)] = { + [aux_sym_import_declaration_repeat1] = STATE(3809), + [sym_identifier] = ACTIONS(4539), + [anon_sym_func] = ACTIONS(4539), + [anon_sym_BANG] = ACTIONS(4541), + [anon_sym_struct] = ACTIONS(4539), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_void] = ACTIONS(4539), + [anon_sym_type] = ACTIONS(4539), + [anon_sym_anyopaque] = ACTIONS(4539), + [anon_sym_bool] = ACTIONS(4539), + [anon_sym_int] = ACTIONS(4539), + [anon_sym_uint] = ACTIONS(4539), + [anon_sym_float] = ACTIONS(4539), + [anon_sym_range] = ACTIONS(4539), + [anon_sym_i8] = ACTIONS(4539), + [anon_sym_i16] = ACTIONS(4539), + [anon_sym_i32] = ACTIONS(4539), + [anon_sym_i64] = ACTIONS(4539), + [anon_sym_u8] = ACTIONS(4539), + [anon_sym_u16] = ACTIONS(4539), + [anon_sym_u32] = ACTIONS(4539), + [anon_sym_u64] = ACTIONS(4539), + [anon_sym_isize] = ACTIONS(4539), + [anon_sym_usize] = ACTIONS(4539), + [anon_sym_f32] = ACTIONS(4539), + [anon_sym_f64] = ACTIONS(4539), + [anon_sym_c_char] = ACTIONS(4539), + [anon_sym_c_schar] = ACTIONS(4539), + [anon_sym_c_uchar] = ACTIONS(4539), + [anon_sym_c_short] = ACTIONS(4539), + [anon_sym_c_ushort] = ACTIONS(4539), + [anon_sym_c_int] = ACTIONS(4539), + [anon_sym_c_uint] = ACTIONS(4539), + [anon_sym_c_long] = ACTIONS(4539), + [anon_sym_c_ulong] = ACTIONS(4539), + [anon_sym_c_longlong] = ACTIONS(4539), + [anon_sym_c_ulonglong] = ACTIONS(4539), + [anon_sym_c_float] = ACTIONS(4539), + [anon_sym_c_double] = ACTIONS(4539), + [anon_sym_c_longdouble] = ACTIONS(4539), + [anon_sym_return] = ACTIONS(4539), + [anon_sym_yield] = ACTIONS(4539), + [anon_sym_break] = ACTIONS(4539), + [anon_sym_continue] = ACTIONS(4539), + [anon_sym_defer] = ACTIONS(4539), + [anon_sym_errdefer] = ACTIONS(4539), + [anon_sym_if] = ACTIONS(4539), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_while] = ACTIONS(4539), + [anon_sym_expand] = ACTIONS(4539), + [anon_sym_for] = ACTIONS(4539), + [anon_sym_match] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_try] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_true] = ACTIONS(4539), + [anon_sym_false] = ACTIONS(4539), + [sym_none] = ACTIONS(4539), + [sym_undefined] = ACTIONS(4539), + [sym_sink] = ACTIONS(4539), + [sym_integer] = ACTIONS(4539), + [sym_float] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4541), + [sym_multiline_string] = ACTIONS(4541), + [sym_character] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4551), + }, + [STATE(1854)] = { + [aux_sym_import_declaration_repeat1] = STATE(3742), + [sym_identifier] = ACTIONS(4470), + [anon_sym_func] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_void] = ACTIONS(4470), + [anon_sym_type] = ACTIONS(4470), + [anon_sym_anyopaque] = ACTIONS(4470), + [anon_sym_bool] = ACTIONS(4470), + [anon_sym_int] = ACTIONS(4470), + [anon_sym_uint] = ACTIONS(4470), + [anon_sym_float] = ACTIONS(4470), + [anon_sym_range] = ACTIONS(4470), + [anon_sym_i8] = ACTIONS(4470), + [anon_sym_i16] = ACTIONS(4470), + [anon_sym_i32] = ACTIONS(4470), + [anon_sym_i64] = ACTIONS(4470), + [anon_sym_u8] = ACTIONS(4470), + [anon_sym_u16] = ACTIONS(4470), + [anon_sym_u32] = ACTIONS(4470), + [anon_sym_u64] = ACTIONS(4470), + [anon_sym_isize] = ACTIONS(4470), + [anon_sym_usize] = ACTIONS(4470), + [anon_sym_f32] = ACTIONS(4470), + [anon_sym_f64] = ACTIONS(4470), + [anon_sym_c_char] = ACTIONS(4470), + [anon_sym_c_schar] = ACTIONS(4470), + [anon_sym_c_uchar] = ACTIONS(4470), + [anon_sym_c_short] = ACTIONS(4470), + [anon_sym_c_ushort] = ACTIONS(4470), + [anon_sym_c_int] = ACTIONS(4470), + [anon_sym_c_uint] = ACTIONS(4470), + [anon_sym_c_long] = ACTIONS(4470), + [anon_sym_c_ulong] = ACTIONS(4470), + [anon_sym_c_longlong] = ACTIONS(4470), + [anon_sym_c_ulonglong] = ACTIONS(4470), + [anon_sym_c_float] = ACTIONS(4470), + [anon_sym_c_double] = ACTIONS(4470), + [anon_sym_c_longdouble] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_defer] = ACTIONS(4470), + [anon_sym_errdefer] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_else] = ACTIONS(4554), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_expand] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_match] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_true] = ACTIONS(4470), + [anon_sym_false] = ACTIONS(4470), + [sym_none] = ACTIONS(4470), + [sym_undefined] = ACTIONS(4470), + [sym_sink] = ACTIONS(4470), + [sym_integer] = ACTIONS(4470), + [sym_float] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_multiline_string] = ACTIONS(4472), + [sym_character] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4557), + }, + [STATE(1855)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(4560), + [anon_sym_func] = ACTIONS(4560), + [anon_sym_c_func] = ACTIONS(4560), + [anon_sym_struct] = ACTIONS(4560), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(4560), + [anon_sym_type] = ACTIONS(4560), + [anon_sym_anyopaque] = ACTIONS(4560), + [anon_sym_bool] = ACTIONS(4560), + [anon_sym_int] = ACTIONS(4560), + [anon_sym_uint] = ACTIONS(4560), + [anon_sym_float] = ACTIONS(4560), + [anon_sym_range] = ACTIONS(4560), + [anon_sym_i8] = ACTIONS(4560), + [anon_sym_i16] = ACTIONS(4560), + [anon_sym_i32] = ACTIONS(4560), + [anon_sym_i64] = ACTIONS(4560), + [anon_sym_u8] = ACTIONS(4560), + [anon_sym_u16] = ACTIONS(4560), + [anon_sym_u32] = ACTIONS(4560), + [anon_sym_u64] = ACTIONS(4560), + [anon_sym_isize] = ACTIONS(4560), + [anon_sym_usize] = ACTIONS(4560), + [anon_sym_f32] = ACTIONS(4560), + [anon_sym_f64] = ACTIONS(4560), + [anon_sym_c_char] = ACTIONS(4560), + [anon_sym_c_schar] = ACTIONS(4560), + [anon_sym_c_uchar] = ACTIONS(4560), + [anon_sym_c_short] = ACTIONS(4560), + [anon_sym_c_ushort] = ACTIONS(4560), + [anon_sym_c_int] = ACTIONS(4560), + [anon_sym_c_uint] = ACTIONS(4560), + [anon_sym_c_long] = ACTIONS(4560), + [anon_sym_c_ulong] = ACTIONS(4560), + [anon_sym_c_longlong] = ACTIONS(4560), + [anon_sym_c_ulonglong] = ACTIONS(4560), + [anon_sym_c_float] = ACTIONS(4560), + [anon_sym_c_double] = ACTIONS(4560), + [anon_sym_c_longdouble] = ACTIONS(4560), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4572), + [anon_sym_orelse] = ACTIONS(4574), + [anon_sym_catch] = ACTIONS(4576), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4562), + }, + [STATE(1856)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1857)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1858)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1859)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(4574), + [anon_sym_catch] = ACTIONS(4576), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1860)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(4574), + [anon_sym_catch] = ACTIONS(4576), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1861)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1862)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1863)] = { + [sym_identifier] = ACTIONS(4592), + [anon_sym_func] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_struct] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_void] = ACTIONS(4592), + [anon_sym_type] = ACTIONS(4592), + [anon_sym_anyopaque] = ACTIONS(4592), + [anon_sym_bool] = ACTIONS(4592), + [anon_sym_int] = ACTIONS(4592), + [anon_sym_uint] = ACTIONS(4592), + [anon_sym_float] = ACTIONS(4592), + [anon_sym_range] = ACTIONS(4592), + [anon_sym_i8] = ACTIONS(4592), + [anon_sym_i16] = ACTIONS(4592), + [anon_sym_i32] = ACTIONS(4592), + [anon_sym_i64] = ACTIONS(4592), + [anon_sym_u8] = ACTIONS(4592), + [anon_sym_u16] = ACTIONS(4592), + [anon_sym_u32] = ACTIONS(4592), + [anon_sym_u64] = ACTIONS(4592), + [anon_sym_isize] = ACTIONS(4592), + [anon_sym_usize] = ACTIONS(4592), + [anon_sym_f32] = ACTIONS(4592), + [anon_sym_f64] = ACTIONS(4592), + [anon_sym_c_char] = ACTIONS(4592), + [anon_sym_c_schar] = ACTIONS(4592), + [anon_sym_c_uchar] = ACTIONS(4592), + [anon_sym_c_short] = ACTIONS(4592), + [anon_sym_c_ushort] = ACTIONS(4592), + [anon_sym_c_int] = ACTIONS(4592), + [anon_sym_c_uint] = ACTIONS(4592), + [anon_sym_c_long] = ACTIONS(4592), + [anon_sym_c_ulong] = ACTIONS(4592), + [anon_sym_c_longlong] = ACTIONS(4592), + [anon_sym_c_ulonglong] = ACTIONS(4592), + [anon_sym_c_float] = ACTIONS(4592), + [anon_sym_c_double] = ACTIONS(4592), + [anon_sym_c_longdouble] = ACTIONS(4592), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_continue] = ACTIONS(4598), + [anon_sym_defer] = ACTIONS(4598), + [anon_sym_errdefer] = ACTIONS(4598), + [anon_sym_if] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_expand] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_try] = ACTIONS(4592), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_true] = ACTIONS(4592), + [anon_sym_false] = ACTIONS(4592), + [sym_none] = ACTIONS(4592), + [sym_undefined] = ACTIONS(4592), + [sym_sink] = ACTIONS(4592), + [sym_integer] = ACTIONS(4592), + [sym_float] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [sym_multiline_string] = ACTIONS(4595), + [sym_character] = ACTIONS(4595), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4595), + }, + [STATE(1864)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1865)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_c_func] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(1866)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(502), + [anon_sym_func] = ACTIONS(502), + [anon_sym_c_func] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_anyopaque] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_int] = ACTIONS(502), + [anon_sym_uint] = ACTIONS(502), + [anon_sym_float] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_c_char] = ACTIONS(502), + [anon_sym_c_schar] = ACTIONS(502), + [anon_sym_c_uchar] = ACTIONS(502), + [anon_sym_c_short] = ACTIONS(502), + [anon_sym_c_ushort] = ACTIONS(502), + [anon_sym_c_int] = ACTIONS(502), + [anon_sym_c_uint] = ACTIONS(502), + [anon_sym_c_long] = ACTIONS(502), + [anon_sym_c_ulong] = ACTIONS(502), + [anon_sym_c_longlong] = ACTIONS(502), + [anon_sym_c_ulonglong] = ACTIONS(502), + [anon_sym_c_float] = ACTIONS(502), + [anon_sym_c_double] = ACTIONS(502), + [anon_sym_c_longdouble] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_orelse] = ACTIONS(502), + [anon_sym_catch] = ACTIONS(502), + [anon_sym_or] = ACTIONS(502), + [anon_sym_and] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(500), + }, + [STATE(1867)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1868)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(470), + [anon_sym_func] = ACTIONS(470), + [anon_sym_c_func] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_anyopaque] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_int] = ACTIONS(470), + [anon_sym_uint] = ACTIONS(470), + [anon_sym_float] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_c_char] = ACTIONS(470), + [anon_sym_c_schar] = ACTIONS(470), + [anon_sym_c_uchar] = ACTIONS(470), + [anon_sym_c_short] = ACTIONS(470), + [anon_sym_c_ushort] = ACTIONS(470), + [anon_sym_c_int] = ACTIONS(470), + [anon_sym_c_uint] = ACTIONS(470), + [anon_sym_c_long] = ACTIONS(470), + [anon_sym_c_ulong] = ACTIONS(470), + [anon_sym_c_longlong] = ACTIONS(470), + [anon_sym_c_ulonglong] = ACTIONS(470), + [anon_sym_c_float] = ACTIONS(470), + [anon_sym_c_double] = ACTIONS(470), + [anon_sym_c_longdouble] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_orelse] = ACTIONS(470), + [anon_sym_catch] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_and] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_xor] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(468), + }, + [STATE(1869)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1870)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_c_func] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(1871)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(4600), + [anon_sym_func] = ACTIONS(4600), + [anon_sym_c_func] = ACTIONS(4600), + [anon_sym_struct] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_RBRACE] = ACTIONS(4602), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(4602), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(4600), + [anon_sym_type] = ACTIONS(4600), + [anon_sym_anyopaque] = ACTIONS(4600), + [anon_sym_bool] = ACTIONS(4600), + [anon_sym_int] = ACTIONS(4600), + [anon_sym_uint] = ACTIONS(4600), + [anon_sym_float] = ACTIONS(4600), + [anon_sym_range] = ACTIONS(4600), + [anon_sym_i8] = ACTIONS(4600), + [anon_sym_i16] = ACTIONS(4600), + [anon_sym_i32] = ACTIONS(4600), + [anon_sym_i64] = ACTIONS(4600), + [anon_sym_u8] = ACTIONS(4600), + [anon_sym_u16] = ACTIONS(4600), + [anon_sym_u32] = ACTIONS(4600), + [anon_sym_u64] = ACTIONS(4600), + [anon_sym_isize] = ACTIONS(4600), + [anon_sym_usize] = ACTIONS(4600), + [anon_sym_f32] = ACTIONS(4600), + [anon_sym_f64] = ACTIONS(4600), + [anon_sym_c_char] = ACTIONS(4600), + [anon_sym_c_schar] = ACTIONS(4600), + [anon_sym_c_uchar] = ACTIONS(4600), + [anon_sym_c_short] = ACTIONS(4600), + [anon_sym_c_ushort] = ACTIONS(4600), + [anon_sym_c_int] = ACTIONS(4600), + [anon_sym_c_uint] = ACTIONS(4600), + [anon_sym_c_long] = ACTIONS(4600), + [anon_sym_c_ulong] = ACTIONS(4600), + [anon_sym_c_longlong] = ACTIONS(4600), + [anon_sym_c_ulonglong] = ACTIONS(4600), + [anon_sym_c_float] = ACTIONS(4600), + [anon_sym_c_double] = ACTIONS(4600), + [anon_sym_c_longdouble] = ACTIONS(4600), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4572), + [anon_sym_orelse] = ACTIONS(4574), + [anon_sym_catch] = ACTIONS(4576), + [anon_sym_or] = ACTIONS(4578), + [anon_sym_and] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4602), + }, + [STATE(1872)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(578), + [anon_sym_c_func] = ACTIONS(578), + [anon_sym_struct] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(578), + [anon_sym_type] = ACTIONS(578), + [anon_sym_anyopaque] = ACTIONS(578), + [anon_sym_bool] = ACTIONS(578), + [anon_sym_int] = ACTIONS(578), + [anon_sym_uint] = ACTIONS(578), + [anon_sym_float] = ACTIONS(578), + [anon_sym_range] = ACTIONS(578), + [anon_sym_i8] = ACTIONS(578), + [anon_sym_i16] = ACTIONS(578), + [anon_sym_i32] = ACTIONS(578), + [anon_sym_i64] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(578), + [anon_sym_u16] = ACTIONS(578), + [anon_sym_u32] = ACTIONS(578), + [anon_sym_u64] = ACTIONS(578), + [anon_sym_isize] = ACTIONS(578), + [anon_sym_usize] = ACTIONS(578), + [anon_sym_f32] = ACTIONS(578), + [anon_sym_f64] = ACTIONS(578), + [anon_sym_c_char] = ACTIONS(578), + [anon_sym_c_schar] = ACTIONS(578), + [anon_sym_c_uchar] = ACTIONS(578), + [anon_sym_c_short] = ACTIONS(578), + [anon_sym_c_ushort] = ACTIONS(578), + [anon_sym_c_int] = ACTIONS(578), + [anon_sym_c_uint] = ACTIONS(578), + [anon_sym_c_long] = ACTIONS(578), + [anon_sym_c_ulong] = ACTIONS(578), + [anon_sym_c_longlong] = ACTIONS(578), + [anon_sym_c_ulonglong] = ACTIONS(578), + [anon_sym_c_float] = ACTIONS(578), + [anon_sym_c_double] = ACTIONS(578), + [anon_sym_c_longdouble] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_or] = ACTIONS(578), + [anon_sym_and] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4582), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(1873)] = { + [sym_argument_list] = STATE(658), + [sym_identifier] = ACTIONS(572), + [anon_sym_func] = ACTIONS(572), + [anon_sym_c_func] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_anyopaque] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_uint] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_range] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_c_char] = ACTIONS(572), + [anon_sym_c_schar] = ACTIONS(572), + [anon_sym_c_uchar] = ACTIONS(572), + [anon_sym_c_short] = ACTIONS(572), + [anon_sym_c_ushort] = ACTIONS(572), + [anon_sym_c_int] = ACTIONS(572), + [anon_sym_c_uint] = ACTIONS(572), + [anon_sym_c_long] = ACTIONS(572), + [anon_sym_c_ulong] = ACTIONS(572), + [anon_sym_c_longlong] = ACTIONS(572), + [anon_sym_c_ulonglong] = ACTIONS(572), + [anon_sym_c_float] = ACTIONS(572), + [anon_sym_c_double] = ACTIONS(572), + [anon_sym_c_longdouble] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(572), + [anon_sym_catch] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_and] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_xor] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(4588), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_LT_LT_PIPE] = ACTIONS(4590), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(35), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(1874)] = { + [sym_identifier] = ACTIONS(4604), + [anon_sym_func] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_struct] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_DOLLAR] = ACTIONS(4606), + [anon_sym_LBRACK] = ACTIONS(4606), + [anon_sym_void] = ACTIONS(4604), + [anon_sym_type] = ACTIONS(4604), + [anon_sym_anyopaque] = ACTIONS(4604), + [anon_sym_bool] = ACTIONS(4604), + [anon_sym_int] = ACTIONS(4604), + [anon_sym_uint] = ACTIONS(4604), + [anon_sym_float] = ACTIONS(4604), + [anon_sym_range] = ACTIONS(4604), + [anon_sym_i8] = ACTIONS(4604), + [anon_sym_i16] = ACTIONS(4604), + [anon_sym_i32] = ACTIONS(4604), + [anon_sym_i64] = ACTIONS(4604), + [anon_sym_u8] = ACTIONS(4604), + [anon_sym_u16] = ACTIONS(4604), + [anon_sym_u32] = ACTIONS(4604), + [anon_sym_u64] = ACTIONS(4604), + [anon_sym_isize] = ACTIONS(4604), + [anon_sym_usize] = ACTIONS(4604), + [anon_sym_f32] = ACTIONS(4604), + [anon_sym_f64] = ACTIONS(4604), + [anon_sym_c_char] = ACTIONS(4604), + [anon_sym_c_schar] = ACTIONS(4604), + [anon_sym_c_uchar] = ACTIONS(4604), + [anon_sym_c_short] = ACTIONS(4604), + [anon_sym_c_ushort] = ACTIONS(4604), + [anon_sym_c_int] = ACTIONS(4604), + [anon_sym_c_uint] = ACTIONS(4604), + [anon_sym_c_long] = ACTIONS(4604), + [anon_sym_c_ulong] = ACTIONS(4604), + [anon_sym_c_longlong] = ACTIONS(4604), + [anon_sym_c_ulonglong] = ACTIONS(4604), + [anon_sym_c_float] = ACTIONS(4604), + [anon_sym_c_double] = ACTIONS(4604), + [anon_sym_c_longdouble] = ACTIONS(4604), + [anon_sym_return] = ACTIONS(4604), + [anon_sym_yield] = ACTIONS(4604), + [anon_sym_break] = ACTIONS(4604), + [anon_sym_continue] = ACTIONS(4604), + [anon_sym_defer] = ACTIONS(4604), + [anon_sym_errdefer] = ACTIONS(4604), + [anon_sym_if] = ACTIONS(4604), + [anon_sym_while] = ACTIONS(4604), + [anon_sym_expand] = ACTIONS(4604), + [anon_sym_for] = ACTIONS(4604), + [anon_sym_match] = ACTIONS(4604), + [anon_sym_AMP] = ACTIONS(4606), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_try] = ACTIONS(4604), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_true] = ACTIONS(4604), + [anon_sym_false] = ACTIONS(4604), + [sym_none] = ACTIONS(4604), + [sym_undefined] = ACTIONS(4604), + [sym_sink] = ACTIONS(4604), + [sym_integer] = ACTIONS(4604), + [sym_float] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [sym_multiline_string] = ACTIONS(4606), + [sym_character] = ACTIONS(4606), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4606), + }, + [STATE(1875)] = { + [sym_identifier] = ACTIONS(4608), + [anon_sym_func] = ACTIONS(4608), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_struct] = ACTIONS(4608), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_LBRACE] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4610), + [anon_sym_DOLLAR] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(4610), + [anon_sym_void] = ACTIONS(4608), + [anon_sym_type] = ACTIONS(4608), + [anon_sym_anyopaque] = ACTIONS(4608), + [anon_sym_bool] = ACTIONS(4608), + [anon_sym_int] = ACTIONS(4608), + [anon_sym_uint] = ACTIONS(4608), + [anon_sym_float] = ACTIONS(4608), + [anon_sym_range] = ACTIONS(4608), + [anon_sym_i8] = ACTIONS(4608), + [anon_sym_i16] = ACTIONS(4608), + [anon_sym_i32] = ACTIONS(4608), + [anon_sym_i64] = ACTIONS(4608), + [anon_sym_u8] = ACTIONS(4608), + [anon_sym_u16] = ACTIONS(4608), + [anon_sym_u32] = ACTIONS(4608), + [anon_sym_u64] = ACTIONS(4608), + [anon_sym_isize] = ACTIONS(4608), + [anon_sym_usize] = ACTIONS(4608), + [anon_sym_f32] = ACTIONS(4608), + [anon_sym_f64] = ACTIONS(4608), + [anon_sym_c_char] = ACTIONS(4608), + [anon_sym_c_schar] = ACTIONS(4608), + [anon_sym_c_uchar] = ACTIONS(4608), + [anon_sym_c_short] = ACTIONS(4608), + [anon_sym_c_ushort] = ACTIONS(4608), + [anon_sym_c_int] = ACTIONS(4608), + [anon_sym_c_uint] = ACTIONS(4608), + [anon_sym_c_long] = ACTIONS(4608), + [anon_sym_c_ulong] = ACTIONS(4608), + [anon_sym_c_longlong] = ACTIONS(4608), + [anon_sym_c_ulonglong] = ACTIONS(4608), + [anon_sym_c_float] = ACTIONS(4608), + [anon_sym_c_double] = ACTIONS(4608), + [anon_sym_c_longdouble] = ACTIONS(4608), + [anon_sym_return] = ACTIONS(4608), + [anon_sym_yield] = ACTIONS(4608), + [anon_sym_break] = ACTIONS(4608), + [anon_sym_continue] = ACTIONS(4608), + [anon_sym_defer] = ACTIONS(4608), + [anon_sym_errdefer] = ACTIONS(4608), + [anon_sym_if] = ACTIONS(4608), + [anon_sym_while] = ACTIONS(4608), + [anon_sym_expand] = ACTIONS(4608), + [anon_sym_for] = ACTIONS(4608), + [anon_sym_match] = ACTIONS(4608), + [anon_sym_AMP] = ACTIONS(4610), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_try] = ACTIONS(4608), + [anon_sym_DOT] = ACTIONS(4610), + [anon_sym_true] = ACTIONS(4608), + [anon_sym_false] = ACTIONS(4608), + [sym_none] = ACTIONS(4608), + [sym_undefined] = ACTIONS(4608), + [sym_sink] = ACTIONS(4608), + [sym_integer] = ACTIONS(4608), + [sym_float] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [sym_multiline_string] = ACTIONS(4610), + [sym_character] = ACTIONS(4610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4610), + }, + [STATE(1876)] = { + [sym_identifier] = ACTIONS(4612), + [anon_sym_func] = ACTIONS(4612), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4612), + [anon_sym_LPAREN] = ACTIONS(4614), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_LBRACK] = ACTIONS(4614), + [anon_sym_void] = ACTIONS(4612), + [anon_sym_type] = ACTIONS(4612), + [anon_sym_anyopaque] = ACTIONS(4612), + [anon_sym_bool] = ACTIONS(4612), + [anon_sym_int] = ACTIONS(4612), + [anon_sym_uint] = ACTIONS(4612), + [anon_sym_float] = ACTIONS(4612), + [anon_sym_range] = ACTIONS(4612), + [anon_sym_i8] = ACTIONS(4612), + [anon_sym_i16] = ACTIONS(4612), + [anon_sym_i32] = ACTIONS(4612), + [anon_sym_i64] = ACTIONS(4612), + [anon_sym_u8] = ACTIONS(4612), + [anon_sym_u16] = ACTIONS(4612), + [anon_sym_u32] = ACTIONS(4612), + [anon_sym_u64] = ACTIONS(4612), + [anon_sym_isize] = ACTIONS(4612), + [anon_sym_usize] = ACTIONS(4612), + [anon_sym_f32] = ACTIONS(4612), + [anon_sym_f64] = ACTIONS(4612), + [anon_sym_c_char] = ACTIONS(4612), + [anon_sym_c_schar] = ACTIONS(4612), + [anon_sym_c_uchar] = ACTIONS(4612), + [anon_sym_c_short] = ACTIONS(4612), + [anon_sym_c_ushort] = ACTIONS(4612), + [anon_sym_c_int] = ACTIONS(4612), + [anon_sym_c_uint] = ACTIONS(4612), + [anon_sym_c_long] = ACTIONS(4612), + [anon_sym_c_ulong] = ACTIONS(4612), + [anon_sym_c_longlong] = ACTIONS(4612), + [anon_sym_c_ulonglong] = ACTIONS(4612), + [anon_sym_c_float] = ACTIONS(4612), + [anon_sym_c_double] = ACTIONS(4612), + [anon_sym_c_longdouble] = ACTIONS(4612), + [anon_sym_return] = ACTIONS(4612), + [anon_sym_yield] = ACTIONS(4612), + [anon_sym_break] = ACTIONS(4612), + [anon_sym_continue] = ACTIONS(4612), + [anon_sym_defer] = ACTIONS(4612), + [anon_sym_errdefer] = ACTIONS(4612), + [anon_sym_if] = ACTIONS(4612), + [anon_sym_while] = ACTIONS(4612), + [anon_sym_expand] = ACTIONS(4612), + [anon_sym_for] = ACTIONS(4612), + [anon_sym_match] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4614), + [anon_sym_TILDE] = ACTIONS(4614), + [anon_sym_try] = ACTIONS(4612), + [anon_sym_DOT] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4612), + [anon_sym_false] = ACTIONS(4612), + [sym_none] = ACTIONS(4612), + [sym_undefined] = ACTIONS(4612), + [sym_sink] = ACTIONS(4612), + [sym_integer] = ACTIONS(4612), + [sym_float] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(4614), + [sym_multiline_string] = ACTIONS(4614), + [sym_character] = ACTIONS(4614), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4614), + }, + [STATE(1877)] = { + [aux_sym_import_declaration_repeat1] = STATE(1877), + [sym_identifier] = ACTIONS(2012), + [anon_sym_func] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_RBRACK] = ACTIONS(2014), + [anon_sym_void] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_anyopaque] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_int] = ACTIONS(2012), + [anon_sym_uint] = ACTIONS(2012), + [anon_sym_float] = ACTIONS(2012), + [anon_sym_range] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_c_char] = ACTIONS(2012), + [anon_sym_c_schar] = ACTIONS(2012), + [anon_sym_c_uchar] = ACTIONS(2012), + [anon_sym_c_short] = ACTIONS(2012), + [anon_sym_c_ushort] = ACTIONS(2012), + [anon_sym_c_int] = ACTIONS(2012), + [anon_sym_c_uint] = ACTIONS(2012), + [anon_sym_c_long] = ACTIONS(2012), + [anon_sym_c_ulong] = ACTIONS(2012), + [anon_sym_c_longlong] = ACTIONS(2012), + [anon_sym_c_ulonglong] = ACTIONS(2012), + [anon_sym_c_float] = ACTIONS(2012), + [anon_sym_c_double] = ACTIONS(2012), + [anon_sym_c_longdouble] = ACTIONS(2012), + [anon_sym_PIPE2] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_DOT] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [sym_none] = ACTIONS(2012), + [sym_undefined] = ACTIONS(2012), + [sym_sink] = ACTIONS(2012), + [sym_integer] = ACTIONS(2012), + [sym_float] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_multiline_string] = ACTIONS(2014), + [sym_character] = ACTIONS(2014), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4616), }, }; @@ -177460,13 +194132,13 @@ static const uint16_t ts_small_parse_table[] = { [0] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4199), 1, - anon_sym_RBRACK, - ACTIONS(4202), 1, + ACTIONS(4616), 1, sym__newline, - STATE(1725), 1, + ACTIONS(4619), 1, + anon_sym_RBRACK, + STATE(1877), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177482,10 +194154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 44, + ACTIONS(2012), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177527,16 +194200,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [76] = 6, + [77] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4616), 1, sym__newline, - ACTIONS(4205), 1, + ACTIONS(4622), 1, anon_sym_RBRACK, - STATE(1725), 1, + STATE(1877), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177552,10 +194225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 44, + ACTIONS(2012), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177597,34 +194271,35 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [152] = 5, + [154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4625), 1, + anon_sym_else, + ACTIONS(4628), 1, sym__newline, - STATE(1725), 1, + STATE(3794), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 16, + ACTIONS(4499), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_DOT_DOT, anon_sym_AMP, anon_sym_TILDE, + anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 44, + ACTIONS(4497), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177657,8 +194332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + anon_sym_expand, anon_sym_try, - anon_sym_DOT, anon_sym_true, anon_sym_false, sym_none, @@ -177666,16 +194341,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [226] = 6, + [230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(4205), 1, + ACTIONS(4631), 1, anon_sym_RBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177691,10 +194366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177735,16 +194411,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [301] = 6, + [306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(4199), 1, + ACTIONS(4619), 1, anon_sym_RBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177760,10 +194436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177804,16 +194481,156 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [376] = 6, + [382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4634), 1, + anon_sym_else, + ACTIONS(4637), 1, sym__newline, - ACTIONS(4208), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3792), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(4481), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4479), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_else, + ACTIONS(4643), 1, + sym__newline, + STATE(3793), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4490), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4488), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + sym__newline, + ACTIONS(4646), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177829,10 +194646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177873,16 +194691,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [451] = 6, + [610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4649), 1, anon_sym_else, - ACTIONS(4214), 1, + ACTIONS(4652), 1, sym__newline, - STATE(3293), 1, + STATE(3795), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4091), 14, + ACTIONS(4526), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177897,10 +194715,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(4089), 44, + ACTIONS(4524), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -177942,16 +194761,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [526] = 6, + [686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, + ACTIONS(4655), 1, anon_sym_else, - ACTIONS(4220), 1, + ACTIONS(4658), 1, sym__newline, - STATE(3295), 1, + STATE(3796), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4155), 14, + ACTIONS(4541), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -177966,10 +194785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(4153), 44, + ACTIONS(4539), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178011,16 +194831,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [601] = 6, + [762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(4661), 1, anon_sym_else, - ACTIONS(4226), 1, + ACTIONS(4664), 1, sym__newline, - STATE(3296), 1, + STATE(3797), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4101), 14, + ACTIONS(4472), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178035,10 +194855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(4099), 44, + ACTIONS(4470), 45, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178080,16 +194901,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [676] = 6, + [838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(4229), 1, + ACTIONS(4667), 1, anon_sym_RBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178105,10 +194926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178149,223 +194971,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [751] = 6, + [914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 1, - anon_sym_else, - ACTIONS(4235), 1, + ACTIONS(2016), 1, sym__newline, - STATE(3292), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4146), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(4144), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4238), 1, - anon_sym_else, - ACTIONS(4241), 1, - sym__newline, - STATE(3297), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4116), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(4114), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_else, - ACTIONS(4247), 1, - sym__newline, - STATE(3294), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4136), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(4134), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym__newline, - ACTIONS(4250), 1, + ACTIONS(4622), 1, anon_sym_RBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 15, + ACTIONS(2014), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178381,10 +194996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178425,10 +195041,80 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1051] = 3, + [990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 15, + ACTIONS(2016), 1, + sym__newline, + ACTIONS(4670), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(2014), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(2012), 44, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4675), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178444,10 +195130,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4253), 45, + ACTIONS(4673), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178490,10 +195177,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1119] = 3, + [1135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 15, + ACTIONS(4679), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178509,10 +195196,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4257), 45, + ACTIONS(4677), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178555,10 +195243,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1187] = 3, + [1204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 15, + ACTIONS(4683), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178574,10 +195262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4261), 45, + ACTIONS(4681), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178620,10 +195309,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1255] = 3, + [1273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 15, + ACTIONS(4687), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178639,10 +195328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4265), 45, + ACTIONS(4685), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178685,10 +195375,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1323] = 3, + [1342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 15, + ACTIONS(4691), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178704,10 +195394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4269), 45, + ACTIONS(4689), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178750,10 +195441,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1391] = 3, + [1411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 15, + ACTIONS(4695), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178769,10 +195460,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4273), 45, + ACTIONS(4693), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178815,10 +195507,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1459] = 3, + [1480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 15, + ACTIONS(4699), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178834,10 +195526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4277), 45, + ACTIONS(4697), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178880,10 +195573,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1527] = 3, + [1549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 15, + ACTIONS(4703), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178899,10 +195592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(4281), 45, + ACTIONS(4701), 46, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -178945,16 +195639,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1595] = 6, + [1618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2310), 1, + ACTIONS(2409), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -178968,10 +195662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179012,16 +195707,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1668] = 6, + [1692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2226), 1, + ACTIONS(2427), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179035,10 +195730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179079,14 +195775,14 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1741] = 5, + [1766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, + ACTIONS(4707), 1, sym__newline, - STATE(1751), 1, + STATE(1908), 1, aux_sym_import_declaration_repeat1, - ACTIONS(2422), 14, + ACTIONS(2747), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179101,10 +195797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(4285), 43, + ACTIONS(4705), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179145,16 +195842,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1812] = 6, + [1838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2292), 1, + ACTIONS(2531), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179168,10 +195865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179212,16 +195910,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1885] = 6, + [1912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2281), 1, + ACTIONS(2445), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179235,10 +195933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179279,16 +195978,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1958] = 6, + [1986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2328), 1, + ACTIONS(2335), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179302,10 +196001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179346,18 +196046,19 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [2031] = 5, + [2060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(2016), 1, sym__newline, - STATE(897), 1, + ACTIONS(2313), 1, + anon_sym_RBRACE, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4292), 14, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DASH, anon_sym_DOLLAR, anon_sym_LBRACK, @@ -179368,10 +196069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(4290), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179412,16 +196114,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [2102] = 6, + [2134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2016), 1, sym__newline, - ACTIONS(2208), 1, + ACTIONS(2449), 1, anon_sym_RBRACE, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1907), 13, + ACTIONS(2014), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -179435,10 +196137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1905), 43, + ACTIONS(2012), 44, anon_sym_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179479,46 +196182,184 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [2175] = 13, + [2208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4714), 1, + sym__newline, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4712), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4710), 44, + anon_sym_func, anon_sym_struct, - ACTIONS(4301), 1, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [2280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + sym__newline, + ACTIONS(2517), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(2014), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(2012), 44, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [2354] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4309), 1, + ACTIONS(4731), 1, anon_sym_DOT, - STATE(1761), 1, + STATE(1967), 1, sym_qualified_identifier, - ACTIONS(4297), 2, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(2237), 2, + STATE(2363), 2, sym_struct_type, sym_type, - ACTIONS(1021), 5, - anon_sym_LPAREN, + ACTIONS(1054), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PIPE, sym__newline, - STATE(1908), 7, + STATE(2094), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179551,12 +196392,1496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2260] = 4, + [2443] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4735), 1, + anon_sym_RBRACE, + ACTIONS(4737), 1, + sym__newline, + STATE(1914), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2535] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(4741), 1, + sym__newline, + STATE(1918), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2627] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4743), 1, + anon_sym_RBRACE, + ACTIONS(4745), 1, + sym__newline, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2719] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4745), 1, + sym__newline, + ACTIONS(4747), 1, + anon_sym_RBRACE, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2811] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4749), 1, + anon_sym_RBRACE, + ACTIONS(4751), 1, + sym__newline, + STATE(1913), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2903] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4745), 1, + sym__newline, + ACTIONS(4753), 1, + anon_sym_RBRACE, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2995] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4761), 1, + anon_sym_struct, + ACTIONS(4764), 1, + anon_sym_LPAREN, + ACTIONS(4767), 1, + anon_sym_RBRACE, + ACTIONS(4769), 1, + anon_sym_QMARK, + ACTIONS(4775), 1, + anon_sym_LBRACK, + ACTIONS(4781), 1, + sym__newline, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4758), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4772), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4778), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3087] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4745), 1, + sym__newline, + ACTIONS(4784), 1, + anon_sym_RBRACE, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3179] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4786), 1, + anon_sym_RBRACE, + ACTIONS(4788), 1, + sym__newline, + STATE(1921), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3271] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4790), 1, + anon_sym_RBRACE, + ACTIONS(4792), 1, + sym__newline, + STATE(1916), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3363] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_struct, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4745), 1, + sym__newline, + ACTIONS(4794), 1, + anon_sym_RBRACE, + STATE(1917), 1, + aux_sym_record_body_repeat1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2443), 1, + sym_record_field, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2461), 2, + sym_struct_type, + sym_type, + STATE(2094), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3455] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1951), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3540] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3477), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3625] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4802), 1, + anon_sym_union, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4806), 1, + anon_sym_enum, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2338), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3710] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4812), 1, + anon_sym_union, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4816), 1, + anon_sym_enum, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2755), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3795] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3533), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3880] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4824), 1, + anon_sym_union, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4828), 1, + anon_sym_enum, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(301), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3965] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2909), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4050] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4836), 1, + anon_sym_union, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4840), 1, + anon_sym_enum, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(694), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4135] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3235), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 1, anon_sym_DOT, - ACTIONS(1021), 15, + ACTIONS(1054), 15, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -179572,7 +197897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1023), 40, + ACTIONS(1056), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -179580,6 +197905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -179613,446 +197939,2316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [2326] = 15, + [4287] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4313), 1, - anon_sym_RBRACE, - ACTIONS(4315), 1, - sym__newline, - STATE(1759), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2413] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4317), 1, - sym_identifier, - ACTIONS(4323), 1, - anon_sym_struct, - ACTIONS(4326), 1, - anon_sym_RBRACE, - ACTIONS(4328), 1, - anon_sym_QMARK, - ACTIONS(4334), 1, - anon_sym_LBRACK, - ACTIONS(4340), 1, - sym__newline, - STATE(1756), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4320), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4331), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4337), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2500] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4343), 1, - anon_sym_RBRACE, - ACTIONS(4345), 1, - sym__newline, - STATE(1756), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2587] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4347), 1, - anon_sym_RBRACE, - ACTIONS(4349), 1, - sym__newline, - STATE(1760), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2674] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4345), 1, - sym__newline, - ACTIONS(4351), 1, - anon_sym_RBRACE, - STATE(1756), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2761] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4345), 1, - sym__newline, - ACTIONS(4353), 1, - anon_sym_RBRACE, - STATE(1756), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4355), 1, + ACTIONS(4721), 1, anon_sym_LPAREN, - STATE(1773), 1, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2910), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4372] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1964), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4457] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3300), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4542] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3323), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4627] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3538), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4712] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3485), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4797] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4824), 1, + anon_sym_union, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4828), 1, + anon_sym_enum, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(309), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4882] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2912), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4967] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1964), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5052] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4802), 1, + anon_sym_union, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4806), 1, + anon_sym_enum, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2322), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5137] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(3299), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5222] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4796), 1, + anon_sym_union, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1951), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5307] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4812), 1, + anon_sym_union, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4816), 1, + anon_sym_enum, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2785), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5392] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4836), 1, + anon_sym_union, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4840), 1, + anon_sym_enum, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(680), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5477] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_union, + ACTIONS(1625), 1, + anon_sym_enum, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2911), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1098), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1100), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1040), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1004), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1016), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1176), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1178), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1032), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1074), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1020), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1064), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1066), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1044), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1036), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1048), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1078), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1000), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6458] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_type_repeat1, + ACTIONS(548), 14, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(550), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1122), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(626), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(628), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1144), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1146), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(539), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6780] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1961), 1, + aux_sym_type_repeat1, + ACTIONS(544), 14, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(546), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_LPAREN, + STATE(1969), 1, sym_argument_list, - ACTIONS(492), 13, + ACTIONS(533), 13, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -180066,7 +200262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(494), 40, + ACTIONS(535), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180074,6 +200270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180107,46 +200304,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [2915] = 15, + [6914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4345), 1, - sym__newline, - ACTIONS(4357), 1, + ACTIONS(4848), 1, + anon_sym_PIPE, + STATE(1968), 1, + aux_sym_type_repeat1, + ACTIONS(537), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1756), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, + anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, + anon_sym_LBRACK, + sym__newline, + ACTIONS(539), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180179,10 +200366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3002] = 3, + sym_identifier, + [6982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 15, + ACTIONS(1068), 15, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, @@ -180198,7 +200386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1071), 40, + ACTIONS(1070), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180206,6 +200394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180239,158 +200428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3065] = 15, + [7046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4359), 1, - anon_sym_RBRACE, - ACTIONS(4361), 1, - sym__newline, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1762), 1, - aux_sym_record_body_repeat1, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3152] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_struct, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - sym_identifier, - ACTIONS(4363), 1, - anon_sym_RBRACE, - ACTIONS(4365), 1, - sym__newline, - STATE(1757), 1, - aux_sym_record_body_repeat1, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2238), 1, - sym_record_field, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2236), 2, - sym_struct_type, - sym_type, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 14, + ACTIONS(1060), 15, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, @@ -180401,7 +200447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1195), 40, + ACTIONS(1062), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180409,6 +200455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180442,14 +200489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3301] = 3, + [7110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 14, + ACTIONS(1084), 15, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, @@ -180460,7 +200508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1083), 40, + ACTIONS(1086), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180468,6 +200516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180501,42 +200550,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3363] = 12, + [7174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, + ACTIONS(1140), 14, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(1785), 4, - sym_union_type, - sym_enum_type, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1142), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7237] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4851), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_test, + ACTIONS(4857), 1, + anon_sym_EQ, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3887), 1, sym_type, - sym__error_type, - STATE(1770), 7, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(4855), 2, + anon_sym_func, + anon_sym_c_func, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180569,84 +200681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3443] = 12, + [7322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2501), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3523] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1789), 1, - aux_sym_type_repeat1, - ACTIONS(502), 13, + ACTIONS(1088), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -180656,7 +200699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(504), 40, + ACTIONS(1090), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180664,6 +200707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180697,151 +200741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3587] = 12, + [7385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4369), 1, - anon_sym_union, - ACTIONS(4371), 1, - anon_sym_enum, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(687), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3667] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4379), 1, - anon_sym_union, - ACTIONS(4381), 1, - anon_sym_enum, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(259), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1041), 14, + ACTIONS(1110), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -180851,7 +200759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1043), 40, + ACTIONS(1112), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180859,6 +200767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180892,15 +200801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3809] = 3, + [7448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 14, + ACTIONS(1124), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -180910,7 +200819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(508), 40, + ACTIONS(1126), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -180918,6 +200827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -180951,83 +200861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [3871] = 12, + [7511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1785), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 14, + ACTIONS(1184), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181037,7 +200879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1191), 40, + ACTIONS(1186), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181045,6 +200887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181078,15 +200921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4013] = 3, + [7574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 14, + ACTIONS(1152), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181096,7 +200939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1151), 40, + ACTIONS(1154), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181104,6 +200947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181137,83 +200981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4075] = 12, + [7637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2968), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 14, + ACTIONS(1232), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181223,7 +200999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1155), 40, + ACTIONS(1234), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181231,6 +201007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181264,212 +201041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4217] = 5, + [7700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 1, - anon_sym_PIPE, - STATE(1780), 1, - aux_sym_type_repeat1, - ACTIONS(506), 12, + ACTIONS(1516), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(508), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [4283] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4379), 1, - anon_sym_union, - ACTIONS(4381), 1, - anon_sym_enum, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(269), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4363] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2943), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1085), 14, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181479,7 +201059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1087), 40, + ACTIONS(1518), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181487,6 +201067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181520,83 +201101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4505] = 12, + [7763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2941), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 14, + ACTIONS(1188), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181606,7 +201119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1199), 40, + ACTIONS(1190), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181614,6 +201127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181647,15 +201161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4647] = 3, + [7826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 14, + ACTIONS(1156), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181665,7 +201179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1091), 40, + ACTIONS(1158), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181673,6 +201187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181706,15 +201221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4709] = 3, + [7889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 14, + ACTIONS(1224), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181724,7 +201239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1063), 40, + ACTIONS(1226), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181732,6 +201247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181765,15 +201281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4771] = 3, + [7952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 14, + ACTIONS(1192), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181783,7 +201299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1039), 40, + ACTIONS(1194), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181791,6 +201307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181824,16 +201341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4833] = 4, + [8015] = 3, ACTIONS(3), 1, sym_comment, - STATE(1780), 1, - aux_sym_type_repeat1, - ACTIONS(513), 13, + ACTIONS(1102), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181843,7 +201359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(515), 40, + ACTIONS(1104), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181851,6 +201367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -181884,83 +201401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [4897] = 12, + [8078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4396), 1, - anon_sym_union, - ACTIONS(4398), 1, - anon_sym_enum, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2130), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1053), 14, + ACTIONS(1220), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -181970,7 +201419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1055), 40, + ACTIONS(1222), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -181978,6 +201427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182011,83 +201461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [5039] = 12, + [8141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2837), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1033), 14, + ACTIONS(1080), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -182097,7 +201479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1035), 40, + ACTIONS(1082), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -182105,6 +201487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182138,559 +201521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [5181] = 12, + [8204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2815), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5261] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1804), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5341] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2500), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5421] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2984), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5501] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4396), 1, - anon_sym_union, - ACTIONS(4398), 1, - anon_sym_enum, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2125), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5581] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2502), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5661] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4369), 1, - anon_sym_union, - ACTIONS(4371), 1, - anon_sym_enum, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(675), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5741] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_union, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2503), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 14, + ACTIONS(4859), 1, + anon_sym_BANG, + ACTIONS(1114), 13, ts_builtin_sym_end, anon_sym_COLON_COLON, - anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -182700,7 +201540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1121), 40, + ACTIONS(1116), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -182708,6 +201548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182741,83 +201582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [5883] = 12, + [8269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_enum, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_union, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1804), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1157), 14, + ACTIONS(1128), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -182827,7 +201600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1159), 40, + ACTIONS(1130), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -182835,6 +201608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182868,15 +201642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6025] = 3, + [8332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1049), 14, + ACTIONS(1160), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -182886,7 +201660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1051), 40, + ACTIONS(1162), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -182894,6 +201668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182927,14 +201702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6087] = 3, + [8395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 13, + ACTIONS(1132), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -182944,7 +201720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1207), 40, + ACTIONS(1134), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -182952,6 +201728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -182985,14 +201762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6148] = 3, + [8458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 13, + ACTIONS(1196), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183002,7 +201780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1117), 40, + ACTIONS(1198), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183010,6 +201788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183043,14 +201822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6209] = 3, + [8521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1065), 13, + ACTIONS(1228), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183060,7 +201840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1067), 40, + ACTIONS(1230), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183068,6 +201848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183101,14 +201882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6270] = 3, + [8584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 13, + ACTIONS(4861), 1, + anon_sym_BANG, + ACTIONS(1092), 13, ts_builtin_sym_end, anon_sym_COLON_COLON, - anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183118,7 +201901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1075), 40, + ACTIONS(1094), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183126,6 +201909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183159,14 +201943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6331] = 3, + [8649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1103), 13, + ACTIONS(1200), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183176,7 +201961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1105), 40, + ACTIONS(1202), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183184,6 +201969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183217,14 +202003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6392] = 3, + [8712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 13, + ACTIONS(1106), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183234,7 +202021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1109), 40, + ACTIONS(1108), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183242,6 +202029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183275,14 +202063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6453] = 3, + [8775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 13, + ACTIONS(1164), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183292,7 +202081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1113), 40, + ACTIONS(1166), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183300,6 +202089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183333,14 +202123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6514] = 3, + [8838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 13, + ACTIONS(1168), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183350,7 +202141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1131), 40, + ACTIONS(1170), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183358,6 +202149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183391,14 +202183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6575] = 3, + [8901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 13, + ACTIONS(1204), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183408,7 +202201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1135), 40, + ACTIONS(1206), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183416,6 +202209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183449,14 +202243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6636] = 3, + [8964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 13, + ACTIONS(1208), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183466,7 +202261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1139), 40, + ACTIONS(1210), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183474,6 +202269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183507,14 +202303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6697] = 3, + [9027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 13, + ACTIONS(1172), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183524,7 +202321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1143), 40, + ACTIONS(1174), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183532,6 +202329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183565,14 +202363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6758] = 3, + [9090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 13, + ACTIONS(1212), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183582,7 +202381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1147), 40, + ACTIONS(1214), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183590,6 +202389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183623,14 +202423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6819] = 3, + [9153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1161), 13, + ACTIONS(1136), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183640,7 +202441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1163), 40, + ACTIONS(1138), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183648,6 +202449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183681,14 +202483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6880] = 3, + [9216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 13, + ACTIONS(1148), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183698,7 +202501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1167), 40, + ACTIONS(1150), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183706,6 +202509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183739,14 +202543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [6941] = 3, + [9279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 13, + ACTIONS(1180), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183756,7 +202561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1171), 40, + ACTIONS(1182), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183764,6 +202569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183797,14 +202603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7002] = 3, + [9342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 13, + ACTIONS(1010), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183814,7 +202621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1175), 40, + ACTIONS(1012), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183822,6 +202629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183855,14 +202663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7063] = 3, + [9405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1177), 13, + ACTIONS(1216), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183872,7 +202681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1179), 40, + ACTIONS(1218), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183880,6 +202689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183913,14 +202723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7124] = 3, + [9468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 13, + ACTIONS(1050), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183930,7 +202741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1183), 40, + ACTIONS(1052), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183938,6 +202749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -183971,14 +202783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7185] = 3, + [9531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 13, + ACTIONS(1026), 14, ts_builtin_sym_end, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -183988,7 +202801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(1187), 40, + ACTIONS(1028), 41, anon_sym_import, anon_sym_test, anon_sym_hide, @@ -183996,6 +202809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -184029,1217 +202843,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7246] = 3, + [9594] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(466), 1, sym__newline, - ACTIONS(1203), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, + ACTIONS(1946), 1, sym_identifier, - [7307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(4800), 1, anon_sym_LBRACK, - sym__newline, - ACTIONS(1211), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1215), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1219), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1223), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1227), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1229), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1231), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1235), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(607), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1237), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1239), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1243), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1245), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1247), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [7978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1249), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1251), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1255), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4404), 1, - anon_sym_BANG, - ACTIONS(1097), 12, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1099), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4406), 1, - anon_sym_BANG, - ACTIONS(1123), 12, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1125), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1077), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1079), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1017), 13, - ts_builtin_sym_end, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(1019), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [8348] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_COLON_COLON, - ACTIONS(4410), 1, - anon_sym_test, - ACTIONS(4414), 1, - anon_sym_EQ, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3382), 1, - sym_type, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(4412), 2, - anon_sym_func, - anon_sym_c_func, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8428] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, - sym__newline, - STATE(650), 1, - sym_qualified_identifier, - STATE(730), 1, - sym_type, - STATE(1860), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8505] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4418), 1, - sym__newline, - STATE(1847), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2087), 1, + STATE(3020), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185272,39 +202912,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8582] = 12, + [9676] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, sym__newline, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1761), 1, + STATE(1967), 1, sym_qualified_identifier, - STATE(2496), 1, + STATE(1994), 1, sym_type, - ACTIONS(4297), 2, + STATE(2041), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185337,234 +202981,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8659] = 12, + [9758] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2074), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8736] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4420), 1, - sym__newline, - STATE(46), 1, - sym_qualified_identifier, - STATE(245), 1, - sym_type, - STATE(1849), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8813] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(251), 1, - sym_type, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8890] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4865), 1, anon_sym_COMMA, - STATE(2277), 1, + STATE(2029), 1, aux_sym_parameter_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3290), 1, + STATE(3784), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185597,39 +203050,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8967] = 12, + [9840] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, sym__newline, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(897), 1, + STATE(2016), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2658), 1, + STATE(3669), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185662,39 +203119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9044] = 12, + [9922] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(1893), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(1761), 1, + STATE(2689), 1, sym_qualified_identifier, - STATE(2498), 1, + STATE(2726), 1, sym_type, - ACTIONS(4297), 2, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185727,39 +203188,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9121] = 12, + [10004] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - ACTIONS(4424), 1, + ACTIONS(4869), 1, sym__newline, - STATE(1761), 1, + STATE(649), 1, sym_qualified_identifier, - STATE(1846), 1, - aux_sym_import_declaration_repeat1, - STATE(2497), 1, + STATE(745), 1, sym_type, - ACTIONS(4297), 2, + STATE(2046), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185792,39 +203257,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9198] = 12, + [10086] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4426), 1, + ACTIONS(466), 1, sym__newline, - STATE(1865), 1, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2521), 1, + STATE(3613), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185857,39 +203326,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9275] = 12, + [10168] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4428), 1, + ACTIONS(4871), 1, sym__newline, - STATE(1851), 1, + STATE(2018), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2766), 1, + STATE(3180), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185922,39 +203395,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9352] = 12, + [10250] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4430), 1, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3224), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10332] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4873), 1, + sym__newline, + STATE(2020), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3697), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10414] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3711), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10496] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4875), 1, + sym__newline, + STATE(2010), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3117), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10578] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4877), 1, anon_sym_COLON_COLON, - ACTIONS(4434), 1, + ACTIONS(4881), 1, anon_sym_EQ, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3910), 1, sym_type, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - ACTIONS(4432), 2, + ACTIONS(4879), 2, anon_sym_func, anon_sym_c_func, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -185987,39 +203740,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9429] = 12, + [10660] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4883), 1, sym__newline, - STATE(1858), 1, + STATE(2027), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2697), 1, + STATE(3634), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186052,39 +203809,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9506] = 12, + [10742] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(1893), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2292), 1, sym_qualified_identifier, - STATE(2709), 1, + STATE(2304), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186117,39 +203878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9583] = 12, + [10824] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4438), 1, + ACTIONS(4885), 1, sym__newline, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1839), 1, - sym_type, - STATE(1863), 1, + STATE(2014), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4297), 2, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2796), 1, + sym_type, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186182,104 +203947,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9660] = 12, + [10906] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(650), 1, - sym_qualified_identifier, - STATE(654), 1, - sym_type, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [9737] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4865), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(2464), 1, aux_sym_parameter_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3264), 1, + STATE(3790), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186312,39 +204016,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9814] = 12, + [10988] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4422), 1, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3684), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11070] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4887), 1, + sym__newline, + STATE(2032), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3190), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11152] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4865), 1, anon_sym_COMMA, - STATE(2277), 1, + STATE(2464), 1, aux_sym_parameter_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3268), 1, + STATE(3859), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186377,39 +204223,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9891] = 12, + [11234] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(1761), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(1840), 1, + STATE(3139), 1, sym_type, - ACTIONS(4297), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186442,39 +204292,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [9968] = 12, + [11316] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4889), 1, + sym__newline, + STATE(2038), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3621), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11398] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3030), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11480] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4891), 1, + sym__newline, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2037), 1, + aux_sym_import_declaration_repeat1, + STATE(2906), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11562] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4865), 1, anon_sym_COMMA, - STATE(1862), 1, + STATE(2026), 1, aux_sym_parameter_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3186), 1, + STATE(3838), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186507,39 +204568,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10045] = 12, + [11644] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(1893), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(897), 1, + ACTIONS(4893), 1, + sym__newline, + STATE(2024), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2292), 1, sym_qualified_identifier, - STATE(2538), 1, + STATE(2336), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186572,39 +204637,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10122] = 12, + [11726] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(466), 1, sym__newline, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1852), 1, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(2499), 1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2907), 1, sym_type, - ACTIONS(4297), 2, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186637,39 +204706,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10199] = 12, + [11808] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4442), 1, + ACTIONS(466), 1, sym__newline, - STATE(1868), 1, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(1967), 1, sym_qualified_identifier, - STATE(2640), 1, + STATE(2908), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186702,39 +204775,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10276] = 12, + [11890] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(2746), 1, + STATE(3852), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -186767,2551 +204844,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [10353] = 11, + [11972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_mut, - ACTIONS(4377), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(246), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10427] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(1934), 1, - anon_sym_mut, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2098), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10501] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2116), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10575] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_mut, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2106), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10649] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4446), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1813), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10723] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4448), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1814), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10797] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4450), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1816), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10871] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4452), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1815), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [10945] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1818), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11019] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4456), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1819), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11093] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4458), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1820), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11167] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4460), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1822), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11241] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4462), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1825), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11315] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4464), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1826), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11389] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4466), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1827), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11463] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4468), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1828), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11537] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1833), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11611] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4472), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1834), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11685] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(349), 1, - anon_sym_mut, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(235), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11759] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4474), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2073), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11833] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_mut, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(247), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11907] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4476), 1, - anon_sym_enum, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3442), 1, - sym_type, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [11981] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4478), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2090), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12055] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(252), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12129] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(273), 1, - anon_sym_mut, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(253), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12203] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 1, - anon_sym_mut, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(255), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12277] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4482), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(254), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12351] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4484), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(260), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4486), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(261), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12499] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4488), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(262), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12573] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(297), 1, - anon_sym_mut, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(264), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12647] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4490), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(270), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12721] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4492), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(272), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12795] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4494), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(273), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12869] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4496), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(274), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [12943] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4498), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(87), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13017] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - ACTIONS(4500), 1, - anon_sym_mut, - STATE(46), 1, - sym_qualified_identifier, - STATE(280), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13091] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4502), 1, - anon_sym_mut, - STATE(622), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13165] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1788), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 1, - anon_sym_PIPE, - STATE(1923), 1, - aux_sym_type_repeat1, - ACTIONS(502), 8, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(4800), 1, anon_sym_LBRACK, + ACTIONS(4895), 1, sym__newline, - ACTIONS(504), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [13301] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_mut, - STATE(633), 1, - sym_type, - STATE(2504), 1, + STATE(2042), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(3715), 1, + sym_type, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -189344,849 +204913,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [13375] = 11, + [12054] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4510), 1, - anon_sym_mut, - STATE(623), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13449] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4512), 1, - anon_sym_mut, - STATE(615), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13523] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1651), 1, - anon_sym_mut, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(639), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13597] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4514), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2092), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13671] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_mut, - STATE(619), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13745] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2095), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13819] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4520), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2122), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13893] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4522), 1, - anon_sym_enum, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3449), 1, - sym_type, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [13967] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_enum, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3400), 1, - sym_type, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14041] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4526), 1, - anon_sym_mut, - STATE(650), 1, - sym_qualified_identifier, - STATE(742), 1, - sym_type, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14115] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4528), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2124), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14189] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 1, - anon_sym_mut, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(627), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14263] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4530), 1, - anon_sym_mut, - STATE(1788), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14337] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 1, - anon_sym_PIPE, - STATE(1780), 1, - aux_sym_type_repeat1, - ACTIONS(513), 8, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, + ACTIONS(4800), 1, anon_sym_LBRACK, + ACTIONS(4897), 1, sym__newline, - ACTIONS(515), 40, - anon_sym_import, - anon_sym_test, - anon_sym_hide, + STATE(2045), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(2941), 1, + sym_type, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - anon_sym_struct, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -190219,38 +204982,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - sym_identifier, - [14399] = 11, + [12136] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_mut, - STATE(46), 1, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1967), 1, sym_qualified_identifier, - STATE(228), 1, + STATE(1988), 1, sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12218] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12300] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, + sym__newline, + STATE(2030), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3084), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12382] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4901), 1, + sym__newline, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2036), 1, + aux_sym_import_declaration_repeat1, + STATE(2905), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12464] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2913), 1, + sym_qualified_identifier, + STATE(2946), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12546] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_qualified_identifier, + STATE(665), 1, + sym_type, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12628] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4903), 1, + sym__newline, + STATE(48), 1, + sym_qualified_identifier, + STATE(289), 1, + sym_type, + STATE(2048), 1, + aux_sym_import_declaration_repeat1, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -190283,37 +205465,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [14473] = 11, + [12710] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(419), 1, - anon_sym_mut, - ACTIONS(1912), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2076), 1, + STATE(294), 1, sym_type, - ACTIONS(413), 2, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -190346,37 +205534,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [14547] = 11, + [12792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4905), 1, anon_sym_mut, - STATE(639), 1, - sym_type, - STATE(2504), 1, + STATE(2689), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(2730), 1, + sym_type, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -190409,1045 +205601,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [14621] = 11, + [12871] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1808), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14695] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4538), 1, - anon_sym_mut, - STATE(616), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14769] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4540), 1, - anon_sym_mut, - STATE(630), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14843] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4542), 1, - anon_sym_mut, - STATE(635), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14917] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4544), 1, - anon_sym_mut, - STATE(607), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [14991] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(423), 1, - anon_sym_mut, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2100), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15065] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_mut, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(622), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15139] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4546), 1, - anon_sym_mut, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1810), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15213] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 1, - anon_sym_mut, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2080), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15287] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4548), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2078), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15361] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - ACTIONS(4550), 1, - anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2105), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15435] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4552), 1, - anon_sym_mut, - STATE(627), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15509] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4554), 1, - anon_sym_mut, - STATE(610), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15583] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_mut, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(611), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15657] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1675), 1, - anon_sym_mut, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(613), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15731] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4556), 1, - anon_sym_mut, - STATE(612), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [15805] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4907), 1, anon_sym_mut, STATE(625), 1, sym_type, - STATE(2504), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(381), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191480,37 +205668,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [15879] = 11, + [12950] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4909), 1, anon_sym_mut, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2110), 1, + STATE(312), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191543,37 +205735,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [15953] = 11, + [13029] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4562), 1, + ACTIONS(4911), 1, anon_sym_mut, - STATE(610), 1, - sym_type, - STATE(2504), 1, + STATE(1967), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(2003), 1, + sym_type, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191606,37 +205802,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16027] = 11, + [13108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4564), 1, + ACTIONS(4913), 1, anon_sym_mut, - STATE(640), 1, - sym_type, - STATE(2504), 1, + STATE(1967), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(1982), 1, + sym_type, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191669,37 +205869,4047 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16101] = 11, + [13187] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - ACTIONS(4566), 1, + ACTIONS(4915), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(304), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13266] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(357), 1, + anon_sym_mut, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(292), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13345] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2319), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13424] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4919), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2814), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13503] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(365), 1, + anon_sym_mut, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(291), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13582] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2764), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 1, + anon_sym_mut, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2320), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13740] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(4923), 1, + anon_sym_mut, + STATE(613), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13819] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4925), 1, + anon_sym_mut, + STATE(634), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13898] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(4927), 1, + anon_sym_mut, + STATE(618), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13977] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(4929), 1, + anon_sym_mut, + STATE(620), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14056] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_mut, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(614), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14135] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4931), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2357), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14214] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_mut, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(633), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14293] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(4933), 1, + anon_sym_mut, + STATE(635), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4935), 1, + anon_sym_PIPE, + STATE(1968), 1, + aux_sym_type_repeat1, + ACTIONS(548), 10, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(550), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [14437] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2756), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14516] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(367), 1, + anon_sym_mut, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(299), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14595] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4939), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2337), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14674] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4941), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2340), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14753] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4943), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2341), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14832] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2342), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14911] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4947), 1, + anon_sym_mut, + STATE(613), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14990] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3371), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2731), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15069] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2735), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15148] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4951), 1, + anon_sym_enum, + STATE(2913), 1, + sym_qualified_identifier, + STATE(4012), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15227] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4953), 1, + anon_sym_mut, + STATE(646), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15306] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 1, + anon_sym_mut, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2323), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15385] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2321), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15464] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4957), 1, + anon_sym_mut, + STATE(614), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15543] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4959), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(310), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15622] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4961), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2002), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15701] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3401), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2718), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15780] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(298), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(319), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15938] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4967), 1, + anon_sym_mut, + STATE(647), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16017] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(313), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16096] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4971), 1, + anon_sym_mut, + STATE(619), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16175] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4973), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2007), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16254] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4975), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(302), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16333] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4935), 1, + anon_sym_PIPE, + STATE(2069), 1, + aux_sym_type_repeat1, + ACTIONS(544), 10, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(546), 41, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [16398] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4977), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1991), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16477] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4979), 1, + anon_sym_mut, + STATE(617), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16556] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4981), 1, + anon_sym_enum, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3997), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16635] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4983), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1976), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16714] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4985), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1980), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16793] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(1993), 1, + anon_sym_mut, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2308), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16872] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4987), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(318), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4989), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1978), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17030] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2789), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17109] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4993), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1987), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17188] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(4995), 1, + anon_sym_mut, + STATE(621), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17267] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4997), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2004), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17346] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + anon_sym_mut, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(285), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17425] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 1, + anon_sym_mut, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2315), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17504] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(2010), 1, + anon_sym_mut, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2314), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17583] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + anon_sym_mut, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(617), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17662] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(4999), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1981), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17741] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2772), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17820] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1984), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17899] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, anon_sym_mut, STATE(633), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191732,37 +209942,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16175] = 11, + [17978] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - ACTIONS(4568), 1, + ACTIONS(5007), 1, anon_sym_mut, - STATE(623), 1, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2347), 1, sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191795,37 +210009,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16249] = 11, + [18057] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - ACTIONS(4570), 1, + ACTIONS(5009), 1, anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2348), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18136] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3387), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2748), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18215] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1718), 1, + anon_sym_mut, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, STATE(615), 1, sym_type, - STATE(650), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191858,37 +210210,1850 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16323] = 11, + [18294] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(5011), 1, + anon_sym_mut, + STATE(1955), 1, + sym_type, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18373] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(5013), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(303), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18452] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3357), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2758), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18531] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1695), 1, anon_sym_mut, - ACTIONS(4367), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(647), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18610] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(5015), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2795), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18689] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1989), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18768] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2327), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18847] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + anon_sym_mut, + STATE(618), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18926] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_mut, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(306), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19005] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, + anon_sym_mut, + STATE(620), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19084] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5025), 1, + anon_sym_mut, + STATE(621), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19163] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5027), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2328), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19242] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2803), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19321] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5031), 1, + anon_sym_mut, + STATE(1955), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19400] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2769), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19479] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_mut, + STATE(48), 1, + sym_qualified_identifier, + STATE(515), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19558] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_mut, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2761), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19637] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_mut, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2737), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19716] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + anon_sym_mut, + STATE(615), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19795] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5039), 1, + anon_sym_mut, + STATE(636), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19874] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(5041), 1, + anon_sym_mut, + STATE(634), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19953] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_mut, + STATE(646), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20032] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(5045), 1, + anon_sym_mut, + STATE(649), 1, + sym_qualified_identifier, + STATE(723), 1, + sym_type, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20111] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5047), 1, + anon_sym_mut, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2329), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20190] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(439), 1, + anon_sym_mut, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2331), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20269] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1985), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20348] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1997), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20427] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_mut, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, anon_sym_LBRACK, STATE(619), 1, sym_type, - STATE(650), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191921,37 +212086,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16397] = 11, + [20506] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - ACTIONS(4572), 1, + ACTIONS(5053), 1, anon_sym_mut, - STATE(611), 1, - sym_type, - STATE(2504), 1, + STATE(48), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(296), 1, + sym_type, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -191984,37 +212153,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16471] = 11, + [20585] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(1920), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(5055), 1, anon_sym_mut, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2081), 1, + STATE(281), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192047,37 +212220,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16545] = 11, + [20664] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4574), 1, + ACTIONS(5057), 1, anon_sym_mut, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2113), 1, + STATE(638), 1, sym_type, - ACTIONS(413), 2, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192110,37 +212287,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16619] = 11, + [20743] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - ACTIONS(4576), 1, + ACTIONS(5059), 1, anon_sym_mut, - STATE(613), 1, + STATE(636), 1, sym_type, - STATE(2504), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(381), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192173,37 +212354,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16693] = 11, + [20822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - ACTIONS(4578), 1, + ACTIONS(5061), 1, anon_sym_mut, - STATE(616), 1, + STATE(638), 1, sym_type, - STATE(650), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192236,37 +212421,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16767] = 11, + [20901] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - ACTIONS(4580), 1, + ACTIONS(5063), 1, anon_sym_mut, - STATE(630), 1, + STATE(639), 1, sym_type, - STATE(650), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192299,37 +212488,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16841] = 11, + [20980] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4582), 1, + ACTIONS(276), 1, anon_sym_mut, - STATE(635), 1, - sym_type, - STATE(650), 1, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + STATE(297), 1, + sym_type, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192362,37 +212555,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16915] = 11, + [21059] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4584), 1, + ACTIONS(5065), 1, anon_sym_mut, - STATE(607), 1, + STATE(639), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192425,37 +212622,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [16989] = 11, + [21138] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4586), 1, + ACTIONS(5067), 1, anon_sym_mut, - STATE(612), 1, - sym_type, - STATE(2504), 1, + STATE(2689), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(2798), 1, + sym_type, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192488,37 +212689,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17063] = 11, + [21217] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4588), 1, + ACTIONS(5069), 1, anon_sym_enum, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3474), 1, + STATE(3964), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192551,100 +212756,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17137] = 11, + [21296] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - ACTIONS(4590), 1, - anon_sym_mut, - STATE(640), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17211] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(5071), 1, anon_sym_mut, STATE(625), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192677,37 +212823,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17285] = 11, + [21375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4305), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4594), 1, + ACTIONS(5073), 1, anon_sym_mut, - STATE(1761), 1, + STATE(1967), 1, sym_qualified_identifier, - STATE(1811), 1, + STATE(2005), 1, sym_type, - ACTIONS(4297), 2, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(4303), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(1770), 7, + STATE(1966), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(4307), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192740,37 +212890,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17359] = 11, + [21454] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - ACTIONS(4596), 1, + ACTIONS(5075), 1, + anon_sym_mut, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1996), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21533] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5077), 1, anon_sym_enum, - STATE(2504), 1, + STATE(2913), 1, sym_qualified_identifier, - STATE(3528), 1, + STATE(3969), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192803,37 +213024,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17433] = 11, + [21612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4598), 1, + ACTIONS(5079), 1, anon_sym_mut, - STATE(2067), 1, + STATE(2689), 1, sym_qualified_identifier, - STATE(2077), 1, + STATE(2794), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192866,35 +213091,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17507] = 10, + [21691] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(2067), 1, + ACTIONS(5081), 1, + anon_sym_enum, + STATE(2913), 1, sym_qualified_identifier, - STATE(2076), 1, + STATE(3983), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(2916), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192927,35 +213158,1473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17578] = 10, + [21770] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(46), 1, + ACTIONS(5083), 1, + anon_sym_enum, + STATE(2913), 1, sym_qualified_identifier, - STATE(253), 1, + STATE(3990), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21849] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(5085), 1, + anon_sym_mut, + STATE(635), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21928] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3970), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22004] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(612), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22080] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(615), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22156] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1989), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22232] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(608), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22308] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1991), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22384] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1978), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22460] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1990), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22536] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1997), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22612] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1998), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22688] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2005), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22764] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1977), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22840] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1980), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22916] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1992), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22992] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1999), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23068] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2000), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23144] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2002), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23220] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2007), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23296] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1983), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23372] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1993), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23448] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(284), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -192988,96 +214657,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17649] = 10, + [23524] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2071), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17720] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(254), 1, + STATE(291), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193110,96 +214722,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17791] = 10, + [23600] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2122), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [17862] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(261), 1, + STATE(297), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193232,96 +214787,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [17933] = 10, + [23676] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2124), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18004] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(263), 1, + STATE(298), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193354,35 +214852,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18075] = 10, + [23752] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(264), 1, + STATE(303), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193415,96 +214917,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18146] = 10, + [23828] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(2092), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18217] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(265), 1, + STATE(305), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193537,35 +214982,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18288] = 10, + [23904] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(270), 1, + STATE(306), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193598,96 +215047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18359] = 10, + [23980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(621), 1, - sym_type, - STATE(2504), 1, + STATE(48), 1, sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18430] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(271), 1, + STATE(307), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193720,35 +215112,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18501] = 10, + [24056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(48), 1, sym_qualified_identifier, - STATE(272), 1, + STATE(310), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193781,35 +215177,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18572] = 10, + [24132] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(606), 1, - sym_type, - STATE(2504), 1, + STATE(48), 1, sym_qualified_identifier, - ACTIONS(381), 2, + STATE(311), 1, + sym_type, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193842,35 +215242,3159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18643] = 10, + [24208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(515), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24284] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(314), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24360] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(316), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24436] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(317), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24512] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(318), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24588] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(319), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24664] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(321), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24740] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, + sym_qualified_identifier, + STATE(322), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(271), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(50), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(123), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24816] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2740), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24892] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2769), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24968] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(1959), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25044] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2731), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25120] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2735), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25196] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2794), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25272] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2810), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25348] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2718), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25424] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2722), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25500] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2756), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25576] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2759), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25652] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2761), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25728] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2770), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25804] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2791), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25880] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2792), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [25956] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2795), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26032] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2798), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26108] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2749), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26184] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + STATE(2753), 1, + sym_type, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2661), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26260] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1970), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26336] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(636), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26412] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(637), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26488] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(638), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26564] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(626), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26640] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1959), 1, + sym_type, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26716] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(614), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26792] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(635), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26868] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_qualified_identifier, + STATE(722), 1, + sym_type, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26944] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(614), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27020] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(635), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27096] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2356), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27172] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(620), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27248] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(612), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27324] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(615), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27400] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(608), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27476] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(636), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27552] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(637), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27628] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(638), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27704] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(626), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27780] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(617), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27856] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, anon_sym_LBRACK, STATE(640), 1, sym_type, - STATE(2504), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(381), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -193903,96 +218427,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18714] = 10, + [27932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(275), 1, + STATE(611), 1, sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [18785] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, + STATE(649), 1, sym_qualified_identifier, - STATE(277), 1, - sym_type, - ACTIONS(263), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -194025,35 +218492,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18856] = 10, + [28008] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(634), 1, + sym_type, + STATE(649), 1, sym_qualified_identifier, - STATE(278), 1, - sym_type, - ACTIONS(263), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -194086,35 +218557,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18927] = 10, + [28084] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4844), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(646), 1, + sym_type, + STATE(649), 1, sym_qualified_identifier, - STATE(87), 1, - sym_type, - ACTIONS(263), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -194147,35 +218622,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [18998] = 10, + [28160] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4832), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(48), 1, sym_qualified_identifier, STATE(280), 1, sym_type, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(50), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -194208,944 +218687,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [19069] = 10, + [28236] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2097), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19140] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(282), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19211] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(283), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19282] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(1787), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19353] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1793), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19424] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2127), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19495] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2100), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19566] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2128), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19637] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(623), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19708] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(625), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19779] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2102), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19850] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(617), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19921] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(619), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [19992] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(650), 1, - sym_qualified_identifier, - STATE(701), 1, - sym_type, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20063] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2059), 1, - aux_sym_type_repeat1, - ACTIONS(504), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(502), 31, + ACTIONS(4838), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4842), 1, anon_sym_QMARK, + ACTIONS(4844), 1, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [20122] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(624), 1, + STATE(641), 1, sym_type, - STATE(2504), 1, + STATE(649), 1, sym_qualified_identifier, - ACTIONS(381), 2, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -195178,823 +218752,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [20193] = 10, + [28312] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2079), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20264] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(636), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20335] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(650), 1, - sym_qualified_identifier, - STATE(733), 1, - sym_type, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20406] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(637), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20477] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3461), 1, - sym_type, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20548] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2582), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20619] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(2583), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1908), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20690] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2121), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20761] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1810), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20832] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(1793), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20903] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2105), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [20974] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(227), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 1, - anon_sym_PIPE, - STATE(2016), 1, - aux_sym_type_repeat1, - ACTIONS(508), 16, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(506), 31, + ACTIONS(4838), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4842), 1, anon_sym_QMARK, + ACTIONS(4844), 1, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [21106] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2098), 1, + STATE(622), 1, sym_type, - ACTIONS(413), 2, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(1590), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(655), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -196027,2591 +218817,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [21177] = 10, + [28388] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1787), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21248] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(616), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21319] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1814), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21390] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(618), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21461] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - STATE(3443), 1, - sym_type, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2507), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21532] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2109), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21603] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1815), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21674] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2110), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21745] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(608), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21816] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(639), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21887] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1819), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [21958] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2078), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22029] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1821), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22100] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1822), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22171] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(611), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22242] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1823), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22313] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(612), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22384] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1825), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22455] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1806), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22526] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1826), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22597] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - STATE(2118), 1, - sym_type, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2002), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22668] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(611), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22739] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(623), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22810] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1829), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22881] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1831), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [22952] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(617), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23023] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(619), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23094] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1832), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23165] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23236] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1833), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23307] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(612), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23378] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(639), 1, - sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2506), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23449] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1834), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23520] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(616), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23591] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1836), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23662] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(618), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23733] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(630), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23804] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - STATE(1837), 1, - sym_type, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1770), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23875] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(234), 1, - sym_type, - ACTIONS(263), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(268), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(48), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [23946] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(608), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24017] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_QMARK, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(621), 1, - sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(1618), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(648), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [24088] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2016), 1, - aux_sym_type_repeat1, - ACTIONS(515), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(513), 31, + ACTIONS(4814), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4818), 1, anon_sym_QMARK, + ACTIONS(4820), 1, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [24147] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, + STATE(2689), 1, sym_qualified_identifier, - STATE(3475), 1, + STATE(2766), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(3344), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(3352), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2661), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(2575), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198644,35 +218882,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24218] = 10, + [28464] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - STATE(606), 1, - sym_type, - STATE(650), 1, + STATE(1967), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + STATE(2960), 1, + sym_type, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2094), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198705,35 +218947,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24289] = 10, + [28540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4834), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_qualified_identifier, + STATE(732), 1, + sym_type, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28616] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, anon_sym_LBRACK, STATE(640), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198766,35 +219077,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24360] = 10, + [28692] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4727), 1, anon_sym_LBRACK, - STATE(625), 1, + STATE(1967), 1, + sym_qualified_identifier, + STATE(2961), 1, sym_type, - STATE(650), 1, - sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(4717), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(4725), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2094), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(4729), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198827,35 +219142,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24431] = 10, + [28768] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(46), 1, - sym_qualified_identifier, - STATE(246), 1, + STATE(611), 1, sym_type, - ACTIONS(263), 2, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(48), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198888,35 +219207,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24502] = 10, + [28844] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(636), 1, + STATE(634), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -198949,35 +219272,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24573] = 10, + [28920] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(1946), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4800), 1, anon_sym_LBRACK, - STATE(637), 1, + STATE(646), 1, sym_type, - STATE(650), 1, + STATE(2913), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + ACTIONS(393), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(411), 2, anon_sym_AT, anon_sym_STAR, - STATE(648), 7, + STATE(2915), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(1633), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -199010,91 +219337,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24644] = 5, + [28996] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - STATE(2082), 1, - sym_argument_list, - ACTIONS(494), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(492), 30, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [24705] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(2504), 1, + STATE(2292), 1, sym_qualified_identifier, - STATE(3393), 1, + STATE(2314), 1, sym_type, - ACTIONS(381), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(2507), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -199127,35 +219402,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24776] = 10, + [29072] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4400), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4402), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(2067), 1, + STATE(2292), 1, sym_qualified_identifier, - STATE(2120), 1, + STATE(2320), 1, sym_type, - ACTIONS(413), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(415), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(2002), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(195), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -199188,35 +219467,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24847] = 10, + [29148] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4389), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4391), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(630), 1, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2321), 1, sym_type, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(395), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(2506), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -199249,1641 +219532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [24918] = 3, + [29224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1233), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [24974] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(385), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(390), 29, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1129), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4605), 1, - anon_sym_BANG, - ACTIONS(1125), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1123), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - anon_sym_LBRACE, - STATE(2153), 1, - sym_variant_payload, - ACTIONS(483), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(481), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1133), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1039), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1037), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1137), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1061), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1141), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1065), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1043), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1041), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1147), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1145), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1017), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1075), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1073), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25772] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(490), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(488), 27, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [25838] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - anon_sym_BANG, - ACTIONS(1099), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1097), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1189), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [25952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1069), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1163), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1161), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26064] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(551), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(549), 27, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [26130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1165), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1055), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1053), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1155), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1153), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1169), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(508), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(506), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1173), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1105), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1103), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1193), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1177), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26634] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4375), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(650), 1, + STATE(2292), 1, sym_qualified_identifier, - ACTIONS(1613), 2, + STATE(2328), 1, + sym_type, + ACTIONS(429), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(1618), 2, + ACTIONS(431), 2, anon_sym_AT, anon_sym_STAR, - STATE(707), 7, + STATE(2293), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(1567), 33, + ACTIONS(41), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -200916,139 +219597,1849 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [26702] = 3, + [29300] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1181), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1185), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26814] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, + ACTIONS(1958), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_QMARK, - ACTIONS(4385), 1, + ACTIONS(4810), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2330), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29376] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2331), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29452] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2360), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29528] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29604] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2337), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29680] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2339), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29756] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2340), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29832] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2343), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29908] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(641), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [29984] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(622), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30060] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2345), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30136] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2346), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30212] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2347), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30288] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2348), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30364] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2351), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30440] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2352), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30516] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + STATE(4007), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30592] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + STATE(2332), 1, + sym_type, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2293), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30668] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + STATE(4083), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30744] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(620), 1, + sym_type, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2915), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30820] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3971), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30896] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + STATE(1985), 1, + sym_type, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1966), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [30972] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + STATE(3984), 1, + sym_type, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2916), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31048] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4842), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_LBRACK, + STATE(617), 1, + sym_type, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(655), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31124] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_QMARK, + ACTIONS(4800), 1, + anon_sym_LBRACK, + STATE(2913), 1, + sym_qualified_identifier, + ACTIONS(393), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(411), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1965), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31197] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + sym_identifier, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4727), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_qualified_identifier, + ACTIONS(4717), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4725), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1965), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4729), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31270] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, + anon_sym_QMARK, + ACTIONS(4810), 1, + anon_sym_LBRACK, + STATE(2292), 1, + sym_qualified_identifier, + ACTIONS(429), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(431), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2296), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31343] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, + anon_sym_QMARK, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2689), 1, + sym_qualified_identifier, + ACTIONS(3344), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(3352), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2790), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(2575), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31416] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + sym_identifier, + ACTIONS(4826), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_LBRACK, + STATE(48), 1, sym_qualified_identifier, ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(268), 2, + ACTIONS(271), 2, anon_sym_AT, anon_sym_STAR, - STATE(237), 7, + STATE(287), 8, sym__type_atom, + sym_parenthesized_type, sym_named_type, sym_optional_type, sym_pointer_type, sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(123), 34, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -201081,386 +221472,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [26882] = 3, + [31489] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1201), 31, + ACTIONS(4834), 1, + sym_identifier, + ACTIONS(4838), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4842), 1, anon_sym_QMARK, + ACTIONS(4844), 1, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, + STATE(649), 1, + sym_qualified_identifier, + ACTIONS(1582), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1590), 2, + anon_sym_AT, anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1107), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [26994] = 3, + STATE(734), 8, + sym__type_atom, + sym_parenthesized_type, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1633), 34, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [31562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1085), 31, + ACTIONS(5087), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1151), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1149), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1207), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1205), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1209), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, + STATE(2358), 1, sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(545), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(543), 27, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [27284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1051), 17, + ACTIONS(535), 17, anon_sym_BANG, anon_sym_EQ, anon_sym_DASH, @@ -201478,8 +221560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1049), 31, - anon_sym_LPAREN, + ACTIONS(533), 30, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, @@ -201510,10 +221591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [27340] = 3, + [31623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 17, + STATE(2295), 1, + aux_sym_type_repeat1, + ACTIONS(546), 17, anon_sym_BANG, anon_sym_EQ, anon_sym_DASH, @@ -201531,7 +221614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1213), 31, + ACTIONS(544), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -201563,10 +221646,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [27396] = 3, + [31682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 17, + ACTIONS(5089), 1, + anon_sym_PIPE, + STATE(2294), 1, + aux_sym_type_repeat1, + ACTIONS(539), 16, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(537), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31743] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2294), 1, + aux_sym_type_repeat1, + ACTIONS(550), 17, anon_sym_BANG, anon_sym_EQ, anon_sym_DASH, @@ -201584,7 +221725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1119), 31, + ACTIONS(548), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -201616,10 +221757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [27452] = 3, + [31802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 17, + ACTIONS(539), 17, anon_sym_BANG, anon_sym_EQ, anon_sym_DASH, @@ -201637,7 +221778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1111), 31, + ACTIONS(537), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -201669,11 +221810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [27508] = 3, + [31858] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 17, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1950), 1, anon_sym_BANG, + ACTIONS(397), 15, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -201689,11 +221837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1217), 31, - anon_sym_LPAREN, + ACTIONS(406), 29, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, @@ -201722,823 +221867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [27564] = 9, + [31922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_QMARK, - ACTIONS(4402), 1, - anon_sym_LBRACK, - STATE(2067), 1, - sym_qualified_identifier, - ACTIONS(413), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(415), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(2096), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(195), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [27632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1221), 31, + ACTIONS(5087), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(5094), 1, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(1225), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1229), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1033), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(607), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(605), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1091), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1089), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [27968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1237), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1157), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1241), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1245), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1249), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1253), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1197), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - anon_sym_DOT, - ACTIONS(1023), 16, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(1021), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28418] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, + STATE(2437), 1, sym_argument_list, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(451), 15, + ACTIONS(568), 15, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -202554,7 +221897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(449), 27, + ACTIONS(566), 27, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, @@ -202582,434 +221925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [28484] = 3, + [31988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1081), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5098), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28540] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4389), 1, - anon_sym_QMARK, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(2504), 1, - sym_qualified_identifier, - ACTIONS(381), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(395), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1774), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(1567), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1077), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1117), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1115), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28720] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - sym_identifier, - ACTIONS(4301), 1, - anon_sym_QMARK, - ACTIONS(4305), 1, - anon_sym_LBRACK, - STATE(1761), 1, - sym_qualified_identifier, - ACTIONS(4297), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(4303), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1774), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(4307), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [28788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1013), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [28843] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(383), 1, - anon_sym_BANG, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(390), 20, - ts_builtin_sym_end, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - ACTIONS(385), 23, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - sym_identifier, - [28906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_LBRACE, - STATE(113), 1, + STATE(2364), 1, sym_variant_payload, - ACTIONS(481), 21, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - ACTIONS(483), 24, - anon_sym_import, - anon_sym_test, - anon_sym_hide, + ACTIONS(522), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, anon_sym_STAR, - anon_sym_else, anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, anon_sym_or, - anon_sym_and, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -203020,11 +221949,3449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, + ACTIONS(520), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32048] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(558), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(556), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [32114] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(572), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(570), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [32180] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(470), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(468), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [32246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1050), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, + anon_sym_BANG, + ACTIONS(1116), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1114), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(998), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1002), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1122), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1120), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1080), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1088), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1010), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1016), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1014), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1018), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(628), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(626), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1102), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1106), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1110), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1026), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1030), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1126), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1124), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1128), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1132), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1146), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1144), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1138), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1136), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1140), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1036), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1034), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1038), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1148), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1152), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1156), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1160), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1166), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1164), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1076), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1172), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1042), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1046), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + anon_sym_BANG, + ACTIONS(1094), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1092), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1180), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1178), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1176), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1184), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1516), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1188), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1192), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1198), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1196), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1202), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1200), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1204), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1210), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1208), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1214), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1212), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1216), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1100), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1098), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1220), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1224), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [34994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1228), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1232), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 1, + anon_sym_DOT, + ACTIONS(1056), 16, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(1054), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1084), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1062), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1060), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1066), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1064), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1070), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1068), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1074), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1072), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1168), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(986), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(738), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [35610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5108), 1, + anon_sym_EQ, + ACTIONS(5110), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5106), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, sym_identifier, - [28965] = 3, + [35667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 16, + ACTIONS(746), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203041,7 +225408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1029), 31, + ACTIONS(744), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203073,10 +225440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29020] = 3, + [35722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 16, + ACTIONS(750), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203093,7 +225460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(609), 31, + ACTIONS(748), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203125,10 +225492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29075] = 3, + [35777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 16, + ACTIONS(758), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203145,7 +225512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(390), 31, + ACTIONS(756), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203177,10 +225544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29130] = 3, + [35832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 16, + ACTIONS(762), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203197,7 +225564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(613), 31, + ACTIONS(760), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203229,10 +225596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29185] = 3, + [35887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 16, + ACTIONS(736), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203249,7 +225616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(621), 31, + ACTIONS(734), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203281,10 +225648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29240] = 3, + [35942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 16, + ACTIONS(770), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203301,7 +225668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(629), 31, + ACTIONS(768), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203333,10 +225700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29295] = 3, + [35997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 16, + ACTIONS(774), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203353,7 +225720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(633), 31, + ACTIONS(772), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203385,10 +225752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29350] = 3, + [36052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 16, + ACTIONS(778), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -203405,7 +225772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(637), 31, + ACTIONS(776), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -203437,683 +225804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [29405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(645), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(649), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(657), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(655), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(661), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(659), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(755), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(761), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(759), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(775), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(773), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(777), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(783), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(781), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(643), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(641), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [29955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(787), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(785), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [30010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(791), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(789), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [30065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(795), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(793), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [30120] = 3, + [36107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(258), 16, @@ -204165,10 +225856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30175] = 3, + [36162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(786), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204185,7 +225876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(805), 31, + ACTIONS(784), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204217,10 +225908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30230] = 3, + [36217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 16, + ACTIONS(790), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204237,7 +225928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(809), 31, + ACTIONS(788), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204269,7 +225960,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30285] = 3, + [36272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(381), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(383), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(792), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(798), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(796), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(802), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(800), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(806), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(804), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(810), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(808), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(284), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(668), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(666), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(820), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(818), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(824), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(822), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(826), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(830), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(375), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [36987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(369), 16, @@ -204321,10 +226688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30340] = 3, + [37042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 16, + ACTIONS(836), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204341,7 +226708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(819), 31, + ACTIONS(834), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204373,10 +226740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30395] = 3, + [37097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 16, + ACTIONS(840), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204393,7 +226760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1045), 31, + ACTIONS(838), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204425,10 +226792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30450] = 3, + [37152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 16, + ACTIONS(844), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204445,7 +226812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1057), 31, + ACTIONS(842), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204477,10 +226844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30505] = 3, + [37207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 16, + ACTIONS(848), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204497,7 +226864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(641), 31, + ACTIONS(846), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204529,10 +226896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30560] = 3, + [37262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 16, + ACTIONS(852), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204549,7 +226916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(823), 31, + ACTIONS(850), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204581,10 +226948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30615] = 3, + [37317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(864), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204601,7 +226968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(827), 31, + ACTIONS(862), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204633,10 +227000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30670] = 3, + [37372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(868), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204653,7 +227020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(831), 31, + ACTIONS(866), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204685,10 +227052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30725] = 3, + [37427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(837), 16, + ACTIONS(872), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204705,7 +227072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(835), 31, + ACTIONS(870), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204737,10 +227104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30780] = 3, + [37482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(286), 16, + ACTIONS(876), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204757,7 +227124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(281), 31, + ACTIONS(874), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204789,10 +227156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30835] = 3, + [37537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(847), 16, + ACTIONS(880), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204809,7 +227176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(845), 31, + ACTIONS(878), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204841,10 +227208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30890] = 3, + [37592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 16, + ACTIONS(884), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204861,7 +227228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(849), 31, + ACTIONS(882), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204893,10 +227260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [30945] = 3, + [37647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(855), 16, + ACTIONS(888), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204913,7 +227280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(853), 31, + ACTIONS(886), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204945,10 +227312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31000] = 3, + [37702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1095), 16, + ACTIONS(377), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -204965,7 +227332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1093), 31, + ACTIONS(379), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204997,10 +227364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31055] = 3, + [37757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 16, + ACTIONS(892), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205017,7 +227384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(363), 31, + ACTIONS(890), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205049,10 +227416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31110] = 3, + [37812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 16, + ACTIONS(896), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205069,7 +227436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(359), 31, + ACTIONS(894), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205101,10 +227468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31165] = 3, + [37867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 16, + ACTIONS(900), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205121,7 +227488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(861), 31, + ACTIONS(898), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205153,10 +227520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31220] = 3, + [37922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(867), 16, + ACTIONS(904), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205173,7 +227540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(865), 31, + ACTIONS(902), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205205,10 +227572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31275] = 3, + [37977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 16, + ACTIONS(908), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205225,7 +227592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(869), 31, + ACTIONS(906), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205257,10 +227624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31330] = 3, + [38032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 16, + ACTIONS(912), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205277,7 +227644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(873), 31, + ACTIONS(910), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205309,10 +227676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31385] = 3, + [38087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(879), 16, + ACTIONS(922), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205329,7 +227696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(877), 31, + ACTIONS(920), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205361,10 +227728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31440] = 3, + [38142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 16, + ACTIONS(926), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205381,7 +227748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(889), 31, + ACTIONS(924), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205413,10 +227780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31495] = 3, + [38197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(895), 16, + ACTIONS(930), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205433,7 +227800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(893), 31, + ACTIONS(928), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205465,10 +227832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31550] = 3, + [38252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(899), 16, + ACTIONS(934), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205485,7 +227852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(897), 31, + ACTIONS(932), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205517,10 +227884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31605] = 3, + [38307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 16, + ACTIONS(938), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205537,7 +227904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(901), 31, + ACTIONS(936), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205569,10 +227936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31660] = 3, + [38362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 16, + ACTIONS(942), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205589,7 +227956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(905), 31, + ACTIONS(940), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205621,10 +227988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31715] = 3, + [38417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 16, + ACTIONS(946), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205641,7 +228008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(909), 31, + ACTIONS(944), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205673,10 +228040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31770] = 3, + [38472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 16, + ACTIONS(950), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205693,7 +228060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(913), 31, + ACTIONS(948), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205725,10 +228092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31825] = 3, + [38527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(365), 16, + ACTIONS(954), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205745,7 +228112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(367), 31, + ACTIONS(952), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205777,10 +228144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31880] = 3, + [38582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 16, + ACTIONS(958), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205797,7 +228164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(917), 31, + ACTIONS(956), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205829,10 +228196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31935] = 3, + [38637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 16, + ACTIONS(964), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205849,7 +228216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(921), 31, + ACTIONS(962), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205881,10 +228248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [31990] = 3, + [38692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 16, + ACTIONS(968), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205901,7 +228268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(925), 31, + ACTIONS(966), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205933,10 +228300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32045] = 3, + [38747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 16, + ACTIONS(972), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -205953,7 +228320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(929), 31, + ACTIONS(970), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -205985,10 +228352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32100] = 3, + [38802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 16, + ACTIONS(976), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206005,7 +228372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(933), 31, + ACTIONS(974), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206037,10 +228404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32155] = 3, + [38857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 16, + ACTIONS(980), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206057,7 +228424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(937), 31, + ACTIONS(978), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206089,10 +228456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32210] = 3, + [38912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 16, + ACTIONS(984), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206109,7 +228476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(947), 31, + ACTIONS(982), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206141,10 +228508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32265] = 3, + [38967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 16, + ACTIONS(992), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206161,7 +228528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(951), 31, + ACTIONS(990), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206193,10 +228560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32320] = 3, + [39022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 16, + ACTIONS(996), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206213,7 +228580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(955), 31, + ACTIONS(994), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206245,10 +228612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32375] = 3, + [39077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 16, + ACTIONS(668), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, @@ -206265,7 +228632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(959), 31, + ACTIONS(666), 31, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -206297,1803 +228664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [32430] = 3, + [39132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 16, + ACTIONS(706), 9, anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(963), 31, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(969), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(967), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(973), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(971), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(977), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(975), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(981), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(979), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(985), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(983), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(991), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(989), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(993), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(997), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1003), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1001), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [32980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1005), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [33035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1009), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [33090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(859), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(857), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - sym__newline, - [33145] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4621), 1, - anon_sym_EQ, - ACTIONS(4631), 1, - anon_sym_DOT_DOT, - ACTIONS(4633), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4635), 1, - anon_sym_orelse, - ACTIONS(4637), 1, - anon_sym_catch, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1597), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1593), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - ACTIONS(4629), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [33237] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(449), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(451), 19, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym_identifier, - [33305] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(549), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(551), 21, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym_identifier, - [33371] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 16, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - sym_identifier, - ACTIONS(549), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [33441] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4635), 1, - anon_sym_orelse, - ACTIONS(4637), 1, - anon_sym_catch, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(549), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [33525] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 9, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(549), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [33605] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 10, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(561), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [33683] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 11, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(561), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [33759] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 13, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - ACTIONS(549), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [33831] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(549), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(551), 19, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym_identifier, - [33899] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(449), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(451), 21, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym_identifier, - [33965] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 16, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - sym_identifier, - ACTIONS(449), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [34035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4635), 1, - anon_sym_orelse, - ACTIONS(4637), 1, - anon_sym_catch, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(449), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [34119] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 9, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(449), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [34199] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4641), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 10, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(477), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [34277] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 11, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(477), 13, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [34353] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 13, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - ACTIONS(449), 17, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [34425] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4631), 1, - anon_sym_DOT_DOT, - ACTIONS(4633), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4635), 1, - anon_sym_orelse, - ACTIONS(4637), 1, - anon_sym_catch, - ACTIONS(4639), 1, - anon_sym_or, - ACTIONS(4641), 1, - anon_sym_and, - ACTIONS(4649), 1, - anon_sym_EQ, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1597), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4623), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4625), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4647), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1593), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(4643), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4651), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [34516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, @@ -208101,11 +228677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(615), 37, + ACTIONS(708), 38, anon_sym_func, anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -208139,10 +228716,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [34568] = 3, + [39187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 7, + ACTIONS(1008), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1006), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [39242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1022), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [39297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(726), 9, + anon_sym_EQ, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, @@ -208150,11 +228833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(4653), 37, + ACTIONS(728), 38, anon_sym_func, anon_sym_c_func, anon_sym_struct, anon_sym_void, + anon_sym_type, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, @@ -208188,194 +228872,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [34620] = 3, + [39352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 7, + ACTIONS(704), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(702), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, sym__newline, - ACTIONS(4657), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [34672] = 4, + [39407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, - anon_sym_COMMA, - ACTIONS(4665), 6, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, + ACTIONS(397), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4661), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [34726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 7, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(406), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(647), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [34778] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - sym_identifier, - ACTIONS(449), 17, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208386,57 +228964,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_CARET, sym__newline, - [34845] = 9, + [39462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(449), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(451), 18, + ACTIONS(708), 16, anon_sym_EQ, anon_sym_DASH, anon_sym_PIPE, - anon_sym_else, + anon_sym_STAR, anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, anon_sym_or, - anon_sym_and, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -208445,2160 +228994,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT_LT_PIPE, anon_sym_PLUS, - sym_identifier, - [34908] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(449), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [34985] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - ACTIONS(4683), 1, - anon_sym_orelse, - ACTIONS(4685), 1, - anon_sym_catch, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(451), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35066] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, + ACTIONS(706), 31, anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 8, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(477), 13, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35139] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(451), 10, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - ACTIONS(449), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [35208] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 16, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym_identifier, - ACTIONS(449), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [35273] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(477), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35348] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - ACTIONS(4683), 1, - anon_sym_orelse, - ACTIONS(4685), 1, - anon_sym_catch, - ACTIONS(4687), 1, - anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_DOT_DOT, - ACTIONS(4693), 1, - anon_sym_DOT_DOT_EQ, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1593), 2, - anon_sym_else, - sym_identifier, - ACTIONS(1597), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4689), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [35437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4326), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(4695), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [35488] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 13, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, anon_sym_else, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, - anon_sym_or, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [39517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(712), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_xor, - sym_identifier, - ACTIONS(549), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(710), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [35555] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(549), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(551), 18, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym_identifier, - [35618] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - ACTIONS(4683), 1, - anon_sym_orelse, - ACTIONS(4685), 1, - anon_sym_catch, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(551), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35699] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(549), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35776] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_and, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(561), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35851] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 8, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(561), 13, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - [35924] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(551), 10, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - ACTIONS(549), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [35993] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 16, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym_identifier, - ACTIONS(549), 17, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36058] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 11, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36122] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_EQ, - ACTIONS(4703), 1, - anon_sym_RPAREN, - ACTIONS(4710), 1, - anon_sym_DOT_DOT, - ACTIONS(4712), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4714), 1, - anon_sym_orelse, - ACTIONS(4716), 1, - anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - ACTIONS(4728), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3319), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [36212] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(475), 1, - anon_sym_DOT, - ACTIONS(1593), 1, - sym_identifier, - ACTIONS(4675), 1, - anon_sym_or, - ACTIONS(4677), 1, - anon_sym_and, - ACTIONS(4683), 1, - anon_sym_orelse, - ACTIONS(4685), 1, - anon_sym_catch, - ACTIONS(4691), 1, - anon_sym_DOT_DOT, - ACTIONS(4693), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4731), 1, - anon_sym_EQ, - STATE(99), 1, - sym_argument_list, - ACTIONS(459), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1597), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(4667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4673), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [36300] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4710), 1, - anon_sym_DOT_DOT, - ACTIONS(4712), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4714), 1, - anon_sym_orelse, - ACTIONS(4716), 1, - anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 3, - anon_sym_RPAREN, - anon_sym_else, - sym__newline, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4737), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [36386] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 13, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - ACTIONS(549), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36448] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(549), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36514] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_orelse, - ACTIONS(4716), 1, - anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(551), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 14, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [36594] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(551), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 16, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [36670] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(563), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(561), 16, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [36744] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(563), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(561), 17, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [36816] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36884] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 13, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - ACTIONS(449), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [36946] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(449), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [37012] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_orelse, - ACTIONS(4716), 1, - anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(451), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 14, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [37092] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(451), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 16, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [37168] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4720), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(479), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(477), 16, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [37242] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(479), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(477), 17, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [37314] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(449), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [37382] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 11, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 21, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [37446] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4741), 1, anon_sym_COMMA, - STATE(2277), 1, - aux_sym_parameter_repeat1, - ACTIONS(4744), 4, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4739), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37500] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_EQ, - ACTIONS(4710), 1, - anon_sym_DOT_DOT, - ACTIONS(4712), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4714), 1, - anon_sym_orelse, - ACTIONS(4716), 1, - anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, - anon_sym_and, - ACTIONS(4746), 1, - anon_sym_RPAREN, - ACTIONS(4749), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3171), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 10, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210609,6238 +229068,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_LT_LT_PIPE_EQ, - [37590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4752), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37639] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_EQ, - ACTIONS(4710), 1, - anon_sym_DOT_DOT, - ACTIONS(4712), 1, + anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, - ACTIONS(4714), 1, anon_sym_orelse, - ACTIONS(4716), 1, anon_sym_catch, - ACTIONS(4718), 1, - anon_sym_or, - ACTIONS(4720), 1, anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(1597), 2, - anon_sym_RPAREN, - sym__newline, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4724), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4706), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4726), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4722), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_xor_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_PIPE_EQ, - [37724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_CARET, sym__newline, - ACTIONS(4756), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37773] = 3, + [39572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 5, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(4760), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4764), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4770), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4768), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 5, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(4772), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [37969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4776), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [38018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4780), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [38067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(4784), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [38116] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(395), 1, anon_sym_BANG, - ACTIONS(1779), 1, - anon_sym_COLON, - ACTIONS(385), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - ACTIONS(390), 18, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [38171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, anon_sym_LBRACE, - STATE(727), 1, - sym_variant_payload, - ACTIONS(483), 15, + ACTIONS(406), 20, + ts_builtin_sym_end, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + ACTIONS(397), 23, anon_sym_import, anon_sym_test, anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_DOT, - sym_identifier, - ACTIONS(481), 19, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [38219] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(549), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [38275] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - sym__newline, - [38337] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [38413] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [38485] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(563), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(561), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [38555] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(563), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(561), 12, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [38623] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(551), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [38687] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(551), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(549), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - [38745] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [38821] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [38893] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4806), 1, - anon_sym_and, - STATE(2147), 1, - sym_argument_list, - ACTIONS(479), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(477), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [38963] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(479), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(477), 12, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [39031] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(449), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - sym__newline, - [39093] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(451), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(449), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - [39151] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(449), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [39207] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(451), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(449), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [39271] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1750), 1, - anon_sym_BANG, - ACTIONS(385), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - ACTIONS(390), 18, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [39323] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(549), 13, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - ACTIONS(551), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - [39378] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(449), 13, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - ACTIONS(451), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - [39433] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4818), 1, - anon_sym_DOT_DOT, - ACTIONS(4820), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4822), 1, - anon_sym_orelse, - ACTIONS(4824), 1, - anon_sym_catch, - ACTIONS(4826), 1, - anon_sym_or, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1799), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1797), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - [39514] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4822), 1, - anon_sym_orelse, - ACTIONS(4824), 1, - anon_sym_catch, - ACTIONS(4826), 1, - anon_sym_or, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 6, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [39591] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 9, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - sym__newline, - ACTIONS(451), 13, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - sym_identifier, - [39652] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_or, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 8, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [39725] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(561), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 9, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [39796] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(561), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 10, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [39865] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 7, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(551), 12, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - [39930] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(549), 11, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - ACTIONS(551), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - [39987] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4822), 1, - anon_sym_orelse, - ACTIONS(4824), 1, - anon_sym_catch, - ACTIONS(4826), 1, - anon_sym_or, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 6, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [40064] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 9, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - sym__newline, - ACTIONS(551), 13, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - sym_identifier, - [40125] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_or, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 8, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [40198] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(477), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 9, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [40269] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4832), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(477), 3, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4830), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 10, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [40338] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_xor, - ACTIONS(4836), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4838), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 7, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(451), 12, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - [40403] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4812), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(449), 11, - ts_builtin_sym_end, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - ACTIONS(451), 14, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - [40460] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4840), 1, - anon_sym_COMMA, - ACTIONS(4842), 1, - anon_sym_SEMI, - ACTIONS(4844), 1, - anon_sym_RBRACK, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4850), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2663), 1, - aux_sym_match_arm_repeat1, - STATE(3119), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40546] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4852), 1, - anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_SEMI, - ACTIONS(4856), 1, - anon_sym_RBRACK, - ACTIONS(4858), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2670), 1, - aux_sym_match_arm_repeat1, - STATE(2878), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40632] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4852), 1, - anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_SEMI, - ACTIONS(4860), 1, - anon_sym_RBRACK, - ACTIONS(4862), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2670), 1, - aux_sym_match_arm_repeat1, - STATE(3075), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40718] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4840), 1, - anon_sym_COMMA, - ACTIONS(4842), 1, - anon_sym_SEMI, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4864), 1, - anon_sym_RBRACK, - ACTIONS(4866), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2663), 1, - aux_sym_match_arm_repeat1, - STATE(2913), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40804] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4870), 1, - anon_sym_SEMI, - ACTIONS(4872), 1, - anon_sym_RBRACK, - ACTIONS(4874), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2754), 1, - aux_sym_match_arm_repeat1, - STATE(2916), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40890] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4876), 1, - anon_sym_COMMA, - ACTIONS(4878), 1, - anon_sym_SEMI, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_DOT_DOT, - ACTIONS(4884), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2696), 1, - aux_sym_match_arm_repeat1, - STATE(2952), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [40976] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4886), 1, - anon_sym_COMMA, - ACTIONS(4888), 1, - anon_sym_SEMI, - ACTIONS(4890), 1, - anon_sym_RBRACK, - ACTIONS(4892), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2745), 1, - aux_sym_match_arm_repeat1, - STATE(2902), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41062] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4894), 1, - sym_identifier, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4904), 1, - anon_sym_COLON, - ACTIONS(4906), 1, - anon_sym_DOT_DOT, - ACTIONS(4908), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4910), 1, - anon_sym_orelse, - ACTIONS(4912), 1, - anon_sym_catch, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - ACTIONS(4928), 1, - sym__newline, - STATE(686), 1, - sym_argument_list, - STATE(1616), 1, - sym_block, - STATE(2749), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41150] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4876), 1, - anon_sym_COMMA, - ACTIONS(4878), 1, - anon_sym_SEMI, - ACTIONS(4930), 1, - anon_sym_RBRACK, - ACTIONS(4932), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2696), 1, - aux_sym_match_arm_repeat1, - STATE(2923), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41236] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4886), 1, - anon_sym_COMMA, - ACTIONS(4888), 1, - anon_sym_SEMI, - ACTIONS(4934), 1, - anon_sym_RBRACK, - ACTIONS(4936), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2745), 1, - aux_sym_match_arm_repeat1, - STATE(2924), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41322] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4876), 1, - anon_sym_COMMA, - ACTIONS(4878), 1, - anon_sym_SEMI, - ACTIONS(4938), 1, - anon_sym_RBRACK, - ACTIONS(4940), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2696), 1, - aux_sym_match_arm_repeat1, - STATE(2825), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41408] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4870), 1, - anon_sym_SEMI, - ACTIONS(4942), 1, - anon_sym_RBRACK, - ACTIONS(4944), 1, - anon_sym_DOT_DOT, - ACTIONS(4946), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2754), 1, - aux_sym_match_arm_repeat1, - STATE(3015), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41494] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4948), 1, - anon_sym_COMMA, - ACTIONS(4950), 1, - anon_sym_SEMI, - ACTIONS(4952), 1, - anon_sym_RBRACK, - ACTIONS(4954), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2751), 1, - aux_sym_match_arm_repeat1, - STATE(2887), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41580] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4956), 1, - anon_sym_COMMA, - ACTIONS(4958), 1, - anon_sym_PIPE, - ACTIONS(4960), 1, - anon_sym_COLON, - ACTIONS(4962), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2539), 1, - aux_sym_match_arm_repeat1, - STATE(3234), 1, - aux_sym_import_declaration_repeat1, - STATE(3451), 1, - sym_match_capture, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41668] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4948), 1, - anon_sym_COMMA, - ACTIONS(4950), 1, - anon_sym_SEMI, - ACTIONS(4964), 1, - anon_sym_RBRACK, - ACTIONS(4966), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2751), 1, - aux_sym_match_arm_repeat1, - STATE(2851), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41754] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4840), 1, - anon_sym_COMMA, - ACTIONS(4842), 1, - anon_sym_SEMI, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4882), 1, - anon_sym_DOT_DOT, - ACTIONS(4968), 1, - anon_sym_RBRACK, - ACTIONS(4970), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2663), 1, - aux_sym_match_arm_repeat1, - STATE(3089), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41840] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4886), 1, - anon_sym_COMMA, - ACTIONS(4888), 1, - anon_sym_SEMI, - ACTIONS(4944), 1, - anon_sym_DOT_DOT, - ACTIONS(4972), 1, - anon_sym_RBRACK, - ACTIONS(4974), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2745), 1, - aux_sym_match_arm_repeat1, - STATE(2957), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [41926] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4870), 1, - anon_sym_SEMI, - ACTIONS(4976), 1, - anon_sym_RBRACK, - ACTIONS(4978), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2754), 1, - aux_sym_match_arm_repeat1, - STATE(2800), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42012] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(4906), 1, - anon_sym_DOT_DOT, - ACTIONS(4908), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4910), 1, - anon_sym_orelse, - ACTIONS(4912), 1, - anon_sym_catch, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - ACTIONS(4980), 1, - sym_identifier, - ACTIONS(4982), 1, - anon_sym_COLON, - ACTIONS(4984), 1, - sym__newline, - STATE(686), 1, - sym_argument_list, - STATE(1473), 1, - sym_block, - STATE(2633), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42100] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4986), 1, - anon_sym_COMMA, - ACTIONS(4988), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2767), 1, - aux_sym_match_arm_repeat1, - STATE(2907), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42183] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2691), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4990), 1, - anon_sym_COMMA, - ACTIONS(4992), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2690), 1, - aux_sym_match_arm_repeat1, - STATE(2893), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42266] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2689), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4994), 1, - anon_sym_COMMA, - ACTIONS(4996), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2681), 1, - aux_sym_match_arm_repeat1, - STATE(2883), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42349] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4998), 1, - anon_sym_COMMA, - ACTIONS(5000), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2668), 1, - aux_sym_initializer_list_repeat1, - STATE(2976), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42432] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(5004), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2656), 1, - aux_sym_match_arm_repeat1, - STATE(2868), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42515] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5006), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - sym__newline, - [42590] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - anon_sym_COLON, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 23, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [42641] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5010), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(385), 10, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 17, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [42686] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_EQ, - ACTIONS(5014), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 20, anon_sym_DASH, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_DOT_DOT, anon_sym_orelse, anon_sym_catch, + anon_sym_or, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_xor, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_CARET, - [42739] = 24, + sym_identifier, + [39635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5017), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2737), 1, - aux_sym_initializer_list_repeat1, - STATE(2937), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(716), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42822] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4986), 1, - anon_sym_COMMA, - ACTIONS(5021), 1, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(714), 31, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(5023), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2767), 1, - aux_sym_match_arm_repeat1, - STATE(2999), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42905] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(5025), 1, - anon_sym_RBRACK, - ACTIONS(5027), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3136), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 3, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_SEMI, - anon_sym_DOT_DOT_EQ, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [42984] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RPAREN, - ACTIONS(5031), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2656), 1, - aux_sym_match_arm_repeat1, - STATE(3057), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [43067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5033), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5035), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(385), 10, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 17, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [43112] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5037), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2629), 1, - aux_sym_match_arm_repeat1, - STATE(2942), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [43195] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2613), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5043), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2740), 1, - aux_sym_match_arm_repeat1, - STATE(2791), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [43278] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5045), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5047), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(385), 10, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 17, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [43323] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5049), 1, - anon_sym_COMMA, - ACTIONS(5051), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2610), 1, - aux_sym_initializer_list_repeat1, - STATE(2934), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [43406] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2495), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5053), 1, - anon_sym_COMMA, - ACTIONS(5055), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2698), 1, - aux_sym_match_arm_repeat1, - STATE(2864), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [43489] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 11, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - ACTIONS(549), 14, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [43542] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5057), 5, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, anon_sym_COLON, - sym__newline, - [43617] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4910), 1, - anon_sym_orelse, - ACTIONS(4912), 1, - anon_sym_catch, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 3, anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(549), 4, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [43692] = 18, + anon_sym_CARET, + sym__newline, + [39690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, + ACTIONS(720), 16, + anon_sym_EQ, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(551), 5, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [43763] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(561), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 6, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [43832] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(561), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(563), 7, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [43899] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 8, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(551), 9, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - [43962] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 11, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, anon_sym_xor, anon_sym_LT_LT, - sym_identifier, - ACTIONS(549), 12, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - sym__newline, - [44017] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(718), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5059), 1, - anon_sym_COMMA, - ACTIONS(5061), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2611), 1, - aux_sym_initializer_list_repeat1, - STATE(2812), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [44100] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(5063), 1, - anon_sym_RBRACK, - ACTIONS(5065), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3216), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 3, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [44179] = 24, + anon_sym_CARET, + sym__newline, + [39745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(724), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(722), 31, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5067), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5069), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2616), 1, - aux_sym_match_arm_repeat1, - STATE(2814), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [44262] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 11, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - ACTIONS(449), 14, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [44315] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 10, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - sym__newline, - ACTIONS(451), 10, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - sym_identifier, - [44374] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4910), 1, - anon_sym_orelse, - ACTIONS(4912), 1, - anon_sym_catch, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 3, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(449), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [44449] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(451), 5, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [44520] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(477), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 6, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [44589] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5071), 1, - anon_sym_COMMA, - ACTIONS(5073), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2720), 1, - aux_sym_initializer_list_repeat1, - STATE(2911), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [44672] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(477), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(479), 7, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [44739] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - anon_sym_xor, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 8, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - ACTIONS(451), 9, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - [44802] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 11, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - sym_identifier, - ACTIONS(449), 12, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - [44857] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(2631), 1, - aux_sym_initializer_list_repeat1, - STATE(2831), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [44940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5079), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5081), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(385), 10, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 17, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [44985] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5083), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - sym__newline, - [45060] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4924), 1, - anon_sym_LT_LT, - STATE(686), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 10, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - sym__newline, - ACTIONS(551), 10, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_xor, - sym_identifier, - [45119] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5085), 1, anon_sym_SEMI, - ACTIONS(5087), 1, anon_sym_RBRACK, - ACTIONS(5089), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3282), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45199] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_RBRACE, - ACTIONS(2384), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3213), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45279] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_RBRACE, - ACTIONS(2332), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3173), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45359] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2226), 1, - anon_sym_RBRACE, - ACTIONS(2228), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3198), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45439] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - ACTIONS(5093), 1, - anon_sym_RBRACE, - ACTIONS(5095), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3214), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45519] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2294), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3168), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45599] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4878), 1, - anon_sym_SEMI, - ACTIONS(5097), 1, - anon_sym_RBRACK, - ACTIONS(5099), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3315), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45679] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(2283), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3204), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45759] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5101), 1, - anon_sym_SEMI, - ACTIONS(5104), 1, - anon_sym_RBRACK, - ACTIONS(5107), 1, - sym__newline, - STATE(3201), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, @@ -216849,3624 +229290,18778 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_CARET, - [45807] = 23, + sym__newline, + [39800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5110), 1, - anon_sym_SEMI, ACTIONS(5112), 1, - anon_sym_RBRACK, - ACTIONS(5114), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3175), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + anon_sym_LBRACE, + STATE(173), 1, + sym_variant_payload, + ACTIONS(520), 21, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [45887] = 22, + anon_sym_CARET, + sym__newline, + ACTIONS(522), 24, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + sym_identifier, + [39859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_DOT, - ACTIONS(4906), 1, + ACTIONS(728), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_DOT_DOT, - ACTIONS(4908), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4910), 1, - anon_sym_orelse, - ACTIONS(4912), 1, - anon_sym_catch, - ACTIONS(4914), 1, anon_sym_or, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4922), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_xor, - ACTIONS(4924), 1, anon_sym_LT_LT, - STATE(686), 1, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(726), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [39914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(732), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(730), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [39969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(764), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [40024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 1, + anon_sym_COMMA, + ACTIONS(5116), 7, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5114), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [40080] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + STATE(165), 1, sym_argument_list, - ACTIONS(35), 2, + ACTIONS(478), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1797), 2, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(570), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [40160] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + ACTIONS(5136), 1, + anon_sym_EQ, + ACTIONS(5140), 1, + anon_sym_DOT_DOT, + ACTIONS(5142), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5144), 1, + anon_sym_orelse, + ACTIONS(5146), 1, + anon_sym_catch, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1732), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1728), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, anon_sym_else, sym_identifier, - ACTIONS(1799), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(4898), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4900), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(4902), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4926), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4918), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45965] = 8, + ACTIONS(5138), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [40252] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 1, + ACTIONS(472), 1, anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(5116), 1, - anon_sym_PIPE, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 22, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(482), 1, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [46015] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5122), 1, - anon_sym_RBRACK, - ACTIONS(5125), 1, - sym__newline, - STATE(3315), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(498), 1, anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [46063] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4854), 1, - anon_sym_SEMI, - ACTIONS(5128), 1, - anon_sym_RBRACK, - ACTIONS(5130), 1, - sym__newline, - STATE(2147), 1, + STATE(165), 1, sym_argument_list, - STATE(3201), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(478), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, + ACTIONS(5124), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46143] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_SEMI, - ACTIONS(5135), 1, - anon_sym_RBRACK, - ACTIONS(5138), 1, - sym__newline, - STATE(3250), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(570), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [46191] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_SEMI, - ACTIONS(5144), 1, - anon_sym_RBRACK, - ACTIONS(5147), 1, sym__newline, - STATE(3267), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [46239] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4950), 1, - anon_sym_SEMI, - ACTIONS(5150), 1, - anon_sym_RBRACK, - ACTIONS(5152), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3161), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46319] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4842), 1, - anon_sym_SEMI, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5154), 1, - anon_sym_RBRACK, - ACTIONS(5156), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3250), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46399] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5158), 1, - anon_sym_SEMI, - ACTIONS(5161), 1, - anon_sym_RBRACK, - ACTIONS(5164), 1, - sym__newline, - STATE(3161), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [46447] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5167), 1, - anon_sym_SEMI, - ACTIONS(5169), 1, - anon_sym_RBRACK, - ACTIONS(5171), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3195), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46527] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4888), 1, - anon_sym_SEMI, - ACTIONS(5173), 1, - anon_sym_RBRACK, - ACTIONS(5175), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3267), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46607] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, - anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_RBRACK, - ACTIONS(5183), 1, - sym__newline, - STATE(3265), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [46655] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5186), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_RBRACK, - ACTIONS(5190), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3220), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46735] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4870), 1, - anon_sym_SEMI, - ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(5194), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3265), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46815] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_RBRACE, - ACTIONS(2271), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3158), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46895] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - ACTIONS(5196), 1, - anon_sym_RBRACE, - ACTIONS(5198), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3133), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46975] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(5200), 1, + ACTIONS(572), 21, + anon_sym_import, + anon_sym_test, + anon_sym_hide, anon_sym_EQ, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 22, - anon_sym_RBRACE, anon_sym_DASH, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [47025] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2202), 1, - anon_sym_RBRACE, - ACTIONS(2365), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3137), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47105] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - anon_sym_RBRACE, - ACTIONS(2312), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3235), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47185] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(5204), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3313), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47265] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 1, - anon_sym_RBRACE, - ACTIONS(2330), 1, - sym__newline, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - STATE(3302), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47345] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(5206), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - anon_sym_PIPE, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 20, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [47396] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5211), 1, - anon_sym_RBRACK, - ACTIONS(5213), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3160), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47473] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2308), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5215), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3156), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47550] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5217), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47623] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5219), 1, - anon_sym_RPAREN, - ACTIONS(5221), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3153), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47700] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5223), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3187), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47777] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5227), 1, - anon_sym_SEMI, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(5233), 1, - sym__newline, - STATE(3282), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 21, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [47824] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5236), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47897] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(5238), 1, - anon_sym_RBRACK, - ACTIONS(5240), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3188), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [47974] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5242), 1, - anon_sym_RPAREN, - ACTIONS(5244), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3176), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48051] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 3, - anon_sym_RPAREN, anon_sym_else, - sym__newline, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48124] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5246), 1, - anon_sym_RPAREN, - ACTIONS(5248), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3285), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [40318] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5128), 1, + anon_sym_and, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [48201] = 22, + ACTIONS(578), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(576), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [40396] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(472), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(482), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(498), 1, anon_sym_DOT, - ACTIONS(4794), 1, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5134), 3, anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 16, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, anon_sym_DOT_DOT, - ACTIONS(4848), 1, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(570), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [40466] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + ACTIONS(5144), 1, + anon_sym_orelse, + ACTIONS(5146), 1, + anon_sym_catch, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(570), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [40550] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 11, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(576), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [40626] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(570), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [40698] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(570), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(572), 19, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + [40766] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(468), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(470), 21, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [40832] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 16, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(468), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [40902] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + ACTIONS(5144), 1, + anon_sym_orelse, + ACTIONS(5146), 1, + anon_sym_catch, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(468), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [40986] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(468), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [41066] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5128), 1, + anon_sym_and, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(500), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [41144] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 11, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(500), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [41220] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(468), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [41292] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(468), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(470), 19, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + [41360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5148), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [41414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 7, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5152), 38, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [41467] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5126), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_and, + ACTIONS(5140), 1, + anon_sym_DOT_DOT, + ACTIONS(5142), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5144), 1, + anon_sym_orelse, + ACTIONS(5146), 1, + anon_sym_catch, + ACTIONS(5154), 1, + anon_sym_EQ, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1732), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5120), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5124), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5134), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1728), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(5130), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5156), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [41558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_COMMA, + STATE(2464), 1, + aux_sym_parameter_repeat1, + ACTIONS(5160), 5, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(5158), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [41614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5167), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5165), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [41665] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(570), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [41734] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(500), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [41809] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(500), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [41882] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(468), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [41951] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5187), 1, + anon_sym_DOT_DOT, + ACTIONS(5189), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5191), 1, + anon_sym_orelse, + ACTIONS(5193), 1, + anon_sym_catch, + ACTIONS(5195), 1, + anon_sym_or, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1728), 2, + anon_sym_else, + sym_identifier, + ACTIONS(1732), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5185), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [42040] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + ACTIONS(468), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [42105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5197), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42156] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + ACTIONS(570), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [42221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5201), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5205), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(5209), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42374] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(468), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(470), 18, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [42437] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(468), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [42504] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + ACTIONS(5191), 1, + anon_sym_orelse, + ACTIONS(5193), 1, + anon_sym_catch, + ACTIONS(5195), 1, + anon_sym_or, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [42585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(5213), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(5217), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5221), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5225), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [42789] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + ACTIONS(5195), 1, + anon_sym_or, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(468), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [42866] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(576), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [42939] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(570), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(572), 18, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [43002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5231), 6, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(5229), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_type, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [43053] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(570), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [43120] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + ACTIONS(5191), 1, + anon_sym_orelse, + ACTIONS(5193), 1, + anon_sym_catch, + ACTIONS(5195), 1, + anon_sym_or, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [43201] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + ACTIONS(5195), 1, + anon_sym_or, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(570), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [43278] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_DOT, + ACTIONS(5177), 1, + anon_sym_and, + STATE(165), 1, + sym_argument_list, + ACTIONS(478), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(576), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [43353] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [43417] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5237), 1, + anon_sym_EQ, + ACTIONS(5239), 1, + anon_sym_RPAREN, + ACTIONS(5246), 1, + anon_sym_DOT_DOT, + ACTIONS(5248), 1, anon_sym_DOT_DOT_EQ, ACTIONS(5250), 1, - anon_sym_RBRACK, + anon_sym_orelse, ACTIONS(5252), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3190), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48278] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, ACTIONS(5254), 1, - anon_sym_RBRACK, + anon_sym_or, ACTIONS(5256), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3209), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48355] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5258), 1, - anon_sym_RBRACK, - ACTIONS(5260), 1, - anon_sym_DOT_DOT, - ACTIONS(5262), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3163), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48432] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, ACTIONS(5264), 1, - anon_sym_RPAREN, - ACTIONS(5266), 1, sym__newline, - STATE(2147), 1, + STATE(2437), 1, sym_argument_list, - STATE(3319), 1, + STATE(3801), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5233), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5242), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [48509] = 22, + ACTIONS(5244), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [43507] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 13, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(4848), 1, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + ACTIONS(570), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, anon_sym_DOT_DOT_EQ, - ACTIONS(5268), 1, - anon_sym_RBRACE, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [43569] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(570), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [43635] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5250), 1, + anon_sym_orelse, + ACTIONS(5252), 1, + anon_sym_catch, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(572), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 14, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [43715] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(572), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [43791] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(578), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [43865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(578), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 17, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [43937] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [44005] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 13, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + ACTIONS(468), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [44067] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(468), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [44133] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5250), 1, + anon_sym_orelse, + ACTIONS(5252), 1, + anon_sym_catch, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(470), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 14, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [44213] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(470), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [44289] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(502), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [44363] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(502), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 17, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [44435] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [44503] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [44567] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5237), 1, + anon_sym_EQ, + ACTIONS(5246), 1, + anon_sym_DOT_DOT, + ACTIONS(5248), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5250), 1, + anon_sym_orelse, + ACTIONS(5252), 1, + anon_sym_catch, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + ACTIONS(5267), 1, + anon_sym_RPAREN, ACTIONS(5270), 1, sym__newline, - STATE(2147), 1, + STATE(2437), 1, sym_argument_list, - STATE(3170), 1, + STATE(3800), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5233), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5242), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [48586] = 20, + ACTIONS(5244), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [44657] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, + ACTIONS(5246), 1, anon_sym_DOT_DOT, - ACTIONS(4848), 1, + ACTIONS(5248), 1, anon_sym_DOT_DOT_EQ, - STATE(2147), 1, + ACTIONS(5250), 1, + anon_sym_orelse, + ACTIONS(5252), 1, + anon_sym_catch, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + ACTIONS(5273), 1, + anon_sym_EQ, + STATE(2437), 1, sym_argument_list, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5233), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5272), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5274), 1, - anon_sym_SEMI, - ACTIONS(5277), 1, - anon_sym_RBRACK, - ACTIONS(5280), 1, - sym__newline, - STATE(3195), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 21, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [48706] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5283), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48779] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5285), 1, - anon_sym_RBRACK, - ACTIONS(5287), 1, - anon_sym_DOT_DOT, - ACTIONS(5289), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3287), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48856] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5291), 1, - anon_sym_SEMI, - ACTIONS(5294), 1, - anon_sym_RBRACK, - ACTIONS(5297), 1, - sym__newline, - STATE(3220), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 21, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [48903] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5300), 1, + ACTIONS(1732), 3, anon_sym_RPAREN, - ACTIONS(5302), 1, + anon_sym_else, sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3171), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5242), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48980] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, + ACTIONS(5262), 3, anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4882), 1, - anon_sym_DOT_DOT, - ACTIONS(5304), 1, - anon_sym_RBRACK, - ACTIONS(5306), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3219), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5258), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [49057] = 22, + ACTIONS(5275), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [44743] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(472), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(482), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(498), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, + ACTIONS(1728), 1, + sym_identifier, + ACTIONS(5177), 1, anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5308), 1, - anon_sym_RBRACK, - ACTIONS(5310), 1, + ACTIONS(5187), 1, anon_sym_DOT_DOT, - ACTIONS(5312), 1, - sym__newline, - STATE(2147), 1, + ACTIONS(5189), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5191), 1, + anon_sym_orelse, + ACTIONS(5193), 1, + anon_sym_catch, + ACTIONS(5195), 1, + anon_sym_or, + ACTIONS(5277), 1, + anon_sym_EQ, + STATE(165), 1, sym_argument_list, - STATE(3227), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(478), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49134] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5314), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49207] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(5318), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3179), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49284] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5320), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49357] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4944), 1, - anon_sym_DOT_DOT, - ACTIONS(5322), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3226), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49434] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5326), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49507] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3180), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49584] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, + ACTIONS(1732), 2, anon_sym_LBRACE, - ACTIONS(1897), 1, + sym__newline, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5175), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5279), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [44831] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5237), 1, + anon_sym_EQ, + ACTIONS(5246), 1, + anon_sym_DOT_DOT, + ACTIONS(5248), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5250), 1, + anon_sym_orelse, + ACTIONS(5252), 1, + anon_sym_catch, + ACTIONS(5254), 1, + anon_sym_or, + ACTIONS(5256), 1, + anon_sym_and, + STATE(2437), 1, + sym_argument_list, + ACTIONS(1732), 2, + anon_sym_RPAREN, + sym__newline, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5242), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5262), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5258), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5244), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [44916] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1815), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(1860), 1, + anon_sym_COLON, + ACTIONS(397), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(406), 18, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [44971] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 11, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_PIPE, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 20, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [49635] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5335), 1, - anon_sym_LBRACE, - ACTIONS(5343), 1, - anon_sym_DOT_DOT, - ACTIONS(5345), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5347), 1, - anon_sym_orelse, - ACTIONS(5349), 1, - anon_sym_catch, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - ACTIONS(5363), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3328), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49712] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5365), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RBRACK, - ACTIONS(5367), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, sym__newline, - STATE(2147), 1, + [45043] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, sym_argument_list, - STATE(3189), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5281), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5297), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5283), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(470), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [49789] = 22, + sym__newline, + [45107] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, + ACTIONS(5289), 1, anon_sym_and, - ACTIONS(4848), 1, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [45177] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [45235] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [45303] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [45359] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [45421] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [45489] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [45565] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [45637] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [45707] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [45763] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(572), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [45827] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5295), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [45889] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [45947] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [46023] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 9, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(572), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [46084] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(570), 11, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + ACTIONS(572), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [46141] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(468), 13, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + ACTIONS(470), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [46196] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(468), 11, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + ACTIONS(470), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [46253] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(570), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(572), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [46318] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 9, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(470), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [46379] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(576), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [46448] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(468), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(470), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [46513] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5319), 1, + anon_sym_orelse, + ACTIONS(5321), 1, + anon_sym_catch, + ACTIONS(5323), 1, + anon_sym_or, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [46590] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5323), 1, + anon_sym_or, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 8, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [46663] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(500), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [46734] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(576), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [46805] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5319), 1, + anon_sym_orelse, + ACTIONS(5321), 1, + anon_sym_catch, + ACTIONS(5323), 1, + anon_sym_or, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [46882] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5323), 1, + anon_sym_or, + ACTIONS(5325), 1, + anon_sym_and, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 8, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [46955] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(500), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [47024] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(570), 13, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + ACTIONS(572), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [47079] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5307), 1, + anon_sym_LT_LT, + ACTIONS(5313), 1, + anon_sym_xor, + ACTIONS(5319), 1, + anon_sym_orelse, + ACTIONS(5321), 1, + anon_sym_catch, + ACTIONS(5323), 1, + anon_sym_or, + ACTIONS(5325), 1, + anon_sym_and, + ACTIONS(5327), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, + anon_sym_DOT_DOT_EQ, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1828), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5303), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5305), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5309), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5311), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5317), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1826), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + [47160] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5331), 1, + anon_sym_COMMA, + ACTIONS(5333), 1, + anon_sym_SEMI, + ACTIONS(5335), 1, + anon_sym_RBRACK, + ACTIONS(5337), 1, + anon_sym_DOT_DOT, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5341), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3100), 1, + aux_sym_match_arm_repeat1, + STATE(3438), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47246] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5343), 1, + anon_sym_COMMA, + ACTIONS(5345), 1, + anon_sym_SEMI, + ACTIONS(5347), 1, + anon_sym_RBRACK, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5351), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3145), 1, + aux_sym_match_arm_repeat1, + STATE(3501), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47332] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5353), 1, + sym_identifier, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + ACTIONS(5365), 1, + anon_sym_DOT_DOT, + ACTIONS(5367), 1, anon_sym_DOT_DOT_EQ, ACTIONS(5369), 1, - anon_sym_RBRACK, + anon_sym_orelse, ACTIONS(5371), 1, - anon_sym_DOT_DOT, + anon_sym_catch, ACTIONS(5373), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3200), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49866] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, ACTIONS(5375), 1, - anon_sym_RPAREN, - ACTIONS(5377), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3177), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49943] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5343), 1, - anon_sym_DOT_DOT, - ACTIONS(5345), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5347), 1, - anon_sym_orelse, - ACTIONS(5349), 1, - anon_sym_catch, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - ACTIONS(5379), 1, - anon_sym_LBRACE, ACTIONS(5381), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3138), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50020] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - anon_sym_RBRACE, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, ACTIONS(5383), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3154), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50097] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(5385), 1, - anon_sym_RBRACK, ACTIONS(5387), 1, sym__newline, - STATE(2147), 1, + STATE(658), 1, sym_argument_list, - STATE(3335), 1, + STATE(1796), 1, + sym_block, + STATE(3119), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(35), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5357), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5359), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5377), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50174] = 22, + [47420] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, + ACTIONS(5287), 1, anon_sym_or, - ACTIONS(4806), 1, + ACTIONS(5289), 1, anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5389), 1, - anon_sym_RBRACE, - ACTIONS(5391), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3269), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50251] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, + ACTIONS(5295), 1, anon_sym_LT_LT, - ACTIONS(4800), 1, + ACTIONS(5299), 1, anon_sym_orelse, - ACTIONS(4802), 1, + ACTIONS(5301), 1, anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(5393), 1, - anon_sym_RBRACK, - ACTIONS(5395), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3277), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50328] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, + ACTIONS(5339), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(5397), 1, - anon_sym_RBRACK, - ACTIONS(5399), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3283), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50405] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 1, - anon_sym_LPAREN, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1021), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(5401), 1, + ACTIONS(5343), 1, anon_sym_COMMA, - ACTIONS(5403), 1, - anon_sym_PIPE, - ACTIONS(385), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(390), 20, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [50456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5406), 1, + ACTIONS(5345), 1, anon_sym_SEMI, - ACTIONS(5409), 1, + ACTIONS(5389), 1, anon_sym_RBRACK, - ACTIONS(5412), 1, - sym__newline, - STATE(3175), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(385), 6, + ACTIONS(5391), 1, anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(5393), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3145), 1, + aux_sym_match_arm_repeat1, + STATE(3444), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(390), 21, - anon_sym_LPAREN, - anon_sym_DASH, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [50503] = 22, + [47506] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(5096), 1, anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, + ACTIONS(5287), 1, anon_sym_or, - ACTIONS(4806), 1, + ACTIONS(5289), 1, anon_sym_and, - ACTIONS(4846), 1, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5337), 1, anon_sym_DOT_DOT, - ACTIONS(4848), 1, + ACTIONS(5339), 1, anon_sym_DOT_DOT_EQ, + ACTIONS(5395), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_SEMI, + ACTIONS(5399), 1, + anon_sym_RBRACK, + ACTIONS(5401), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3206), 1, + aux_sym_match_arm_repeat1, + STATE(3263), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47592] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5403), 1, + anon_sym_COMMA, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(5407), 1, + anon_sym_RBRACK, + ACTIONS(5409), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3097), 1, + aux_sym_match_arm_repeat1, + STATE(3431), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47678] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_SEMI, ACTIONS(5415), 1, anon_sym_RBRACK, ACTIONS(5417), 1, sym__newline, - STATE(2147), 1, + STATE(2437), 1, sym_argument_list, + STATE(3213), 1, + aux_sym_match_arm_repeat1, + STATE(3504), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47764] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5419), 1, + anon_sym_COMMA, + ACTIONS(5421), 1, + anon_sym_SEMI, + ACTIONS(5423), 1, + anon_sym_RBRACK, + ACTIONS(5425), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3191), 1, + aux_sym_match_arm_repeat1, + STATE(3365), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47850] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5427), 1, + anon_sym_COMMA, + ACTIONS(5429), 1, + anon_sym_SEMI, + ACTIONS(5431), 1, + anon_sym_RBRACK, + ACTIONS(5433), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3010), 1, + aux_sym_match_arm_repeat1, + STATE(3372), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47936] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_SEMI, + ACTIONS(5435), 1, + anon_sym_RBRACK, + ACTIONS(5437), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3213), 1, + aux_sym_match_arm_repeat1, + STATE(3255), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48022] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(5365), 1, + anon_sym_DOT_DOT, + ACTIONS(5367), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5369), 1, + anon_sym_orelse, + ACTIONS(5371), 1, + anon_sym_catch, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + ACTIONS(5439), 1, + sym_identifier, + ACTIONS(5441), 1, + anon_sym_COLON, + ACTIONS(5443), 1, + sym__newline, + STATE(658), 1, + sym_argument_list, + STATE(1618), 1, + sym_block, + STATE(3082), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48110] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5403), 1, + anon_sym_COMMA, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(5445), 1, + anon_sym_RBRACK, + ACTIONS(5447), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3097), 1, + aux_sym_match_arm_repeat1, + STATE(3280), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48196] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5331), 1, + anon_sym_COMMA, + ACTIONS(5333), 1, + anon_sym_SEMI, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5449), 1, + anon_sym_RBRACK, + ACTIONS(5451), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3100), 1, + aux_sym_match_arm_repeat1, + STATE(3439), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48282] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5391), 1, + anon_sym_DOT_DOT, + ACTIONS(5453), 1, + anon_sym_COMMA, + ACTIONS(5455), 1, + anon_sym_SEMI, + ACTIONS(5457), 1, + anon_sym_RBRACK, + ACTIONS(5459), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3035), 1, + aux_sym_match_arm_repeat1, + STATE(3334), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48368] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5395), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_SEMI, + ACTIONS(5461), 1, + anon_sym_RBRACK, + ACTIONS(5463), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3206), 1, + aux_sym_match_arm_repeat1, + STATE(3396), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48454] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5465), 1, + anon_sym_COMMA, + ACTIONS(5467), 1, + anon_sym_PIPE, + ACTIONS(5469), 1, + anon_sym_COLON, + ACTIONS(5471), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(2949), 1, + aux_sym_match_arm_repeat1, + STATE(3743), 1, + aux_sym_import_declaration_repeat1, + STATE(4040), 1, + sym_match_capture, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5283), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48542] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5453), 1, + anon_sym_COMMA, + ACTIONS(5455), 1, + anon_sym_SEMI, + ACTIONS(5473), 1, + anon_sym_RBRACK, + ACTIONS(5475), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3035), 1, + aux_sym_match_arm_repeat1, + STATE(3398), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48628] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5331), 1, + anon_sym_COMMA, + ACTIONS(5333), 1, + anon_sym_SEMI, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5477), 1, + anon_sym_RBRACK, + ACTIONS(5479), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3100), 1, + aux_sym_match_arm_repeat1, + STATE(3401), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48714] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5395), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_SEMI, + ACTIONS(5481), 1, + anon_sym_RBRACK, + ACTIONS(5483), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3206), 1, + aux_sym_match_arm_repeat1, + STATE(3310), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48800] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5343), 1, + anon_sym_COMMA, + ACTIONS(5345), 1, + anon_sym_SEMI, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5485), 1, + anon_sym_RBRACK, + ACTIONS(5487), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3145), 1, + aux_sym_match_arm_repeat1, + STATE(3402), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48886] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_SEMI, + ACTIONS(5489), 1, + anon_sym_RBRACK, + ACTIONS(5491), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3213), 1, + aux_sym_match_arm_repeat1, + STATE(3404), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48972] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5403), 1, + anon_sym_COMMA, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(5493), 1, + anon_sym_RBRACK, + ACTIONS(5495), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3097), 1, + aux_sym_match_arm_repeat1, + STATE(3405), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49058] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5453), 1, + anon_sym_COMMA, + ACTIONS(5455), 1, + anon_sym_SEMI, + ACTIONS(5497), 1, + anon_sym_RBRACK, + ACTIONS(5499), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3035), 1, + aux_sym_match_arm_repeat1, + STATE(3416), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49144] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(576), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [49211] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(572), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [49282] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 8, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(470), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [49345] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5501), 1, + anon_sym_COMMA, + ACTIONS(5503), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3067), 1, + aux_sym_match_arm_repeat1, + STATE(3368), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49428] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(468), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [49483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5505), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5507), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(397), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [49528] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5509), 1, + anon_sym_COMMA, + ACTIONS(5511), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3086), 1, + aux_sym_match_arm_repeat1, + STATE(3475), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49611] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5513), 1, + anon_sym_COMMA, + ACTIONS(5515), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3070), 1, + aux_sym_match_arm_repeat1, + STATE(3376), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49694] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(468), 14, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [49747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5517), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5519), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(397), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [49792] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5521), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3032), 1, + aux_sym_initializer_list_repeat1, + STATE(3316), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5525), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5527), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(397), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [49920] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5529), 1, + anon_sym_COMMA, + ACTIONS(5531), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3104), 1, + aux_sym_match_arm_repeat1, + STATE(3259), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50003] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5535), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3223), 1, + aux_sym_initializer_list_repeat1, + STATE(3588), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50086] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5537), 1, + anon_sym_COMMA, + ACTIONS(5539), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3221), 1, + aux_sym_match_arm_repeat1, + STATE(3271), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50169] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 10, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(470), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [50228] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5369), 1, + anon_sym_orelse, + ACTIONS(5371), 1, + anon_sym_catch, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(570), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(570), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [50358] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 8, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(572), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [50421] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5541), 1, + anon_sym_RPAREN, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5545), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3215), 1, + aux_sym_match_arm_repeat1, + STATE(3272), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50504] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(500), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [50571] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5547), 1, + anon_sym_RBRACK, + ACTIONS(5549), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3770), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50650] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(5551), 1, + anon_sym_EQ, + ACTIONS(5553), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(397), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(406), 20, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [50703] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5556), 1, + anon_sym_COMMA, + ACTIONS(5558), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3170), 1, + aux_sym_initializer_list_repeat1, + STATE(3530), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5562), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(397), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [50831] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5564), 1, + anon_sym_RBRACK, + ACTIONS(5566), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3728), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50910] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5369), 1, + anon_sym_orelse, + ACTIONS(5371), 1, + anon_sym_catch, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(468), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50985] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(576), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(578), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [51054] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5568), 1, + anon_sym_COMMA, + ACTIONS(5570), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3018), 1, + aux_sym_initializer_list_repeat1, + STATE(3292), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51137] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5572), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym__newline, + [51212] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5574), 1, + anon_sym_COMMA, + ACTIONS(5576), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3080), 1, + aux_sym_initializer_list_repeat1, + STATE(3458), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51295] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5578), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym__newline, + [51370] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2483), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5580), 1, + anon_sym_COMMA, + ACTIONS(5582), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3161), 1, + aux_sym_initializer_list_repeat1, + STATE(3520), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51453] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5584), 1, + anon_sym_COMMA, + ACTIONS(5586), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3173), 1, + aux_sym_match_arm_repeat1, + STATE(3529), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51536] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3215), 1, + aux_sym_match_arm_repeat1, + STATE(3512), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51619] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5590), 1, + anon_sym_COMMA, + ACTIONS(5592), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3043), 1, + aux_sym_initializer_list_repeat1, + STATE(3590), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51702] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5596), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3029), 1, + aux_sym_match_arm_repeat1, + STATE(3374), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51785] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5598), 1, + anon_sym_COMMA, + ACTIONS(5600), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3102), 1, + aux_sym_initializer_list_repeat1, + STATE(3524), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51868] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5602), 1, + anon_sym_COMMA, + ACTIONS(5604), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3021), 1, + aux_sym_match_arm_repeat1, STATE(3298), 1, aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, + ACTIONS(5092), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5281), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(5291), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50580] = 16, + [51951] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(403), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, + ACTIONS(424), 1, anon_sym_DOT, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(479), 2, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1860), 1, + anon_sym_COLON, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(397), 5, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, + anon_sym_LT_LT, + ACTIONS(406), 23, + anon_sym_RPAREN, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(477), 5, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [52002] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(470), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [52073] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(500), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(502), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [52142] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5606), 1, + anon_sym_COMMA, + ACTIONS(5608), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3132), 1, + aux_sym_match_arm_repeat1, + STATE(3483), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52225] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(570), 14, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [52278] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 10, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(572), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [52337] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5610), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym__newline, + [52412] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5529), 1, + anon_sym_COMMA, + ACTIONS(5612), 1, + anon_sym_RPAREN, + ACTIONS(5614), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3104), 1, + aux_sym_match_arm_repeat1, + STATE(3236), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52495] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + ACTIONS(5618), 1, + anon_sym_RBRACE, + ACTIONS(5620), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3671), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52575] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5634), 1, + anon_sym_PIPE2, + ACTIONS(5636), 1, + anon_sym_DOT_DOT, + ACTIONS(5638), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5640), 1, + anon_sym_orelse, + ACTIONS(5642), 1, + anon_sym_catch, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + ACTIONS(5660), 1, + sym__newline, + STATE(2897), 1, + sym_argument_list, + STATE(3462), 1, + aux_sym_import_declaration_repeat1, + STATE(3905), 1, + sym__for_capture_bar, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52657] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2313), 1, + anon_sym_RBRACE, + ACTIONS(2315), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3841), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52737] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2337), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3718), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52817] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5662), 1, + anon_sym_SEMI, + ACTIONS(5665), 1, + anon_sym_RBRACK, + ACTIONS(5668), 1, + sym__newline, + STATE(3808), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [52865] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5421), 1, + anon_sym_SEMI, + ACTIONS(5671), 1, + anon_sym_RBRACK, + ACTIONS(5673), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3808), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52945] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5675), 1, + anon_sym_SEMI, + ACTIONS(5677), 1, + anon_sym_RBRACK, + ACTIONS(5679), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3870), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53025] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5681), 1, + anon_sym_SEMI, + ACTIONS(5684), 1, + anon_sym_RBRACK, + ACTIONS(5687), 1, + sym__newline, + STATE(3849), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [53073] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_SEMI, + ACTIONS(5693), 1, + anon_sym_RBRACK, + ACTIONS(5696), 1, + sym__newline, + STATE(3814), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [53121] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5429), 1, + anon_sym_SEMI, + ACTIONS(5699), 1, + anon_sym_RBRACK, + ACTIONS(5701), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3814), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53201] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + ACTIONS(5703), 1, + anon_sym_RBRACE, + ACTIONS(5705), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3855), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53281] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + ACTIONS(5707), 1, + anon_sym_RBRACE, + ACTIONS(5709), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3833), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53361] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 1, + anon_sym_RBRACE, + ACTIONS(2533), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3705), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53441] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5333), 1, + anon_sym_SEMI, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5711), 1, + anon_sym_RBRACK, + ACTIONS(5713), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3698), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5715), 1, + anon_sym_SEMI, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5721), 1, + sym__newline, + STATE(3757), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [53569] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(5724), 1, + anon_sym_RBRACK, + ACTIONS(5726), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3689), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53649] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5636), 1, + anon_sym_DOT_DOT, + ACTIONS(5638), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5640), 1, + anon_sym_orelse, + ACTIONS(5642), 1, + anon_sym_catch, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + ACTIONS(5728), 1, + anon_sym_PIPE2, + ACTIONS(5730), 1, + sym__newline, + STATE(2897), 1, + sym_argument_list, + STATE(3540), 1, + aux_sym_import_declaration_repeat1, + STATE(3880), 1, + sym__for_capture_bar, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53731] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5345), 1, + anon_sym_SEMI, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5732), 1, + anon_sym_RBRACK, + ACTIONS(5734), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3757), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53811] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + ACTIONS(5736), 1, + anon_sym_RBRACE, + ACTIONS(5738), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3773), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53891] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5636), 1, + anon_sym_DOT_DOT, + ACTIONS(5638), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5640), 1, + anon_sym_orelse, + ACTIONS(5642), 1, + anon_sym_catch, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + ACTIONS(5740), 1, + anon_sym_PIPE2, + ACTIONS(5742), 1, + sym__newline, + STATE(2897), 1, + sym_argument_list, + STATE(3435), 1, + aux_sym_import_declaration_repeat1, + STATE(3932), 1, + sym__for_capture_bar, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53973] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5744), 1, + anon_sym_SEMI, + ACTIONS(5746), 1, + anon_sym_RBRACK, + ACTIONS(5748), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3664), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54053] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5750), 1, + anon_sym_SEMI, + ACTIONS(5752), 1, + anon_sym_RBRACK, + ACTIONS(5754), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3678), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54133] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2365), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3788), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54213] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_RBRACE, + ACTIONS(2387), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3694), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(5756), 1, + anon_sym_EQ, + ACTIONS(397), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(406), 22, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [54343] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(5758), 1, + anon_sym_PIPE, + ACTIONS(397), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(406), 22, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [54393] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3847), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54473] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_SEMI, + ACTIONS(5764), 1, + anon_sym_RBRACK, + ACTIONS(5767), 1, + sym__newline, + STATE(3689), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [54521] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + anon_sym_RBRACE, + ACTIONS(2429), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3626), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54601] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5770), 1, + anon_sym_SEMI, + ACTIONS(5772), 1, + anon_sym_RBRACK, + ACTIONS(5774), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3630), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54681] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(2451), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3653), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54761] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOT, + ACTIONS(5365), 1, + anon_sym_DOT_DOT, + ACTIONS(5367), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5369), 1, + anon_sym_orelse, + ACTIONS(5371), 1, + anon_sym_catch, + ACTIONS(5373), 1, + anon_sym_or, + ACTIONS(5375), 1, + anon_sym_and, + ACTIONS(5381), 1, + anon_sym_xor, + ACTIONS(5383), 1, + anon_sym_LT_LT, + STATE(658), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1826), 2, + anon_sym_else, + sym_identifier, + ACTIONS(1828), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(5357), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5359), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5385), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5377), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54839] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3842), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54919] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2409), 1, + anon_sym_RBRACE, + ACTIONS(2411), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3655), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [54999] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 1, + anon_sym_SEMI, + ACTIONS(5779), 1, + anon_sym_RBRACK, + ACTIONS(5782), 1, + sym__newline, + STATE(3714), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [55047] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5397), 1, + anon_sym_SEMI, + ACTIONS(5785), 1, + anon_sym_RBRACK, + ACTIONS(5787), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3714), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55127] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 1, + anon_sym_RBRACE, + ACTIONS(2519), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3772), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55207] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5789), 1, + anon_sym_SEMI, + ACTIONS(5792), 1, + anon_sym_RBRACK, + ACTIONS(5795), 1, + sym__newline, + STATE(3698), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [55255] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5413), 1, + anon_sym_SEMI, + ACTIONS(5798), 1, + anon_sym_RBRACK, + ACTIONS(5800), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3849), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55335] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5802), 1, + anon_sym_SEMI, + ACTIONS(5805), 1, + anon_sym_RBRACK, + ACTIONS(5808), 1, + sym__newline, + STATE(3755), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [55383] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5455), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_RBRACK, + ACTIONS(5813), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3755), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55463] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2305), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + sym__newline, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + STATE(3782), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55543] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5815), 1, + anon_sym_RBRACK, + ACTIONS(5817), 1, + anon_sym_DOT_DOT, + ACTIONS(5819), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3736), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55620] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5821), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3704), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55697] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2711), 1, + aux_sym_type_repeat1, + ACTIONS(546), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(544), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [55738] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2415), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5823), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3816), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55815] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5825), 1, + anon_sym_RBRACK, + ACTIONS(5827), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3845), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5829), 1, + anon_sym_RBRACK, + ACTIONS(5831), 1, + anon_sym_DOT_DOT, + ACTIONS(5833), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3869), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 1, + anon_sym_SEMI, + ACTIONS(5838), 1, + anon_sym_RBRACK, + ACTIONS(5841), 1, + sym__newline, + STATE(3630), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [56016] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(5846), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3674), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56093] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5848), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3837), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56170] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5850), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56243] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5852), 1, + anon_sym_RBRACK, + ACTIONS(5854), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3843), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56320] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5856), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56393] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5858), 1, + anon_sym_SEMI, + ACTIONS(5861), 1, + anon_sym_RBRACK, + ACTIONS(5864), 1, + sym__newline, + STATE(3664), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [56440] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5867), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56513] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5869), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3713), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56590] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5871), 1, + anon_sym_RBRACK, + ACTIONS(5873), 1, + anon_sym_DOT_DOT, + ACTIONS(5875), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3868), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56667] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5877), 1, + anon_sym_RBRACE, + ACTIONS(5879), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3636), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56744] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5881), 1, + anon_sym_RBRACK, + ACTIONS(5883), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3717), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56821] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5885), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56894] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5887), 1, + anon_sym_RPAREN, + ACTIONS(5889), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3729), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56971] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5391), 1, + anon_sym_DOT_DOT, + ACTIONS(5891), 1, + anon_sym_RBRACK, + ACTIONS(5893), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3783), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57048] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5895), 1, + anon_sym_RBRACK, + ACTIONS(5897), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3638), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57125] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5899), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57198] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5901), 1, + anon_sym_RBRACK, + ACTIONS(5903), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3639), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57275] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5905), 1, + anon_sym_LBRACE, + ACTIONS(5913), 1, + anon_sym_DOT_DOT, + ACTIONS(5915), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5917), 1, + anon_sym_orelse, + ACTIONS(5919), 1, + anon_sym_catch, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + ACTIONS(5933), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3692), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57352] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5935), 1, + anon_sym_RBRACK, + ACTIONS(5937), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3722), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57429] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5939), 1, + anon_sym_RPAREN, + ACTIONS(5941), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3701), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57506] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_SEMI, + ACTIONS(5946), 1, + anon_sym_RBRACK, + ACTIONS(5949), 1, + sym__newline, + STATE(3870), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [57553] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5952), 1, + anon_sym_RPAREN, + ACTIONS(5954), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3801), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57630] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5956), 1, + anon_sym_RPAREN, + ACTIONS(5958), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3649), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57707] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + STATE(2780), 1, + sym_argument_list, + ACTIONS(535), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(533), 21, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [57750] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5960), 1, + anon_sym_RBRACK, + ACTIONS(5962), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3659), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57827] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5964), 1, + anon_sym_RPAREN, + ACTIONS(5966), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3765), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57904] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5913), 1, + anon_sym_DOT_DOT, + ACTIONS(5915), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5917), 1, + anon_sym_orelse, + ACTIONS(5919), 1, + anon_sym_catch, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + ACTIONS(5968), 1, + anon_sym_LBRACE, + ACTIONS(5970), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3778), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57981] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5972), 1, + anon_sym_RBRACK, + ACTIONS(5974), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3737), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58058] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5976), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58131] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5978), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58204] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5337), 1, + anon_sym_DOT_DOT, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5980), 1, + anon_sym_RBRACK, + ACTIONS(5982), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3727), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58281] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5984), 1, + anon_sym_RBRACE, + ACTIONS(5986), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3631), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58358] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5988), 1, + anon_sym_RBRACK, + ACTIONS(5990), 1, + anon_sym_DOT_DOT, + ACTIONS(5992), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3646), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58435] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5994), 1, + anon_sym_RPAREN, + ACTIONS(5996), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3800), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58512] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5998), 1, + anon_sym_RPAREN, + ACTIONS(6000), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3618), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58589] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(6002), 1, + anon_sym_RBRACK, + ACTIONS(6004), 1, + anon_sym_DOT_DOT, + ACTIONS(6006), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3702), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58666] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(6008), 1, + anon_sym_RBRACK, + ACTIONS(6010), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3690), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58743] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1828), 3, + anon_sym_RPAREN, + anon_sym_else, + sym__newline, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6012), 1, + anon_sym_PIPE, + STATE(2704), 1, + aux_sym_type_repeat1, + ACTIONS(539), 7, + anon_sym_BANG, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(537), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [58859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6015), 1, + anon_sym_LBRACE, + STATE(2886), 1, + sym_variant_payload, + ACTIONS(522), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(520), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [58902] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6017), 1, + anon_sym_RBRACK, + ACTIONS(6019), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3706), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58979] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 1, + anon_sym_SEMI, + ACTIONS(6024), 1, + anon_sym_RBRACK, + ACTIONS(6027), 1, + sym__newline, + STATE(3678), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [59026] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(6030), 1, + anon_sym_RBRACK, + ACTIONS(6032), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3850), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59103] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6034), 1, + anon_sym_RPAREN, + ACTIONS(6036), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3707), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59180] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_LPAREN, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1054), 1, + anon_sym_LBRACE, + ACTIONS(6038), 1, + anon_sym_BANG, + ACTIONS(397), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(406), 21, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [59227] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2704), 1, + aux_sym_type_repeat1, + ACTIONS(550), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(548), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [59268] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(6042), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3798), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59345] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(6044), 1, + anon_sym_RBRACK, + ACTIONS(6046), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3802), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59422] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(6048), 1, + anon_sym_RBRACK, + ACTIONS(6050), 1, + anon_sym_DOT_DOT, + ACTIONS(6052), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3734), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59499] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6054), 1, + anon_sym_RBRACK, + ACTIONS(6056), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3805), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59576] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6058), 1, + anon_sym_RBRACK, + ACTIONS(6060), 1, + sym__newline, + STATE(2437), 1, + sym_argument_list, + STATE(3781), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 16, + anon_sym_DASH, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [59703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1166), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1164), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [59741] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5917), 1, + anon_sym_orelse, + ACTIONS(5919), 1, + anon_sym_catch, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59811] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 5, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [59877] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_orelse, + ACTIONS(5642), 1, + anon_sym_catch, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 3, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1168), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [59987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1172), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(628), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(626), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1016), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1014), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6062), 1, + anon_sym_BANG, + ACTIONS(1116), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1114), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1122), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1120), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 17, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [60229] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, sym__newline, - [50644] = 15, + [60295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(563), 2, + ACTIONS(1126), 8, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1124), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(561), 6, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1128), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60371] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 5, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [60437] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [60503] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 6, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [60567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1132), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1026), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1138), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1136), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60681] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 14, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [60733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1074), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1072), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1076), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1050), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60847] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(572), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 10, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [60905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1030), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [60943] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_orelse, + ACTIONS(5642), 1, + anon_sym_catch, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(468), 3, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [61015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1140), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1110), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6064), 1, + anon_sym_DOT, + ACTIONS(1056), 7, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1054), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1106), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1224), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1036), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1034), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61245] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 10, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [61305] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 14, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [61357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1228), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1010), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1178), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1176), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1180), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61509] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [61573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1080), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1184), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1232), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1516), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61725] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 6, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, anon_sym_and, sym__newline, - [50706] = 4, + [61787] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(470), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 10, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [61845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 8, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(385), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(390), 23, + ACTIONS(1188), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61883] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(572), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [61935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1062), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1060), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [61973] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [62025] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [62081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1102), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1198), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1196), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1202), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1200), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1066), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1064), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62233] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5917), 1, + anon_sym_orelse, + ACTIONS(5919), 1, + anon_sym_catch, + ACTIONS(5921), 1, + anon_sym_or, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(570), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [62303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(424), 1, + anon_sym_DOT, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(403), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(397), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(406), 21, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1002), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6066), 1, + anon_sym_LBRACE, + STATE(2364), 1, + sym_variant_payload, + ACTIONS(522), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(520), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62427] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5923), 1, + anon_sym_and, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [62491] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(578), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5909), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5925), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(576), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [62553] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(558), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(556), 18, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + sym__newline, + [62601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1070), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1068), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62639] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(572), 1, + anon_sym_DOT_DOT, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(570), 5, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [62707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1084), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1042), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62783] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(470), 1, + anon_sym_DOT_DOT, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5644), 1, + anon_sym_or, + ACTIONS(5646), 1, + anon_sym_and, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(468), 5, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [62851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1146), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1144), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(998), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1018), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [62965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1038), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1148), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(537), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1204), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1210), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1208), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63155] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 10, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [63215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1152), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1214), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1212), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6069), 1, + anon_sym_BANG, + ACTIONS(1094), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1092), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63331] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(502), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5650), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5652), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5648), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(500), 6, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [63395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1216), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1100), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1098), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63471] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 17, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [63521] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_LT_LT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5911), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5931), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(470), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [63577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1220), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1156), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1046), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [63691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(568), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(566), 18, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + sym__newline, + [63739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(470), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 18, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + sym__newline, + [63787] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_LT_LT, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(572), 5, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(570), 12, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [63843] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(470), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(468), 16, + anon_sym_DASH, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [63893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_PIPE, + ACTIONS(397), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -220490,866 +248085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_CARET, sym__newline, - [50746] = 19, + [63933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5347), 1, - anon_sym_orelse, - ACTIONS(5349), 1, - anon_sym_catch, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(449), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50816] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5419), 1, - anon_sym_PIPE, - ACTIONS(5421), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3259), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50892] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(449), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [50958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5347), 1, - anon_sym_orelse, - ACTIONS(5349), 1, - anon_sym_catch, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(549), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [51028] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(549), 15, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - [51080] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5351), 1, - anon_sym_or, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(549), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [51146] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(479), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(477), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [51208] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(451), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(449), 10, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [51266] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(551), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(549), 17, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [51316] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(449), 17, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - sym__newline, - [51366] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5423), 1, - anon_sym_PIPE, - ACTIONS(5425), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3166), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [51442] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5427), 1, - anon_sym_PIPE, - ACTIONS(5429), 1, - sym__newline, - STATE(2147), 1, - sym_argument_list, - STATE(3144), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [51518] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(551), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 10, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [51576] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5353), 1, - anon_sym_and, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(563), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5357), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(5339), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(5355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(561), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [51640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5431), 1, - anon_sym_LBRACE, - STATE(2153), 1, - sym_variant_payload, - ACTIONS(483), 6, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_DOT, - ACTIONS(481), 22, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [51682] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(451), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(449), 15, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - sym__newline, - [51734] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(451), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(449), 13, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - sym__newline, - [51790] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_LT_LT, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(5337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5361), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(551), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(549), 13, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_xor, - sym__newline, - [51846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(408), 1, - anon_sym_DOT, - ACTIONS(1897), 1, + ACTIONS(1162), 8, anon_sym_BANG, - ACTIONS(387), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(385), 5, + anon_sym_PIPE, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(390), 21, + anon_sym_DOT, + ACTIONS(1160), 22, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_PIPE, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, + anon_sym_PIPE2, anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, @@ -221366,489 +248120,3338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_CARET, sym__newline, - [51890] = 20, + [63971] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, - anon_sym_COMMA, - ACTIONS(4603), 1, + ACTIONS(5622), 1, anon_sym_LPAREN, - ACTIONS(4611), 1, + ACTIONS(5632), 1, anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, + ACTIONS(5654), 1, anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, + ACTIONS(5624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5656), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, + ACTIONS(470), 5, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, + ACTIONS(468), 12, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [51961] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5434), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, anon_sym_AMP, anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52032] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 1, - anon_sym_COMMA, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52103] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52174] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52245] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5438), 1, - anon_sym_COMMA, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52316] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_COMMA, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4798), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52387] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5440), 1, - anon_sym_PIPE, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52457] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4613), 1, - anon_sym_DOT, - ACTIONS(4794), 1, - anon_sym_LT_LT, - ACTIONS(4800), 1, - anon_sym_orelse, - ACTIONS(4802), 1, - anon_sym_catch, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4848), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(5442), 1, - anon_sym_PIPE, - STATE(2147), 1, - sym_argument_list, - ACTIONS(4609), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4790), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4792), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(4798), 2, - anon_sym_AMP, - anon_sym_xor, - ACTIONS(4810), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4808), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52527] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5444), 1, - ts_builtin_sym_end, - ACTIONS(5446), 1, - sym_identifier, - ACTIONS(5449), 1, - anon_sym_import, - ACTIONS(5452), 1, - anon_sym_test, - ACTIONS(5455), 1, - anon_sym_hide, - ACTIONS(5458), 1, sym__newline, - STATE(2494), 9, - sym__top_level_declaration, - sym_import_declaration, - sym_test_import_declaration, - sym_test_declaration, - sym_function_declaration, - sym_type_declaration, - sym_global_constant_declaration, - sym_global_variable_declaration, - aux_sym_source_file_repeat1, - [52560] = 8, + [64027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1088), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64065] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_argument_list, + ACTIONS(5628), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(572), 6, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(570), 18, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + sym__newline, + [64113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 8, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1192), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(750), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(748), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(966), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(970), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(974), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(978), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(982), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(986), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(990), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(770), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(768), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(994), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(774), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(772), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1006), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64595] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(5616), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(778), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(776), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(253), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(1022), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(786), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(784), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(726), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(790), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(788), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(381), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(383), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(732), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(730), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(792), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [64999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(798), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(796), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(802), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(800), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(806), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(804), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(810), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(808), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(284), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(820), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(818), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(824), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(822), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(826), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(830), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(375), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65369] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(371), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(834), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(736), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(734), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65551] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6071), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(756), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(762), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(760), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(764), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(962), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(844), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(842), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(848), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(846), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(852), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(850), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(862), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(866), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(870), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [65992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(876), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(874), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(880), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(878), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(882), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(886), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(377), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(379), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(890), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(894), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(740), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(738), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66288] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + anon_sym_COMMA, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [66359] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6073), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [66430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(668), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(666), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(898), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(902), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(906), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(910), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(922), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(920), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(926), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(924), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(930), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(928), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(934), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(932), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(938), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(936), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(942), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(940), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(946), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(944), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [66874] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [66945] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6075), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [67016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(746), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(744), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67053] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_COMMA, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [67124] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6077), 1, + anon_sym_COMMA, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5283), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [67195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(704), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(702), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(406), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(948), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(708), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(706), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(668), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(666), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(712), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(710), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(952), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(716), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(714), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(720), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(718), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(722), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(956), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 7, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(838), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_PIPE2, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [67639] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6079), 1, + anon_sym_PIPE, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5283), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [67709] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(5287), 1, + anon_sym_or, + ACTIONS(5289), 1, + anon_sym_and, + ACTIONS(5295), 1, + anon_sym_LT_LT, + ACTIONS(5299), 1, + anon_sym_orelse, + ACTIONS(5301), 1, + anon_sym_catch, + ACTIONS(5339), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5349), 1, + anon_sym_DOT_DOT, + ACTIONS(6081), 1, + anon_sym_PIPE, + STATE(2437), 1, + sym_argument_list, + ACTIONS(5092), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5281), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5283), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5293), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5291), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [67779] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -221859,11 +251462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, ACTIONS(13), 1, anon_sym_hide, - ACTIONS(5461), 1, + ACTIONS(6083), 1, ts_builtin_sym_end, - ACTIONS(5463), 1, + ACTIONS(6085), 1, sym__newline, - STATE(2494), 9, + STATE(2904), 9, sym__top_level_declaration, sym_import_declaration, sym_test_import_declaration, @@ -221873,12457 +251476,14293 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [52593] = 9, + [67812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5465), 1, - ts_builtin_sym_end, - ACTIONS(5469), 1, - anon_sym_BANG, - ACTIONS(5471), 1, - sym__newline, - STATE(2568), 1, - sym_block, - STATE(2933), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1123), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5467), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52626] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5474), 1, - ts_builtin_sym_end, - ACTIONS(5478), 1, - anon_sym_BANG, - ACTIONS(5480), 1, - sym__newline, - STATE(2560), 1, - sym_block, - STATE(2906), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1097), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5476), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52659] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5483), 1, - ts_builtin_sym_end, - ACTIONS(5487), 1, - anon_sym_BANG, - ACTIONS(5489), 1, - sym__newline, - STATE(2562), 1, - sym_block, - STATE(3129), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1123), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5485), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52692] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, - ts_builtin_sym_end, - ACTIONS(5496), 1, - anon_sym_BANG, - ACTIONS(5498), 1, - sym__newline, - STATE(2588), 1, - sym_block, - STATE(3014), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1097), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5494), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52725] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5501), 1, - ts_builtin_sym_end, - ACTIONS(5505), 1, - sym__newline, - STATE(2556), 1, - sym_block, - STATE(2964), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1157), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5503), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52755] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - ts_builtin_sym_end, - ACTIONS(5512), 1, - sym__newline, - STATE(2592), 1, - sym_block, - STATE(2990), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1197), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5510), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52785] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5515), 1, - ts_builtin_sym_end, - ACTIONS(5519), 1, - sym__newline, - STATE(2577), 1, - sym_block, - STATE(2971), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1197), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5517), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52815] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5522), 1, - ts_builtin_sym_end, - ACTIONS(5526), 1, - sym__newline, - STATE(2580), 1, - sym_block, - STATE(2932), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1157), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(5524), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [52845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - STATE(1773), 1, - sym_argument_list, - ACTIONS(492), 8, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [52865] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2509), 1, - aux_sym_type_repeat1, - ACTIONS(513), 8, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [52882] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2505), 1, - aux_sym_type_repeat1, - ACTIONS(502), 8, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [52899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - anon_sym_PIPE, - STATE(2508), 1, - aux_sym_type_repeat1, - ACTIONS(502), 7, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - sym__newline, - [52918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - anon_sym_PIPE, - STATE(2509), 1, - aux_sym_type_repeat1, - ACTIONS(513), 7, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - sym__newline, - [52937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 1, - anon_sym_PIPE, - STATE(2509), 1, - aux_sym_type_repeat1, - ACTIONS(506), 7, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - sym__newline, - [52956] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5536), 1, - anon_sym_RPAREN, - ACTIONS(5538), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2748), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [52982] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5546), 1, - sym__newline, - STATE(2532), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53008] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5548), 1, - anon_sym_RPAREN, - ACTIONS(5550), 1, - anon_sym_DOT_DOT_DOT, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3140), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53034] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5548), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53060] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - ts_builtin_sym_end, - ACTIONS(5552), 1, - anon_sym_else, - ACTIONS(5554), 1, - sym__newline, - STATE(3207), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4153), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, - ts_builtin_sym_end, - ACTIONS(5557), 1, - anon_sym_else, - ACTIONS(5559), 1, - sym__newline, - STATE(3215), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4099), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53104] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(5562), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5564), 1, - sym__newline, - STATE(2533), 1, - aux_sym_import_declaration_repeat1, - STATE(3199), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53130] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5562), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_RPAREN, - ACTIONS(5568), 1, - sym__newline, - STATE(2537), 1, - aux_sym_import_declaration_repeat1, - STATE(3199), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53156] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5548), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - sym__newline, - STATE(2523), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53182] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - ts_builtin_sym_end, - ACTIONS(5572), 1, - anon_sym_else, - ACTIONS(5575), 1, - sym__newline, - STATE(3304), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4144), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53204] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - ts_builtin_sym_end, - ACTIONS(5578), 1, - anon_sym_else, - ACTIONS(5580), 1, - sym__newline, - STATE(3240), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4144), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(1097), 7, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [53242] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - ts_builtin_sym_end, - ACTIONS(5585), 1, - anon_sym_else, - ACTIONS(5588), 1, - sym__newline, - STATE(3305), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4089), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53264] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3140), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5593), 1, - anon_sym_RPAREN, - ACTIONS(5595), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5597), 1, - sym__newline, - STATE(2510), 1, - aux_sym_import_declaration_repeat1, - STATE(2782), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 1, - ts_builtin_sym_end, - ACTIONS(5599), 1, - anon_sym_else, - ACTIONS(5601), 1, - sym__newline, - STATE(3326), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4114), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53338] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - ts_builtin_sym_end, - ACTIONS(5604), 1, - anon_sym_else, - ACTIONS(5607), 1, - sym__newline, - STATE(3306), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4134), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5610), 1, - anon_sym_COMMA, - ACTIONS(5613), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(3234), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5083), 4, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_COLON, - [53382] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - ts_builtin_sym_end, - ACTIONS(5616), 1, - anon_sym_else, - ACTIONS(5618), 1, - sym__newline, - STATE(3325), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4134), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - ts_builtin_sym_end, - ACTIONS(5621), 1, - anon_sym_else, - ACTIONS(5624), 1, - sym__newline, - STATE(3307), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4153), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53426] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, - ts_builtin_sym_end, - ACTIONS(5627), 1, - anon_sym_else, - ACTIONS(5630), 1, - sym__newline, - STATE(3308), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4099), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53448] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 1, - ts_builtin_sym_end, - ACTIONS(5633), 1, - anon_sym_else, - ACTIONS(5636), 1, - sym__newline, - STATE(3309), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4114), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53470] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5639), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3140), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53496] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5639), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53522] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5639), 1, - anon_sym_RPAREN, - ACTIONS(5641), 1, - sym__newline, - STATE(2512), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53548] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5562), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5639), 1, - anon_sym_RPAREN, - ACTIONS(5643), 1, - sym__newline, - STATE(2513), 1, - aux_sym_import_declaration_repeat1, - STATE(3199), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - ts_builtin_sym_end, - ACTIONS(5645), 1, - anon_sym_else, - ACTIONS(5647), 1, - sym__newline, - STATE(3310), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4089), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53596] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, - anon_sym_BANG, - ACTIONS(1123), 7, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - sym__newline, - [53638] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - anon_sym_COMMA, - ACTIONS(4962), 1, - sym__newline, - ACTIONS(5652), 1, - anon_sym_PIPE, - ACTIONS(5654), 1, - anon_sym_COLON, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(3234), 1, - aux_sym_import_declaration_repeat1, - STATE(3506), 1, - sym_match_capture, - [53663] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5656), 1, - sym__newline, - STATE(2542), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53686] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5544), 1, - anon_sym_DOT_DOT_DOT, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3279), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53709] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_DOT_DOT_DOT, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3140), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53732] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, - anon_sym_DOLLAR, - ACTIONS(5562), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5658), 1, - sym__newline, - STATE(2541), 1, - aux_sym_import_declaration_repeat1, - STATE(3199), 1, - sym_parameter, - ACTIONS(5534), 2, - sym_sink, - sym_identifier, - [53755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5660), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5662), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5664), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5666), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5670), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5672), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5674), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1029), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1031), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5676), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5678), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5033), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5035), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5680), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5682), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5686), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5688), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5690), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53895] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1740), 1, - anon_sym_COMMA, - ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_COLON, - ACTIONS(5696), 1, - sym__newline, - STATE(2567), 1, - aux_sym_capture_list_repeat1, - STATE(3280), 1, - aux_sym_import_declaration_repeat1, - [53917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5698), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5700), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5702), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5704), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5706), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5708), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5710), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5712), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5714), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5716), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [53987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5718), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5720), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5724), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5726), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5728), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5730), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5732), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5045), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5047), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5734), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5736), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5740), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54085] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 1, - anon_sym_COMMA, - ACTIONS(5747), 1, - sym__newline, - STATE(2567), 1, - aux_sym_capture_list_repeat1, - STATE(3280), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5745), 2, - anon_sym_PIPE, - anon_sym_COLON, - [54105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5752), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5756), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5758), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5760), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5762), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5764), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5010), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1045), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(1047), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5766), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5768), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5079), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5081), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5770), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5772), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5776), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5778), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5780), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5782), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5784), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5786), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5788), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5790), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5792), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5794), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5796), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5798), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5800), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5802), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5804), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5808), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5812), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5814), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5816), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5820), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5822), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5824), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5828), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5832), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5836), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5840), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5844), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5848), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(5852), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [54511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5854), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1583), 1, - sym_block, - [54530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5856), 1, - sym_identifier, - ACTIONS(5858), 1, - sym__newline, - STATE(1652), 1, - sym_block, - STATE(2747), 1, - aux_sym_import_declaration_repeat1, - [54549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(5862), 1, - sym__newline, - STATE(1654), 1, - sym_block, - STATE(2774), 1, - aux_sym_import_declaration_repeat1, - [54568] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5864), 1, - anon_sym_LPAREN, - ACTIONS(5866), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, - sym__newline, - STATE(660), 1, - sym_enum_body, - STATE(3123), 1, - aux_sym_import_declaration_repeat1, - [54587] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2308), 1, - anon_sym_RBRACE, - ACTIONS(5870), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - sym__newline, - STATE(2654), 1, - aux_sym_variant_payload_repeat1, - STATE(2966), 1, - aux_sym_import_declaration_repeat1, - [54606] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(5874), 1, - anon_sym_COMMA, - ACTIONS(5876), 1, - sym__newline, - STATE(2605), 1, - aux_sym_parameter_list_repeat1, - STATE(2931), 1, - aux_sym_import_declaration_repeat1, - [54625] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5878), 1, - sym_identifier, - ACTIONS(5880), 1, - sym__newline, - STATE(1460), 1, - sym_block, - STATE(2770), 1, - aux_sym_import_declaration_repeat1, - [54644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5882), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1665), 1, - sym_block, - [54663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5884), 1, - anon_sym_RPAREN, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5889), 1, - sym__newline, - STATE(2605), 1, - aux_sym_parameter_list_repeat1, - STATE(3288), 1, - aux_sym_import_declaration_repeat1, - [54682] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5892), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1668), 1, - sym_block, - [54701] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - sym_identifier, - ACTIONS(5896), 1, - sym__newline, - STATE(1510), 1, - sym_block, - STATE(2634), 1, - aux_sym_import_declaration_repeat1, - [54720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 1, - sym_identifier, - ACTIONS(4146), 1, - anon_sym_LBRACE, - ACTIONS(5898), 1, - anon_sym_else, - ACTIONS(5901), 1, - sym__newline, - STATE(3251), 1, - aux_sym_import_declaration_repeat1, - [54739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - sym_identifier, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(5904), 1, - anon_sym_else, - ACTIONS(5907), 1, - sym__newline, - STATE(3252), 1, - aux_sym_import_declaration_repeat1, - [54758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(4998), 1, - anon_sym_COMMA, - ACTIONS(5000), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(2976), 1, - aux_sym_import_declaration_repeat1, - [54777] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(2831), 1, - aux_sym_import_declaration_repeat1, - [54796] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5910), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1484), 1, - sym_block, - [54815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, - sym__newline, - STATE(2631), 1, - aux_sym_initializer_list_repeat1, - STATE(2831), 1, - aux_sym_import_declaration_repeat1, - [54834] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_LBRACE, - ACTIONS(5912), 1, - anon_sym_else, - ACTIONS(5915), 1, - sym__newline, - STATE(3253), 1, - aux_sym_import_declaration_repeat1, - [54853] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(4998), 1, - anon_sym_COMMA, - ACTIONS(5000), 1, - sym__newline, - STATE(2668), 1, - aux_sym_initializer_list_repeat1, - STATE(2976), 1, - aux_sym_import_declaration_repeat1, - [54872] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 1, - anon_sym_RPAREN, - ACTIONS(5918), 1, - anon_sym_COMMA, - ACTIONS(5920), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2835), 1, - aux_sym_import_declaration_repeat1, - [54891] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5922), 1, - sym_identifier, - ACTIONS(5925), 1, - anon_sym_RBRACE, - ACTIONS(5927), 1, - sym__newline, - STATE(2617), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [54910] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(5932), 1, - anon_sym_RBRACE, - ACTIONS(5934), 1, - sym__newline, - STATE(2683), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [54929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5936), 1, - sym_identifier, - ACTIONS(5938), 1, - sym__newline, - STATE(1675), 1, - sym_block, - STATE(2700), 1, - aux_sym_import_declaration_repeat1, - [54948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4155), 1, - anon_sym_LBRACE, - ACTIONS(5940), 1, - anon_sym_else, - ACTIONS(5942), 1, - sym__newline, - STATE(3247), 1, - aux_sym_import_declaration_repeat1, - [54967] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_LBRACE, - ACTIONS(5945), 1, - anon_sym_else, - ACTIONS(5947), 1, - sym__newline, - STATE(3257), 1, - aux_sym_import_declaration_repeat1, - [54986] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5950), 1, - anon_sym_LPAREN, - ACTIONS(5952), 1, - anon_sym_LBRACE, - ACTIONS(5954), 1, - sym__newline, - STATE(2112), 1, - sym_record_body, - STATE(2867), 1, - aux_sym_import_declaration_repeat1, - [55005] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5389), 1, - anon_sym_RBRACE, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(5958), 1, - sym__newline, - STATE(2636), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [55024] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_RBRACE, - ACTIONS(5017), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - sym__newline, - STATE(2737), 1, - aux_sym_initializer_list_repeat1, - STATE(2937), 1, - aux_sym_import_declaration_repeat1, - [55043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5389), 1, - anon_sym_RBRACE, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(2840), 1, - aux_sym_import_declaration_repeat1, - [55062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5964), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1667), 1, - sym_block, - [55081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5389), 1, - anon_sym_RBRACE, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - sym__newline, - STATE(2639), 1, - aux_sym_variant_payload_repeat1, - STATE(2840), 1, - aux_sym_import_declaration_repeat1, - [55100] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5966), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_LBRACE, - ACTIONS(5970), 1, - sym__newline, - STATE(2093), 1, - sym_enum_body, - STATE(3094), 1, - aux_sym_import_declaration_repeat1, - [55119] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2531), 1, - anon_sym_RPAREN, - ACTIONS(5972), 1, - anon_sym_COMMA, - ACTIONS(5974), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2982), 1, - aux_sym_import_declaration_repeat1, - [55138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5976), 1, - sym_identifier, - ACTIONS(5978), 1, - sym__newline, - STATE(1682), 1, - sym_block, - STATE(2775), 1, - aux_sym_import_declaration_repeat1, - [55157] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_RBRACE, - ACTIONS(5980), 1, - anon_sym_COMMA, - ACTIONS(5982), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(2845), 1, - aux_sym_import_declaration_repeat1, - [55176] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5984), 1, - sym_identifier, - ACTIONS(5986), 1, - sym__newline, - STATE(1464), 1, - sym_block, - STATE(2713), 1, - aux_sym_import_declaration_repeat1, - [55195] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1614), 1, - sym_block, - [55214] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(5990), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1603), 1, - sym_block, - [55233] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4114), 1, - sym_identifier, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(5992), 1, - anon_sym_else, - ACTIONS(5994), 1, - sym__newline, - STATE(3312), 1, - aux_sym_import_declaration_repeat1, - [55252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(5997), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(5999), 1, - sym__newline, - STATE(2645), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(6001), 1, - sym__newline, - STATE(2646), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [55309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(6003), 1, - anon_sym_COMMA, - ACTIONS(6005), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(2852), 1, - aux_sym_import_declaration_repeat1, - [55328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6007), 1, - anon_sym_BANG, - ACTIONS(6009), 1, - anon_sym_LBRACE, - ACTIONS(6011), 1, - sym__newline, - STATE(127), 1, - sym_block, - STATE(2792), 1, - aux_sym_import_declaration_repeat1, - [55347] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6013), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1448), 1, - sym_block, - [55366] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_RBRACE, - ACTIONS(6017), 1, - sym__newline, - STATE(2617), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [55385] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6019), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1456), 1, - sym_block, - [55404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6021), 1, - sym_identifier, - ACTIONS(6023), 1, - sym__newline, - STATE(1457), 1, - sym_block, - STATE(2768), 1, - aux_sym_import_declaration_repeat1, - [55423] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6025), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [55442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6025), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6025), 1, - anon_sym_RBRACE, - ACTIONS(6027), 1, - sym__newline, - STATE(2649), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6025), 1, - anon_sym_RBRACE, - ACTIONS(6029), 1, - sym__newline, - STATE(2650), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [55499] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6031), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [55518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6031), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55537] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6031), 1, - anon_sym_RBRACE, - ACTIONS(6033), 1, - sym__newline, - STATE(2652), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [55556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6035), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [55575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_RBRACE, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6037), 1, - sym__newline, - STATE(2684), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [55594] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_RBRACE, - ACTIONS(6039), 1, - anon_sym_COMMA, - ACTIONS(6041), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(2998), 1, - aux_sym_import_declaration_repeat1, - [55613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6043), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1466), 1, - sym_block, - [55632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym_RPAREN, - ACTIONS(4986), 1, - anon_sym_COMMA, - ACTIONS(4988), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2907), 1, - aux_sym_import_declaration_repeat1, - [55651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_RBRACE, - ACTIONS(6039), 1, - anon_sym_COMMA, - ACTIONS(6041), 1, - sym__newline, - STATE(2695), 1, - aux_sym_variant_payload_repeat1, - STATE(2998), 1, - aux_sym_import_declaration_repeat1, - [55670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6045), 1, - anon_sym_BANG, - ACTIONS(6047), 1, - anon_sym_LBRACE, - ACTIONS(6049), 1, - sym__newline, - STATE(696), 1, - sym_block, - STATE(2958), 1, - aux_sym_import_declaration_repeat1, - [55689] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6051), 1, - anon_sym_LPAREN, - ACTIONS(6053), 1, - anon_sym_LBRACE, - ACTIONS(6055), 1, - sym__newline, - STATE(231), 1, - sym_record_body, - STATE(2909), 1, - aux_sym_import_declaration_repeat1, - [55708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6057), 1, - anon_sym_LPAREN, - ACTIONS(6059), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - sym__newline, - STATE(232), 1, - sym_enum_body, - STATE(2869), 1, - aux_sym_import_declaration_repeat1, - [55727] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5268), 1, - anon_sym_RBRACE, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6063), 1, - sym__newline, - STATE(2702), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [55746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6017), 1, - sym__newline, - ACTIONS(6065), 1, - anon_sym_RBRACE, - STATE(2617), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [55765] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2615), 1, - anon_sym_RBRACK, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(6067), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2799), 1, - aux_sym_import_declaration_repeat1, - [55784] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6069), 1, - sym_identifier, - ACTIONS(6071), 1, - sym__newline, - STATE(1561), 1, - sym_block, - STATE(2773), 1, - aux_sym_import_declaration_repeat1, - [55803] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5268), 1, - anon_sym_RBRACE, - ACTIONS(6073), 1, - anon_sym_COMMA, - ACTIONS(6075), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(2965), 1, - aux_sym_import_declaration_repeat1, - [55822] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6077), 1, - anon_sym_RBRACE, - ACTIONS(6079), 1, - sym__newline, - STATE(2678), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [55841] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6081), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1490), 1, - sym_block, - [55860] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2212), 1, - anon_sym_RBRACE, - ACTIONS(6083), 1, - anon_sym_COMMA, - ACTIONS(6085), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(3009), 1, - aux_sym_import_declaration_repeat1, - [55879] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, ACTIONS(6087), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1599), 1, - sym_block, - [55898] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, - anon_sym_RBRACK, - ACTIONS(4948), 1, - anon_sym_COMMA, + ts_builtin_sym_end, ACTIONS(6089), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2828), 1, - aux_sym_import_declaration_repeat1, - [55917] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5268), 1, - anon_sym_RBRACE, - ACTIONS(6073), 1, - anon_sym_COMMA, - ACTIONS(6075), 1, - sym__newline, - STATE(2741), 1, - aux_sym_variant_payload_repeat1, - STATE(2965), 1, - aux_sym_import_declaration_repeat1, - [55936] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6091), 1, - anon_sym_LPAREN, - ACTIONS(6093), 1, - anon_sym_LBRACE, + sym_identifier, + ACTIONS(6092), 1, + anon_sym_import, ACTIONS(6095), 1, - sym__newline, - STATE(1805), 1, - sym_record_body, - STATE(3054), 1, - aux_sym_import_declaration_repeat1, - [55955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6097), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1563), 1, - sym_block, - [55974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 1, - sym_identifier, - ACTIONS(4146), 1, - anon_sym_LBRACE, - ACTIONS(6099), 1, - anon_sym_else, + anon_sym_test, + ACTIONS(6098), 1, + anon_sym_hide, ACTIONS(6101), 1, sym__newline, - STATE(3165), 1, - aux_sym_import_declaration_repeat1, - [55993] = 6, + STATE(2904), 9, + sym__top_level_declaration, + sym_import_declaration, + sym_test_import_declaration, + sym_test_declaration, + sym_function_declaration, + sym_type_declaration, + sym_global_constant_declaration, + sym_global_variable_declaration, + aux_sym_source_file_repeat1, + [67845] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym_identifier, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(6104), 1, - anon_sym_RBRACE, - ACTIONS(6106), 1, - sym__newline, - STATE(2642), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [56012] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - anon_sym_RBRACE, + ts_builtin_sym_end, ACTIONS(6108), 1, - anon_sym_COMMA, + anon_sym_BANG, ACTIONS(6110), 1, sym__newline, - STATE(2665), 1, - aux_sym_variant_payload_repeat1, - STATE(2861), 1, - aux_sym_import_declaration_repeat1, - [56031] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - sym_identifier, - ACTIONS(6114), 1, - sym__newline, - STATE(1694), 1, + STATE(2989), 1, sym_block, - STATE(2612), 1, + STATE(3324), 1, aux_sym_import_declaration_repeat1, - [56050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6017), 1, - sym__newline, - ACTIONS(6116), 1, - anon_sym_RBRACE, - STATE(2617), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [56069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6120), 1, + ACTIONS(1092), 3, + anon_sym_COLON_COLON, anon_sym_EQ, - ACTIONS(6118), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(6106), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - sym__newline, - [56082] = 6, + [67878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6113), 1, + ts_builtin_sym_end, + ACTIONS(6117), 1, + anon_sym_BANG, + ACTIONS(6119), 1, + sym__newline, + STATE(2973), 1, + sym_block, + STATE(3262), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1092), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6115), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [67911] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, anon_sym_LBRACE, ACTIONS(6122), 1, - sym_identifier, - ACTIONS(6124), 1, - sym__newline, - STATE(1474), 1, - sym_block, - STATE(2667), 1, - aux_sym_import_declaration_repeat1, - [56101] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2691), 1, - anon_sym_RPAREN, - ACTIONS(4990), 1, - anon_sym_COMMA, - ACTIONS(4992), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2893), 1, - aux_sym_import_declaration_repeat1, - [56120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, + ts_builtin_sym_end, ACTIONS(6126), 1, - sym_identifier, + anon_sym_BANG, ACTIONS(6128), 1, sym__newline, - STATE(1478), 1, - sym_block, - STATE(2733), 1, - aux_sym_import_declaration_repeat1, - [56139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6017), 1, - sym__newline, - ACTIONS(6130), 1, - anon_sym_RBRACE, - STATE(2617), 1, - aux_sym_enum_body_repeat1, STATE(2993), 1, - sym_enum_member, - [56158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6132), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6136), 1, - sym__newline, - STATE(1671), 1, sym_block, - STATE(2699), 1, + STATE(3508), 1, aux_sym_import_declaration_repeat1, - [56196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 1, - anon_sym_RBRACE, - ACTIONS(5049), 1, - anon_sym_COMMA, - ACTIONS(5051), 1, - sym__newline, - STATE(2610), 1, - aux_sym_initializer_list_repeat1, - STATE(2934), 1, - aux_sym_import_declaration_repeat1, - [56215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6138), 1, + ACTIONS(1114), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6124), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, + [67944] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6131), 1, + ts_builtin_sym_end, + ACTIONS(6135), 1, + anon_sym_BANG, + ACTIONS(6137), 1, + sym__newline, + STATE(2992), 1, + sym_block, + STATE(3226), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1114), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6133), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [67977] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(6140), 1, + ts_builtin_sym_end, + ACTIONS(6144), 1, sym__newline, - STATE(1673), 1, + STATE(2962), 1, sym_block, - STATE(2604), 1, + STATE(3410), 1, aux_sym_import_declaration_repeat1, - [56234] = 6, + ACTIONS(1144), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6142), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4155), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - ACTIONS(6142), 1, - anon_sym_else, - ACTIONS(6145), 1, - sym__newline, - STATE(3254), 1, - aux_sym_import_declaration_repeat1, - [56253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 1, - sym_identifier, - ACTIONS(4101), 1, - anon_sym_LBRACE, - ACTIONS(6148), 1, - anon_sym_else, + ACTIONS(6147), 1, + ts_builtin_sym_end, ACTIONS(6151), 1, sym__newline, - STATE(3255), 1, + STATE(2977), 1, + sym_block, + STATE(3428), 1, aux_sym_import_declaration_repeat1, - [56272] = 6, + ACTIONS(1144), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6149), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68037] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, - anon_sym_RPAREN, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(6154), 1, - anon_sym_COMMA, - ACTIONS(6156), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2900), 1, - aux_sym_import_declaration_repeat1, - [56291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, + ts_builtin_sym_end, ACTIONS(6158), 1, - sym_identifier, - ACTIONS(6160), 1, sym__newline, - STATE(1686), 1, + STATE(2996), 1, sym_block, - STATE(2606), 1, + STATE(3448), 1, aux_sym_import_declaration_repeat1, - [56310] = 6, + ACTIONS(1176), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6156), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68067] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - ACTIONS(6162), 1, - sym_identifier, - ACTIONS(6164), 1, + ACTIONS(6161), 1, + ts_builtin_sym_end, + ACTIONS(6165), 1, sym__newline, - STATE(1525), 1, + STATE(2983), 1, sym_block, - STATE(2597), 1, + STATE(3430), 1, aux_sym_import_declaration_repeat1, - [56329] = 6, + ACTIONS(1176), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6163), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6132), 1, - anon_sym_RBRACE, - ACTIONS(6166), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN, + STATE(1969), 1, + sym_argument_list, + ACTIONS(533), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, sym__newline, - STATE(2714), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56348] = 6, + [68117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6132), 1, - anon_sym_RBRACE, ACTIONS(6168), 1, + anon_sym_PIPE, + STATE(2918), 1, + aux_sym_type_repeat1, + ACTIONS(548), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, sym__newline, - STATE(2715), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [56367] = 6, + [68136] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2917), 1, + aux_sym_type_repeat1, + ACTIONS(544), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [68153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6168), 1, + anon_sym_PIPE, + STATE(2914), 1, + aux_sym_type_repeat1, + ACTIONS(544), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + sym__newline, + [68172] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2918), 1, + aux_sym_type_repeat1, + ACTIONS(548), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [68189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, - anon_sym_RBRACE, ACTIONS(6170), 1, - anon_sym_COMMA, - ACTIONS(6172), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(3018), 1, - aux_sym_import_declaration_repeat1, - [56386] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_COMMA, - ACTIONS(6174), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2901), 1, - aux_sym_import_declaration_repeat1, - [56405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6176), 1, + anon_sym_PIPE, + STATE(2918), 1, + aux_sym_type_repeat1, + ACTIONS(537), 7, + anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(6178), 1, - anon_sym_LBRACE, - ACTIONS(6180), 1, - sym__newline, - STATE(2159), 1, - sym_block, - STATE(2872), 1, - aux_sym_import_declaration_repeat1, - [56424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 1, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(5037), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5039), 1, sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2942), 1, - aux_sym_import_declaration_repeat1, - [56443] = 6, + [68208] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6182), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1539), 1, - sym_block, - [56462] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6184), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1507), 1, - sym_block, - [56481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6186), 1, - sym_identifier, - ACTIONS(6188), 1, - sym__newline, - STATE(1704), 1, - sym_block, - STATE(2655), 1, - aux_sym_import_declaration_repeat1, - [56500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6190), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6192), 1, - anon_sym_COMMA, - ACTIONS(6195), 1, - anon_sym_RBRACE, - ACTIONS(6197), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(3334), 1, - aux_sym_import_declaration_repeat1, - [56538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, + ACTIONS(6175), 1, anon_sym_RPAREN, - ACTIONS(6200), 1, - anon_sym_COMMA, - ACTIONS(6202), 1, - sym__newline, - STATE(2605), 1, - aux_sym_parameter_list_repeat1, - STATE(3033), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [56557] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6204), 1, + STATE(3620), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, sym_identifier, - ACTIONS(6206), 1, - sym__newline, - STATE(1664), 1, - sym_block, - STATE(2734), 1, - aux_sym_import_declaration_repeat1, - [56576] = 6, + [68234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6208), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1492), 1, - sym_block, - [56595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6210), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1523), 1, - sym_block, - [56614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6212), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1565), 1, - sym_block, - [56633] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_BANG, - ACTIONS(6216), 1, - sym__newline, - STATE(2171), 1, - sym_block, - STATE(2945), 1, - aux_sym_import_declaration_repeat1, - [56652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6218), 1, - sym_identifier, - ACTIONS(6220), 1, - sym__newline, - STATE(1567), 1, - sym_block, - STATE(2728), 1, - aux_sym_import_declaration_repeat1, - [56671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6190), 1, - anon_sym_RBRACE, - ACTIONS(6222), 1, - sym__newline, - STATE(2777), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [56690] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6224), 1, - anon_sym_RBRACE, - ACTIONS(6226), 1, - sym__newline, - STATE(2759), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56709] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1530), 1, - sym_block, - [56728] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [56747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6230), 1, - anon_sym_RBRACE, - ACTIONS(6232), 1, - sym__newline, - STATE(2722), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [56785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6230), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, - sym__newline, - STATE(2731), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, - sym_keyed_field_initializer, - [56804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5272), 1, - anon_sym_RBRACE, - ACTIONS(6236), 1, - anon_sym_COMMA, - ACTIONS(6239), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(3185), 1, - aux_sym_import_declaration_repeat1, - [56823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6242), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1529), 1, - sym_block, - [56842] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2222), 1, - anon_sym_RBRACE, - ACTIONS(6244), 1, - anon_sym_COMMA, - ACTIONS(6246), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(2846), 1, - aux_sym_import_declaration_repeat1, - [56861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6250), 1, - sym__newline, - STATE(1596), 1, - sym_block, - STATE(2626), 1, - aux_sym_import_declaration_repeat1, - [56880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [56899] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4114), 1, - sym_identifier, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(4472), 1, + ts_builtin_sym_end, + ACTIONS(6181), 1, anon_sym_else, - ACTIONS(6257), 1, + ACTIONS(6184), 1, sym__newline, - STATE(3256), 1, + STATE(3828), 1, aux_sym_import_declaration_repeat1, - [56918] = 6, + ACTIONS(4470), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6260), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1693), 1, - sym_block, - [56937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6262), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1481), 1, - sym_block, - [56956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(6264), 1, - anon_sym_RBRACE, - ACTIONS(6266), 1, - sym__newline, - STATE(2662), 1, - aux_sym_enum_body_repeat1, - STATE(2993), 1, - sym_enum_member, - [56975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6268), 1, - sym_identifier, - ACTIONS(6270), 1, - sym__newline, - STATE(1443), 1, - sym_block, - STATE(2719), 1, - aux_sym_import_declaration_repeat1, - [56994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6272), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1656), 1, - sym_block, - [57013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, + ACTIONS(4481), 1, + ts_builtin_sym_end, + ACTIONS(6187), 1, + anon_sym_else, ACTIONS(6190), 1, - anon_sym_RBRACE, - ACTIONS(6274), 1, sym__newline, - STATE(2772), 1, + STATE(3823), 1, aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [57032] = 6, + ACTIONS(4479), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(4472), 1, + ts_builtin_sym_end, + ACTIONS(6193), 1, + anon_sym_else, + ACTIONS(6195), 1, + sym__newline, + STATE(3663), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4470), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 1, + anon_sym_COMMA, + ACTIONS(6201), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3743), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5578), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_COLON, + [68322] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6204), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3620), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68348] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6204), 1, + anon_sym_RPAREN, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6204), 1, + anon_sym_RPAREN, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6208), 1, + sym__newline, + STATE(2934), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + ts_builtin_sym_end, + ACTIONS(6210), 1, + anon_sym_else, + ACTIONS(6213), 1, + sym__newline, + STATE(3824), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4488), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + ts_builtin_sym_end, + ACTIONS(6216), 1, + anon_sym_else, + ACTIONS(6218), 1, + sym__newline, + STATE(3672), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4488), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + ts_builtin_sym_end, + ACTIONS(6221), 1, + anon_sym_else, + ACTIONS(6223), 1, + sym__newline, + STATE(3815), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4497), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + ts_builtin_sym_end, + ACTIONS(6226), 1, + anon_sym_else, + ACTIONS(6229), 1, + sym__newline, + STATE(3825), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4497), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68488] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6232), 1, + anon_sym_RPAREN, + ACTIONS(6234), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6236), 1, + sym__newline, + STATE(2932), 1, + aux_sym_import_declaration_repeat1, + STATE(3088), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68514] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6238), 1, + anon_sym_RPAREN, + ACTIONS(6240), 1, + anon_sym_DOT_DOT_DOT, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3065), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, + ts_builtin_sym_end, + ACTIONS(6242), 1, + anon_sym_else, + ACTIONS(6245), 1, + sym__newline, + STATE(3826), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4524), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68562] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6248), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3620), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68588] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + ts_builtin_sym_end, + ACTIONS(6250), 1, + anon_sym_else, + ACTIONS(6253), 1, + sym__newline, + STATE(3827), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4539), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68610] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_RPAREN, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, + sym__newline, + STATE(2925), 1, + aux_sym_import_declaration_repeat1, + STATE(3777), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6260), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68662] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6260), 1, + anon_sym_RPAREN, + ACTIONS(6262), 1, + sym__newline, + STATE(2919), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68688] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6260), 1, + anon_sym_RPAREN, + ACTIONS(6264), 1, + sym__newline, + STATE(2947), 1, + aux_sym_import_declaration_repeat1, + STATE(3777), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + ts_builtin_sym_end, + ACTIONS(6266), 1, + anon_sym_else, + ACTIONS(6268), 1, + sym__newline, + STATE(3654), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4479), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [68736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6271), 1, + anon_sym_BANG, + ACTIONS(1092), 7, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(6276), 1, - sym_identifier, - ACTIONS(6278), 1, + anon_sym_COMMA, + anon_sym_PIPE, sym__newline, - STATE(1531), 1, - sym_block, - STATE(2673), 1, - aux_sym_import_declaration_repeat1, - [57051] = 6, + [68752] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6273), 1, + anon_sym_RPAREN, + ACTIONS(6275), 1, sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_RBRACE, - STATE(897), 1, + STATE(2937), 1, aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [57070] = 6, + STATE(3777), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, + ACTIONS(4526), 1, + ts_builtin_sym_end, + ACTIONS(6277), 1, + anon_sym_else, + ACTIONS(6279), 1, + sym__newline, + STATE(3677), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4524), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, + [68800] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_RPAREN, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(6282), 1, sym__newline, - STATE(1658), 1, - sym_block, - STATE(2669), 1, + STATE(2924), 1, aux_sym_import_declaration_repeat1, - [57089] = 6, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, + ACTIONS(4541), 1, + ts_builtin_sym_end, ACTIONS(6284), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1495), 1, - sym_block, - [57108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, + anon_sym_else, ACTIONS(6286), 1, + sym__newline, + STATE(3839), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4539), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1676), 1, - sym_block, - [57127] = 6, + [68848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_RBRACE, - ACTIONS(5059), 1, - anon_sym_COMMA, - ACTIONS(5061), 1, - sym__newline, - STATE(2611), 1, - aux_sym_initializer_list_repeat1, - STATE(2812), 1, - aux_sym_import_declaration_repeat1, - [57146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6288), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1659), 1, - sym_block, - [57165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, - anon_sym_RBRACE, - ACTIONS(5071), 1, - anon_sym_COMMA, - ACTIONS(5073), 1, - sym__newline, - STATE(2718), 1, - aux_sym_initializer_list_repeat1, - STATE(2911), 1, - aux_sym_import_declaration_repeat1, - [57184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6290), 1, - anon_sym_LPAREN, - ACTIONS(6292), 1, - anon_sym_LBRACE, - ACTIONS(6294), 1, - sym__newline, - STATE(1791), 1, - sym_enum_body, - STATE(3115), 1, - aux_sym_import_declaration_repeat1, - [57203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6296), 1, - anon_sym_LPAREN, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6300), 1, - sym__newline, - STATE(1805), 1, - sym_record_body, - STATE(3121), 1, - aux_sym_import_declaration_repeat1, - [57222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, - anon_sym_RPAREN, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(5069), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2814), 1, - aux_sym_import_declaration_repeat1, - [57241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6190), 1, - anon_sym_RBRACE, - ACTIONS(6302), 1, - anon_sym_COMMA, - ACTIONS(6304), 1, - sym__newline, - STATE(2703), 1, - aux_sym_variant_payload_repeat1, - STATE(2787), 1, - aux_sym_import_declaration_repeat1, - [57260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6308), 1, - sym__newline, - STATE(1570), 1, - sym_block, - STATE(2736), 1, - aux_sym_import_declaration_repeat1, - [57279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_RBRACE, - ACTIONS(6310), 1, - sym__newline, - STATE(2744), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [57298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6312), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [57317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2515), 1, - anon_sym_RBRACK, - ACTIONS(6314), 1, - anon_sym_COMMA, - ACTIONS(6316), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2960), 1, - aux_sym_import_declaration_repeat1, - [57336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6009), 1, - anon_sym_LBRACE, - ACTIONS(6318), 1, + ACTIONS(6289), 1, anon_sym_BANG, - ACTIONS(6320), 1, - sym__newline, - STATE(151), 1, - sym_block, - STATE(2816), 1, - aux_sym_import_declaration_repeat1, - [57355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6322), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1696), 1, - sym_block, - [57374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, + ACTIONS(1114), 7, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(6200), 1, - anon_sym_COMMA, - ACTIONS(6202), 1, - sym__newline, - STATE(2602), 1, - aux_sym_parameter_list_repeat1, - STATE(3033), 1, - aux_sym_import_declaration_repeat1, - [57393] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1528), 1, - sym_block, - [57412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6326), 1, - sym_identifier, - ACTIONS(6328), 1, - sym__newline, - STATE(1577), 1, - sym_block, - STATE(2708), 1, - aux_sym_import_declaration_repeat1, - [57431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2753), 1, - anon_sym_RBRACK, - ACTIONS(6330), 1, anon_sym_COMMA, - ACTIONS(6332), 1, + anon_sym_PIPE, sym__newline, - STATE(2527), 1, + [68864] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6175), 1, + anon_sym_RPAREN, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68890] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6291), 1, + sym__newline, + STATE(2951), 1, + aux_sym_import_declaration_repeat1, + STATE(3777), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68913] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5465), 1, + anon_sym_COMMA, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6293), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_COLON, + STATE(2923), 1, aux_sym_match_arm_repeat1, - STATE(3048), 1, + STATE(3743), 1, aux_sym_import_declaration_repeat1, - [57450] = 6, + STATE(4038), 1, + sym_match_capture, + [68938] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, - anon_sym_RBRACE, - ACTIONS(5071), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6177), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3620), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [68984] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6179), 1, + anon_sym_DOLLAR, + ACTIONS(6206), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6297), 1, + sym__newline, + STATE(2950), 1, + aux_sym_import_declaration_repeat1, + STATE(3614), 1, + sym_parameter, + ACTIONS(6173), 2, + sym_sink, + sym_identifier, + [69007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6299), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6301), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6303), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6305), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6309), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6311), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6313), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6317), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6319), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6321), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(996), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6323), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6325), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6327), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6329), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6331), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6333), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6335), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6337), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6339), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6341), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6343), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6345), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6347), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6349), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6353), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(992), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5525), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5527), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69245] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1803), 1, anon_sym_COMMA, - ACTIONS(5073), 1, - sym__newline, - STATE(2720), 1, - aux_sym_initializer_list_repeat1, - STATE(2911), 1, - aux_sym_import_declaration_repeat1, - [57469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - sym__newline, - STATE(1660), 1, - sym_block, - STATE(2784), 1, - aux_sym_import_declaration_repeat1, - [57488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2627), 1, - anon_sym_RBRACK, - ACTIONS(6338), 1, - anon_sym_COMMA, - ACTIONS(6340), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2824), 1, - aux_sym_import_declaration_repeat1, - [57507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - sym_identifier, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(6342), 1, - anon_sym_else, - ACTIONS(6344), 1, - sym__newline, - STATE(3172), 1, - aux_sym_import_declaration_repeat1, - [57526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1661), 1, - sym_block, - [57545] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6349), 1, - sym_identifier, - ACTIONS(6351), 1, - sym__newline, - STATE(1662), 1, - sym_block, - STATE(2725), 1, - aux_sym_import_declaration_repeat1, - [57564] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_LBRACE, - ACTIONS(6353), 1, - anon_sym_else, ACTIONS(6355), 1, + anon_sym_PIPE, + ACTIONS(6357), 1, + anon_sym_COLON, + ACTIONS(6359), 1, sym__newline, - STATE(3178), 1, + STATE(2995), 1, + aux_sym_capture_list_repeat1, + STATE(3759), 1, aux_sym_import_declaration_repeat1, - [57583] = 6, + [69267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(6361), 2, + ts_builtin_sym_end, sym__newline, - ACTIONS(5956), 1, + ACTIONS(6363), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - ACTIONS(6358), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [57602] = 6, + [69281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, - anon_sym_RBRACE, - ACTIONS(6360), 1, + ACTIONS(6365), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6367), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6369), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6371), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6373), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6375), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6377), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6379), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6381), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6383), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6385), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6387), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6389), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6391), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6393), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6395), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5505), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5507), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6399), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6401), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6403), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6405), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6407), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6411), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6413), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6415), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5562), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6417), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6419), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6421), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6423), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6425), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6427), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6429), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6431), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6433), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6435), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6439), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6441), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6443), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6445), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6447), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6449), 1, anon_sym_COMMA, - ACTIONS(6362), 1, + ACTIONS(6454), 1, sym__newline, - STATE(2625), 1, - aux_sym_variant_payload_repeat1, - STATE(2827), 1, + STATE(2995), 1, + aux_sym_capture_list_repeat1, + STATE(3759), 1, aux_sym_import_declaration_repeat1, - [57621] = 6, + ACTIONS(6452), 2, + anon_sym_PIPE, + anon_sym_COLON, + [69623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6364), 1, - sym_identifier, - ACTIONS(6366), 1, + ACTIONS(6457), 2, + ts_builtin_sym_end, sym__newline, - STATE(1582), 1, + ACTIONS(6459), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6463), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6465), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6467), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6469), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6471), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6473), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6475), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5517), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5519), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6477), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6479), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6483), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6485), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6487), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6489), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(6491), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [69763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6493), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1727), 1, sym_block, - STATE(2756), 1, - aux_sym_import_declaration_repeat1, - [57640] = 6, + [69782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6224), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [57659] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - ACTIONS(6368), 1, + ACTIONS(6495), 1, sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1452), 1, + ACTIONS(6497), 1, + sym__newline, + STATE(1580), 1, sym_block, - [57678] = 6, + STATE(3008), 1, + aux_sym_import_declaration_repeat1, + [69801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, - sym_identifier, - ACTIONS(6372), 1, + ACTIONS(466), 1, sym__newline, - STATE(1475), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6499), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1759), 1, sym_block, - STATE(2641), 1, - aux_sym_import_declaration_repeat1, - [57697] = 6, + [69820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, anon_sym_LBRACE, - ACTIONS(6374), 1, + ACTIONS(6501), 1, sym_identifier, - ACTIONS(6376), 1, - sym__newline, - STATE(1503), 1, - sym_block, - STATE(2706), 1, - aux_sym_import_declaration_repeat1, - [57716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6047), 1, - anon_sym_LBRACE, - ACTIONS(6378), 1, - anon_sym_BANG, - ACTIONS(6380), 1, - sym__newline, - STATE(657), 1, - sym_block, - STATE(2856), 1, - aux_sym_import_declaration_repeat1, - [57735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, - anon_sym_RPAREN, - ACTIONS(6382), 1, - anon_sym_COMMA, - ACTIONS(6384), 1, - sym__newline, - STATE(2527), 1, - aux_sym_match_arm_repeat1, - STATE(2963), 1, - aux_sym_import_declaration_repeat1, - [57754] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6386), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1485), 1, - sym_block, - [57773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_LPAREN, - ACTIONS(6390), 1, - sym__newline, - STATE(658), 1, - sym_record_body, - STATE(3091), 1, - aux_sym_import_declaration_repeat1, - [57792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6392), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1480), 1, - sym_block, - [57811] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - sym_identifier, - ACTIONS(6396), 1, - sym__newline, - STATE(1482), 1, - sym_block, - STATE(2643), 1, - aux_sym_import_declaration_repeat1, - [57830] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [57849] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6400), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1648), 1, - sym_block, - [57868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6402), 1, - sym_identifier, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, STATE(1700), 1, sym_block, - [57887] = 6, + [69839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6404), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1589), 1, - sym_block, - [57906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6224), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3159), 1, - sym_keyed_field_initializer, - [57925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [57944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, - sym_identifier, - ACTIONS(6408), 1, - sym__newline, - STATE(1649), 1, - sym_block, - STATE(2724), 1, - aux_sym_import_declaration_repeat1, - [57963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, - sym_identifier, - ACTIONS(6412), 1, - sym__newline, - STATE(1701), 1, - sym_block, - STATE(2763), 1, - aux_sym_import_declaration_repeat1, - [57982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_RBRACE, - ACTIONS(6414), 1, - sym__newline, - STATE(2776), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, - sym_keyed_field_initializer, - [58001] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6416), 1, - sym_identifier, - ACTIONS(6418), 1, - sym__newline, - STATE(1697), 1, - sym_block, - STATE(2707), 1, - aux_sym_import_declaration_repeat1, - [58020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5536), 1, - anon_sym_RPAREN, - ACTIONS(6420), 1, + ACTIONS(2902), 1, + anon_sym_RBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6422), 1, + ACTIONS(6505), 1, sym__newline, - STATE(2704), 1, - aux_sym_parameter_list_repeat1, - STATE(2986), 1, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3308), 1, aux_sym_import_declaration_repeat1, - [58039] = 6, + [69858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6398), 1, - anon_sym_RBRACE, - ACTIONS(6424), 1, + ACTIONS(466), 1, sym__newline, - STATE(2762), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6509), 1, + anon_sym_RBRACE, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(3148), 1, + STATE(3720), 1, sym_keyed_field_initializer, - [58058] = 6, + [69877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, + ACTIONS(6511), 1, + anon_sym_LPAREN, + ACTIONS(6513), 1, anon_sym_LBRACE, - ACTIONS(6426), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1703), 1, - sym_block, - [58077] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5968), 1, - anon_sym_LBRACE, - ACTIONS(6428), 1, + ACTIONS(6515), 1, sym__newline, - STATE(2094), 1, - sym_enum_body, - STATE(2818), 1, - aux_sym_import_declaration_repeat1, - [58093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1522), 1, - sym_block, - [58109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_RBRACE, - ACTIONS(6430), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6432), 1, - sym__newline, - STATE(1524), 1, - sym_block, - STATE(2853), 1, - aux_sym_import_declaration_repeat1, - [58141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6434), 2, - sym_sink, - sym_identifier, - [58155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1532), 1, - sym_block, - [58171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2623), 1, - anon_sym_RPAREN, - ACTIONS(6436), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(150), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1476), 1, - sym_block, - [58219] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6438), 1, - sym__newline, - STATE(655), 1, + STATE(2305), 1, sym_record_body, - STATE(2817), 1, + STATE(3241), 1, aux_sym_import_declaration_repeat1, - [58235] = 5, + [69896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1535), 1, - sym_block, - [58251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6440), 1, - sym__newline, - STATE(1533), 1, - sym_block, - STATE(3066), 1, - aux_sym_import_declaration_repeat1, - [58267] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1537), 1, - sym_block, - [58283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6442), 1, - sym__newline, - STATE(1544), 1, - sym_block, - STATE(2860), 1, - aux_sym_import_declaration_repeat1, - [58299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2627), 1, - anon_sym_RBRACK, - ACTIONS(6444), 1, + ACTIONS(2415), 1, + anon_sym_RBRACE, + ACTIONS(6517), 1, anon_sym_COMMA, - STATE(897), 1, + ACTIONS(6519), 1, + sym__newline, + STATE(3026), 1, + aux_sym_variant_payload_repeat1, + STATE(3309), 1, aux_sym_import_declaration_repeat1, - [58315] = 5, + [69915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6444), 1, - anon_sym_COMMA, - ACTIONS(6446), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58331] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, + ACTIONS(6521), 1, + anon_sym_LPAREN, + ACTIONS(6523), 1, anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1545), 1, - sym_block, - [58347] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - ACTIONS(6450), 1, + ACTIONS(6525), 1, sym__newline, - STATE(2549), 1, - sym_string, - STATE(3020), 1, - aux_sym_import_declaration_repeat1, - [58363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1546), 1, - sym_block, - [58379] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6452), 1, - sym__newline, - STATE(1551), 1, - sym_block, - STATE(2863), 1, - aux_sym_import_declaration_repeat1, - [58395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6454), 1, - sym__newline, - STATE(1557), 1, - sym_block, - STATE(2865), 1, - aux_sym_import_declaration_repeat1, - [58411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6456), 1, - sym__newline, - STATE(1601), 1, - sym_block, - STATE(3085), 1, - aux_sym_import_declaration_repeat1, - [58427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1559), 1, - sym_block, - [58443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACE, - ACTIONS(6458), 1, - sym__newline, - STATE(1779), 1, + STATE(2306), 1, sym_enum_body, - STATE(2973), 1, + STATE(3256), 1, aux_sym_import_declaration_repeat1, - [58459] = 5, + [69934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - ACTIONS(6460), 1, + ACTIONS(6527), 1, + sym_identifier, + ACTIONS(6529), 1, sym__newline, - STATE(1672), 1, + STATE(1707), 1, sym_block, - STATE(2832), 1, + STATE(3083), 1, aux_sym_import_declaration_repeat1, - [58475] = 5, + [69953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1491), 1, - sym_block, - [58491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, - sym__newline, - STATE(1566), 1, - sym_block, - STATE(2873), 1, - aux_sym_import_declaration_repeat1, - [58507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2304), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6531), 1, anon_sym_RBRACE, - ACTIONS(6464), 1, - anon_sym_COMMA, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [58523] = 5, + STATE(3641), 1, + sym_keyed_field_initializer, + [69972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, + ACTIONS(466), 1, sym__newline, - STATE(1501), 1, - sym_block, - STATE(2975), 1, - aux_sym_import_declaration_repeat1, - [58539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2641), 1, - anon_sym_RPAREN, - ACTIONS(6468), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6009), 1, - anon_sym_LBRACE, - ACTIONS(6470), 1, - sym__newline, - STATE(168), 1, - sym_block, - STATE(2836), 1, - aux_sym_import_declaration_repeat1, - [58571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(169), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6298), 1, - anon_sym_LBRACE, - STATE(676), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5968), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2099), 1, - sym_enum_body, - [58619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6472), 1, - sym__newline, - STATE(1527), 1, - sym_block, - STATE(2980), 1, - aux_sym_import_declaration_repeat1, - [58635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1580), 1, - sym_block, - [58651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6474), 1, - sym__newline, - STATE(1587), 1, - sym_block, - STATE(2876), 1, - aux_sym_import_declaration_repeat1, - [58667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - sym__newline, - STATE(2551), 1, - sym_block, - STATE(2970), 1, - aux_sym_import_declaration_repeat1, - [58683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1588), 1, - sym_block, - [58699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2647), 1, - anon_sym_RBRACK, - ACTIONS(6478), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58715] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6480), 1, - anon_sym_COMMA, - ACTIONS(6482), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6484), 1, - sym__newline, - STATE(1590), 1, - sym_block, - STATE(2881), 1, - aux_sym_import_declaration_repeat1, - [58747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5389), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6533), 1, anon_sym_RBRACE, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [58763] = 5, + STATE(3641), 1, + sym_keyed_field_initializer, + [69991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2753), 1, - anon_sym_RBRACK, - ACTIONS(6488), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58779] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6009), 1, - anon_sym_LBRACE, - ACTIONS(6490), 1, - sym__newline, - STATE(187), 1, - sym_block, - STATE(2843), 1, - aux_sym_import_declaration_repeat1, - [58795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1592), 1, - sym_block, - [58811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2318), 1, + ACTIONS(2421), 1, anon_sym_RBRACE, - ACTIONS(6492), 1, + ACTIONS(5521), 1, anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58827] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(5523), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1642), 1, - sym_block, - [58843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1594), 1, - sym_block, - [58859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6494), 1, - sym__newline, - STATE(1595), 1, - sym_block, - STATE(2890), 1, - aux_sym_import_declaration_repeat1, - [58875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2659), 1, - anon_sym_RPAREN, - ACTIONS(6496), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(190), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58907] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6009), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - sym__newline, - STATE(191), 1, - sym_block, - STATE(2849), 1, - aux_sym_import_declaration_repeat1, - [58923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6500), 1, - sym__newline, - STATE(1646), 1, - sym_block, - STATE(2989), 1, - aux_sym_import_declaration_repeat1, - [58939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1604), 1, - sym_block, - [58955] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(6502), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [58971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, STATE(3316), 1, - sym__type_constant, - ACTIONS(6506), 2, - sym_integer, - sym_character, - [58985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - sym__newline, - STATE(1605), 1, - sym_block, - STATE(2897), 1, aux_sym_import_declaration_repeat1, - [59001] = 5, + [70010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1606), 1, - sym_block, - [59033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2340), 1, + ACTIONS(2421), 1, anon_sym_RBRACE, - ACTIONS(6510), 1, + ACTIONS(5521), 1, anon_sym_COMMA, - STATE(897), 1, + ACTIONS(5523), 1, + sym__newline, + STATE(3032), 1, + aux_sym_initializer_list_repeat1, + STATE(3316), 1, aux_sym_import_declaration_repeat1, - [59049] = 5, + [70029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2261), 1, - anon_sym_RBRACE, - ACTIONS(6512), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, + ACTIONS(6535), 1, + anon_sym_BANG, + ACTIONS(6537), 1, anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1607), 1, + ACTIONS(6539), 1, + sym__newline, + STATE(703), 1, sym_block, - [59081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6514), 1, - sym__newline, - STATE(1609), 1, - sym_block, - STATE(2899), 1, + STATE(3286), 1, aux_sym_import_declaration_repeat1, - [59097] = 5, + [70048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - sym__newline, - STATE(1677), 1, - sym_block, - STATE(3006), 1, - aux_sym_import_declaration_repeat1, - [59129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6488), 1, - anon_sym_COMMA, - ACTIONS(6518), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6025), 1, - anon_sym_RBRACE, - ACTIONS(6520), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1612), 1, - sym_block, - [59177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1467), 1, - sym_block, - [59193] = 4, - ACTIONS(6522), 1, - anon_sym_DQUOTE, - ACTIONS(6526), 1, - sym_comment, - STATE(2858), 1, - aux_sym_string_repeat1, - ACTIONS(6524), 2, - sym_string_content, - sym_escape_sequence, - [59207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6047), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59223] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - sym__newline, - STATE(1468), 1, - sym_block, - STATE(3013), 1, - aux_sym_import_declaration_repeat1, - [59239] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6530), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_string_repeat1, - ACTIONS(6532), 2, - sym_string_content, - sym_escape_sequence, - [59253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - sym__newline, - STATE(2235), 1, - sym_record_body, - STATE(2866), 1, - aux_sym_import_declaration_repeat1, - [59269] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1613), 1, - sym_block, - [59285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5268), 1, - anon_sym_RBRACE, - ACTIONS(6536), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6538), 1, - sym__newline, - STATE(1498), 1, - sym_block, - STATE(3016), 1, - aux_sym_import_declaration_repeat1, - [59317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1615), 1, - sym_block, - [59333] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2509), 1, + ACTIONS(2916), 1, anon_sym_RPAREN, - ACTIONS(6540), 1, + ACTIONS(6541), 1, anon_sym_COMMA, - STATE(897), 1, + ACTIONS(6543), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3321), 1, aux_sym_import_declaration_repeat1, - [59349] = 5, + [70067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2381), 1, + anon_sym_RBRACE, + ACTIONS(5574), 1, + anon_sym_COMMA, + ACTIONS(5576), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, + STATE(3080), 1, + aux_sym_initializer_list_repeat1, + STATE(3458), 1, aux_sym_import_declaration_repeat1, - STATE(1619), 1, + [70086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6533), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [70105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6545), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1716), 1, sym_block, - [59365] = 5, + [70124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5877), 1, + anon_sym_RBRACE, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6547), 1, sym__newline, - ACTIONS(6093), 1, - anon_sym_LBRACE, - STATE(897), 1, + STATE(3037), 1, aux_sym_import_declaration_repeat1, - STATE(2239), 1, - sym_record_body, - [59381] = 5, + STATE(3803), 1, + sym_keyed_field_initializer, + [70143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5877), 1, + anon_sym_RBRACE, + ACTIONS(6549), 1, + anon_sym_COMMA, + ACTIONS(6551), 1, sym__newline, - ACTIONS(5952), 1, - anon_sym_LBRACE, - STATE(897), 1, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3329), 1, aux_sym_import_declaration_repeat1, - STATE(2133), 1, - sym_record_body, - [59397] = 5, + [70162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, sym__newline, - ACTIONS(2741), 1, + STATE(1736), 1, + sym_block, + STATE(3096), 1, + aux_sym_import_declaration_repeat1, + [70181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5877), 1, + anon_sym_RBRACE, + ACTIONS(6549), 1, + anon_sym_COMMA, + ACTIONS(6551), 1, + sym__newline, + STATE(3040), 1, + aux_sym_variant_payload_repeat1, + STATE(3329), 1, + aux_sym_import_declaration_repeat1, + [70200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, anon_sym_RPAREN, - ACTIONS(6542), 1, + ACTIONS(5509), 1, anon_sym_COMMA, - STATE(897), 1, + ACTIONS(5511), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3475), 1, aux_sym_import_declaration_repeat1, - [59413] = 5, + [70219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6059), 1, + ACTIONS(6557), 1, + anon_sym_BANG, + ACTIONS(6559), 1, anon_sym_LBRACE, - STATE(242), 1, - sym_enum_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6544), 1, + ACTIONS(6561), 1, sym__newline, - STATE(1620), 1, + STATE(192), 1, sym_block, - STATE(2904), 1, + STATE(3480), 1, aux_sym_import_declaration_repeat1, - [59445] = 5, + [70238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, + ACTIONS(466), 1, sym__newline, - STATE(1705), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6563), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1760), 1, sym_block, - STATE(2854), 1, - aux_sym_import_declaration_repeat1, - [59461] = 5, + [70257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6178), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2170), 1, - sym_block, - [59477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1621), 1, - sym_block, - [59493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6548), 1, - sym__newline, - STATE(1777), 1, - sym_record_body, - STATE(2946), 1, - aux_sym_import_declaration_repeat1, - [59509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LBRACE, - ACTIONS(6550), 1, - sym__newline, - STATE(656), 1, - sym_enum_body, - STATE(2948), 1, - aux_sym_import_declaration_repeat1, - [59525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1622), 1, - sym_block, - [59541] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - STATE(2997), 1, - aux_sym_string_repeat1, - ACTIONS(6554), 2, - sym_string_content, - sym_escape_sequence, - [59555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6556), 1, + ACTIONS(2439), 1, + anon_sym_RBRACE, + ACTIONS(6565), 1, anon_sym_COMMA, - ACTIONS(6558), 1, - anon_sym_RBRACK, - STATE(897), 1, + ACTIONS(6567), 1, + sym__newline, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3335), 1, aux_sym_import_declaration_repeat1, - [59571] = 4, + [70276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3218), 1, - sym__type_constant, - ACTIONS(6560), 2, - sym_integer, - sym_character, - [59585] = 5, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6533), 1, + anon_sym_RBRACE, + ACTIONS(6569), 1, + sym__newline, + STATE(3156), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [70295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6562), 1, - sym__newline, - STATE(1624), 1, - sym_block, - STATE(2910), 1, - aux_sym_import_declaration_repeat1, - [59601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1626), 1, - sym_block, - [59617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6564), 1, - sym__newline, - STATE(1628), 1, - sym_block, - STATE(2914), 1, - aux_sym_import_declaration_repeat1, - [59633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2691), 1, - anon_sym_RPAREN, - ACTIONS(6566), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1504), 1, - sym_block, - [59665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5952), 1, - anon_sym_LBRACE, - ACTIONS(6568), 1, - sym__newline, - STATE(2108), 1, - sym_record_body, - STATE(2895), 1, - aux_sym_import_declaration_repeat1, - [59681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6059), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - sym__newline, - STATE(258), 1, - sym_enum_body, - STATE(2896), 1, - aux_sym_import_declaration_repeat1, - [59697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6488), 1, - anon_sym_COMMA, - ACTIONS(6572), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1625), 1, - sym_block, - [59729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1657), 1, - sym_block, - [59745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1629), 1, - sym_block, - [59761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, + ACTIONS(4470), 1, + sym_identifier, + ACTIONS(4472), 1, anon_sym_LBRACE, + ACTIONS(6571), 1, + anon_sym_else, ACTIONS(6574), 1, sym__newline, - STATE(1634), 1, - sym_block, - STATE(2918), 1, + STATE(3754), 1, aux_sym_import_declaration_repeat1, - [59777] = 5, + [70314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6576), 1, - sym__newline, - STATE(1597), 1, - sym_block, - STATE(3022), 1, - aux_sym_import_declaration_repeat1, - [59793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2695), 1, - anon_sym_RPAREN, - ACTIONS(6578), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2559), 1, - sym_string, - [59825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5952), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2088), 1, - sym_record_body, - [59841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6059), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_enum_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59857] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1635), 1, - sym_block, - [59873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6047), 1, - anon_sym_LBRACE, - ACTIONS(6580), 1, - sym__newline, - STATE(682), 1, - sym_block, - STATE(3021), 1, - aux_sym_import_declaration_repeat1, - [59889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1636), 1, - sym_block, - [59905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2701), 1, - anon_sym_RPAREN, - ACTIONS(6582), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2515), 1, + ACTIONS(2796), 1, anon_sym_RBRACK, - ACTIONS(6584), 1, + ACTIONS(6577), 1, anon_sym_COMMA, - STATE(897), 1, + ACTIONS(6579), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3491), 1, aux_sym_import_declaration_repeat1, - [59937] = 5, + [70333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(6584), 1, - anon_sym_COMMA, - ACTIONS(6586), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [59953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1579), 1, - sym_block, - [59969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1637), 1, - sym_block, - [59985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, + ACTIONS(6581), 1, sym_identifier, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(3159), 1, + STATE(1779), 1, + sym_block, + [70352] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6583), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, sym_keyed_field_initializer, - [60001] = 5, + [70371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2584), 1, - sym_block, - [60017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2781), 1, - anon_sym_RPAREN, - ACTIONS(6588), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6590), 1, - sym__newline, - STATE(1623), 1, - sym_block, - STATE(2884), 1, - aux_sym_import_declaration_repeat1, - [60049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1638), 1, - sym_block, - [60081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2222), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_RBRACE, - ACTIONS(6592), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6585), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, + STATE(3045), 1, aux_sym_import_declaration_repeat1, - STATE(1600), 1, - sym_block, - [60113] = 5, + STATE(3720), 1, + sym_keyed_field_initializer, + [70390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6594), 1, - anon_sym_COMMA, - ACTIONS(6596), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1639), 1, - sym_block, - [60145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 1, - anon_sym_LBRACE, - ACTIONS(6598), 1, - sym__newline, - STATE(257), 1, - sym_record_body, - STATE(2919), 1, - aux_sym_import_declaration_repeat1, - [60161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6444), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1602), 1, - sym_block, - [60193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1640), 1, - sym_block, - [60209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_LBRACE, - STATE(267), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60225] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6602), 1, - sym__newline, - STATE(1669), 1, - sym_block, - STATE(2925), 1, - aux_sym_import_declaration_repeat1, - [60241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6604), 1, - sym__newline, - STATE(1618), 1, - sym_block, - STATE(3028), 1, - aux_sym_import_declaration_repeat1, - [60257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6606), 1, - sym__newline, - STATE(1630), 1, - sym_block, - STATE(3030), 1, - aux_sym_import_declaration_repeat1, - [60273] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6480), 1, - anon_sym_COMMA, - ACTIONS(6608), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6584), 1, - anon_sym_COMMA, - ACTIONS(6610), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1670), 1, - sym_block, - [60321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3182), 1, - sym__type_constant, - ACTIONS(6612), 2, - sym_integer, - sym_character, - [60335] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6614), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_string_repeat1, - ACTIONS(6616), 2, - sym_string_content, - sym_escape_sequence, - [60349] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1632), 1, - sym_block, - [60365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6619), 1, - sym__newline, - STATE(1633), 1, - sym_block, - STATE(3038), 1, - aux_sym_import_declaration_repeat1, - [60381] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6621), 1, - sym__newline, - STATE(1641), 1, - sym_block, - STATE(3040), 1, - aux_sym_import_declaration_repeat1, - [60397] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5639), 1, - anon_sym_RPAREN, - ACTIONS(6623), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2596), 1, - sym_block, - [60429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2589), 1, - sym_block, - [60445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2376), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_RBRACE, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3150), 1, - sym__type_constant, - ACTIONS(6627), 2, - sym_integer, - sym_character, - [60475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3157), 1, - sym__type_constant, - ACTIONS(6629), 2, - sym_integer, - sym_character, - [60489] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6587), 1, sym__newline, - ACTIONS(2334), 1, + STATE(3046), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [70409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6583), 1, anon_sym_RBRACE, - ACTIONS(6631), 1, + ACTIONS(6589), 1, anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - anon_sym_RPAREN, - ACTIONS(6633), 1, - anon_sym_else, - ACTIONS(6635), 1, + ACTIONS(6591), 1, sym__newline, - STATE(3134), 1, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3342), 1, aux_sym_import_declaration_repeat1, - [60521] = 4, + [70428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3322), 1, - sym__type_constant, - ACTIONS(6638), 2, - sym_integer, - sym_character, - [60535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3324), 1, - sym__type_constant, - ACTIONS(6640), 2, - sym_integer, - sym_character, - [60549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6047), 1, - anon_sym_LBRACE, - ACTIONS(6642), 1, + ACTIONS(466), 1, sym__newline, - STATE(661), 1, - sym_block, - STATE(2967), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_RBRACE, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [60565] = 5, + STATE(3720), 1, + sym_keyed_field_initializer, + [70447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2531), 1, - anon_sym_RPAREN, - ACTIONS(6644), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACE, - ACTIONS(6646), 1, - sym__newline, - STATE(2182), 1, - sym_block, - STATE(2983), 1, - aux_sym_import_declaration_repeat1, - [60597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(6648), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_initializer_list, - STATE(3367), 1, - sym_argument_list, - [60613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6178), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2183), 1, - sym_block, - [60629] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6298), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1776), 1, - sym_record_body, - [60645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_RPAREN, - ACTIONS(6650), 1, - anon_sym_else, - ACTIONS(6652), 1, - sym__newline, - STATE(3139), 1, - aux_sym_import_declaration_repeat1, - [60661] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5866), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_enum_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60677] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - anon_sym_RPAREN, - ACTIONS(6655), 1, - anon_sym_else, - ACTIONS(6657), 1, - sym__newline, - STATE(3141), 1, - aux_sym_import_declaration_repeat1, - [60693] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1608), 1, - sym_block, - [60709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6660), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [60719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6480), 1, - anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60735] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6664), 1, - sym__newline, - STATE(1458), 1, - sym_block, - STATE(3043), 1, - aux_sym_import_declaration_repeat1, - [60751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6666), 1, - sym__newline, - STATE(1585), 1, - sym_block, - STATE(3044), 1, - aux_sym_import_declaration_repeat1, - [60767] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - anon_sym_RPAREN, - ACTIONS(6668), 1, - anon_sym_else, - ACTIONS(6670), 1, - sym__newline, - STATE(3145), 1, - aux_sym_import_declaration_repeat1, - [60783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, - anon_sym_RPAREN, - ACTIONS(6673), 1, - anon_sym_else, - ACTIONS(6675), 1, - sym__newline, - STATE(3147), 1, - aux_sym_import_declaration_repeat1, - [60799] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6584), 1, - anon_sym_COMMA, - ACTIONS(6678), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60815] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6047), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 1, - anon_sym_RPAREN, - ACTIONS(6680), 1, - anon_sym_else, - ACTIONS(6682), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_RBRACE, + ACTIONS(6595), 1, sym__newline, STATE(3151), 1, aux_sym_import_declaration_repeat1, - [60847] = 5, + STATE(3720), 1, + sym_keyed_field_initializer, + [70466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, ACTIONS(2537), 1, - anon_sym_RBRACK, - ACTIONS(6685), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60863] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6687), 1, - sym__newline, - STATE(1449), 1, - sym_block, - STATE(3049), 1, - aux_sym_import_declaration_repeat1, - [60879] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6093), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1776), 1, - sym_record_body, - [60895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2561), 1, - anon_sym_RPAREN, - ACTIONS(6689), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2590), 1, - sym_block, - [60927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6190), 1, anon_sym_RBRACE, - ACTIONS(6691), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60943] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6599), 1, sym__newline, - ACTIONS(5223), 1, - anon_sym_RBRACE, - ACTIONS(6693), 1, - anon_sym_COMMA, - STATE(897), 1, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3451), 1, aux_sym_import_declaration_repeat1, - [60959] = 5, + [70485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6047), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [60975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6047), 1, - anon_sym_LBRACE, - ACTIONS(6695), 1, - sym__newline, - STATE(692), 1, - sym_block, - STATE(3005), 1, - aux_sym_import_declaration_repeat1, - [60991] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - ACTIONS(6697), 1, - sym__newline, - STATE(2581), 1, - sym_string, - STATE(2978), 1, - aux_sym_import_declaration_repeat1, - [61007] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2594), 1, - sym_block, - [61023] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2565), 1, - sym_block, - [61039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6699), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6507), 1, sym_identifier, - sym__newline, - [61049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6292), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1766), 1, - sym_enum_body, - [61065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACE, - ACTIONS(6701), 1, - sym__newline, - STATE(2194), 1, - sym_block, - STATE(3003), 1, - aux_sym_import_declaration_repeat1, - [61081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1471), 1, - sym_block, - [61097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2212), 1, + ACTIONS(6533), 1, anon_sym_RBRACE, - ACTIONS(6703), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6601), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, + STATE(3160), 1, aux_sym_import_declaration_repeat1, - STATE(1521), 1, - sym_block, - [61129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2585), 1, - sym_string, - [61145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [61155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1444), 1, - sym_block, - [61171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6707), 1, - sym__newline, - STATE(1446), 1, - sym_block, - STATE(3071), 1, - aux_sym_import_declaration_repeat1, - [61187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2396), 1, - anon_sym_RPAREN, - ACTIONS(6709), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6178), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2196), 1, - sym_block, - [61219] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACE, - ACTIONS(6711), 1, - sym__newline, - STATE(2197), 1, - sym_block, - STATE(3010), 1, - aux_sym_import_declaration_repeat1, - [61235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6713), 1, - sym__newline, - STATE(1451), 1, - sym_block, - STATE(3077), 1, - aux_sym_import_declaration_repeat1, - [61251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5566), 1, - anon_sym_RPAREN, - ACTIONS(6715), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61267] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5956), 1, - sym_identifier, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(3320), 1, + STATE(3803), 1, sym_keyed_field_initializer, - [61283] = 5, + [70504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6717), 1, + ACTIONS(466), 1, sym__newline, - STATE(2905), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6603), 1, + anon_sym_RBRACE, + STATE(917), 1, aux_sym_import_declaration_repeat1, - STATE(3320), 1, + STATE(3641), 1, sym_keyed_field_initializer, - [61299] = 5, + [70523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1453), 1, - sym_block, - [61315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2545), 1, - sym_block, - [61331] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6719), 1, - sym__newline, - STATE(1477), 1, - sym_block, - STATE(3087), 1, - aux_sym_import_declaration_repeat1, - [61347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6723), 1, - sym__newline, - STATE(3068), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6721), 2, - sym_sink, + ACTIONS(6507), 1, sym_identifier, - [61361] = 3, + ACTIONS(6603), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [70542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6727), 1, - anon_sym_COMMA, - ACTIONS(6725), 3, - anon_sym_RBRACE, + ACTIONS(6507), 1, sym_identifier, - sym__newline, - [61373] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - sym__newline, - STATE(1506), 1, - sym_block, - STATE(3106), 1, - aux_sym_import_declaration_repeat1, - [61389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6731), 1, - sym__newline, - STATE(1692), 1, - sym_block, - STATE(3081), 1, - aux_sym_import_declaration_repeat1, - [61405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LBRACE, - ACTIONS(6733), 1, - sym__newline, - STATE(1777), 1, - sym_record_body, - STATE(2962), 1, - aux_sym_import_declaration_repeat1, - [61421] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_string_repeat1, - ACTIONS(6532), 2, - sym_string_content, - sym_escape_sequence, - [61435] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6132), 1, + ACTIONS(6603), 1, anon_sym_RBRACE, - ACTIONS(6737), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6605), 1, sym__newline, - ACTIONS(6588), 1, - anon_sym_COMMA, - ACTIONS(6739), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5745), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [61477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6741), 2, - sym_sink, - sym_identifier, - [61491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2581), 1, - sym_string, - [61507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6178), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2205), 1, - sym_block, - [61523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6743), 1, - sym__newline, - STATE(2789), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6741), 2, - sym_sink, - sym_identifier, - [61537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6047), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61553] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1508), 1, - sym_block, - [61569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6745), 1, - sym__newline, - STATE(1500), 1, - sym_block, - STATE(2888), 1, - aux_sym_import_declaration_repeat1, - [61585] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - sym__newline, - STATE(1517), 1, - sym_block, - STATE(3109), 1, - aux_sym_import_declaration_repeat1, - [61601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2285), 1, - anon_sym_RBRACE, - ACTIONS(6749), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6178), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2207), 1, - sym_block, - [61633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__newline, - STATE(1542), 1, - sym_block, - STATE(3112), 1, - aux_sym_import_declaration_repeat1, - [61649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - ACTIONS(6753), 1, - sym__newline, - STATE(2558), 1, - sym_string, - STATE(3002), 1, - aux_sym_import_declaration_repeat1, - [61665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1543), 1, - sym_block, - [61681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2552), 1, - sym_block, - [61697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6444), 1, - anon_sym_COMMA, - ACTIONS(6755), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1575), 1, - sym_block, - [61729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1695), 1, - sym_block, - [61745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6230), 1, - anon_sym_RBRACE, - ACTIONS(6757), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6759), 1, - sym__newline, - STATE(1450), 1, - sym_block, - STATE(3117), 1, - aux_sym_import_declaration_repeat1, - [61777] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2553), 1, - sym_string, - [61793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6047), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_block, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1571), 1, - sym_block, - [61825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6761), 1, - sym__newline, - STATE(1572), 1, - sym_block, - STATE(3124), 1, - aux_sym_import_declaration_repeat1, - [61841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1650), 1, - sym_block, - [61857] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6763), 1, - sym__newline, - STATE(699), 1, - sym_record_body, - STATE(3026), 1, - aux_sym_import_declaration_repeat1, - [61873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6298), 1, - anon_sym_LBRACE, - STATE(704), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [61889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6765), 1, - sym__newline, - STATE(1651), 1, - sym_block, - STATE(3017), 1, - aux_sym_import_declaration_repeat1, - [61905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1573), 1, - sym_block, - [61921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - anon_sym_RPAREN, - ACTIONS(6767), 1, - anon_sym_else, - ACTIONS(6770), 1, - sym__newline, - STATE(3329), 1, - aux_sym_import_declaration_repeat1, - [61937] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1574), 1, - sym_block, - [61953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_RPAREN, - ACTIONS(6773), 1, - anon_sym_else, - ACTIONS(6776), 1, - sym__newline, - STATE(3330), 1, - aux_sym_import_declaration_repeat1, - [61969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6779), 1, - sym__newline, - STATE(1576), 1, - sym_block, - STATE(3126), 1, - aux_sym_import_declaration_repeat1, - [61985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(6781), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - anon_sym_RPAREN, - ACTIONS(6783), 1, - anon_sym_else, - ACTIONS(6786), 1, - sym__newline, - STATE(3331), 1, - aux_sym_import_declaration_repeat1, - [62017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6093), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2547), 1, - sym_record_body, - [62033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - anon_sym_RPAREN, - ACTIONS(6789), 1, - anon_sym_else, - ACTIONS(6792), 1, - sym__newline, - STATE(3332), 1, - aux_sym_import_declaration_repeat1, - [62049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, - anon_sym_RPAREN, - ACTIONS(6795), 1, - anon_sym_else, - ACTIONS(6798), 1, - sym__newline, - STATE(3333), 1, - aux_sym_import_declaration_repeat1, - [62065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1578), 1, - sym_block, - [62081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 1, - anon_sym_RPAREN, - ACTIONS(6801), 1, - anon_sym_else, - ACTIONS(6804), 1, - sym__newline, - STATE(3132), 1, - aux_sym_import_declaration_repeat1, - [62097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1584), 1, - sym_block, - [62113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6807), 1, - sym__newline, - STATE(1586), 1, - sym_block, - STATE(2977), 1, - aux_sym_import_declaration_repeat1, - [62129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6809), 1, - sym__newline, - STATE(1706), 1, - sym_block, - STATE(2786), 1, - aux_sym_import_declaration_repeat1, - [62145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1610), 1, - sym_block, - [62161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1666), 1, - sym_block, - [62177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - sym__newline, - STATE(1447), 1, - sym_block, - STATE(2795), 1, - aux_sym_import_declaration_repeat1, - [62193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6813), 1, - sym__newline, - STATE(1459), 1, - sym_block, - STATE(2797), 1, - aux_sym_import_declaration_repeat1, - [62209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LBRACE, - ACTIONS(6815), 1, - sym__newline, - STATE(2579), 1, - sym_record_body, - STATE(3035), 1, - aux_sym_import_declaration_repeat1, - [62225] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2453), 1, - anon_sym_RBRACK, - ACTIONS(6817), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1470), 1, - sym_block, - [62257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6819), 1, - sym__newline, - STATE(1472), 1, - sym_block, - STATE(2801), 1, - aux_sym_import_declaration_repeat1, - [62273] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1698), 1, - sym_block, - [62289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6821), 1, - sym__newline, - STATE(1483), 1, - sym_block, - STATE(2803), 1, - aux_sym_import_declaration_repeat1, - [62305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6823), 1, - sym__newline, - STATE(1562), 1, - sym_block, - STATE(3024), 1, - aux_sym_import_declaration_repeat1, - [62321] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6093), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1767), 1, - sym_record_body, - [62337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3274), 1, - sym__type_constant, - ACTIONS(6825), 2, - sym_integer, - sym_character, - [62351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6827), 1, - sym__newline, - STATE(1699), 1, - sym_block, - STATE(3130), 1, - aux_sym_import_declaration_repeat1, - [62367] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5021), 1, - anon_sym_RPAREN, - ACTIONS(6542), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3314), 1, - sym__type_constant, - ACTIONS(6829), 2, - sym_integer, - sym_character, - [62397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3135), 1, - sym__type_constant, - ACTIONS(6831), 2, - sym_integer, - sym_character, - [62411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6833), 1, - sym__newline, - STATE(1486), 1, - sym_block, - STATE(2807), 1, - aux_sym_import_declaration_repeat1, - [62427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - sym__newline, - STATE(1653), 1, - sym_block, STATE(3051), 1, aux_sym_import_declaration_repeat1, - [62443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6839), 1, - sym__newline, - STATE(3001), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6837), 2, - sym_sink, - sym_identifier, - [62457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3164), 1, - sym__type_constant, - ACTIONS(6841), 2, - sym_integer, - sym_character, - [62471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3236), 1, - sym__type_constant, - ACTIONS(6843), 2, - sym_integer, - sym_character, - [62485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3203), 1, - sym__type_constant, - ACTIONS(6845), 2, - sym_integer, - sym_character, - [62499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1564), 1, - sym_block, - [62515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6847), 1, - sym__newline, - STATE(1518), 1, - sym_block, - STATE(2790), 1, - aux_sym_import_declaration_repeat1, - [62531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(6849), 2, - sym_sink, - sym_identifier, - [62545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3303), 1, - sym__type_constant, - ACTIONS(6851), 2, - sym_integer, - sym_character, - [62559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3323), 1, - sym__type_constant, - ACTIONS(6853), 2, - sym_integer, - sym_character, - [62573] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1487), 1, - sym_block, - [62589] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6855), 1, - anon_sym_DQUOTE, - STATE(3076), 1, - aux_sym_string_repeat1, - ACTIONS(6857), 2, - sym_string_content, - sym_escape_sequence, - [62603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1702), 1, - sym_block, - [62619] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6859), 1, - anon_sym_DQUOTE, - STATE(3083), 1, - aux_sym_string_repeat1, - ACTIONS(6861), 2, - sym_string_content, - sym_escape_sequence, - [62633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6556), 1, - anon_sym_COMMA, - ACTIONS(6863), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62649] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6865), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_string_repeat1, - ACTIONS(6532), 2, - sym_string_content, - sym_escape_sequence, - [62663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1488), 1, - sym_block, - [62679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 1, - anon_sym_LBRACE, - ACTIONS(6867), 1, - sym__newline, - STATE(92), 1, - sym_record_body, - STATE(3090), 1, - aux_sym_import_declaration_repeat1, - [62695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6869), 1, - sym__newline, - STATE(1679), 1, - sym_block, - STATE(2793), 1, - aux_sym_import_declaration_repeat1, - [62711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6871), 1, - sym__newline, - STATE(1489), 1, - sym_block, - STATE(2820), 1, - aux_sym_import_declaration_repeat1, - [62727] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1536), 1, - sym_block, - [62743] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(6873), 1, - anon_sym_LBRACE, - STATE(100), 1, - sym_initializer_list, - STATE(3356), 1, - sym_argument_list, - [62759] = 4, - ACTIONS(6526), 1, - sym_comment, - ACTIONS(6875), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_string_repeat1, - ACTIONS(6532), 2, - sym_string_content, - sym_escape_sequence, - [62773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6877), 1, - sym__newline, - STATE(1681), 1, - sym_block, - STATE(2912), 1, - aux_sym_import_declaration_repeat1, - [62789] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1568), 1, - sym_block, - [62805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5952), 1, - anon_sym_LBRACE, - ACTIONS(6879), 1, - sym__newline, - STATE(2144), 1, - sym_record_body, - STATE(3120), 1, - aux_sym_import_declaration_repeat1, - [62821] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1493), 1, - sym_block, - [62837] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6881), 1, - sym__newline, - STATE(1494), 1, - sym_block, - STATE(2823), 1, - aux_sym_import_declaration_repeat1, - [62853] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6594), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62869] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_LBRACE, - STATE(103), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6298), 1, - anon_sym_LBRACE, - STATE(715), 1, - sym_record_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [62901] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6885), 1, - sym__newline, - STATE(1465), 1, - sym_block, - STATE(2810), 1, - aux_sym_import_declaration_repeat1, - [62917] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - sym__newline, - STATE(1569), 1, - sym_block, - STATE(2889), 1, - aux_sym_import_declaration_repeat1, - [62933] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5968), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2123), 1, - sym_enum_body, - [62949] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3174), 1, - sym__type_constant, - ACTIONS(6889), 2, - sym_integer, - sym_character, - [62963] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6891), 1, - sym__newline, - STATE(1479), 1, - sym_block, - STATE(2917), 1, - aux_sym_import_declaration_repeat1, - [62979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3191), 1, - sym__type_constant, - ACTIONS(6893), 2, - sym_integer, - sym_character, - [62993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3194), 1, - sym__type_constant, - ACTIONS(6895), 2, - sym_integer, - sym_character, - [63007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3211), 1, - sym__type_constant, - ACTIONS(6897), 2, - sym_integer, - sym_character, - [63021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3212), 1, - sym__type_constant, - ACTIONS(6899), 2, - sym_integer, - sym_character, - [63035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3249), 1, - sym__type_constant, - ACTIONS(6901), 2, - sym_integer, - sym_character, - [63049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3261), 1, - sym__type_constant, - ACTIONS(6903), 2, - sym_integer, - sym_character, - [63063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3263), 1, - sym__type_constant, - ACTIONS(6905), 2, - sym_integer, - sym_character, - [63077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3272), 1, - sym__type_constant, - ACTIONS(6907), 2, - sym_integer, - sym_character, - [63091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 1, - anon_sym_DASH, - STATE(3273), 1, - sym__type_constant, - ACTIONS(6909), 2, - sym_integer, - sym_character, - [63105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1496), 1, - sym_block, - [63121] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6911), 1, - sym__newline, - STATE(1497), 1, - sym_block, - STATE(2830), 1, - aux_sym_import_declaration_repeat1, - [63137] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6913), 1, - sym__newline, - STATE(1499), 1, - sym_block, - STATE(2833), 1, - aux_sym_import_declaration_repeat1, - [63153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1502), 1, - sym_block, - [63169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(6915), 1, - anon_sym_LBRACE, - STATE(2148), 1, - sym_initializer_list, - STATE(3370), 1, - sym_argument_list, - [63185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6917), 1, - sym__newline, - STATE(1511), 1, - sym_block, - STATE(2839), 1, - aux_sym_import_declaration_repeat1, - [63201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1512), 1, - sym_block, - [63217] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6919), 1, - sym__newline, - STATE(1513), 1, - sym_block, - STATE(2844), 1, - aux_sym_import_declaration_repeat1, - [63233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6921), 1, - sym__newline, - STATE(1655), 1, - sym_block, - STATE(3073), 1, - aux_sym_import_declaration_repeat1, - [63249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6292), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1786), 1, - sym_enum_body, - [63265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6923), 1, - sym__newline, - STATE(1505), 1, - sym_block, - STATE(2928), 1, - aux_sym_import_declaration_repeat1, - [63281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1514), 1, - sym_block, - [63297] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6925), 1, - sym__newline, - STATE(1515), 1, - sym_block, - STATE(2847), 1, - aux_sym_import_declaration_repeat1, - [63313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6594), 1, - anon_sym_COMMA, - ACTIONS(6927), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63329] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5952), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2149), 1, - sym_record_body, - [63345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6298), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1767), 1, - sym_record_body, - [63361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6929), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [63371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5866), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_enum_body, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1519), 1, - sym_block, - [63403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - sym_identifier, - ACTIONS(6931), 1, - sym__newline, - STATE(2987), 1, - aux_sym_import_declaration_repeat1, - STATE(3148), 1, + STATE(3720), 1, sym_keyed_field_initializer, - [63419] = 5, + [70561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1520), 1, - sym_block, - [63435] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6933), 1, - sym__newline, - STATE(1445), 1, - sym_block, - STATE(2950), 1, - aux_sym_import_declaration_repeat1, - [63451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym_DQUOTE, - ACTIONS(6935), 1, - sym__newline, - STATE(2576), 1, - sym_string, - STATE(2894), 1, - aux_sym_import_declaration_repeat1, - [63467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(2586), 1, - sym_block, - [63483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(4896), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - STATE(1678), 1, - sym_block, - [63499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(6937), 1, - sym__newline, - STATE(1663), 1, - sym_block, - STATE(2903), 1, - aux_sym_import_declaration_repeat1, - [63515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6939), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6941), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6943), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6945), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, - sym__newline, - STATE(3336), 1, - aux_sym_import_declaration_repeat1, - [63567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6949), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2208), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6951), 1, - anon_sym_LBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6953), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6955), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [63628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6957), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5925), 3, - anon_sym_RBRACE, + ACTIONS(6507), 1, sym_identifier, - sym__newline, - [63650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6959), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6961), 1, - anon_sym_PIPE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6963), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6965), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6967), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6195), 3, - anon_sym_COMMA, + ACTIONS(6603), 1, anon_sym_RBRACE, + ACTIONS(6607), 1, sym__newline, - [63724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6969), 1, - anon_sym_else, - STATE(897), 1, + STATE(3052), 1, aux_sym_import_declaration_repeat1, - [63737] = 4, + STATE(3803), 1, + sym_keyed_field_initializer, + [70580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, - anon_sym_RBRACK, - ACTIONS(6973), 1, - sym__newline, - STATE(3318), 1, - aux_sym_import_declaration_repeat1, - [63750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6975), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6977), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5242), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5268), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6593), 1, anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6979), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5223), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6981), 1, - anon_sym_RBRACK, - ACTIONS(6983), 1, - sym__newline, - STATE(3321), 1, - aux_sym_import_declaration_repeat1, - [63841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2310), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6985), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [63863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6987), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6989), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6991), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6993), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6995), 1, - anon_sym_RBRACK, - ACTIONS(6997), 1, - sym__newline, - STATE(3300), 1, - aux_sym_import_declaration_repeat1, - [63928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6999), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7001), 1, - anon_sym_PIPE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7003), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2281), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7005), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [63993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6190), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7007), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7009), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2226), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_RBRACK, - ACTIONS(7013), 1, - sym__newline, - STATE(3193), 1, - aux_sym_import_declaration_repeat1, - [64058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7015), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7017), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7019), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7021), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7023), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5389), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7025), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7027), 1, - anon_sym_RBRACK, - ACTIONS(7029), 1, + ACTIONS(6609), 1, sym__newline, STATE(3152), 1, aux_sym_import_declaration_repeat1, - [64162] = 4, + STATE(3803), 1, + sym_keyed_field_initializer, + [70599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(6611), 1, + anon_sym_COMMA, + ACTIONS(6614), 1, + anon_sym_RBRACE, + ACTIONS(6616), 1, sym__newline, - ACTIONS(7031), 1, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3725), 1, + aux_sym_import_declaration_repeat1, + [70618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6619), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [70637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6619), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [70656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6619), 1, + anon_sym_RBRACE, + ACTIONS(6621), 1, + sym__newline, + STATE(3054), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [70675] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [70694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6593), 1, + anon_sym_RBRACE, + ACTIONS(6625), 1, + anon_sym_COMMA, + ACTIONS(6627), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3510), 1, + aux_sym_import_declaration_repeat1, + [70713] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6629), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACE, + ACTIONS(6633), 1, + sym__newline, + STATE(2786), 1, + sym_record_body, + STATE(3391), 1, + aux_sym_import_declaration_repeat1, + [70732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6635), 1, + anon_sym_LPAREN, + ACTIONS(6637), 1, + anon_sym_LBRACE, + ACTIONS(6639), 1, + sym__newline, + STATE(2775), 1, + sym_enum_body, + STATE(3362), 1, + aux_sym_import_declaration_repeat1, + [70751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6641), 1, + anon_sym_LPAREN, + ACTIONS(6643), 1, + anon_sym_LBRACE, + ACTIONS(6645), 1, + sym__newline, + STATE(677), 1, + sym_record_body, + STATE(3254), 1, + aux_sym_import_declaration_repeat1, + [70770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_LPAREN, + ACTIONS(6649), 1, + anon_sym_LBRACE, + ACTIONS(6651), 1, + sym__newline, + STATE(678), 1, + sym_enum_body, + STATE(3380), 1, + aux_sym_import_declaration_repeat1, + [70789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6653), 1, + sym_identifier, + ACTIONS(6655), 1, + sym__newline, + STATE(1728), 1, + sym_block, + STATE(3105), 1, + aux_sym_import_declaration_repeat1, + [70808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6659), 1, + anon_sym_RBRACE, + ACTIONS(6661), 1, + sym__newline, + STATE(3066), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [70827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6663), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1602), 1, + sym_block, + [70846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4490), 1, + anon_sym_LBRACE, + ACTIONS(6665), 1, anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5217), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6667), 1, sym__newline, - [64184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7033), 1, - anon_sym_COMMA, - STATE(897), 1, + STATE(3703), 1, aux_sym_import_declaration_repeat1, - [64197] = 2, + [70865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 3, + ACTIONS(4497), 1, + sym_identifier, + ACTIONS(4499), 1, + anon_sym_LBRACE, + ACTIONS(6670), 1, + anon_sym_else, + ACTIONS(6672), 1, + sym__newline, + STATE(3710), 1, + aux_sym_import_declaration_repeat1, + [70884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6273), 1, anon_sym_RPAREN, + ACTIONS(6675), 1, anon_sym_COMMA, + ACTIONS(6677), 1, sym__newline, - [64206] = 4, + STATE(3186), 1, + aux_sym_parameter_list_repeat1, + STATE(3541), 1, + aux_sym_import_declaration_repeat1, + [70903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(6132), 1, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6679), 1, anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(7037), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64232] = 4, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [70922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2972), 1, + anon_sym_RPAREN, + ACTIONS(5513), 1, + anon_sym_COMMA, + ACTIONS(5515), 1, sym__newline, - ACTIONS(7039), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3376), 1, aux_sym_import_declaration_repeat1, - [64245] = 4, + [70941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(6683), 1, + anon_sym_COMMA, + ACTIONS(6685), 1, sym__newline, - ACTIONS(7041), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3093), 1, + aux_sym_variant_payload_repeat1, + STATE(3507), 1, aux_sym_import_declaration_repeat1, - [64258] = 4, + [70960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_RBRACK, - ACTIONS(7045), 1, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6687), 1, + anon_sym_RBRACE, + ACTIONS(6689), 1, sym__newline, - STATE(3205), 1, - aux_sym_import_declaration_repeat1, - [64271] = 4, + STATE(3091), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [70979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2976), 1, + anon_sym_RPAREN, + ACTIONS(6691), 1, + anon_sym_COMMA, + ACTIONS(6693), 1, sym__newline, - ACTIONS(2775), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3382), 1, aux_sym_import_declaration_repeat1, - [64284] = 4, + [70998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6695), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(7047), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1732), 1, + sym_block, + STATE(3118), 1, aux_sym_import_declaration_repeat1, - [64297] = 4, + [71017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_RBRACK, - ACTIONS(7051), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6699), 1, + sym_identifier, + ACTIONS(6701), 1, + sym__newline, + STATE(1791), 1, + sym_block, + STATE(3121), 1, + aux_sym_import_declaration_repeat1, + [71036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6531), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [71055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6703), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1609), 1, + sym_block, + [71074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6705), 1, + anon_sym_RBRACE, + ACTIONS(6707), 1, + sym__newline, + STATE(3198), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [71093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6709), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1612), 1, + sym_block, + [71112] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6531), 1, + anon_sym_RBRACE, + ACTIONS(6711), 1, + sym__newline, + STATE(3113), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [71131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6713), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1671), 1, + sym_block, + [71150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6643), 1, + anon_sym_LBRACE, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(6717), 1, + sym__newline, + STATE(1960), 1, + sym_record_body, + STATE(3373), 1, + aux_sym_import_declaration_repeat1, + [71169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, + anon_sym_RBRACE, + ACTIONS(5598), 1, + anon_sym_COMMA, + ACTIONS(5600), 1, sym__newline, STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3524), 1, aux_sym_import_declaration_repeat1, - [64310] = 4, + [71188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7053), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7055), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7057), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5093), 1, + ACTIONS(2513), 1, anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5884), 3, - anon_sym_RPAREN, + ACTIONS(5598), 1, anon_sym_COMMA, + ACTIONS(5600), 1, sym__newline, - [64371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3102), 1, + aux_sym_initializer_list_repeat1, + STATE(3524), 1, aux_sym_import_declaration_repeat1, - [64384] = 4, + [71207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7061), 1, - anon_sym_RBRACK, - STATE(897), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6719), 1, + sym_identifier, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [64397] = 4, + STATE(1788), 1, + sym_block, + [71226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7063), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6721), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1776), 1, + sym_block, + [71245] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6723), 1, + anon_sym_BANG, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, + sym__newline, + STATE(2369), 1, + sym_block, + STATE(3489), 1, + aux_sym_import_declaration_repeat1, + [71264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + sym_identifier, + ACTIONS(6731), 1, + sym__newline, + STATE(1620), 1, + sym_block, + STATE(3167), 1, + aux_sym_import_declaration_repeat1, + [71283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2818), 1, + anon_sym_RPAREN, + ACTIONS(6733), 1, + anon_sym_COMMA, + ACTIONS(6735), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3531), 1, + aux_sym_import_declaration_repeat1, + [71302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6737), 1, + sym_identifier, + ACTIONS(6739), 1, + sym__newline, + STATE(1768), 1, + sym_block, + STATE(3112), 1, + aux_sym_import_declaration_repeat1, + [71321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6238), 1, + anon_sym_RPAREN, + ACTIONS(6741), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, + sym__newline, + STATE(3210), 1, + aux_sym_parameter_list_repeat1, + STATE(3587), 1, + aux_sym_import_declaration_repeat1, + [71340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(4526), 1, + anon_sym_LBRACE, + ACTIONS(6745), 1, anon_sym_else, - STATE(897), 1, + ACTIONS(6747), 1, + sym__newline, + STATE(3785), 1, aux_sym_import_declaration_repeat1, - [64410] = 4, + [71359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(4539), 1, + sym_identifier, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(6750), 1, + anon_sym_else, + ACTIONS(6752), 1, + sym__newline, + STATE(3786), 1, + aux_sym_import_declaration_repeat1, + [71378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6755), 1, + anon_sym_RBRACE, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [71397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6757), 1, + sym__newline, + STATE(3107), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [71416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(6759), 1, + anon_sym_COMMA, + ACTIONS(6761), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3558), 1, + aux_sym_import_declaration_repeat1, + [71435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6763), 1, + sym_identifier, + ACTIONS(6765), 1, + sym__newline, + STATE(1785), 1, + sym_block, + STATE(3178), 1, + aux_sym_import_declaration_repeat1, + [71454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(6759), 1, + anon_sym_COMMA, + ACTIONS(6761), 1, + sym__newline, + STATE(3111), 1, + aux_sym_variant_payload_repeat1, + STATE(3558), 1, + aux_sym_import_declaration_repeat1, + [71473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6767), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1790), 1, + sym_block, + [71492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, anon_sym_RBRACK, - ACTIONS(7067), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + ACTIONS(6771), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3593), 1, + aux_sym_import_declaration_repeat1, + [71511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6773), 1, + sym_identifier, + ACTIONS(6775), 1, + sym__newline, + STATE(1588), 1, + sym_block, + STATE(3062), 1, + aux_sym_import_declaration_repeat1, + [71530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6777), 1, + anon_sym_LPAREN, + ACTIONS(6779), 1, + anon_sym_LBRACE, + ACTIONS(6781), 1, + sym__newline, + STATE(1960), 1, + sym_record_body, + STATE(3511), 1, + aux_sym_import_declaration_repeat1, + [71549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 1, + anon_sym_RBRACK, + ACTIONS(5343), 1, + anon_sym_COMMA, + ACTIONS(6783), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3500), 1, + aux_sym_import_declaration_repeat1, + [71568] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1686), 1, + sym_block, + [71587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(6787), 1, + anon_sym_COMMA, + ACTIONS(6789), 1, + sym__newline, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3591), 1, + aux_sym_import_declaration_repeat1, + [71606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6791), 1, + sym_identifier, + ACTIONS(6793), 1, + sym__newline, + STATE(1734), 1, + sym_block, + STATE(3200), 1, + aux_sym_import_declaration_repeat1, + [71625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 1, + anon_sym_RPAREN, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3512), 1, + aux_sym_import_declaration_repeat1, + [71644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6795), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1793), 1, + sym_block, + [71663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + sym_identifier, + ACTIONS(4472), 1, + anon_sym_LBRACE, + ACTIONS(6797), 1, + anon_sym_else, + ACTIONS(6799), 1, + sym__newline, + STATE(3844), 1, + aux_sym_import_declaration_repeat1, + [71682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [71701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_RBRACE, + ACTIONS(6804), 1, + sym__newline, + STATE(3120), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [71720] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 1, + anon_sym_LPAREN, + ACTIONS(6808), 1, + anon_sym_LBRACE, + ACTIONS(6810), 1, + sym__newline, + STATE(1949), 1, + sym_enum_body, + STATE(3266), 1, + aux_sym_import_declaration_repeat1, + [71739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_RBRACE, + ACTIONS(6812), 1, + sym__newline, + STATE(3128), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [71758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_RBRACE, + ACTIONS(6814), 1, + anon_sym_COMMA, + ACTIONS(6816), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3601), 1, + aux_sym_import_declaration_repeat1, + [71777] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6818), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1604), 1, + sym_block, + [71796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6820), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [71815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, + sym_identifier, + ACTIONS(6824), 1, + sym__newline, + STATE(1617), 1, + sym_block, + STATE(3006), 1, + aux_sym_import_declaration_repeat1, + [71834] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6826), 1, + sym_identifier, + ACTIONS(6829), 1, + anon_sym_RBRACE, + ACTIONS(6831), 1, + sym__newline, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [71853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6509), 1, + anon_sym_RBRACE, + ACTIONS(6834), 1, + sym__newline, + STATE(3017), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [71872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_LBRACE, + ACTIONS(6836), 1, + anon_sym_BANG, + ACTIONS(6838), 1, + sym__newline, + STATE(711), 1, + sym_block, + STATE(3347), 1, + aux_sym_import_declaration_repeat1, + [71891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6840), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1795), 1, + sym_block, + [71910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6842), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1627), 1, + sym_block, + [71929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6844), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [71948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6846), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1823), 1, + sym_block, + [71967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6848), 1, + sym_identifier, + ACTIONS(6850), 1, + sym__newline, + STATE(1824), 1, + sym_block, + STATE(3184), 1, + aux_sym_import_declaration_repeat1, + [71986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + sym_identifier, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(6852), 1, + anon_sym_else, + ACTIONS(6855), 1, + sym__newline, + STATE(3749), 1, + aux_sym_import_declaration_repeat1, + [72005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + sym_identifier, + ACTIONS(6860), 1, + sym__newline, + STATE(1827), 1, + sym_block, + STATE(3187), 1, + aux_sym_import_declaration_repeat1, + [72024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6862), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1774), 1, + sym_block, + [72043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6866), 1, + anon_sym_DOLLAR, + ACTIONS(6868), 1, + sym__newline, + STATE(3183), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6864), 2, + sym_sink, + sym_identifier, + [72060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6870), 1, + sym_identifier, + ACTIONS(6872), 1, + sym__newline, + STATE(1829), 1, + sym_block, + STATE(3195), 1, + aux_sym_import_declaration_repeat1, + [72079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6844), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72098] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6844), 1, + anon_sym_RBRACE, + ACTIONS(6874), 1, sym__newline, STATE(3146), 1, aux_sym_import_declaration_repeat1, - [64423] = 4, + STATE(3720), 1, + sym_keyed_field_initializer, + [72117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(897), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6876), 1, + sym_identifier, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [64436] = 4, + STATE(1831), 1, + sym_block, + [72136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6878), 1, + sym_identifier, + ACTIONS(6880), 1, sym__newline, - ACTIONS(7069), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1833), 1, + sym_block, + STATE(3204), 1, aux_sym_import_declaration_repeat1, - [64449] = 4, + [72155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7071), 1, + ACTIONS(2641), 1, anon_sym_RPAREN, - STATE(897), 1, + ACTIONS(5584), 1, + anon_sym_COMMA, + ACTIONS(5586), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3529), 1, aux_sym_import_declaration_repeat1, - [64462] = 4, + [72174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7073), 1, - anon_sym_else, - STATE(897), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6882), 1, + sym_identifier, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [64475] = 4, + STATE(1834), 1, + sym_block, + [72193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6884), 1, + sym_identifier, + ACTIONS(6886), 1, sym__newline, - ACTIONS(7075), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1835), 1, + sym_block, + STATE(3217), 1, aux_sym_import_declaration_repeat1, - [64488] = 4, + [72212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7077), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7079), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 1, - anon_sym_RBRACK, - ACTIONS(7083), 1, - sym__newline, - STATE(3224), 1, - aux_sym_import_declaration_repeat1, - [64527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7085), 1, - anon_sym_RBRACK, - ACTIONS(7087), 1, - sym__newline, - STATE(3225), 1, - aux_sym_import_declaration_repeat1, - [64540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2292), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6844), 1, anon_sym_RBRACE, - STATE(897), 1, + ACTIONS(6888), 1, + sym__newline, + STATE(3148), 1, aux_sym_import_declaration_repeat1, - [64553] = 4, + STATE(3803), 1, + sym_keyed_field_initializer, + [72231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7089), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6890), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1836), 1, + sym_block, + [72250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + sym_identifier, + ACTIONS(6894), 1, + sym__newline, + STATE(1837), 1, + sym_block, + STATE(3222), 1, + aux_sym_import_declaration_repeat1, + [72269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6896), 1, + sym_identifier, + ACTIONS(6898), 1, + sym__newline, + STATE(1839), 1, + sym_block, + STATE(3192), 1, + aux_sym_import_declaration_repeat1, + [72288] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6900), 1, + anon_sym_BANG, + ACTIONS(6902), 1, + sym__newline, + STATE(2378), 1, + sym_block, + STATE(3542), 1, + aux_sym_import_declaration_repeat1, + [72307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, anon_sym_RBRACE, - STATE(897), 1, + ACTIONS(6904), 1, + anon_sym_COMMA, + ACTIONS(6906), 1, + sym__newline, + STATE(3144), 1, + aux_sym_variant_payload_repeat1, + STATE(3499), 1, aux_sym_import_declaration_repeat1, - [64566] = 4, + [72326] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6908), 1, + sym_identifier, + ACTIONS(6910), 1, sym__newline, - ACTIONS(7091), 1, + STATE(1797), 1, + sym_block, + STATE(3130), 1, + aux_sym_import_declaration_repeat1, + [72345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6912), 1, + sym__newline, + STATE(3041), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [72364] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6509), 1, + anon_sym_RBRACE, + ACTIONS(6914), 1, + sym__newline, + STATE(3023), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [72383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3345), 1, + aux_sym_import_declaration_repeat1, + [72402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_RBRACK, + ACTIONS(6920), 1, + anon_sym_COMMA, + ACTIONS(6922), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3562), 1, + aux_sym_import_declaration_repeat1, + [72421] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6924), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [72440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + sym__newline, + STATE(3055), 1, + aux_sym_variant_payload_repeat1, + STATE(3345), 1, + aux_sym_import_declaration_repeat1, + [72459] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6924), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6924), 1, + anon_sym_RBRACE, + ACTIONS(6926), 1, + sym__newline, + STATE(3155), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72497] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_RBRACE, + ACTIONS(6928), 1, + anon_sym_COMMA, + ACTIONS(6930), 1, + sym__newline, + STATE(3203), 1, + aux_sym_variant_payload_repeat1, + STATE(3594), 1, + aux_sym_import_declaration_repeat1, + [72516] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6932), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [72535] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6932), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72554] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6932), 1, + anon_sym_RBRACE, + ACTIONS(6934), 1, + sym__newline, + STATE(3016), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6932), 1, + anon_sym_RBRACE, + ACTIONS(6936), 1, + sym__newline, + STATE(3073), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [72592] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [72611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6940), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [72630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6942), 1, + anon_sym_LPAREN, + ACTIONS(6944), 1, + anon_sym_LBRACE, + ACTIONS(6946), 1, + sym__newline, + STATE(264), 1, + sym_record_body, + STATE(3361), 1, + aux_sym_import_declaration_repeat1, + [72649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6952), 1, + sym__newline, + STATE(265), 1, + sym_enum_body, + STATE(3243), 1, + aux_sym_import_declaration_repeat1, + [72668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6954), 1, + sym_identifier, + ACTIONS(6956), 1, + sym__newline, + STATE(1687), 1, + sym_block, + STATE(3031), 1, + aux_sym_import_declaration_repeat1, + [72687] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6940), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [72706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(5590), 1, + anon_sym_COMMA, + ACTIONS(5592), 1, + sym__newline, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3590), 1, + aux_sym_import_declaration_repeat1, + [72725] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(5590), 1, + anon_sym_COMMA, + ACTIONS(5592), 1, + sym__newline, + STATE(3043), 1, + aux_sym_initializer_list_repeat1, + STATE(3590), 1, + aux_sym_import_declaration_repeat1, + [72744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4490), 1, + anon_sym_LBRACE, + ACTIONS(6958), 1, anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(6961), 1, sym__newline, - ACTIONS(7093), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3750), 1, aux_sym_import_declaration_repeat1, - [64592] = 4, + [72763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6964), 1, + sym_identifier, + ACTIONS(6966), 1, sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1809), 1, + sym_block, + STATE(3193), 1, aux_sym_import_declaration_repeat1, - [64605] = 4, + [72782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7097), 1, - anon_sym_RBRACK, - ACTIONS(7099), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + sym_identifier, + ACTIONS(6970), 1, sym__newline, - STATE(3196), 1, + STATE(1689), 1, + sym_block, + STATE(3074), 1, aux_sym_import_declaration_repeat1, - [64618] = 4, + [72801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2529), 1, + anon_sym_RBRACE, + ACTIONS(5556), 1, + anon_sym_COMMA, + ACTIONS(5558), 1, sym__newline, - ACTIONS(7101), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3170), 1, + aux_sym_initializer_list_repeat1, + STATE(3530), 1, aux_sym_import_declaration_repeat1, - [64631] = 4, + [72820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7103), 1, - anon_sym_RBRACK, - STATE(897), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6972), 1, + sym_identifier, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [64644] = 4, + STATE(1665), 1, + sym_block, + [72839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6940), 1, + anon_sym_RBRACE, + ACTIONS(6974), 1, sym__newline, - ACTIONS(2637), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3177), 1, aux_sym_import_declaration_repeat1, - [64657] = 4, + STATE(3720), 1, + sym_keyed_field_initializer, + [72858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6976), 1, + anon_sym_RBRACE, + ACTIONS(6978), 1, sym__newline, - ACTIONS(7105), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64670] = 4, + STATE(3189), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [72877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2321), 1, + anon_sym_RBRACE, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5535), 1, sym__newline, - ACTIONS(7107), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3588), 1, aux_sym_import_declaration_repeat1, - [64683] = 4, + [72896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6980), 1, + sym_identifier, + ACTIONS(6982), 1, sym__newline, - ACTIONS(7109), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1698), 1, + sym_block, + STATE(3076), 1, aux_sym_import_declaration_repeat1, - [64696] = 4, + [72915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(6984), 1, + sym_identifier, + ACTIONS(6986), 1, sym__newline, - ACTIONS(7111), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(1800), 1, + sym_block, + STATE(3133), 1, aux_sym_import_declaration_repeat1, - [64709] = 4, + [72934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2659), 1, + anon_sym_RPAREN, + ACTIONS(6988), 1, + anon_sym_COMMA, + ACTIONS(6990), 1, sym__newline, - ACTIONS(7113), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3281), 1, aux_sym_import_declaration_repeat1, - [64722] = 4, + [72953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2321), 1, + anon_sym_RBRACE, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5535), 1, sym__newline, - ACTIONS(7115), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(3223), 1, + aux_sym_initializer_list_repeat1, + STATE(3588), 1, aux_sym_import_declaration_repeat1, - [64735] = 3, + [72972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, - anon_sym_AT, - ACTIONS(7117), 2, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(4526), 1, + anon_sym_LBRACE, + ACTIONS(6992), 1, + anon_sym_else, + ACTIONS(6995), 1, + sym__newline, + STATE(3752), 1, + aux_sym_import_declaration_repeat1, + [72991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + sym_identifier, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(6998), 1, + anon_sym_else, + ACTIONS(7001), 1, + sym__newline, + STATE(3753), 1, + aux_sym_import_declaration_repeat1, + [73010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(7004), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [73029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7006), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1740), 1, + sym_block, + [73048] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7008), 1, + anon_sym_RPAREN, + ACTIONS(7010), 1, + anon_sym_COMMA, + ACTIONS(7013), 1, + sym__newline, + STATE(3179), 1, + aux_sym_parameter_list_repeat1, + STATE(3679), 1, + aux_sym_import_declaration_repeat1, + [73067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7016), 1, + anon_sym_BANG, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7020), 1, + sym__newline, + STATE(2823), 1, + sym_block, + STATE(3273), 1, + aux_sym_import_declaration_repeat1, + [73086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7022), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [73099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + sym_identifier, + ACTIONS(4499), 1, + anon_sym_LBRACE, + ACTIONS(7026), 1, + anon_sym_else, + ACTIONS(7029), 1, + sym__newline, + STATE(3751), 1, + aux_sym_import_declaration_repeat1, + [73118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7034), 1, + anon_sym_DOLLAR, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(7032), 2, sym_sink, sym_identifier, - [64746] = 4, + [73135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7119), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7036), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1668), 1, + sym_block, + [73154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7038), 1, + sym_identifier, + ACTIONS(7040), 1, + sym__newline, + STATE(1669), 1, + sym_block, + STATE(3078), 1, + aux_sym_import_declaration_repeat1, + [73173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 1, anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64759] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_COLON, - ACTIONS(5652), 1, - anon_sym_PIPE, - STATE(3451), 1, - sym_match_capture, - [64772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7121), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7123), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5272), 3, + ACTIONS(7042), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7044), 1, sym__newline, - [64807] = 4, + STATE(3179), 1, + aux_sym_parameter_list_repeat1, + STATE(3287), 1, + aux_sym_import_declaration_repeat1, + [73192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7046), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1772), 1, + sym_block, + [73211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7048), 1, + sym_identifier, + ACTIONS(7050), 1, + sym__newline, + STATE(1780), 1, + sym_block, + STATE(3101), 1, + aux_sym_import_declaration_repeat1, + [73230] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(7052), 1, + anon_sym_RBRACE, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [73249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 1, + anon_sym_LBRACE, + ACTIONS(7054), 1, + anon_sym_BANG, + ACTIONS(7056), 1, + sym__newline, + STATE(179), 1, + sym_block, + STATE(3385), 1, + aux_sym_import_declaration_repeat1, + [73268] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2884), 1, + anon_sym_RBRACK, + ACTIONS(5427), 1, + anon_sym_COMMA, + ACTIONS(7058), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3279), 1, + aux_sym_import_declaration_repeat1, + [73287] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7060), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1637), 1, + sym_block, + [73306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7062), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1749), 1, + sym_block, + [73325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7064), 1, + sym_identifier, + ACTIONS(7066), 1, + sym__newline, + STATE(1801), 1, + sym_block, + STATE(3136), 1, + aux_sym_import_declaration_repeat1, + [73344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7068), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1579), 1, + sym_block, + [73363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, + sym_identifier, + ACTIONS(7072), 1, + sym__newline, + STATE(1842), 1, + sym_block, + STATE(3009), 1, + aux_sym_import_declaration_repeat1, + [73382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7074), 1, + sym_identifier, + ACTIONS(7076), 1, + sym__newline, + STATE(1593), 1, + sym_block, + STATE(3024), 1, + aux_sym_import_declaration_repeat1, + [73401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(7078), 1, + anon_sym_RBRACE, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [73420] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(7080), 1, + anon_sym_RBRACE, + STATE(3115), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [73439] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7082), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1802), 1, + sym_block, + [73458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6509), 1, + anon_sym_RBRACE, + ACTIONS(7084), 1, + anon_sym_COMMA, + ACTIONS(7086), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3249), 1, + aux_sym_import_declaration_repeat1, + [73477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_RBRACE, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(7088), 1, + sym__newline, + STATE(3011), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [73496] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_RBRACE, + ACTIONS(7090), 1, + anon_sym_COMMA, + ACTIONS(7092), 1, + sym__newline, + STATE(3050), 1, + aux_sym_variant_payload_repeat1, + STATE(3315), 1, + aux_sym_import_declaration_repeat1, + [73515] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7094), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1595), 1, + sym_block, + [73534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_RBRACE, + ACTIONS(7090), 1, + anon_sym_COMMA, + ACTIONS(7092), 1, + sym__newline, + STATE(3201), 1, + aux_sym_variant_payload_repeat1, + STATE(3315), 1, + aux_sym_import_declaration_repeat1, + [73553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2778), 1, + anon_sym_RBRACK, + ACTIONS(5453), 1, + anon_sym_COMMA, + ACTIONS(7096), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3415), 1, + aux_sym_import_declaration_repeat1, + [73572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7098), 1, + sym_identifier, + ACTIONS(7100), 1, + sym__newline, + STATE(1596), 1, + sym_block, + STATE(3125), 1, + aux_sym_import_declaration_repeat1, + [73591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 1, + anon_sym_RBRACE, + ACTIONS(7102), 1, + anon_sym_COMMA, + ACTIONS(7105), 1, + sym__newline, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3615), 1, + aux_sym_import_declaration_repeat1, + [73610] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7108), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1810), 1, + sym_block, + [73629] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6273), 1, + anon_sym_RPAREN, + ACTIONS(6675), 1, + anon_sym_COMMA, + ACTIONS(6677), 1, + sym__newline, + STATE(3179), 1, + aux_sym_parameter_list_repeat1, + STATE(3541), 1, + aux_sym_import_declaration_repeat1, + [73648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + sym_identifier, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(7110), 1, + anon_sym_else, + ACTIONS(7112), 1, + sym__newline, + STATE(3624), 1, + aux_sym_import_declaration_repeat1, + [73667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7115), 1, + sym_identifier, + ACTIONS(7117), 1, + sym__newline, + STATE(1600), 1, + sym_block, + STATE(3216), 1, + aux_sym_import_declaration_repeat1, + [73686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_RBRACK, + ACTIONS(5403), 1, + anon_sym_COMMA, + ACTIONS(7119), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3413), 1, + aux_sym_import_declaration_repeat1, + [73705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7121), 1, + sym_identifier, + ACTIONS(7123), 1, + sym__newline, + STATE(1601), 1, + sym_block, + STATE(3036), 1, + aux_sym_import_declaration_repeat1, + [73724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_RPAREN, ACTIONS(7125), 1, anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2328), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64833] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(7127), 1, - anon_sym_RBRACK, - ACTIONS(7129), 1, sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3387), 1, + aux_sym_import_declaration_repeat1, + [73743] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7129), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1778), 1, + sym_block, + [73762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7131), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1628), 1, + sym_block, + [73781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7133), 1, + sym_identifier, + ACTIONS(7135), 1, + sym__newline, + STATE(1629), 1, + sym_block, + STATE(3209), 1, + aux_sym_import_declaration_repeat1, + [73800] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(7137), 1, + anon_sym_RBRACE, + ACTIONS(7139), 1, + sym__newline, + STATE(3199), 1, + aux_sym_enum_body_repeat1, + STATE(3583), 1, + sym_enum_member, + [73819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + anon_sym_RBRACE, + ACTIONS(5568), 1, + anon_sym_COMMA, + ACTIONS(5570), 1, + sym__newline, + STATE(3018), 1, + aux_sym_initializer_list_repeat1, + STATE(3292), 1, + aux_sym_import_declaration_repeat1, + [73838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 1, + anon_sym_RPAREN, + ACTIONS(5602), 1, + anon_sym_COMMA, + ACTIONS(5604), 1, + sym__newline, + STATE(2923), 1, + aux_sym_match_arm_repeat1, + STATE(3298), 1, + aux_sym_import_declaration_repeat1, + [73857] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + sym_identifier, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1634), 1, + sym_block, + [73876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + anon_sym_RBRACE, + ACTIONS(7143), 1, + anon_sym_COMMA, + ACTIONS(7145), 1, + sym__newline, + STATE(3208), 1, + aux_sym_initializer_list_repeat1, + STATE(3418), 1, + aux_sym_import_declaration_repeat1, + [73895] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7147), 1, + anon_sym_BANG, + ACTIONS(7149), 1, + sym__newline, + STATE(2838), 1, + sym_block, STATE(3301), 1, aux_sym_import_declaration_repeat1, - [64846] = 4, + [73914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(2483), 1, + anon_sym_RBRACE, + ACTIONS(5580), 1, + anon_sym_COMMA, + ACTIONS(5582), 1, sym__newline, - ACTIONS(7131), 1, - anon_sym_RPAREN, - STATE(897), 1, + STATE(3161), 1, + aux_sym_initializer_list_repeat1, + STATE(3520), 1, aux_sym_import_declaration_repeat1, - [64859] = 4, + [73933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_RPAREN, - ACTIONS(7133), 1, + ACTIONS(466), 1, sym__newline, - STATE(3206), 1, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [64872] = 4, + STATE(2987), 1, + sym_block, + [73949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7135), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7137), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64898] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7139), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7141), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64924] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7143), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7145), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7147), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7149), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7151), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [64989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7153), 1, - anon_sym_RPAREN, - ACTIONS(7155), 1, sym__newline, - STATE(3258), 1, + STATE(1673), 1, + sym_block, + STATE(3381), 1, aux_sym_import_declaration_repeat1, - [65002] = 4, + [73965] = 4, + ACTIONS(7153), 1, + anon_sym_DQUOTE, + ACTIONS(7157), 1, + sym_comment, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7155), 2, + sym_string_content, + sym_escape_sequence, + [73979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 1, - anon_sym_RBRACK, + ACTIONS(6631), 1, + anon_sym_LBRACE, ACTIONS(7159), 1, sym__newline, - STATE(3262), 1, + STATE(2892), 1, + sym_record_body, + STATE(3240), 1, aux_sym_import_declaration_repeat1, - [65015] = 4, + [73995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7161), 1, - anon_sym_RBRACK, - STATE(897), 1, + sym__newline, + STATE(1701), 1, + sym_block, + STATE(3282), 1, aux_sym_import_declaration_repeat1, - [65028] = 4, + [74011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7163), 1, - anon_sym_else, - STATE(897), 1, + sym__newline, + STATE(1684), 1, + sym_block, + STATE(3603), 1, aux_sym_import_declaration_repeat1, - [65041] = 4, + [74027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(1756), 1, + anon_sym_LPAREN, ACTIONS(7165), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65054] = 4, + anon_sym_LBRACE, + STATE(166), 1, + sym_initializer_list, + STATE(3927), 1, + sym_argument_list, + [74043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7167), 1, - anon_sym_else, - STATE(897), 1, + sym__newline, + STATE(1674), 1, + sym_block, + STATE(3383), 1, aux_sym_import_declaration_repeat1, - [65067] = 4, + [74059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(1756), 1, + anon_sym_LPAREN, ACTIONS(7169), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65080] = 4, + anon_sym_LBRACE, + STATE(2898), 1, + sym_initializer_list, + STATE(3875), 1, + sym_argument_list, + [74075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, ACTIONS(7171), 1, - anon_sym_else, - STATE(897), 1, + sym__newline, + STATE(686), 1, + sym_block, + STATE(3465), 1, aux_sym_import_declaration_repeat1, - [65093] = 4, + [74091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, + ACTIONS(5541), 1, + anon_sym_RPAREN, ACTIONS(7173), 1, - anon_sym_else, - STATE(897), 1, + anon_sym_COMMA, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [65106] = 4, + [74107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1694), 1, + sym_block, + [74123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1675), 1, + sym_block, + [74139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7175), 1, - anon_sym_else, - STATE(897), 1, + sym__newline, + STATE(1697), 1, + sym_block, + STATE(3389), 1, aux_sym_import_declaration_repeat1, - [65119] = 4, + [74155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, + ACTIONS(6631), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2832), 1, + sym_record_body, + [74171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6513), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2311), 1, + sym_record_body, + [74187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2975), 1, + sym_block, + [74203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6950), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_enum_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1688), 1, + sym_block, + [74235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7177), 1, - anon_sym_RPAREN, - STATE(897), 1, + sym__newline, + STATE(1699), 1, + sym_block, + STATE(3423), 1, aux_sym_import_declaration_repeat1, - [65132] = 4, + [74251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7179), 1, - anon_sym_PIPE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7177), 1, - anon_sym_RPAREN, - ACTIONS(7181), 1, sym__newline, - STATE(3231), 1, + STATE(1735), 1, + sym_block, + STATE(3393), 1, aux_sym_import_declaration_repeat1, - [65158] = 4, + [74267] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7183), 1, - anon_sym_RBRACK, - ACTIONS(7185), 1, - sym__newline, - STATE(3270), 1, - aux_sym_import_declaration_repeat1, - [65171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7187), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7189), 1, - anon_sym_RBRACK, - ACTIONS(7191), 1, - sym__newline, - STATE(3271), 1, - aux_sym_import_declaration_repeat1, - [65197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7193), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [65206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7195), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7197), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7199), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7201), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [65254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5997), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7203), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7205), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7207), 1, - anon_sym_RBRACK, - ACTIONS(7209), 1, - sym__newline, - STATE(3275), 1, - aux_sym_import_declaration_repeat1, - [65306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7211), 1, - anon_sym_RBRACK, - ACTIONS(7213), 1, - sym__newline, - STATE(3276), 1, - aux_sym_import_declaration_repeat1, - [65319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7215), 1, - anon_sym_RBRACK, - ACTIONS(7217), 1, - sym__newline, - STATE(3143), 1, - aux_sym_import_declaration_repeat1, - [65332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7219), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7221), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7223), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7225), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [65393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7229), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7231), 1, - anon_sym_RPAREN, - ACTIONS(7233), 1, sym__newline, STATE(3278), 1, aux_sym_import_declaration_repeat1, - [65419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7235), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7237), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7239), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5375), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(2527), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7241), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7243), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_RPAREN, - ACTIONS(7245), 1, - sym__newline, - STATE(3229), 1, - aux_sym_import_declaration_repeat1, - [65523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7247), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [65532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7251), 1, - anon_sym_AT, - ACTIONS(7249), 2, + ACTIONS(7181), 2, sym_sink, sym_identifier, - [65543] = 4, + [74281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7253), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7255), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7257), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7259), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7261), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7263), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7265), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5326), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [65643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7267), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7269), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5196), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7271), 1, - anon_sym_RBRACK, - ACTIONS(7273), 1, - sym__newline, - STATE(3222), 1, - aux_sym_import_declaration_repeat1, - [65695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7275), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7277), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7279), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7281), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7283), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7285), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7287), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7225), 1, - anon_sym_RPAREN, - ACTIONS(7289), 1, - sym__newline, - STATE(3266), 1, - aux_sym_import_declaration_repeat1, - [65799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7293), 1, - anon_sym_RBRACE, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - anon_sym_RBRACK, - ACTIONS(7297), 1, - sym__newline, - STATE(3232), 1, - aux_sym_import_declaration_repeat1, - [65838] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7299), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65851] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7301), 1, - anon_sym_RBRACK, - ACTIONS(7303), 1, - sym__newline, - STATE(3210), 1, - aux_sym_import_declaration_repeat1, - [65864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 1, - anon_sym_RPAREN, - ACTIONS(7307), 1, - sym__newline, - STATE(3284), 1, - aux_sym_import_declaration_repeat1, - [65877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7309), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7311), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [65912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7313), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65925] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 1, - anon_sym_RBRACK, - ACTIONS(7317), 1, - sym__newline, - STATE(3167), 1, - aux_sym_import_declaration_repeat1, - [65938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7319), 1, - anon_sym_RBRACK, - ACTIONS(7321), 1, - sym__newline, - STATE(3223), 1, - aux_sym_import_declaration_repeat1, - [65951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7323), 1, - anon_sym_RBRACK, - ACTIONS(7325), 1, - sym__newline, - STATE(3169), 1, - aux_sym_import_declaration_repeat1, - [65964] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7327), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7329), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [65990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7331), 1, - anon_sym_RPAREN, - ACTIONS(7333), 1, - sym__newline, - STATE(3237), 1, - aux_sym_import_declaration_repeat1, - [66003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7335), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - STATE(897), 1, + ACTIONS(7185), 1, + sym__newline, + STATE(1696), 1, + sym_block, + STATE(3264), 1, aux_sym_import_declaration_repeat1, - [66016] = 4, + [74297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7337), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7339), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7341), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7343), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7345), 1, - anon_sym_else, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, - sym__newline, - ACTIONS(7347), 1, + ACTIONS(6533), 1, + anon_sym_RBRACE, + ACTIONS(7187), 1, anon_sym_COMMA, - STATE(897), 1, + STATE(917), 1, aux_sym_import_declaration_repeat1, - [66094] = 4, + [74313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + ACTIONS(7191), 1, sym__newline, - ACTIONS(7349), 1, - anon_sym_RBRACK, - STATE(897), 1, + STATE(2988), 1, + sym_string, + STATE(3326), 1, aux_sym_import_declaration_repeat1, - [66107] = 4, + [74329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(447), 1, + ACTIONS(466), 1, sym__newline, - ACTIONS(7351), 1, - anon_sym_RBRACK, - STATE(897), 1, - aux_sym_import_declaration_repeat1, - [66120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1848), 1, - sym_parameter_list, - [66130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7355), 1, - sym_identifier, - ACTIONS(7357), 1, - anon_sym_AT, - [66140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7359), 1, - anon_sym_COLON_COLON, - ACTIONS(7361), 1, - anon_sym_EQ, - [66150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7363), 2, - sym_sink, - sym_identifier, - [66158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_LPAREN, - STATE(728), 1, - sym_argument_list, - [66168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7365), 1, - anon_sym_COLON_COLON, - ACTIONS(7367), 1, - anon_sym_EQ, - [66178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7369), 1, - anon_sym_COMMA, - ACTIONS(7371), 1, - anon_sym_PIPE, - [66188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7373), 1, - anon_sym_COMMA, - ACTIONS(7375), 1, - anon_sym_PIPE, - [66198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7377), 2, - sym_sink, - sym_identifier, - [66206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7379), 1, - sym_identifier, - ACTIONS(7381), 1, - anon_sym_AT, - [66216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - STATE(114), 1, - sym_argument_list, - [66226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1845), 1, - sym_parameter_list, - [66236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7383), 1, - anon_sym_COMMA, - ACTIONS(7385), 1, - anon_sym_PIPE, - [66246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1859), 1, - sym_parameter_list, - [66256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7387), 1, - anon_sym_COMMA, - ACTIONS(7389), 1, - anon_sym_PIPE, - [66266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7391), 1, - anon_sym_COMMA, - ACTIONS(7393), 1, - anon_sym_PIPE, - [66276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 2, - sym_identifier, - sym_integer, - [66284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7399), 1, - anon_sym_PIPE, - [66294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7401), 1, - sym_identifier, - ACTIONS(7403), 1, - anon_sym_AT, - [66304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6873), 1, + ACTIONS(5355), 1, anon_sym_LBRACE, - STATE(126), 1, - sym_initializer_list, - [66314] = 2, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1742), 1, + sym_block, + [74345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7405), 2, - sym_sink, - sym_identifier, - [66322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1844), 1, - sym_parameter_list, - [66332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 2, - sym_sink, - sym_identifier, - [66340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7411), 1, - anon_sym_PIPE, - [66350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1857), 1, - sym_parameter_list, - [66360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7413), 1, - anon_sym_PIPE, - STATE(3437), 1, - sym_expand_match_capture, - [66370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7415), 1, - anon_sym_COLON_COLON, - ACTIONS(7417), 1, - anon_sym_EQ, - [66380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 2, - anon_sym_RBRACK, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7193), 1, sym__newline, - [66388] = 3, + STATE(1745), 1, + sym_block, + STATE(3414), 1, + aux_sym_import_declaration_repeat1, + [74361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1853), 1, - sym_parameter_list, - [66398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7421), 1, - anon_sym_COLON_COLON, - ACTIONS(7423), 1, - anon_sym_EQ, - [66408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6648), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6944), 1, anon_sym_LBRACE, - STATE(736), 1, - sym_initializer_list, - [66418] = 3, + STATE(167), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_COLON_COLON, - ACTIONS(7427), 1, - anon_sym_EQ, - [66428] = 3, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6643), 1, + anon_sym_LBRACE, + STATE(683), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7195), 1, + anon_sym_COMMA, + ACTIONS(7197), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74409] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6523), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2313), 1, + sym_enum_body, + [74425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7199), 1, + sym__newline, + STATE(1752), 1, + sym_block, + STATE(3612), 1, + aux_sym_import_declaration_repeat1, + [74441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7201), 1, + sym__newline, + STATE(2974), 1, + sym_block, + STATE(3242), 1, + aux_sym_import_declaration_repeat1, + [74457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(3020), 1, + anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1708), 1, + sym_block, + [74489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(7431), 1, - sym_integer, - [66438] = 3, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3641), 1, + sym_keyed_field_initializer, + [74505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6915), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, anon_sym_LBRACE, - STATE(2157), 1, - sym_initializer_list, - [66448] = 2, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2990), 1, + sym_block, + [74521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7205), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1709), 1, + sym_block, + [74553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1755), 1, + sym_block, + [74569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6808), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1963), 1, + sym_enum_body, + [74585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7207), 1, + sym__newline, + STATE(1577), 1, + sym_block, + STATE(3305), 1, + aux_sym_import_declaration_repeat1, + [74601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7209), 1, + sym__newline, + STATE(1654), 1, + sym_block, + STATE(3317), 1, + aux_sym_import_declaration_repeat1, + [74617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1757), 1, + sym_block, + [74633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, + sym__newline, + STATE(1758), 1, + sym_block, + STATE(3447), 1, + aux_sym_import_declaration_repeat1, + [74649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2892), 1, + anon_sym_RPAREN, + ACTIONS(7213), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7215), 1, + anon_sym_RPAREN, + ACTIONS(7217), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7018), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2837), 1, + sym_block, + [74697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6513), 1, + anon_sym_LBRACE, + ACTIONS(7219), 1, + sym__newline, + STATE(2325), 1, + sym_record_body, + STATE(3302), 1, + aux_sym_import_declaration_repeat1, + [74713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(7221), 1, + sym__newline, + STATE(275), 1, + sym_enum_body, + STATE(3303), 1, + aux_sym_import_declaration_repeat1, + [74729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6452), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [74739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3637), 1, + sym__type_constant, + ACTIONS(7225), 2, sym_integer, sym_character, - [66456] = 3, + [74753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - STATE(2154), 1, - sym_argument_list, - [66466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1855), 1, - sym_parameter_list, - [66476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7435), 2, - sym_identifier, - sym_integer, - [66484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7431), 1, - sym_integer, - ACTIONS(7437), 1, - sym_identifier, - [66494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_COLON_COLON, - ACTIONS(7441), 1, - anon_sym_EQ, - [66504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7443), 1, - anon_sym_COLON_COLON, - ACTIONS(7445), 1, - anon_sym_EQ, - [66514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 2, + ACTIONS(466), 1, + sym__newline, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(7227), 2, sym_sink, sym_identifier, - [66522] = 3, + [74767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1854), 1, - sym_parameter_list, - [66532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7449), 2, - sym_sink, - sym_identifier, - [66540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7451), 1, - anon_sym_COLON_COLON, - ACTIONS(7453), 1, - anon_sym_EQ, - [66550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_EQ, - [66560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1867), 1, - sym_parameter_list, - [66570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7431), 2, - sym_identifier, - sym_integer, - [66578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7459), 1, - anon_sym_COLON_COLON, - ACTIONS(7461), 1, - anon_sym_EQ, - [66588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7463), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2902), 1, + anon_sym_RBRACK, + ACTIONS(7229), 1, anon_sym_COMMA, - ACTIONS(7465), 1, - anon_sym_PIPE, - [66598] = 2, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7231), 1, + anon_sym_COMMA, + ACTIONS(7233), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2677), 1, + anon_sym_RPAREN, + ACTIONS(7235), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1761), 1, + sym_block, + [74831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7237), 1, + sym__newline, + STATE(1762), 1, + sym_block, + STATE(3454), 1, + aux_sym_import_declaration_repeat1, + [74847] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1808), 1, + sym_block, + [74863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1763), 1, + sym_block, + [74879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6175), 1, + anon_sym_RPAREN, + ACTIONS(7239), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1702), 1, + sym_block, + [74927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1711), 1, + sym_block, + [74943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1804), 1, + sym_block, + [74959] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7241), 1, + sym__newline, + STATE(1813), 1, + sym_block, + STATE(3464), 1, + aux_sym_import_declaration_repeat1, + [74975] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2421), 1, + anon_sym_RBRACE, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [74991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2404), 1, + sym_block, + [75007] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1710), 1, + sym_block, + [75023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6643), 1, + anon_sym_LBRACE, + ACTIONS(7245), 1, + sym__newline, + STATE(736), 1, + sym_record_body, + STATE(3460), 1, + aux_sym_import_declaration_repeat1, + [75039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7247), 1, + sym__newline, + STATE(1712), 1, + sym_block, + STATE(3339), 1, + aux_sym_import_declaration_repeat1, + [75055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3721), 1, + sym__type_constant, + ACTIONS(7249), 2, + sym_integer, + sym_character, + [75069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2916), 1, + anon_sym_RPAREN, + ACTIONS(7251), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(7253), 1, + sym__newline, + STATE(2405), 1, + sym_block, + STATE(3495), 1, + aux_sym_import_declaration_repeat1, + [75101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7255), 1, + sym__newline, + STATE(2900), 1, + sym_block, + STATE(3322), 1, + aux_sym_import_declaration_repeat1, + [75117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7018), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2856), 1, + sym_block, + [75133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6513), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2334), 1, + sym_record_body, + [75149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6950), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_enum_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7257), 1, + sym__newline, + STATE(3459), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(7227), 2, sym_sink, sym_identifier, - [66606] = 3, + [75179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, - anon_sym_COLON_COLON, - ACTIONS(7471), 1, - anon_sym_EQ, - [66616] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1719), 1, + sym_block, + [75195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 2, - sym_sink, - sym_identifier, - [66624] = 3, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7259), 1, + sym__newline, + STATE(1645), 1, + sym_block, + STATE(3284), 1, + aux_sym_import_declaration_repeat1, + [75211] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1840), 1, + sym_block, + [75227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2922), 1, + anon_sym_RBRACK, + ACTIONS(7261), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5877), 1, + anon_sym_RBRACE, + ACTIONS(7263), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7265), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1578), 1, + sym_block, + [75291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7267), 1, + sym__newline, + STATE(2867), 1, + sym_block, + STATE(3331), 1, + aux_sym_import_declaration_repeat1, + [75307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6779), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1956), 1, + sym_record_body, + [75323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7269), 1, + sym__newline, + STATE(1582), 1, + sym_block, + STATE(3466), 1, + aux_sym_import_declaration_repeat1, + [75339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6509), 1, + anon_sym_RBRACE, + ACTIONS(7271), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2439), 1, + anon_sym_RBRACE, + ACTIONS(7273), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1723), 1, + sym_block, + [75387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + ACTIONS(7275), 1, + sym__newline, + STATE(2957), 1, + sym_string, + STATE(3563), 1, + aux_sym_import_declaration_repeat1, + [75403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + anon_sym_RPAREN, + ACTIONS(7277), 1, + anon_sym_else, + ACTIONS(7280), 1, + sym__newline, + STATE(3861), 1, + aux_sym_import_declaration_repeat1, + [75419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7283), 1, + sym__newline, + STATE(1583), 1, + sym_block, + STATE(3472), 1, + aux_sym_import_declaration_repeat1, + [75435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2934), 1, + anon_sym_RPAREN, + ACTIONS(7285), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7018), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2873), 1, + sym_block, + [75467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7287), 1, + sym__newline, + STATE(2874), 1, + sym_block, + STATE(3338), 1, + aux_sym_import_declaration_repeat1, + [75483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3005), 1, + sym_block, + [75499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + sym__newline, + STATE(1738), 1, + sym_block, + STATE(3285), 1, + aux_sym_import_declaration_repeat1, + [75515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2971), 1, + sym_string, + [75531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1584), 1, + sym_block, + [75547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_RPAREN, + ACTIONS(7291), 1, + anon_sym_else, + ACTIONS(7294), 1, + sym__newline, + STATE(3862), 1, + aux_sym_import_declaration_repeat1, + [75563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6583), 1, + anon_sym_RBRACE, + ACTIONS(7297), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1585), 1, + sym_block, + [75595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7018), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2882), 1, + sym_block, + [75611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + sym__newline, + STATE(1586), 1, + sym_block, + STATE(3476), 1, + aux_sym_import_declaration_repeat1, + [75627] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7301), 1, + sym__newline, + STATE(1587), 1, + sym_block, + STATE(3479), 1, + aux_sym_import_declaration_repeat1, + [75643] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7303), 1, + anon_sym_COMMA, + ACTIONS(7305), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2455), 1, + anon_sym_RBRACE, + ACTIONS(7307), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7309), 1, + sym__newline, + STATE(1747), 1, + sym_block, + STATE(3290), 1, + aux_sym_import_declaration_repeat1, + [75691] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7311), 1, + anon_sym_DQUOTE, + STATE(3355), 1, + aux_sym_string_repeat1, + ACTIONS(7313), 2, + sym_string_content, + sym_escape_sequence, + [75705] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7018), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2891), 1, + sym_block, + [75721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1713), 1, + sym_block, + [75737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1589), 1, + sym_block, + [75753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_RPAREN, + ACTIONS(7315), 1, + anon_sym_else, + ACTIONS(7318), 1, + sym__newline, + STATE(3863), 1, + aux_sym_import_declaration_repeat1, + [75769] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6603), 1, + anon_sym_RBRACE, + ACTIONS(7321), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75785] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7323), 1, + sym__newline, + STATE(1598), 1, + sym_block, + STATE(3494), 1, + aux_sym_import_declaration_repeat1, + [75801] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_RPAREN, + ACTIONS(7325), 1, + anon_sym_else, + ACTIONS(7328), 1, + sym__newline, + STATE(3864), 1, + aux_sym_import_declaration_repeat1, + [75817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6593), 1, + anon_sym_RBRACE, + ACTIONS(7331), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75833] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + anon_sym_RPAREN, + ACTIONS(7333), 1, + anon_sym_else, + ACTIONS(7336), 1, + sym__newline, + STATE(3865), 1, + aux_sym_import_declaration_repeat1, + [75849] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, + STATE(702), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [75865] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7339), 1, + anon_sym_DQUOTE, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7155), 2, + sym_string_content, + sym_escape_sequence, + [75879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 1, + anon_sym_RPAREN, + ACTIONS(7341), 1, + anon_sym_else, + ACTIONS(7344), 1, + sym__newline, + STATE(3866), 1, + aux_sym_import_declaration_repeat1, + [75895] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7347), 1, + anon_sym_DQUOTE, + STATE(3352), 1, + aux_sym_string_repeat1, + ACTIONS(7349), 2, + sym_string_content, + sym_escape_sequence, + [75909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7351), 1, + sym__newline, + STATE(1599), 1, + sym_block, + STATE(3496), 1, + aux_sym_import_declaration_repeat1, + [75925] = 4, + ACTIONS(7157), 1, + sym_comment, ACTIONS(7353), 1, - anon_sym_LPAREN, - STATE(1866), 1, - sym_parameter_list, - [66634] = 2, + anon_sym_DQUOTE, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7155), 2, + sym_string_content, + sym_escape_sequence, + [75939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 2, - sym_sink, - sym_identifier, - [66642] = 3, + ACTIONS(6779), 1, + anon_sym_LBRACE, + ACTIONS(7355), 1, + sym__newline, + STATE(2427), 1, + sym_record_body, + STATE(3360), 1, + aux_sym_import_declaration_repeat1, + [75955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1750), 1, + sym_block, + [75971] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7357), 1, + anon_sym_DQUOTE, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7155), 2, + sym_string_content, + sym_escape_sequence, + [75985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6513), 1, + anon_sym_LBRACE, + ACTIONS(7359), 1, + sym__newline, + STATE(2433), 1, + sym_record_body, + STATE(3369), 1, + aux_sym_import_declaration_repeat1, + [76001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7361), 1, + sym__newline, + STATE(1753), 1, + sym_block, + STATE(3307), 1, + aux_sym_import_declaration_repeat1, + [76017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7363), 1, + sym__newline, + STATE(1754), 1, + sym_block, + STATE(3311), 1, + aux_sym_import_declaration_repeat1, + [76033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, anon_sym_DASH, - ACTIONS(7479), 1, + STATE(3730), 1, + sym__type_constant, + ACTIONS(7365), 2, sym_integer, - [66652] = 2, + sym_character, + [76047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6779), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2430), 1, + sym_record_body, + [76063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6944), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6637), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2724), 1, + sym_enum_body, + [76095] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(7367), 1, + anon_sym_LBRACE, + STATE(2438), 1, + sym_initializer_list, + STATE(3915), 1, + sym_argument_list, + [76111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7369), 1, + sym__newline, + STATE(1603), 1, + sym_block, + STATE(3502), 1, + aux_sym_import_declaration_repeat1, + [76127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7371), 1, + anon_sym_COMMA, + ACTIONS(7373), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1729), 1, + sym_block, + [76159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7375), 1, + sym__newline, + STATE(1730), 1, + sym_block, + STATE(3582), 1, + aux_sym_import_declaration_repeat1, + [76175] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2972), 1, anon_sym_RPAREN, - [66659] = 2, + ACTIONS(7377), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6513), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2440), 1, + sym_record_body, + [76207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6944), 1, + anon_sym_LBRACE, + ACTIONS(7379), 1, + sym__newline, + STATE(274), 1, + sym_record_body, + STATE(3378), 1, + aux_sym_import_declaration_repeat1, + [76223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6637), 1, + anon_sym_LBRACE, + ACTIONS(7381), 1, + sym__newline, + STATE(2788), 1, + sym_enum_body, + STATE(3379), 1, + aux_sym_import_declaration_repeat1, + [76239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7229), 1, + anon_sym_COMMA, + ACTIONS(7383), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6643), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1950), 1, + sym_record_body, + [76271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2786), 1, + anon_sym_RPAREN, + ACTIONS(7385), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, + anon_sym_LBRACE, + ACTIONS(7387), 1, + sym__newline, + STATE(2958), 1, + sym_record_body, + STATE(3467), 1, + aux_sym_import_declaration_repeat1, + [76303] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2976), 1, + anon_sym_RPAREN, + ACTIONS(7389), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7391), 4, + anon_sym_COMMA, + anon_sym_RBRACE, sym_identifier, - [66666] = 2, + sym__newline, + [76329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6944), 1, + anon_sym_LBRACE, + STATE(276), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6637), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2804), 1, + sym_enum_body, + [76361] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6649), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym_enum_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1605), 1, + sym_block, + [76393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_RPAREN, + ACTIONS(7393), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76409] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1606), 1, + sym_block, + [76425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7395), 1, + sym__newline, + STATE(1608), 1, + sym_block, + STATE(3505), 1, + aux_sym_import_declaration_repeat1, + [76441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(191), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + sym__newline, + STATE(1733), 1, + sym_block, + STATE(3606), 1, + aux_sym_import_declaration_repeat1, + [76473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(3000), 1, + anon_sym_RPAREN, + ACTIONS(7399), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6643), 1, + anon_sym_LBRACE, + ACTIONS(7401), 1, + sym__newline, + STATE(704), 1, + sym_record_body, + STATE(3481), 1, + aux_sym_import_declaration_repeat1, + [76505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1610), 1, + sym_block, + [76521] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7403), 1, + sym__newline, + STATE(1611), 1, + sym_block, + STATE(3513), 1, + aux_sym_import_declaration_repeat1, + [76537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6631), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2725), 1, + sym_record_body, + [76553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6523), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + sym__newline, + STATE(2326), 1, + sym_enum_body, + STATE(3482), 1, + aux_sym_import_declaration_repeat1, + [76569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1613), 1, + sym_block, + [76585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7407), 1, + sym__newline, + STATE(1614), 1, + sym_block, + STATE(3516), 1, + aux_sym_import_declaration_repeat1, + [76601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7409), 1, + sym__newline, + STATE(1615), 1, + sym_block, + STATE(3518), 1, + aux_sym_import_declaration_repeat1, + [76617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7411), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym_LBRACE, + ACTIONS(7413), 1, + sym__newline, + STATE(2750), 1, + sym_record_body, + STATE(3399), 1, + aux_sym_import_declaration_repeat1, + [76649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7303), 1, + anon_sym_COMMA, + ACTIONS(7415), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6631), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2783), 1, + sym_record_body, + [76681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6507), 1, sym_identifier, - [66673] = 2, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [76697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 1, - anon_sym_PIPE, - [66680] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7417), 1, + anon_sym_COMMA, + ACTIONS(7419), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, - anon_sym_COLON, - [66687] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7421), 1, + anon_sym_COMMA, + ACTIONS(7423), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76729] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7195), 1, + anon_sym_COMMA, + ACTIONS(7425), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7231), 1, + anon_sym_COMMA, + ACTIONS(7427), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1746), 1, + sym_block, + [76793] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7429), 1, + anon_sym_DQUOTE, + STATE(3348), 1, + aux_sym_string_repeat1, + ACTIONS(7431), 2, + sym_string_content, + sym_escape_sequence, + [76807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1681), 1, + sym_block, + [76823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(7433), 1, + sym__newline, + STATE(3261), 1, + aux_sym_import_declaration_repeat1, + STATE(3720), 1, + sym_keyed_field_initializer, + [76839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2994), 1, + sym_block, + [76855] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3848), 1, + sym__type_constant, + ACTIONS(7435), 2, + sym_integer, + sym_character, + [76869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7437), 1, + sym__newline, + STATE(1748), 1, + sym_block, + STATE(3536), 1, + aux_sym_import_declaration_repeat1, + [76885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(3036), 1, + anon_sym_RBRACK, + ACTIONS(7231), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1616), 1, + sym_block, + [76917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2796), 1, + anon_sym_RBRACK, + ACTIONS(7303), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7303), 1, + anon_sym_COMMA, + ACTIONS(7439), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2957), 1, + sym_string, + [76965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2389), 1, + anon_sym_RBRACE, + ACTIONS(7441), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [76981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7443), 1, + sym__newline, + STATE(1703), 1, + sym_block, + STATE(3294), 1, + aux_sym_import_declaration_repeat1, + [76997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3683), 1, + sym__type_constant, + ACTIONS(7445), 2, + sym_integer, + sym_character, + [77011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3687), 1, + sym__type_constant, + ACTIONS(7447), 2, + sym_integer, + sym_character, + [77025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2413), 1, + sym_block, + [77041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1764), 1, + sym_block, + [77057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + anon_sym_RPAREN, + ACTIONS(7449), 1, + anon_sym_else, + ACTIONS(7451), 1, + sym__newline, + STATE(3632), 1, + aux_sym_import_declaration_repeat1, + [77073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, + anon_sym_LBRACE, + ACTIONS(7454), 1, + sym__newline, + STATE(1957), 1, + sym_record_body, + STATE(3313), 1, + aux_sym_import_declaration_repeat1, + [77089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3761), 1, + sym__type_constant, + ACTIONS(7456), 2, + sym_integer, + sym_character, + [77103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3763), 1, + sym__type_constant, + ACTIONS(7458), 2, + sym_integer, + sym_character, + [77117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2982), 1, + sym_block, + [77133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7460), 1, + sym__newline, + STATE(1805), 1, + sym_block, + STATE(3251), 1, + aux_sym_import_declaration_repeat1, + [77149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2976), 1, + sym_block, + [77165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7231), 1, + anon_sym_COMMA, + ACTIONS(7462), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7464), 1, + sym__newline, + STATE(1621), 1, + sym_block, + STATE(3545), 1, + aux_sym_import_declaration_repeat1, + [77197] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_RPAREN, + ACTIONS(7466), 1, + anon_sym_else, + ACTIONS(7468), 1, + sym__newline, + STATE(3640), 1, + aux_sym_import_declaration_repeat1, + [77213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_RPAREN, + ACTIONS(7471), 1, + anon_sym_else, + ACTIONS(7473), 1, + sym__newline, + STATE(3642), 1, + aux_sym_import_declaration_repeat1, + [77229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + sym__newline, + ACTIONS(7476), 1, + anon_sym_PIPE2, + STATE(1877), 1, + aux_sym_import_declaration_repeat1, + STATE(3929), 1, + sym__for_capture_bar, + [77245] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1685), 1, + sym_block, + [77261] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7478), 1, + sym__newline, + STATE(1765), 1, + sym_block, + STATE(3327), 1, + aux_sym_import_declaration_repeat1, + [77277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7417), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7417), 1, + anon_sym_COMMA, + ACTIONS(7482), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77309] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7484), 1, + sym__newline, + STATE(1770), 1, + sym_block, + STATE(3330), 1, + aux_sym_import_declaration_repeat1, + [77325] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_RPAREN, + ACTIONS(7486), 1, + anon_sym_else, + ACTIONS(7488), 1, + sym__newline, + STATE(3644), 1, + aux_sym_import_declaration_repeat1, + [77341] = 4, + ACTIONS(7157), 1, + sym_comment, ACTIONS(7491), 1, - anon_sym_COLON, - [66694] = 2, + anon_sym_DQUOTE, + STATE(3228), 1, + aux_sym_string_repeat1, + ACTIONS(7493), 2, + sym_string_content, + sym_escape_sequence, + [77355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7493), 1, - sym_identifier, - [66701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7495), 1, + ACTIONS(4541), 1, anon_sym_RPAREN, - [66708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7355), 1, - sym_identifier, - [66715] = 2, - ACTIONS(3), 1, - sym_comment, + ACTIONS(7495), 1, + anon_sym_else, ACTIONS(7497), 1, - anon_sym_PIPE, - [66722] = 2, + sym__newline, + STATE(3645), 1, + aux_sym_import_declaration_repeat1, + [77371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, - anon_sym_COLON, - [66729] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7421), 1, + anon_sym_COMMA, + ACTIONS(7500), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_PIPE, - [66736] = 2, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7502), 1, + sym__newline, + STATE(1623), 1, + sym_block, + STATE(3550), 1, + aux_sym_import_declaration_repeat1, + [77403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, - anon_sym_COLON, - [66743] = 2, + ACTIONS(4472), 1, + anon_sym_RPAREN, + ACTIONS(7504), 1, + anon_sym_else, + ACTIONS(7506), 1, + sym__newline, + STATE(3650), 1, + aux_sym_import_declaration_repeat1, + [77419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, - anon_sym_COLON, - [66750] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1624), 1, + sym_block, + [77435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 1, - anon_sym_COLON, - [66757] = 2, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2979), 1, + sym_block, + [77451] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7509), 1, - anon_sym_COLON, - [66764] = 2, + sym__newline, + STATE(1625), 1, + sym_block, + STATE(3555), 1, + aux_sym_import_declaration_repeat1, + [77467] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2967), 1, + sym_string, + [77483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2453), 1, + anon_sym_RBRACE, ACTIONS(7511), 1, - anon_sym_COLON, - [66771] = 2, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77499] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1704), 1, + sym_block, + [77531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1626), 1, + sym_block, + [77547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, ACTIONS(7513), 1, - anon_sym_COLON, - [66778] = 2, + sym__newline, + STATE(1672), 1, + sym_block, + STATE(3354), 1, + aux_sym_import_declaration_repeat1, + [77563] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(7189), 1, + anon_sym_DQUOTE, ACTIONS(7515), 1, - sym_identifier, - [66785] = 2, + sym__newline, + STATE(2963), 1, + sym_string, + STATE(3450), 1, + aux_sym_import_declaration_repeat1, + [77579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7517), 1, - anon_sym_COLON, - [66792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7519), 1, - sym_identifier, - [66799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7521), 1, - anon_sym_COLON, - [66806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7523), 1, - anon_sym_COLON, - [66813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7525), 1, - anon_sym_COLON, - [66820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7527), 1, - anon_sym_COLON, - [66827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7529), 1, - anon_sym_COLON, - [66834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7531), 1, - sym_identifier, - [66841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7533), 1, + ACTIONS(7517), 4, + anon_sym_COMMA, anon_sym_PIPE, - [66848] = 2, + anon_sym_COLON, + sym__newline, + [77589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2513), 1, + anon_sym_RBRACE, + ACTIONS(7519), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77605] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(7521), 2, + sym_sink, + sym_identifier, + [77619] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6643), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7523), 1, + sym__newline, + STATE(1619), 1, + sym_block, + STATE(3366), 1, + aux_sym_import_declaration_repeat1, + [77651] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + sym__newline, + ACTIONS(7525), 1, + anon_sym_PIPE2, + STATE(1877), 1, + aux_sym_import_declaration_repeat1, + STATE(3913), 1, + sym__for_capture_bar, + [77667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7527), 1, + sym__newline, + STATE(1773), 1, + sym_block, + STATE(3596), 1, + aux_sym_import_declaration_repeat1, + [77683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1632), 1, + sym_block, + [77699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6537), 1, + anon_sym_LBRACE, + STATE(725), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1633), 1, + sym_block, + [77731] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6779), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2953), 1, + sym_record_body, + [77747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1825), 1, + sym_block, + [77763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7529), 1, + sym__newline, + STATE(1826), 1, + sym_block, + STATE(3556), 1, + aux_sym_import_declaration_repeat1, + [77779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1682), 1, + sym_block, + [77795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7531), 1, + sym__newline, + STATE(1828), 1, + sym_block, + STATE(3569), 1, + aux_sym_import_declaration_repeat1, + [77811] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1638), 1, + sym_block, + [77827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7533), 1, + sym__newline, + STATE(1639), 1, + sym_block, + STATE(3586), 1, + aux_sym_import_declaration_repeat1, + [77843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + ACTIONS(7535), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_initializer_list, + STATE(3919), 1, + sym_argument_list, + [77859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2818), 1, + anon_sym_RPAREN, + ACTIONS(7537), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1640), 1, + sym_block, + [77891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 1, + anon_sym_LBRACE, + ACTIONS(7539), 1, + sym__newline, + STATE(208), 1, + sym_block, + STATE(3532), 1, + aux_sym_import_declaration_repeat1, + [77907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, + sym__newline, + STATE(1830), 1, + sym_block, + STATE(3584), 1, + aux_sym_import_declaration_repeat1, + [77923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1641), 1, + sym_block, + [77939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(209), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6643), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_record_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [77971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6523), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2335), 1, + sym_enum_body, + [77987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(7543), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1832), 1, + sym_block, + [78019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_LBRACE, + ACTIONS(7545), 1, + sym__newline, + STATE(727), 1, + sym_block, + STATE(3452), 1, + aux_sym_import_declaration_repeat1, + [78035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7547), 1, + sym__newline, + STATE(1792), 1, + sym_block, + STATE(3468), 1, + aux_sym_import_declaration_repeat1, + [78051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7549), 1, + sym__newline, + STATE(1783), 1, + sym_block, + STATE(3340), 1, + aux_sym_import_declaration_repeat1, + [78067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7551), 1, + sym__newline, + STATE(1838), 1, + sym_block, + STATE(3609), 1, + aux_sym_import_declaration_repeat1, + [78083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2377), 1, + sym_block, + [78099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6643), 1, + anon_sym_LBRACE, + ACTIONS(7553), 1, + sym__newline, + STATE(1957), 1, + sym_record_body, + STATE(3543), 1, + aux_sym_import_declaration_repeat1, + [78115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2824), 1, + anon_sym_RBRACK, + ACTIONS(7555), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6649), 1, + anon_sym_LBRACE, + ACTIONS(7557), 1, + sym__newline, + STATE(705), 1, + sym_enum_body, + STATE(3544), 1, + aux_sym_import_declaration_repeat1, + [78147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7559), 1, + sym__newline, + STATE(1643), 1, + sym_block, + STATE(3607), 1, + aux_sym_import_declaration_repeat1, + [78163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1644), 1, + sym_block, + [78179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2415), 1, + sym_block, + [78195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1646), 1, + sym_block, + [78211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7561), 1, + sym__newline, + STATE(1647), 1, + sym_block, + STATE(3408), 1, + aux_sym_import_declaration_repeat1, + [78227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7563), 1, + sym__newline, + STATE(1648), 1, + sym_block, + STATE(3470), 1, + aux_sym_import_declaration_repeat1, + [78243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(7565), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2645), 1, + anon_sym_RBRACK, + ACTIONS(7421), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7421), 1, + anon_sym_COMMA, + ACTIONS(7567), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1649), 1, + sym_block, + [78307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7569), 1, + sym__newline, + STATE(1650), 1, + sym_block, + STATE(3436), 1, + aux_sym_import_declaration_repeat1, + [78323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7195), 1, + anon_sym_COMMA, + ACTIONS(7571), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1656), 1, + sym_block, + [78355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, + sym__newline, + STATE(1657), 1, + sym_block, + STATE(3553), 1, + aux_sym_import_declaration_repeat1, + [78371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(7575), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2978), 1, + sym_block, + [78403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(7577), 1, + sym__newline, + STATE(3400), 1, + aux_sym_import_declaration_repeat1, + STATE(3803), 1, + sym_keyed_field_initializer, + [78419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6932), 1, + anon_sym_RBRACE, + ACTIONS(7579), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6779), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1950), 1, + sym_record_body, + [78451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2555), 1, + anon_sym_RPAREN, + ACTIONS(7217), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1658), 1, + sym_block, + [78483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + sym__newline, + STATE(1659), 1, + sym_block, + STATE(3237), 1, + aux_sym_import_declaration_repeat1, + [78499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 1, + anon_sym_LBRACE, + ACTIONS(7583), 1, + sym__newline, + STATE(227), 1, + sym_block, + STATE(3581), 1, + aux_sym_import_declaration_repeat1, + [78515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1660), 1, + sym_block, + [78531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6808), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_enum_body, + [78547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1661), 1, + sym_block, + [78563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7585), 1, + sym__newline, + STATE(1664), 1, + sym_block, + STATE(3288), 1, + aux_sym_import_declaration_repeat1, + [78579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(7587), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + ACTIONS(7589), 1, + sym__newline, + STATE(2954), 1, + sym_string, + STATE(3417), 1, + aux_sym_import_declaration_repeat1, + [78611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1775), 1, + sym_block, + [78627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3693), 1, + sym__type_constant, + ACTIONS(7591), 2, + sym_integer, + sym_character, + [78641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(7593), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1705), 1, + sym_block, + [78673] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_DQUOTE, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7597), 2, + sym_string_content, + sym_escape_sequence, + [78687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3723), 1, + sym__type_constant, + ACTIONS(7600), 2, + sym_integer, + sym_character, + [78701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3726), 1, + sym__type_constant, + ACTIONS(7602), 2, + sym_integer, + sym_character, + [78715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2659), 1, + anon_sym_RPAREN, + ACTIONS(7604), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78731] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2321), 1, + anon_sym_RBRACE, + ACTIONS(7606), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2838), 1, + anon_sym_RPAREN, + ACTIONS(7608), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 1, + anon_sym_LBRACE, + ACTIONS(7610), 1, + sym__newline, + STATE(230), 1, + sym_block, + STATE(3595), 1, + aux_sym_import_declaration_repeat1, + [78795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3666), 1, + sym__type_constant, + ACTIONS(7612), 2, + sym_integer, + sym_character, + [78809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3667), 1, + sym__type_constant, + ACTIONS(7614), 2, + sym_integer, + sym_character, + [78823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1590), 1, + sym_block, + [78839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7616), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [78849] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(7618), 1, + sym__newline, + STATE(2390), 1, + sym_block, + STATE(3293), 1, + aux_sym_import_declaration_repeat1, + [78865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6808), 1, + anon_sym_LBRACE, + ACTIONS(7620), 1, + sym__newline, + STATE(1948), 1, + sym_enum_body, + STATE(3517), 1, + aux_sym_import_declaration_repeat1, + [78881] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + sym__newline, + ACTIONS(7622), 1, + anon_sym_PIPE2, + STATE(1877), 1, + aux_sym_import_declaration_repeat1, + STATE(3918), 1, + sym__for_capture_bar, + [78897] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6260), 1, + anon_sym_RPAREN, + ACTIONS(7624), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2391), 1, + sym_block, + [78929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6643), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1956), 1, + sym_record_body, + [78945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6649), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym_enum_body, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [78961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1666), 1, + sym_block, + [78977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7626), 1, + sym__newline, + STATE(1670), 1, + sym_block, + STATE(3453), 1, + aux_sym_import_declaration_repeat1, + [78993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7628), 1, + sym__newline, + STATE(1777), 1, + sym_block, + STATE(3238), 1, + aux_sym_import_declaration_repeat1, + [79009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7630), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [79019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + sym__newline, + STATE(718), 1, + sym_block, + STATE(3403), 1, + aux_sym_import_declaration_repeat1, + [79035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1676), 1, + sym_block, + [79051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7634), 1, + sym__newline, + STATE(1667), 1, + sym_block, + STATE(3592), 1, + aux_sym_import_declaration_repeat1, + [79067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3699), 1, + sym__type_constant, + ACTIONS(7636), 2, + sym_integer, + sym_character, + [79081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1690), 1, + sym_block, + [79097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7638), 1, + sym__newline, + STATE(1691), 1, + sym_block, + STATE(3260), 1, + aux_sym_import_declaration_repeat1, + [79113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1677), 1, + sym_block, + [79129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1769), 1, + sym_block, + [79145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1811), 1, + sym_block, + [79161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6802), 1, + anon_sym_RBRACE, + ACTIONS(7640), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3658), 1, + sym__type_constant, + ACTIONS(7642), 2, + sym_integer, + sym_character, + [79191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7644), 1, + sym__newline, + STATE(1812), 1, + sym_block, + STATE(3265), 1, + aux_sym_import_declaration_repeat1, + [79207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7646), 1, + sym__newline, + STATE(1678), 1, + sym_block, + STATE(3525), 1, + aux_sym_import_declaration_repeat1, + [79223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2665), 1, + anon_sym_RBRACK, + ACTIONS(7648), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7189), 1, + anon_sym_DQUOTE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(2981), 1, + sym_string, + [79255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3627), 1, + sym__type_constant, + ACTIONS(7650), 2, + sym_integer, + sym_character, + [79269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3629), 1, + sym__type_constant, + ACTIONS(7652), 2, + sym_integer, + sym_character, + [79283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3775), 1, + sym__type_constant, + ACTIONS(7654), 2, + sym_integer, + sym_character, + [79297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3776), 1, + sym__type_constant, + ACTIONS(7656), 2, + sym_integer, + sym_character, + [79311] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7658), 1, + sym__newline, + STATE(1814), 1, + sym_block, + STATE(3269), 1, + aux_sym_import_declaration_repeat1, + [79327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1781), 1, + sym_block, + [79343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7660), 1, + sym__newline, + STATE(1807), 1, + sym_block, + STATE(3244), 1, + aux_sym_import_declaration_repeat1, + [79359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3712), 1, + sym__type_constant, + ACTIONS(7662), 2, + sym_integer, + sym_character, + [79373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3745), 1, + sym__type_constant, + ACTIONS(7664), 2, + sym_integer, + sym_character, + [79387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3747), 1, + sym__type_constant, + ACTIONS(7666), 2, + sym_integer, + sym_character, + [79401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3768), 1, + sym__type_constant, + ACTIONS(7668), 2, + sym_integer, + sym_character, + [79415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3769), 1, + sym__type_constant, + ACTIONS(7670), 2, + sym_integer, + sym_character, + [79429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3807), 1, + sym__type_constant, + ACTIONS(7672), 2, + sym_integer, + sym_character, + [79443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3811), 1, + sym__type_constant, + ACTIONS(7674), 2, + sym_integer, + sym_character, + [79457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3813), 1, + sym__type_constant, + ACTIONS(7676), 2, + sym_integer, + sym_character, + [79471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3820), 1, + sym__type_constant, + ACTIONS(7678), 2, + sym_integer, + sym_character, + [79485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3829), 1, + sym__type_constant, + ACTIONS(7680), 2, + sym_integer, + sym_character, + [79499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(245), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1794), 1, + sym_block, + [79531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7684), 1, + anon_sym_COMMA, + ACTIONS(7682), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [79543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1581), 1, + sym_block, + [79559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7686), 1, + sym__newline, + STATE(1592), 1, + sym_block, + STATE(3289), 1, + aux_sym_import_declaration_repeat1, + [79575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1679), 1, + sym_block, + [79591] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6273), 1, + anon_sym_RPAREN, + ACTIONS(7688), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79607] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2363), 1, + anon_sym_RBRACE, + ACTIONS(7690), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, + sym__newline, + STATE(1594), 1, + sym_block, + STATE(3406), 1, + aux_sym_import_declaration_repeat1, + [79639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2537), 1, + anon_sym_RBRACE, + ACTIONS(7694), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2317), 1, + anon_sym_RBRACE, + ACTIONS(7696), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1652), 1, + sym_block, + [79687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2794), 1, + anon_sym_RBRACK, + ACTIONS(7698), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79703] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5984), 1, + anon_sym_RBRACE, + ACTIONS(7700), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_block, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1653), 1, + sym_block, + [79751] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7702), 1, + anon_sym_DQUOTE, + STATE(3602), 1, + aux_sym_string_repeat1, + ACTIONS(7704), 2, + sym_string_content, + sym_escape_sequence, + [79765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7706), 1, + sym__newline, + STATE(1597), 1, + sym_block, + STATE(3522), 1, + aux_sym_import_declaration_repeat1, + [79781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1841), 1, + sym_block, + [79797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 1, + anon_sym_DASH, + STATE(3619), 1, + sym__type_constant, + ACTIONS(7708), 2, + sym_integer, + sym_character, + [79811] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6844), 1, + anon_sym_RBRACE, + ACTIONS(7710), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [79827] = 4, + ACTIONS(7157), 1, + sym_comment, + ACTIONS(7712), 1, + anon_sym_DQUOTE, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(7155), 2, + sym_string_content, + sym_escape_sequence, + [79841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1706), 1, + sym_block, + [79857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7714), 1, + sym__newline, + STATE(1631), 1, + sym_block, + STATE(3557), 1, + aux_sym_import_declaration_repeat1, + [79873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6944), 1, + anon_sym_LBRACE, + ACTIONS(7716), 1, + sym__newline, + STATE(162), 1, + sym_record_body, + STATE(3253), 1, + aux_sym_import_declaration_repeat1, + [79889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1798), 1, + sym_block, + [79905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1680), 1, + sym_block, + [79921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + sym__newline, + STATE(2402), 1, + sym_block, + STATE(3422), 1, + aux_sym_import_declaration_repeat1, + [79937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1635), 1, + sym_block, + [79953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7720), 1, + sym__newline, + STATE(1636), 1, + sym_block, + STATE(3599), 1, + aux_sym_import_declaration_repeat1, + [79969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + sym__newline, + STATE(1799), 1, + sym_block, + STATE(3484), 1, + aux_sym_import_declaration_repeat1, + [79985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5355), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + STATE(1622), 1, + sym_block, + [80001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7724), 1, + anon_sym_RPAREN, + ACTIONS(7726), 1, + sym__newline, + STATE(3625), 1, + aux_sym_import_declaration_repeat1, + [80014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7728), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [80023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7730), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7732), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7734), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80075] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7736), 1, + anon_sym_RBRACK, + ACTIONS(7738), 1, + sym__newline, + STATE(3830), 1, + aux_sym_import_declaration_repeat1, + [80088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7740), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [80097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7742), 1, + anon_sym_RPAREN, + ACTIONS(7744), 1, + sym__newline, + STATE(3851), 1, + aux_sym_import_declaration_repeat1, + [80110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7746), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7748), 1, + anon_sym_COMMA, + ACTIONS(7750), 1, + anon_sym_PIPE2, + STATE(3134), 1, + sym__for_capture_bar, + [80136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7752), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7754), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2449), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7756), 1, + anon_sym_RBRACK, + ACTIONS(7758), 1, + sym__newline, + STATE(3771), 1, + aux_sym_import_declaration_repeat1, + [80188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7760), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7762), 1, + anon_sym_RBRACK, + ACTIONS(7764), 1, + sym__newline, + STATE(3774), 1, + aux_sym_import_declaration_repeat1, + [80214] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7766), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6509), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7768), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7770), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, + anon_sym_RPAREN, + ACTIONS(7774), 1, + sym__newline, + STATE(3680), 1, + aux_sym_import_declaration_repeat1, + [80279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7776), 1, + anon_sym_COMMA, + ACTIONS(7778), 1, + anon_sym_PIPE2, + STATE(3194), 1, + sym__for_capture_bar, + [80292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6583), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7780), 1, + anon_sym_RBRACK, + ACTIONS(7782), 1, + sym__newline, + STATE(3857), 1, + aux_sym_import_declaration_repeat1, + [80318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7784), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7786), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7788), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7790), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [80366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7792), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2810), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7794), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7796), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7798), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7800), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7802), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7804), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7806), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7808), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_AT, + ACTIONS(7810), 2, + sym_sink, + sym_identifier, + [80507] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5618), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7812), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5736), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7724), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7814), 1, + anon_sym_COMMA, + ACTIONS(7816), 1, + anon_sym_PIPE2, + STATE(3131), 1, + sym__for_capture_bar, + [80572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7818), 1, + anon_sym_RBRACK, + ACTIONS(7820), 1, + sym__newline, + STATE(3628), 1, + aux_sym_import_declaration_repeat1, + [80585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7822), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7824), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7826), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7830), 1, + anon_sym_AT, + ACTIONS(7828), 2, + sym_sink, + sym_identifier, + [80635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7832), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7834), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_COMMA, + ACTIONS(7838), 1, + anon_sym_PIPE2, + STATE(3103), 1, + sym__for_capture_bar, + [80674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 1, + anon_sym_RBRACK, + ACTIONS(7842), 1, + sym__newline, + STATE(3762), 1, + aux_sym_import_declaration_repeat1, + [80687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 1, + anon_sym_RBRACK, + ACTIONS(7846), 1, + sym__newline, + STATE(3764), 1, + aux_sym_import_declaration_repeat1, + [80700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7800), 1, + anon_sym_RPAREN, + ACTIONS(7848), 1, + sym__newline, + STATE(3670), 1, + aux_sym_import_declaration_repeat1, + [80713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7850), 1, + anon_sym_RPAREN, + ACTIONS(7852), 1, + sym__newline, + STATE(3656), 1, + aux_sym_import_declaration_repeat1, + [80726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7854), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7856), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7858), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7860), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6593), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7862), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7862), 1, + anon_sym_RPAREN, + ACTIONS(7864), 1, + sym__newline, + STATE(3799), 1, + aux_sym_import_declaration_repeat1, + [80817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7866), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7868), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7870), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7872), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7874), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5469), 1, + anon_sym_COLON, + ACTIONS(6293), 1, + anon_sym_PIPE, + STATE(4040), 1, + sym_match_capture, + [80895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym_RBRACK, + ACTIONS(7878), 1, + sym__newline, + STATE(3758), 1, + aux_sym_import_declaration_repeat1, + [80908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7872), 1, + anon_sym_RPAREN, + ACTIONS(7880), 1, + sym__newline, + STATE(3708), 1, + aux_sym_import_declaration_repeat1, + [80921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7882), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7884), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_RBRACK, + ACTIONS(7888), 1, + sym__newline, + STATE(3760), 1, + aux_sym_import_declaration_repeat1, + [80960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_RPAREN, + ACTIONS(7890), 1, + sym__newline, + STATE(3822), 1, + aux_sym_import_declaration_repeat1, + [80973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7892), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7894), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [80999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7896), 1, + anon_sym_RPAREN, + ACTIONS(7898), 1, + sym__newline, + STATE(3834), 1, + aux_sym_import_declaration_repeat1, + [81012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7900), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7902), 1, + anon_sym_RBRACK, + ACTIONS(7904), 1, + sym__newline, + STATE(3724), 1, + aux_sym_import_declaration_repeat1, + [81038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2517), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7906), 1, + anon_sym_COMMA, + ACTIONS(7908), 1, + anon_sym_PIPE2, + STATE(3212), 1, + sym__for_capture_bar, + [81064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7910), 1, + anon_sym_COMMA, + ACTIONS(7912), 1, + anon_sym_PIPE2, + STATE(3214), 1, + sym__for_capture_bar, + [81077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7914), 1, + anon_sym_RPAREN, + ACTIONS(7916), 1, + sym__newline, + STATE(3709), 1, + aux_sym_import_declaration_repeat1, + [81090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7918), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_RBRACK, + ACTIONS(7922), 1, + sym__newline, + STATE(3651), 1, + aux_sym_import_declaration_repeat1, + [81116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2912), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7924), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7926), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7928), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5844), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2409), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7930), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7932), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7934), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81246] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7936), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7934), 1, + anon_sym_RPAREN, + ACTIONS(7938), 1, + sym__newline, + STATE(3744), 1, + aux_sym_import_declaration_repeat1, + [81272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7940), 1, + anon_sym_RBRACK, + ACTIONS(7942), 1, + sym__newline, + STATE(3746), 1, + aux_sym_import_declaration_repeat1, + [81285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6040), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7944), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7946), 1, + anon_sym_RPAREN, + ACTIONS(7948), 1, + sym__newline, + STATE(3840), 1, + aux_sym_import_declaration_repeat1, + [81324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7950), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7952), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5707), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(3066), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [81385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_RBRACK, + ACTIONS(7958), 1, + sym__newline, + STATE(3789), 1, + aux_sym_import_declaration_repeat1, + [81398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7960), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7962), 1, + anon_sym_RBRACK, + ACTIONS(7964), 1, + sym__newline, + STATE(3660), 1, + aux_sym_import_declaration_repeat1, + [81424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7966), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7968), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7970), 1, + anon_sym_RBRACK, + ACTIONS(7972), 1, + sym__newline, + STATE(3661), 1, + aux_sym_import_declaration_repeat1, + [81463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7974), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7976), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5964), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7978), 1, + anon_sym_RBRACK, + ACTIONS(7980), 1, + sym__newline, + STATE(3648), 1, + aux_sym_import_declaration_repeat1, + [81515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7982), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2655), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5899), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [81550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7984), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7986), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7988), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7990), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7992), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7994), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7996), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(7998), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8000), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8002), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8004), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8006), 1, + anon_sym_RBRACK, + ACTIONS(8008), 1, + sym__newline, + STATE(3766), 1, + aux_sym_import_declaration_repeat1, + [81706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8010), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8012), 1, + anon_sym_RBRACK, + ACTIONS(8014), 1, + sym__newline, + STATE(3767), 1, + aux_sym_import_declaration_repeat1, + [81732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8016), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8018), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8020), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8022), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8024), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8026), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8028), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81823] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8030), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8032), 1, + anon_sym_RPAREN, + ACTIONS(8034), 1, + sym__newline, + STATE(3675), 1, + aux_sym_import_declaration_repeat1, + [81849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8036), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8038), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8040), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8042), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8044), 1, + anon_sym_RBRACK, + ACTIONS(8046), 1, + sym__newline, + STATE(3622), 1, + aux_sym_import_declaration_repeat1, + [81914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8048), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8050), 1, + anon_sym_RBRACK, + ACTIONS(8052), 1, + sym__newline, + STATE(3673), 1, + aux_sym_import_declaration_repeat1, + [81940] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8054), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8056), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8058), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8060), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [81992] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8062), 1, + anon_sym_RBRACK, + ACTIONS(8064), 1, + sym__newline, + STATE(3779), 1, + aux_sym_import_declaration_repeat1, + [82005] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8066), 1, + anon_sym_RBRACK, + ACTIONS(8068), 1, + sym__newline, + STATE(3780), 1, + aux_sym_import_declaration_repeat1, + [82018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8070), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8072), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2313), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8074), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8076), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8078), 1, + anon_sym_RBRACK, + ACTIONS(8080), 1, + sym__newline, + STATE(3616), 1, + aux_sym_import_declaration_repeat1, + [82096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8082), 1, + anon_sym_RBRACK, + ACTIONS(8084), 1, + sym__newline, + STATE(3617), 1, + aux_sym_import_declaration_repeat1, + [82109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7008), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [82118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8086), 1, + anon_sym_LBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8088), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8090), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8092), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2445), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8094), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8096), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [82205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8098), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8100), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82231] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8102), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82244] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2427), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82257] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8104), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8106), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [82279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8108), 1, + anon_sym_COMMA, + ACTIONS(8110), 1, + anon_sym_PIPE2, + STATE(3138), 1, + sym__for_capture_bar, + [82292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8112), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8114), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8116), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8118), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8120), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8122), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82370] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(6802), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8124), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82396] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5952), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8126), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8128), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6614), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [82444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8130), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [82479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_RBRACK, + ACTIONS(8136), 1, + sym__newline, + STATE(3812), 1, + aux_sym_import_declaration_repeat1, + [82492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8138), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8140), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8142), 1, + anon_sym_COMMA, + ACTIONS(8144), 1, + anon_sym_PIPE2, + STATE(3172), 1, + sym__for_capture_bar, + [82531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + anon_sym_RBRACK, + ACTIONS(8148), 1, + sym__newline, + STATE(3817), 1, + aux_sym_import_declaration_repeat1, + [82544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8150), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8152), 1, + anon_sym_RBRACK, + ACTIONS(8154), 1, + sym__newline, + STATE(3819), 1, + aux_sym_import_declaration_repeat1, + [82570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8156), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8158), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5877), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [82631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8162), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8164), 1, + anon_sym_RBRACK, + ACTIONS(8166), 1, + sym__newline, + STATE(3831), 1, + aux_sym_import_declaration_repeat1, + [82657] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8168), 1, + anon_sym_RPAREN, + ACTIONS(8170), 1, + sym__newline, + STATE(3686), 1, + aux_sym_import_declaration_repeat1, + [82670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8172), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82683] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8174), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8176), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8178), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8180), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82735] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8182), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8184), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82761] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8186), 1, + anon_sym_RBRACK, + ACTIONS(8188), 1, + sym__newline, + STATE(3832), 1, + aux_sym_import_declaration_repeat1, + [82774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8190), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8192), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8194), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8196), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8198), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8198), 1, + anon_sym_RPAREN, + ACTIONS(8200), 1, + sym__newline, + STATE(3853), 1, + aux_sym_import_declaration_repeat1, + [82852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8202), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5984), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8204), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [82887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8206), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82900] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8208), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(5703), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2335), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8210), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8212), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8214), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [82978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8208), 1, + anon_sym_RPAREN, + ACTIONS(8216), 1, + sym__newline, + STATE(3681), 1, + aux_sym_import_declaration_repeat1, + [82991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(2531), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83004] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8218), 1, + anon_sym_RBRACK, + ACTIONS(8220), 1, + sym__newline, + STATE(3685), 1, + aux_sym_import_declaration_repeat1, + [83017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8222), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8224), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8226), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8226), 1, + anon_sym_RPAREN, + ACTIONS(8228), 1, + sym__newline, + STATE(3633), 1, + aux_sym_import_declaration_repeat1, + [83069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8230), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8232), 1, + anon_sym_COMMA, + ACTIONS(8234), 1, + anon_sym_PIPE2, + STATE(3164), 1, + sym__for_capture_bar, + [83095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8236), 1, + anon_sym_RBRACE, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8238), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8240), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8242), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8244), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [83156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5867), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [83165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8246), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8248), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8250), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8252), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8254), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8256), 1, + anon_sym_else, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8258), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8260), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8262), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + sym__newline, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(917), 1, + aux_sym_import_declaration_repeat1, + [83295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8266), 1, + anon_sym_RPAREN, + ACTIONS(8268), 1, + sym__newline, + STATE(3647), 1, + aux_sym_import_declaration_repeat1, + [83308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8270), 2, + sym_sink, + sym_identifier, + [83316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8272), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + anon_sym_EQ, + [83326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8276), 2, + sym_sink, + sym_identifier, + [83334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7169), 1, + anon_sym_LBRACE, + STATE(2854), 1, + sym_initializer_list, + [83344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8278), 2, + sym_integer, + sym_character, + [83352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2021), 1, + sym_parameter_list, + [83362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 2, + sym_identifier, + sym_integer, + [83370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2040), 1, + sym_parameter_list, + [83380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_AT, + [83390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8288), 1, + anon_sym_COLON_COLON, + ACTIONS(8290), 1, + anon_sym_EQ, + [83400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8292), 1, + anon_sym_PIPE2, + STATE(3085), 1, + sym__for_capture_bar, + [83410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8294), 1, + anon_sym_COMMA, + ACTIONS(8296), 1, + anon_sym_PIPE, + [83420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8298), 1, + anon_sym_COLON_COLON, + ACTIONS(8300), 1, + anon_sym_EQ, + [83430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8302), 1, + anon_sym_PIPE2, + STATE(3207), 1, + sym__for_capture_bar, + [83440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2047), 1, + sym_parameter_list, + [83450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8304), 1, + anon_sym_COLON_COLON, + ACTIONS(8306), 1, + anon_sym_EQ, + [83460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8308), 2, + sym_sink, + sym_identifier, + [83468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8310), 1, + anon_sym_PIPE2, + STATE(3137), 1, + sym__for_capture_bar, + [83478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym_PIPE2, + STATE(3218), 1, + sym__for_capture_bar, + [83488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8314), 1, + anon_sym_DASH, + ACTIONS(8316), 1, + sym_integer, + [83498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7032), 2, + sym_sink, + sym_identifier, + [83506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + sym_integer, + ACTIONS(8318), 1, + sym_identifier, + [83516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_LPAREN, + STATE(689), 1, + sym_argument_list, + [83526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_LPAREN, + STATE(2365), 1, + sym_argument_list, + [83536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2025), 1, + sym_parameter_list, + [83546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8320), 2, + anon_sym_RBRACK, + sym__newline, + [83554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8322), 1, + anon_sym_PIPE2, + STATE(3165), 1, + sym__for_capture_bar, + [83564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_PIPE, + [83574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8328), 2, + sym_sink, + sym_identifier, + [83582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8330), 2, + sym_sink, + sym_identifier, + [83590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + sym_integer, + ACTIONS(8332), 1, + sym_identifier, + [83600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_parameter_list, + [83610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_parameter_list, + [83620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8334), 1, + sym_identifier, + ACTIONS(8336), 1, + anon_sym_AT, + [83630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8338), 1, + anon_sym_COLON_COLON, + ACTIONS(8340), 1, + anon_sym_EQ, + [83640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8342), 2, + sym_sink, + sym_identifier, + [83648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8344), 1, + anon_sym_PIPE, + STATE(4009), 1, + sym_expand_match_capture, + [83658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8346), 2, + sym_identifier, + sym_integer, + [83666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8348), 1, + anon_sym_COLON_COLON, + ACTIONS(8350), 1, + anon_sym_EQ, + [83676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8352), 1, + anon_sym_COLON_COLON, + ACTIONS(8354), 1, + anon_sym_EQ, + [83686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8356), 2, + sym_identifier, + sym_integer, + [83694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8358), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_AT, + [83704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, + anon_sym_PIPE2, + STATE(3087), 1, + sym__for_capture_bar, + [83714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7367), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym_initializer_list, + [83724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8364), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + anon_sym_EQ, + [83734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2035), 1, + sym_parameter_list, + [83744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8368), 1, + sym_identifier, + ACTIONS(8370), 1, + anon_sym_AT, + [83754] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7535), 1, - anon_sym_COLON, - [66855] = 2, + anon_sym_LBRACE, + STATE(696), 1, + sym_initializer_list, + [83764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7537), 1, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2033), 1, + sym_parameter_list, + [83774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8372), 2, + sym_sink, sym_identifier, - [66862] = 2, + [83782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, - anon_sym_COLON, - [66869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7541), 1, - anon_sym_COLON, - [66876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7543), 1, - anon_sym_PIPE, - [66883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7545), 1, - anon_sym_COLON, - [66890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7547), 1, - anon_sym_PIPE, - [66897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7549), 1, - anon_sym_COLON, - [66904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7551), 1, - anon_sym_COLON, - [66911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7553), 1, + ACTIONS(8374), 2, + sym_sink, sym_identifier, - [66918] = 2, + [83790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym_SEMI, - [66925] = 2, + ACTIONS(8376), 1, + anon_sym_PIPE2, + STATE(3171), 1, + sym__for_capture_bar, + [83800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, - anon_sym_COLON, - [66932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7559), 1, - anon_sym_COLON, - [66939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7561), 1, + ACTIONS(8378), 2, sym_identifier, - [66946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7563), 1, - anon_sym_COLON, - [66953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7565), 1, - anon_sym_COLON, - [66960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7567), 1, - anon_sym_COLON, - [66967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7569), 1, - anon_sym_COLON, - [66974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7571), 1, - anon_sym_PIPE, - [66981] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7379), 1, - sym_identifier, - [66988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7573), 1, - sym_identifier, - [66995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_RPAREN, - [67002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7577), 1, - anon_sym_RPAREN, - [67009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - sym_identifier, - [67016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7581), 1, - sym_identifier, - [67023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7583), 1, - anon_sym_COLON, - [67030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7585), 1, - anon_sym_COLON, - [67037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7587), 1, - sym_identifier, - [67044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7589), 1, - anon_sym_RPAREN, - [67051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, - anon_sym_COLON, - [67058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7593), 1, - anon_sym_COLON, - [67065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_PIPE, - [67072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_SEMI, - [67079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 1, - anon_sym_COLON, - [67086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym_COLON, - [67093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7601), 1, - anon_sym_COLON, - [67100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7603), 1, - anon_sym_COLON, - [67107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_COLON, - [67114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7607), 1, - anon_sym_SEMI, - [67121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7609), 1, - sym_identifier, - [67128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7611), 1, - anon_sym_RPAREN, - [67135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7613), 1, - anon_sym_COLON, - [67142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7615), 1, - sym_identifier, - [67149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7617), 1, - sym_identifier, - [67156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7619), 1, - anon_sym_COLON, - [67163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7621), 1, - anon_sym_COLON, - [67170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7623), 1, - anon_sym_COLON, - [67177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7625), 1, - sym_identifier, - [67184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 1, - anon_sym_COLON, - [67191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 1, - sym_identifier, - [67198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7631), 1, - anon_sym_COLON, - [67205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 1, - sym_identifier, - [67212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7635), 1, - anon_sym_PIPE, - [67219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7637), 1, - anon_sym_RPAREN, - [67226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7639), 1, - anon_sym_RPAREN, - [67233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7641), 1, - sym_identifier, - [67240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7643), 1, - anon_sym_COLON, - [67247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7645), 1, - sym_identifier, - [67254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7647), 1, - anon_sym_COLON, - [67261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7649), 1, - anon_sym_COLON, - [67268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7651), 1, - ts_builtin_sym_end, - [67275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 1, - sym_identifier, - [67282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 1, - anon_sym_COLON, - [67289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - sym_identifier, - [67296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7401), 1, - sym_identifier, - [67303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 1, - anon_sym_COLON, - [67310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7661), 1, - anon_sym_COLON, - [67317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 1, - anon_sym_COLON, - [67324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7665), 1, - sym_identifier, - [67331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7667), 1, - anon_sym_COLON, - [67338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7669), 1, - anon_sym_COLON, - [67345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7671), 1, - anon_sym_COLON, - [67352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7673), 1, sym_integer, - [67359] = 2, + [83808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_for, - [67366] = 2, + ACTIONS(8380), 1, + anon_sym_PIPE2, + STATE(3094), 1, + sym__for_capture_bar, + [83818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_COLON, - [67373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7679), 1, - sym_identifier, - [67380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7681), 1, - anon_sym_PIPE, - [67387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7683), 1, - anon_sym_COLON, - [67394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7685), 1, - anon_sym_COLON, - [67401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7687), 1, - anon_sym_COLON, - [67408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7689), 1, - sym_identifier, - [67415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_COLON, - [67422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7693), 1, - anon_sym_COLON, - [67429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_COLON, - [67436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7697), 1, - sym_identifier, - [67443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7699), 1, - anon_sym_COLON, - [67450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7701), 1, - anon_sym_PIPE, - [67457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7703), 1, - anon_sym_COLON, - [67464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7705), 1, - anon_sym_COLON, - [67471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7707), 1, - sym_identifier, - [67478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7709), 1, - anon_sym_COLON, - [67485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7711), 1, + ACTIONS(8382), 1, + anon_sym_COLON_COLON, + ACTIONS(8384), 1, anon_sym_EQ, - [67492] = 2, + [83828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7165), 1, + anon_sym_LBRACE, + STATE(178), 1, + sym_initializer_list, + [83838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8386), 1, + anon_sym_COLON_COLON, + ACTIONS(8388), 1, + anon_sym_EQ, + [83848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8390), 1, sym_identifier, - [67499] = 2, + ACTIONS(8392), 1, + anon_sym_AT, + [83858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, + ACTIONS(8394), 2, + sym_sink, + sym_identifier, + [83866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2028), 1, + sym_parameter_list, + [83876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8396), 1, + sym_identifier, + ACTIONS(8398), 1, + anon_sym_AT, + [83886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_LPAREN, + STATE(174), 1, + sym_argument_list, + [83896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2044), 1, + sym_parameter_list, + [83906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 1, + anon_sym_COLON_COLON, + ACTIONS(8402), 1, + anon_sym_EQ, + [83916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 2, + sym_sink, + sym_identifier, + [83924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2017), 1, + sym_parameter_list, + [83934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 1, + anon_sym_LPAREN, + STATE(2815), 1, + sym_argument_list, + [83944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8406), 2, + sym_sink, + sym_identifier, + [83952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8408), 1, + anon_sym_PIPE2, + STATE(3007), 1, + sym__for_capture_bar, + [83962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(2011), 1, + sym_parameter_list, + [83972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8410), 1, + anon_sym_COLON, + [83979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_COLON, + [83986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8414), 1, + anon_sym_COLON, + [83993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 1, + anon_sym_SEMI, + [84000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8418), 1, + anon_sym_COLON, + [84007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8420), 1, + sym_identifier, + [84014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8422), 1, + anon_sym_COLON, + [84021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_COLON, + [84028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8426), 1, + anon_sym_COLON, + [84035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8428), 1, anon_sym_PIPE, - [67506] = 2, + [84042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, - anon_sym_COLON, - [67513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7719), 1, - anon_sym_COLON, - [67520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7721), 1, - anon_sym_PIPE, - [67527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7723), 1, - anon_sym_COLON, - [67534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7725), 1, - anon_sym_COLON, - [67541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7727), 1, - anon_sym_COLON, - [67548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7729), 1, - anon_sym_COLON, - [67555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7731), 1, - anon_sym_COLON, - [67562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_COLON, - [67569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7735), 1, + ACTIONS(8430), 1, sym_identifier, - [67576] = 2, + [84049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(8432), 1, anon_sym_COLON, - [67583] = 2, + [84056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(8434), 1, anon_sym_COLON, - [67590] = 2, + [84063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 1, + ACTIONS(8436), 1, + anon_sym_COLON, + [84070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8438), 1, sym_identifier, - [67597] = 2, + [84077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(8440), 1, + anon_sym_COLON, + [84084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8442), 1, + ts_builtin_sym_end, + [84091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8444), 1, + sym_identifier, + [84098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 1, + anon_sym_COLON, + [84105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8448), 1, + anon_sym_COLON, + [84112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8450), 1, + sym_identifier, + [84119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8452), 1, + anon_sym_EQ, + [84126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 1, anon_sym_RPAREN, - [67604] = 2, + [84133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(8456), 1, anon_sym_COLON, - [67611] = 2, + [84140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, + ACTIONS(8458), 1, + anon_sym_COLON, + [84147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8358), 1, sym_identifier, - [67618] = 2, + [84154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_COLON, - [67625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7751), 1, + ACTIONS(8460), 1, sym_identifier, - [67632] = 2, + [84161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 1, - anon_sym_SEMI, - [67639] = 2, + ACTIONS(8462), 1, + anon_sym_RPAREN, + [84168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 1, - anon_sym_PIPE, - [67646] = 2, + ACTIONS(8464), 1, + anon_sym_RPAREN, + [84175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, + ACTIONS(8466), 1, + anon_sym_RPAREN, + [84182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8468), 1, anon_sym_COLON, - [67653] = 2, + [84189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_PIPE, - [67660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7759), 1, - anon_sym_COLON, - [67667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7761), 1, - anon_sym_COLON, - [67674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7763), 1, - anon_sym_SEMI, - [67681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7765), 1, + ACTIONS(8470), 1, sym_identifier, - [67688] = 2, + [84196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, + ACTIONS(8472), 1, anon_sym_COLON, - [67695] = 2, + [84203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_SEMI, - [67702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2166), 1, - anon_sym_SEMI, - [67709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7769), 1, - anon_sym_PIPE, - [67716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7771), 1, - anon_sym_PIPE, - [67723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7773), 1, - anon_sym_SEMI, - [67730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, - anon_sym_SEMI, - [67737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7775), 1, + ACTIONS(8474), 1, anon_sym_import, - [67744] = 2, + [84210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - anon_sym_SEMI, - [67751] = 2, + ACTIONS(8476), 1, + anon_sym_PIPE, + [84217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, + ACTIONS(8478), 1, + anon_sym_PIPE, + [84224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8480), 1, + sym_identifier, + [84231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8482), 1, anon_sym_COLON, - [67758] = 2, + [84238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(8484), 1, + anon_sym_COLON, + [84245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8486), 1, + sym_identifier, + [84252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8488), 1, + anon_sym_COLON, + [84259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8490), 1, + anon_sym_RPAREN, + [84266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_RPAREN, + [84273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8494), 1, + sym_identifier, + [84280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + anon_sym_COLON, + [84287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8498), 1, + anon_sym_COLON, + [84294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8500), 1, + anon_sym_COLON, + [84301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8502), 1, + anon_sym_COLON, + [84308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8504), 1, + anon_sym_RPAREN, + [84315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8506), 1, + anon_sym_COLON, + [84322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8508), 1, + sym_identifier, + [84329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8510), 1, + anon_sym_COLON, + [84336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_SEMI, + [84343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8512), 1, + anon_sym_COLON, + [84350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8514), 1, + anon_sym_COLON, + [84357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8516), 1, + anon_sym_RPAREN, + [84364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 1, + anon_sym_SEMI, + [84371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8518), 1, + anon_sym_COLON, + [84378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8520), 1, + anon_sym_SEMI, + [84385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + sym_identifier, + [84392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8524), 1, + anon_sym_COLON, + [84399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8526), 1, + anon_sym_COLON, + [84406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8528), 1, + sym_identifier, + [84413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8530), 1, + sym_identifier, + [84420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8532), 1, + anon_sym_COLON, + [84427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8534), 1, + anon_sym_RPAREN, + [84434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8536), 1, + anon_sym_COLON, + [84441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + anon_sym_COLON, + [84448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8540), 1, + anon_sym_COLON, + [84455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_COLON, + [84462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8544), 1, + anon_sym_RPAREN, + [84469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8546), 1, + anon_sym_COLON, + [84476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8548), 1, + sym_identifier, + [84483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8550), 1, + sym_identifier, + [84490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8552), 1, + anon_sym_COLON, + [84497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8554), 1, + sym_identifier, + [84504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8368), 1, + sym_identifier, + [84511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8556), 1, + anon_sym_PIPE, + [84518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8558), 1, + anon_sym_COLON, + [84525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8560), 1, + anon_sym_COLON, + [84532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8562), 1, + anon_sym_COLON, + [84539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8564), 1, + anon_sym_COLON, + [84546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8566), 1, + anon_sym_COLON, + [84553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8568), 1, + anon_sym_COLON, + [84560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8570), 1, + anon_sym_COLON, + [84567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8572), 1, + sym_identifier, + [84574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + anon_sym_COLON, + [84581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8576), 1, + anon_sym_PIPE, + [84588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8578), 1, + sym_identifier, + [84595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8580), 1, + anon_sym_COLON, + [84602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8582), 1, + sym_identifier, + [84609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8584), 1, + sym_integer, + [84616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8586), 1, + anon_sym_COLON, + [84623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8588), 1, + anon_sym_COLON, + [84630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8590), 1, + anon_sym_COLON, + [84637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8592), 1, + anon_sym_PIPE, + [84644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8594), 1, + anon_sym_COLON, + [84651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8390), 1, + sym_identifier, + [84658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8596), 1, + anon_sym_COLON, + [84665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8598), 1, + sym_identifier, + [84672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_COLON, + [84679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8602), 1, + sym_identifier, + [84686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8604), 1, + anon_sym_COLON, + [84693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8606), 1, + sym_identifier, + [84700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8608), 1, + anon_sym_COLON, + [84707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8610), 1, + sym_identifier, + [84714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8612), 1, + sym_identifier, + [84721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8614), 1, + anon_sym_COLON, + [84728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8616), 1, + anon_sym_COLON, + [84735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_COLON, + [84742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8620), 1, + anon_sym_PIPE, + [84749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8622), 1, + anon_sym_COLON, + [84756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8624), 1, + anon_sym_COLON, + [84763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8626), 1, + sym_identifier, + [84770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8628), 1, + anon_sym_COLON, + [84777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8630), 1, + anon_sym_PIPE, + [84784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_COLON, + [84791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8634), 1, + sym_identifier, + [84798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8636), 1, + anon_sym_COLON, + [84805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8638), 1, + sym_identifier, + [84812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + sym_identifier, + [84819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8642), 1, + sym_identifier, + [84826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8644), 1, + sym_identifier, + [84833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8646), 1, + sym_identifier, + [84840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8648), 1, + anon_sym_COLON, + [84847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8650), 1, + anon_sym_COLON, + [84854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8652), 1, + sym_identifier, + [84861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8654), 1, + sym_identifier, + [84868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8656), 1, + anon_sym_COLON, + [84875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8658), 1, + anon_sym_COLON, + [84882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8660), 1, + anon_sym_COLON, + [84889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8662), 1, + anon_sym_COLON, + [84896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_SEMI, + [84903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8664), 1, + anon_sym_COLON, + [84910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8666), 1, + anon_sym_COLON, + [84917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8668), 1, + anon_sym_COLON, + [84924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8670), 1, + anon_sym_PIPE, + [84931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8672), 1, + anon_sym_for, + [84938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8674), 1, + anon_sym_SEMI, + [84945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8676), 1, + sym_identifier, + [84952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8678), 1, + anon_sym_COLON, + [84959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8680), 1, + anon_sym_RPAREN, + [84966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8682), 1, + anon_sym_COLON, + [84973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_SEMI, + [84980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8684), 1, + anon_sym_COLON, + [84987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8686), 1, + anon_sym_COLON, + [84994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8688), 1, + anon_sym_SEMI, + [85001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8690), 1, + anon_sym_COLON, + [85008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + anon_sym_SEMI, + [85015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8692), 1, + anon_sym_COLON, + [85022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8694), 1, + anon_sym_COLON, + [85029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8696), 1, + anon_sym_SEMI, + [85036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2181), 1, + anon_sym_SEMI, + [85043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8698), 1, + anon_sym_COLON, + [85050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8700), 1, + anon_sym_SEMI, + [85057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8702), 1, + sym_identifier, + [85064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8704), 1, anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1723)] = 0, - [SMALL_STATE(1724)] = 76, - [SMALL_STATE(1725)] = 152, - [SMALL_STATE(1726)] = 226, - [SMALL_STATE(1727)] = 301, - [SMALL_STATE(1728)] = 376, - [SMALL_STATE(1729)] = 451, - [SMALL_STATE(1730)] = 526, - [SMALL_STATE(1731)] = 601, - [SMALL_STATE(1732)] = 676, - [SMALL_STATE(1733)] = 751, - [SMALL_STATE(1734)] = 826, - [SMALL_STATE(1735)] = 901, - [SMALL_STATE(1736)] = 976, - [SMALL_STATE(1737)] = 1051, - [SMALL_STATE(1738)] = 1119, - [SMALL_STATE(1739)] = 1187, - [SMALL_STATE(1740)] = 1255, - [SMALL_STATE(1741)] = 1323, - [SMALL_STATE(1742)] = 1391, - [SMALL_STATE(1743)] = 1459, - [SMALL_STATE(1744)] = 1527, - [SMALL_STATE(1745)] = 1595, - [SMALL_STATE(1746)] = 1668, - [SMALL_STATE(1747)] = 1741, - [SMALL_STATE(1748)] = 1812, - [SMALL_STATE(1749)] = 1885, - [SMALL_STATE(1750)] = 1958, - [SMALL_STATE(1751)] = 2031, - [SMALL_STATE(1752)] = 2102, - [SMALL_STATE(1753)] = 2175, - [SMALL_STATE(1754)] = 2260, - [SMALL_STATE(1755)] = 2326, - [SMALL_STATE(1756)] = 2413, - [SMALL_STATE(1757)] = 2500, - [SMALL_STATE(1758)] = 2587, - [SMALL_STATE(1759)] = 2674, - [SMALL_STATE(1760)] = 2761, - [SMALL_STATE(1761)] = 2848, - [SMALL_STATE(1762)] = 2915, - [SMALL_STATE(1763)] = 3002, - [SMALL_STATE(1764)] = 3065, - [SMALL_STATE(1765)] = 3152, - [SMALL_STATE(1766)] = 3239, - [SMALL_STATE(1767)] = 3301, - [SMALL_STATE(1768)] = 3363, - [SMALL_STATE(1769)] = 3443, - [SMALL_STATE(1770)] = 3523, - [SMALL_STATE(1771)] = 3587, - [SMALL_STATE(1772)] = 3667, - [SMALL_STATE(1773)] = 3747, - [SMALL_STATE(1774)] = 3809, - [SMALL_STATE(1775)] = 3871, - [SMALL_STATE(1776)] = 3951, - [SMALL_STATE(1777)] = 4013, - [SMALL_STATE(1778)] = 4075, - [SMALL_STATE(1779)] = 4155, - [SMALL_STATE(1780)] = 4217, - [SMALL_STATE(1781)] = 4283, - [SMALL_STATE(1782)] = 4363, - [SMALL_STATE(1783)] = 4443, - [SMALL_STATE(1784)] = 4505, - [SMALL_STATE(1785)] = 4585, - [SMALL_STATE(1786)] = 4647, - [SMALL_STATE(1787)] = 4709, - [SMALL_STATE(1788)] = 4771, - [SMALL_STATE(1789)] = 4833, - [SMALL_STATE(1790)] = 4897, - [SMALL_STATE(1791)] = 4977, - [SMALL_STATE(1792)] = 5039, - [SMALL_STATE(1793)] = 5119, - [SMALL_STATE(1794)] = 5181, - [SMALL_STATE(1795)] = 5261, - [SMALL_STATE(1796)] = 5341, - [SMALL_STATE(1797)] = 5421, - [SMALL_STATE(1798)] = 5501, - [SMALL_STATE(1799)] = 5581, - [SMALL_STATE(1800)] = 5661, - [SMALL_STATE(1801)] = 5741, - [SMALL_STATE(1802)] = 5821, - [SMALL_STATE(1803)] = 5883, - [SMALL_STATE(1804)] = 5963, - [SMALL_STATE(1805)] = 6025, - [SMALL_STATE(1806)] = 6087, - [SMALL_STATE(1807)] = 6148, - [SMALL_STATE(1808)] = 6209, - [SMALL_STATE(1809)] = 6270, - [SMALL_STATE(1810)] = 6331, - [SMALL_STATE(1811)] = 6392, - [SMALL_STATE(1812)] = 6453, - [SMALL_STATE(1813)] = 6514, - [SMALL_STATE(1814)] = 6575, - [SMALL_STATE(1815)] = 6636, - [SMALL_STATE(1816)] = 6697, - [SMALL_STATE(1817)] = 6758, - [SMALL_STATE(1818)] = 6819, - [SMALL_STATE(1819)] = 6880, - [SMALL_STATE(1820)] = 6941, - [SMALL_STATE(1821)] = 7002, - [SMALL_STATE(1822)] = 7063, - [SMALL_STATE(1823)] = 7124, - [SMALL_STATE(1824)] = 7185, - [SMALL_STATE(1825)] = 7246, - [SMALL_STATE(1826)] = 7307, - [SMALL_STATE(1827)] = 7368, - [SMALL_STATE(1828)] = 7429, - [SMALL_STATE(1829)] = 7490, - [SMALL_STATE(1830)] = 7551, - [SMALL_STATE(1831)] = 7612, - [SMALL_STATE(1832)] = 7673, - [SMALL_STATE(1833)] = 7734, - [SMALL_STATE(1834)] = 7795, - [SMALL_STATE(1835)] = 7856, - [SMALL_STATE(1836)] = 7917, - [SMALL_STATE(1837)] = 7978, - [SMALL_STATE(1838)] = 8039, - [SMALL_STATE(1839)] = 8100, - [SMALL_STATE(1840)] = 8163, - [SMALL_STATE(1841)] = 8226, - [SMALL_STATE(1842)] = 8287, - [SMALL_STATE(1843)] = 8348, - [SMALL_STATE(1844)] = 8428, - [SMALL_STATE(1845)] = 8505, - [SMALL_STATE(1846)] = 8582, - [SMALL_STATE(1847)] = 8659, - [SMALL_STATE(1848)] = 8736, - [SMALL_STATE(1849)] = 8813, - [SMALL_STATE(1850)] = 8890, - [SMALL_STATE(1851)] = 8967, - [SMALL_STATE(1852)] = 9044, - [SMALL_STATE(1853)] = 9121, - [SMALL_STATE(1854)] = 9198, - [SMALL_STATE(1855)] = 9275, - [SMALL_STATE(1856)] = 9352, - [SMALL_STATE(1857)] = 9429, - [SMALL_STATE(1858)] = 9506, - [SMALL_STATE(1859)] = 9583, - [SMALL_STATE(1860)] = 9660, - [SMALL_STATE(1861)] = 9737, - [SMALL_STATE(1862)] = 9814, - [SMALL_STATE(1863)] = 9891, - [SMALL_STATE(1864)] = 9968, - [SMALL_STATE(1865)] = 10045, - [SMALL_STATE(1866)] = 10122, - [SMALL_STATE(1867)] = 10199, - [SMALL_STATE(1868)] = 10276, - [SMALL_STATE(1869)] = 10353, - [SMALL_STATE(1870)] = 10427, - [SMALL_STATE(1871)] = 10501, - [SMALL_STATE(1872)] = 10575, - [SMALL_STATE(1873)] = 10649, - [SMALL_STATE(1874)] = 10723, - [SMALL_STATE(1875)] = 10797, - [SMALL_STATE(1876)] = 10871, - [SMALL_STATE(1877)] = 10945, - [SMALL_STATE(1878)] = 11019, - [SMALL_STATE(1879)] = 11093, - [SMALL_STATE(1880)] = 11167, - [SMALL_STATE(1881)] = 11241, - [SMALL_STATE(1882)] = 11315, - [SMALL_STATE(1883)] = 11389, - [SMALL_STATE(1884)] = 11463, - [SMALL_STATE(1885)] = 11537, - [SMALL_STATE(1886)] = 11611, - [SMALL_STATE(1887)] = 11685, - [SMALL_STATE(1888)] = 11759, - [SMALL_STATE(1889)] = 11833, - [SMALL_STATE(1890)] = 11907, - [SMALL_STATE(1891)] = 11981, - [SMALL_STATE(1892)] = 12055, - [SMALL_STATE(1893)] = 12129, - [SMALL_STATE(1894)] = 12203, - [SMALL_STATE(1895)] = 12277, - [SMALL_STATE(1896)] = 12351, - [SMALL_STATE(1897)] = 12425, - [SMALL_STATE(1898)] = 12499, - [SMALL_STATE(1899)] = 12573, - [SMALL_STATE(1900)] = 12647, - [SMALL_STATE(1901)] = 12721, - [SMALL_STATE(1902)] = 12795, - [SMALL_STATE(1903)] = 12869, - [SMALL_STATE(1904)] = 12943, - [SMALL_STATE(1905)] = 13017, - [SMALL_STATE(1906)] = 13091, - [SMALL_STATE(1907)] = 13165, - [SMALL_STATE(1908)] = 13239, - [SMALL_STATE(1909)] = 13301, - [SMALL_STATE(1910)] = 13375, - [SMALL_STATE(1911)] = 13449, - [SMALL_STATE(1912)] = 13523, - [SMALL_STATE(1913)] = 13597, - [SMALL_STATE(1914)] = 13671, - [SMALL_STATE(1915)] = 13745, - [SMALL_STATE(1916)] = 13819, - [SMALL_STATE(1917)] = 13893, - [SMALL_STATE(1918)] = 13967, - [SMALL_STATE(1919)] = 14041, - [SMALL_STATE(1920)] = 14115, - [SMALL_STATE(1921)] = 14189, - [SMALL_STATE(1922)] = 14263, - [SMALL_STATE(1923)] = 14337, - [SMALL_STATE(1924)] = 14399, - [SMALL_STATE(1925)] = 14473, - [SMALL_STATE(1926)] = 14547, - [SMALL_STATE(1927)] = 14621, - [SMALL_STATE(1928)] = 14695, - [SMALL_STATE(1929)] = 14769, - [SMALL_STATE(1930)] = 14843, - [SMALL_STATE(1931)] = 14917, - [SMALL_STATE(1932)] = 14991, - [SMALL_STATE(1933)] = 15065, - [SMALL_STATE(1934)] = 15139, - [SMALL_STATE(1935)] = 15213, - [SMALL_STATE(1936)] = 15287, - [SMALL_STATE(1937)] = 15361, - [SMALL_STATE(1938)] = 15435, - [SMALL_STATE(1939)] = 15509, - [SMALL_STATE(1940)] = 15583, - [SMALL_STATE(1941)] = 15657, - [SMALL_STATE(1942)] = 15731, - [SMALL_STATE(1943)] = 15805, - [SMALL_STATE(1944)] = 15879, - [SMALL_STATE(1945)] = 15953, - [SMALL_STATE(1946)] = 16027, - [SMALL_STATE(1947)] = 16101, - [SMALL_STATE(1948)] = 16175, - [SMALL_STATE(1949)] = 16249, - [SMALL_STATE(1950)] = 16323, - [SMALL_STATE(1951)] = 16397, - [SMALL_STATE(1952)] = 16471, - [SMALL_STATE(1953)] = 16545, - [SMALL_STATE(1954)] = 16619, - [SMALL_STATE(1955)] = 16693, - [SMALL_STATE(1956)] = 16767, - [SMALL_STATE(1957)] = 16841, - [SMALL_STATE(1958)] = 16915, - [SMALL_STATE(1959)] = 16989, - [SMALL_STATE(1960)] = 17063, - [SMALL_STATE(1961)] = 17137, - [SMALL_STATE(1962)] = 17211, - [SMALL_STATE(1963)] = 17285, - [SMALL_STATE(1964)] = 17359, - [SMALL_STATE(1965)] = 17433, - [SMALL_STATE(1966)] = 17507, - [SMALL_STATE(1967)] = 17578, - [SMALL_STATE(1968)] = 17649, - [SMALL_STATE(1969)] = 17720, - [SMALL_STATE(1970)] = 17791, - [SMALL_STATE(1971)] = 17862, - [SMALL_STATE(1972)] = 17933, - [SMALL_STATE(1973)] = 18004, - [SMALL_STATE(1974)] = 18075, - [SMALL_STATE(1975)] = 18146, - [SMALL_STATE(1976)] = 18217, - [SMALL_STATE(1977)] = 18288, - [SMALL_STATE(1978)] = 18359, - [SMALL_STATE(1979)] = 18430, - [SMALL_STATE(1980)] = 18501, - [SMALL_STATE(1981)] = 18572, - [SMALL_STATE(1982)] = 18643, - [SMALL_STATE(1983)] = 18714, - [SMALL_STATE(1984)] = 18785, - [SMALL_STATE(1985)] = 18856, - [SMALL_STATE(1986)] = 18927, - [SMALL_STATE(1987)] = 18998, - [SMALL_STATE(1988)] = 19069, - [SMALL_STATE(1989)] = 19140, - [SMALL_STATE(1990)] = 19211, - [SMALL_STATE(1991)] = 19282, - [SMALL_STATE(1992)] = 19353, - [SMALL_STATE(1993)] = 19424, - [SMALL_STATE(1994)] = 19495, - [SMALL_STATE(1995)] = 19566, - [SMALL_STATE(1996)] = 19637, - [SMALL_STATE(1997)] = 19708, - [SMALL_STATE(1998)] = 19779, - [SMALL_STATE(1999)] = 19850, - [SMALL_STATE(2000)] = 19921, - [SMALL_STATE(2001)] = 19992, - [SMALL_STATE(2002)] = 20063, - [SMALL_STATE(2003)] = 20122, - [SMALL_STATE(2004)] = 20193, - [SMALL_STATE(2005)] = 20264, - [SMALL_STATE(2006)] = 20335, - [SMALL_STATE(2007)] = 20406, - [SMALL_STATE(2008)] = 20477, - [SMALL_STATE(2009)] = 20548, - [SMALL_STATE(2010)] = 20619, - [SMALL_STATE(2011)] = 20690, - [SMALL_STATE(2012)] = 20761, - [SMALL_STATE(2013)] = 20832, - [SMALL_STATE(2014)] = 20903, - [SMALL_STATE(2015)] = 20974, - [SMALL_STATE(2016)] = 21045, - [SMALL_STATE(2017)] = 21106, - [SMALL_STATE(2018)] = 21177, - [SMALL_STATE(2019)] = 21248, - [SMALL_STATE(2020)] = 21319, - [SMALL_STATE(2021)] = 21390, - [SMALL_STATE(2022)] = 21461, - [SMALL_STATE(2023)] = 21532, - [SMALL_STATE(2024)] = 21603, - [SMALL_STATE(2025)] = 21674, - [SMALL_STATE(2026)] = 21745, - [SMALL_STATE(2027)] = 21816, - [SMALL_STATE(2028)] = 21887, - [SMALL_STATE(2029)] = 21958, - [SMALL_STATE(2030)] = 22029, - [SMALL_STATE(2031)] = 22100, - [SMALL_STATE(2032)] = 22171, - [SMALL_STATE(2033)] = 22242, - [SMALL_STATE(2034)] = 22313, - [SMALL_STATE(2035)] = 22384, - [SMALL_STATE(2036)] = 22455, - [SMALL_STATE(2037)] = 22526, - [SMALL_STATE(2038)] = 22597, - [SMALL_STATE(2039)] = 22668, - [SMALL_STATE(2040)] = 22739, - [SMALL_STATE(2041)] = 22810, - [SMALL_STATE(2042)] = 22881, - [SMALL_STATE(2043)] = 22952, - [SMALL_STATE(2044)] = 23023, - [SMALL_STATE(2045)] = 23094, - [SMALL_STATE(2046)] = 23165, - [SMALL_STATE(2047)] = 23236, - [SMALL_STATE(2048)] = 23307, - [SMALL_STATE(2049)] = 23378, - [SMALL_STATE(2050)] = 23449, - [SMALL_STATE(2051)] = 23520, - [SMALL_STATE(2052)] = 23591, - [SMALL_STATE(2053)] = 23662, - [SMALL_STATE(2054)] = 23733, - [SMALL_STATE(2055)] = 23804, - [SMALL_STATE(2056)] = 23875, - [SMALL_STATE(2057)] = 23946, - [SMALL_STATE(2058)] = 24017, - [SMALL_STATE(2059)] = 24088, - [SMALL_STATE(2060)] = 24147, - [SMALL_STATE(2061)] = 24218, - [SMALL_STATE(2062)] = 24289, - [SMALL_STATE(2063)] = 24360, - [SMALL_STATE(2064)] = 24431, - [SMALL_STATE(2065)] = 24502, - [SMALL_STATE(2066)] = 24573, - [SMALL_STATE(2067)] = 24644, - [SMALL_STATE(2068)] = 24705, - [SMALL_STATE(2069)] = 24776, - [SMALL_STATE(2070)] = 24847, - [SMALL_STATE(2071)] = 24918, - [SMALL_STATE(2072)] = 24974, - [SMALL_STATE(2073)] = 25038, - [SMALL_STATE(2074)] = 25094, - [SMALL_STATE(2075)] = 25152, - [SMALL_STATE(2076)] = 25212, - [SMALL_STATE(2077)] = 25268, - [SMALL_STATE(2078)] = 25324, - [SMALL_STATE(2079)] = 25380, - [SMALL_STATE(2080)] = 25436, - [SMALL_STATE(2081)] = 25492, - [SMALL_STATE(2082)] = 25548, - [SMALL_STATE(2083)] = 25604, - [SMALL_STATE(2084)] = 25660, - [SMALL_STATE(2085)] = 25716, - [SMALL_STATE(2086)] = 25772, - [SMALL_STATE(2087)] = 25838, - [SMALL_STATE(2088)] = 25896, - [SMALL_STATE(2089)] = 25952, - [SMALL_STATE(2090)] = 26008, - [SMALL_STATE(2091)] = 26064, - [SMALL_STATE(2092)] = 26130, - [SMALL_STATE(2093)] = 26186, - [SMALL_STATE(2094)] = 26242, - [SMALL_STATE(2095)] = 26298, - [SMALL_STATE(2096)] = 26354, - [SMALL_STATE(2097)] = 26410, - [SMALL_STATE(2098)] = 26466, - [SMALL_STATE(2099)] = 26522, - [SMALL_STATE(2100)] = 26578, - [SMALL_STATE(2101)] = 26634, - [SMALL_STATE(2102)] = 26702, - [SMALL_STATE(2103)] = 26758, - [SMALL_STATE(2104)] = 26814, - [SMALL_STATE(2105)] = 26882, - [SMALL_STATE(2106)] = 26938, - [SMALL_STATE(2107)] = 26994, - [SMALL_STATE(2108)] = 27050, - [SMALL_STATE(2109)] = 27106, - [SMALL_STATE(2110)] = 27162, - [SMALL_STATE(2111)] = 27218, - [SMALL_STATE(2112)] = 27284, - [SMALL_STATE(2113)] = 27340, - [SMALL_STATE(2114)] = 27396, - [SMALL_STATE(2115)] = 27452, - [SMALL_STATE(2116)] = 27508, - [SMALL_STATE(2117)] = 27564, - [SMALL_STATE(2118)] = 27632, - [SMALL_STATE(2119)] = 27688, - [SMALL_STATE(2120)] = 27744, - [SMALL_STATE(2121)] = 27800, - [SMALL_STATE(2122)] = 27856, - [SMALL_STATE(2123)] = 27912, - [SMALL_STATE(2124)] = 27968, - [SMALL_STATE(2125)] = 28024, - [SMALL_STATE(2126)] = 28080, - [SMALL_STATE(2127)] = 28136, - [SMALL_STATE(2128)] = 28192, - [SMALL_STATE(2129)] = 28248, - [SMALL_STATE(2130)] = 28304, - [SMALL_STATE(2131)] = 28360, - [SMALL_STATE(2132)] = 28418, - [SMALL_STATE(2133)] = 28484, - [SMALL_STATE(2134)] = 28540, - [SMALL_STATE(2135)] = 28608, - [SMALL_STATE(2136)] = 28664, - [SMALL_STATE(2137)] = 28720, - [SMALL_STATE(2138)] = 28788, - [SMALL_STATE(2139)] = 28843, - [SMALL_STATE(2140)] = 28906, - [SMALL_STATE(2141)] = 28965, - [SMALL_STATE(2142)] = 29020, - [SMALL_STATE(2143)] = 29075, - [SMALL_STATE(2144)] = 29130, - [SMALL_STATE(2145)] = 29185, - [SMALL_STATE(2146)] = 29240, - [SMALL_STATE(2147)] = 29295, - [SMALL_STATE(2148)] = 29350, - [SMALL_STATE(2149)] = 29405, - [SMALL_STATE(2150)] = 29460, - [SMALL_STATE(2151)] = 29515, - [SMALL_STATE(2152)] = 29570, - [SMALL_STATE(2153)] = 29625, - [SMALL_STATE(2154)] = 29680, - [SMALL_STATE(2155)] = 29735, - [SMALL_STATE(2156)] = 29790, - [SMALL_STATE(2157)] = 29845, - [SMALL_STATE(2158)] = 29900, - [SMALL_STATE(2159)] = 29955, - [SMALL_STATE(2160)] = 30010, - [SMALL_STATE(2161)] = 30065, - [SMALL_STATE(2162)] = 30120, - [SMALL_STATE(2163)] = 30175, - [SMALL_STATE(2164)] = 30230, - [SMALL_STATE(2165)] = 30285, - [SMALL_STATE(2166)] = 30340, - [SMALL_STATE(2167)] = 30395, - [SMALL_STATE(2168)] = 30450, - [SMALL_STATE(2169)] = 30505, - [SMALL_STATE(2170)] = 30560, - [SMALL_STATE(2171)] = 30615, - [SMALL_STATE(2172)] = 30670, - [SMALL_STATE(2173)] = 30725, - [SMALL_STATE(2174)] = 30780, - [SMALL_STATE(2175)] = 30835, - [SMALL_STATE(2176)] = 30890, - [SMALL_STATE(2177)] = 30945, - [SMALL_STATE(2178)] = 31000, - [SMALL_STATE(2179)] = 31055, - [SMALL_STATE(2180)] = 31110, - [SMALL_STATE(2181)] = 31165, - [SMALL_STATE(2182)] = 31220, - [SMALL_STATE(2183)] = 31275, - [SMALL_STATE(2184)] = 31330, - [SMALL_STATE(2185)] = 31385, - [SMALL_STATE(2186)] = 31440, - [SMALL_STATE(2187)] = 31495, - [SMALL_STATE(2188)] = 31550, - [SMALL_STATE(2189)] = 31605, - [SMALL_STATE(2190)] = 31660, - [SMALL_STATE(2191)] = 31715, - [SMALL_STATE(2192)] = 31770, - [SMALL_STATE(2193)] = 31825, - [SMALL_STATE(2194)] = 31880, - [SMALL_STATE(2195)] = 31935, - [SMALL_STATE(2196)] = 31990, - [SMALL_STATE(2197)] = 32045, - [SMALL_STATE(2198)] = 32100, - [SMALL_STATE(2199)] = 32155, - [SMALL_STATE(2200)] = 32210, - [SMALL_STATE(2201)] = 32265, - [SMALL_STATE(2202)] = 32320, - [SMALL_STATE(2203)] = 32375, - [SMALL_STATE(2204)] = 32430, - [SMALL_STATE(2205)] = 32485, - [SMALL_STATE(2206)] = 32540, - [SMALL_STATE(2207)] = 32595, - [SMALL_STATE(2208)] = 32650, - [SMALL_STATE(2209)] = 32705, - [SMALL_STATE(2210)] = 32760, - [SMALL_STATE(2211)] = 32815, - [SMALL_STATE(2212)] = 32870, - [SMALL_STATE(2213)] = 32925, - [SMALL_STATE(2214)] = 32980, - [SMALL_STATE(2215)] = 33035, - [SMALL_STATE(2216)] = 33090, - [SMALL_STATE(2217)] = 33145, - [SMALL_STATE(2218)] = 33237, - [SMALL_STATE(2219)] = 33305, - [SMALL_STATE(2220)] = 33371, - [SMALL_STATE(2221)] = 33441, - [SMALL_STATE(2222)] = 33525, - [SMALL_STATE(2223)] = 33605, - [SMALL_STATE(2224)] = 33683, - [SMALL_STATE(2225)] = 33759, - [SMALL_STATE(2226)] = 33831, - [SMALL_STATE(2227)] = 33899, - [SMALL_STATE(2228)] = 33965, - [SMALL_STATE(2229)] = 34035, - [SMALL_STATE(2230)] = 34119, - [SMALL_STATE(2231)] = 34199, - [SMALL_STATE(2232)] = 34277, - [SMALL_STATE(2233)] = 34353, - [SMALL_STATE(2234)] = 34425, - [SMALL_STATE(2235)] = 34516, - [SMALL_STATE(2236)] = 34568, - [SMALL_STATE(2237)] = 34620, - [SMALL_STATE(2238)] = 34672, - [SMALL_STATE(2239)] = 34726, - [SMALL_STATE(2240)] = 34778, - [SMALL_STATE(2241)] = 34845, - [SMALL_STATE(2242)] = 34908, - [SMALL_STATE(2243)] = 34985, - [SMALL_STATE(2244)] = 35066, - [SMALL_STATE(2245)] = 35139, - [SMALL_STATE(2246)] = 35208, - [SMALL_STATE(2247)] = 35273, - [SMALL_STATE(2248)] = 35348, - [SMALL_STATE(2249)] = 35437, - [SMALL_STATE(2250)] = 35488, - [SMALL_STATE(2251)] = 35555, - [SMALL_STATE(2252)] = 35618, - [SMALL_STATE(2253)] = 35699, - [SMALL_STATE(2254)] = 35776, - [SMALL_STATE(2255)] = 35851, - [SMALL_STATE(2256)] = 35924, - [SMALL_STATE(2257)] = 35993, - [SMALL_STATE(2258)] = 36058, - [SMALL_STATE(2259)] = 36122, - [SMALL_STATE(2260)] = 36212, - [SMALL_STATE(2261)] = 36300, - [SMALL_STATE(2262)] = 36386, - [SMALL_STATE(2263)] = 36448, - [SMALL_STATE(2264)] = 36514, - [SMALL_STATE(2265)] = 36594, - [SMALL_STATE(2266)] = 36670, - [SMALL_STATE(2267)] = 36744, - [SMALL_STATE(2268)] = 36816, - [SMALL_STATE(2269)] = 36884, - [SMALL_STATE(2270)] = 36946, - [SMALL_STATE(2271)] = 37012, - [SMALL_STATE(2272)] = 37092, - [SMALL_STATE(2273)] = 37168, - [SMALL_STATE(2274)] = 37242, - [SMALL_STATE(2275)] = 37314, - [SMALL_STATE(2276)] = 37382, - [SMALL_STATE(2277)] = 37446, - [SMALL_STATE(2278)] = 37500, - [SMALL_STATE(2279)] = 37590, - [SMALL_STATE(2280)] = 37639, - [SMALL_STATE(2281)] = 37724, - [SMALL_STATE(2282)] = 37773, - [SMALL_STATE(2283)] = 37822, - [SMALL_STATE(2284)] = 37871, - [SMALL_STATE(2285)] = 37920, - [SMALL_STATE(2286)] = 37969, - [SMALL_STATE(2287)] = 38018, - [SMALL_STATE(2288)] = 38067, - [SMALL_STATE(2289)] = 38116, - [SMALL_STATE(2290)] = 38171, - [SMALL_STATE(2291)] = 38219, - [SMALL_STATE(2292)] = 38275, - [SMALL_STATE(2293)] = 38337, - [SMALL_STATE(2294)] = 38413, - [SMALL_STATE(2295)] = 38485, - [SMALL_STATE(2296)] = 38555, - [SMALL_STATE(2297)] = 38623, - [SMALL_STATE(2298)] = 38687, - [SMALL_STATE(2299)] = 38745, - [SMALL_STATE(2300)] = 38821, - [SMALL_STATE(2301)] = 38893, - [SMALL_STATE(2302)] = 38963, - [SMALL_STATE(2303)] = 39031, - [SMALL_STATE(2304)] = 39093, - [SMALL_STATE(2305)] = 39151, - [SMALL_STATE(2306)] = 39207, - [SMALL_STATE(2307)] = 39271, - [SMALL_STATE(2308)] = 39323, - [SMALL_STATE(2309)] = 39378, - [SMALL_STATE(2310)] = 39433, - [SMALL_STATE(2311)] = 39514, - [SMALL_STATE(2312)] = 39591, - [SMALL_STATE(2313)] = 39652, - [SMALL_STATE(2314)] = 39725, - [SMALL_STATE(2315)] = 39796, - [SMALL_STATE(2316)] = 39865, - [SMALL_STATE(2317)] = 39930, - [SMALL_STATE(2318)] = 39987, - [SMALL_STATE(2319)] = 40064, - [SMALL_STATE(2320)] = 40125, - [SMALL_STATE(2321)] = 40198, - [SMALL_STATE(2322)] = 40269, - [SMALL_STATE(2323)] = 40338, - [SMALL_STATE(2324)] = 40403, - [SMALL_STATE(2325)] = 40460, - [SMALL_STATE(2326)] = 40546, - [SMALL_STATE(2327)] = 40632, - [SMALL_STATE(2328)] = 40718, - [SMALL_STATE(2329)] = 40804, - [SMALL_STATE(2330)] = 40890, - [SMALL_STATE(2331)] = 40976, - [SMALL_STATE(2332)] = 41062, - [SMALL_STATE(2333)] = 41150, - [SMALL_STATE(2334)] = 41236, - [SMALL_STATE(2335)] = 41322, - [SMALL_STATE(2336)] = 41408, - [SMALL_STATE(2337)] = 41494, - [SMALL_STATE(2338)] = 41580, - [SMALL_STATE(2339)] = 41668, - [SMALL_STATE(2340)] = 41754, - [SMALL_STATE(2341)] = 41840, - [SMALL_STATE(2342)] = 41926, - [SMALL_STATE(2343)] = 42012, - [SMALL_STATE(2344)] = 42100, - [SMALL_STATE(2345)] = 42183, - [SMALL_STATE(2346)] = 42266, - [SMALL_STATE(2347)] = 42349, - [SMALL_STATE(2348)] = 42432, - [SMALL_STATE(2349)] = 42515, - [SMALL_STATE(2350)] = 42590, - [SMALL_STATE(2351)] = 42641, - [SMALL_STATE(2352)] = 42686, - [SMALL_STATE(2353)] = 42739, - [SMALL_STATE(2354)] = 42822, - [SMALL_STATE(2355)] = 42905, - [SMALL_STATE(2356)] = 42984, - [SMALL_STATE(2357)] = 43067, - [SMALL_STATE(2358)] = 43112, - [SMALL_STATE(2359)] = 43195, - [SMALL_STATE(2360)] = 43278, - [SMALL_STATE(2361)] = 43323, - [SMALL_STATE(2362)] = 43406, - [SMALL_STATE(2363)] = 43489, - [SMALL_STATE(2364)] = 43542, - [SMALL_STATE(2365)] = 43617, - [SMALL_STATE(2366)] = 43692, - [SMALL_STATE(2367)] = 43763, - [SMALL_STATE(2368)] = 43832, - [SMALL_STATE(2369)] = 43899, - [SMALL_STATE(2370)] = 43962, - [SMALL_STATE(2371)] = 44017, - [SMALL_STATE(2372)] = 44100, - [SMALL_STATE(2373)] = 44179, - [SMALL_STATE(2374)] = 44262, - [SMALL_STATE(2375)] = 44315, - [SMALL_STATE(2376)] = 44374, - [SMALL_STATE(2377)] = 44449, - [SMALL_STATE(2378)] = 44520, - [SMALL_STATE(2379)] = 44589, - [SMALL_STATE(2380)] = 44672, - [SMALL_STATE(2381)] = 44739, - [SMALL_STATE(2382)] = 44802, - [SMALL_STATE(2383)] = 44857, - [SMALL_STATE(2384)] = 44940, - [SMALL_STATE(2385)] = 44985, - [SMALL_STATE(2386)] = 45060, - [SMALL_STATE(2387)] = 45119, - [SMALL_STATE(2388)] = 45199, - [SMALL_STATE(2389)] = 45279, - [SMALL_STATE(2390)] = 45359, - [SMALL_STATE(2391)] = 45439, - [SMALL_STATE(2392)] = 45519, - [SMALL_STATE(2393)] = 45599, - [SMALL_STATE(2394)] = 45679, - [SMALL_STATE(2395)] = 45759, - [SMALL_STATE(2396)] = 45807, - [SMALL_STATE(2397)] = 45887, - [SMALL_STATE(2398)] = 45965, - [SMALL_STATE(2399)] = 46015, - [SMALL_STATE(2400)] = 46063, - [SMALL_STATE(2401)] = 46143, - [SMALL_STATE(2402)] = 46191, - [SMALL_STATE(2403)] = 46239, - [SMALL_STATE(2404)] = 46319, - [SMALL_STATE(2405)] = 46399, - [SMALL_STATE(2406)] = 46447, - [SMALL_STATE(2407)] = 46527, - [SMALL_STATE(2408)] = 46607, - [SMALL_STATE(2409)] = 46655, - [SMALL_STATE(2410)] = 46735, - [SMALL_STATE(2411)] = 46815, - [SMALL_STATE(2412)] = 46895, - [SMALL_STATE(2413)] = 46975, - [SMALL_STATE(2414)] = 47025, - [SMALL_STATE(2415)] = 47105, - [SMALL_STATE(2416)] = 47185, - [SMALL_STATE(2417)] = 47265, - [SMALL_STATE(2418)] = 47345, - [SMALL_STATE(2419)] = 47396, - [SMALL_STATE(2420)] = 47473, - [SMALL_STATE(2421)] = 47550, - [SMALL_STATE(2422)] = 47623, - [SMALL_STATE(2423)] = 47700, - [SMALL_STATE(2424)] = 47777, - [SMALL_STATE(2425)] = 47824, - [SMALL_STATE(2426)] = 47897, - [SMALL_STATE(2427)] = 47974, - [SMALL_STATE(2428)] = 48051, - [SMALL_STATE(2429)] = 48124, - [SMALL_STATE(2430)] = 48201, - [SMALL_STATE(2431)] = 48278, - [SMALL_STATE(2432)] = 48355, - [SMALL_STATE(2433)] = 48432, - [SMALL_STATE(2434)] = 48509, - [SMALL_STATE(2435)] = 48586, - [SMALL_STATE(2436)] = 48659, - [SMALL_STATE(2437)] = 48706, - [SMALL_STATE(2438)] = 48779, - [SMALL_STATE(2439)] = 48856, - [SMALL_STATE(2440)] = 48903, - [SMALL_STATE(2441)] = 48980, - [SMALL_STATE(2442)] = 49057, - [SMALL_STATE(2443)] = 49134, - [SMALL_STATE(2444)] = 49207, - [SMALL_STATE(2445)] = 49284, - [SMALL_STATE(2446)] = 49357, - [SMALL_STATE(2447)] = 49434, - [SMALL_STATE(2448)] = 49507, - [SMALL_STATE(2449)] = 49584, - [SMALL_STATE(2450)] = 49635, - [SMALL_STATE(2451)] = 49712, - [SMALL_STATE(2452)] = 49789, - [SMALL_STATE(2453)] = 49866, - [SMALL_STATE(2454)] = 49943, - [SMALL_STATE(2455)] = 50020, - [SMALL_STATE(2456)] = 50097, - [SMALL_STATE(2457)] = 50174, - [SMALL_STATE(2458)] = 50251, - [SMALL_STATE(2459)] = 50328, - [SMALL_STATE(2460)] = 50405, - [SMALL_STATE(2461)] = 50456, - [SMALL_STATE(2462)] = 50503, - [SMALL_STATE(2463)] = 50580, - [SMALL_STATE(2464)] = 50644, - [SMALL_STATE(2465)] = 50706, - [SMALL_STATE(2466)] = 50746, - [SMALL_STATE(2467)] = 50816, - [SMALL_STATE(2468)] = 50892, - [SMALL_STATE(2469)] = 50958, - [SMALL_STATE(2470)] = 51028, - [SMALL_STATE(2471)] = 51080, - [SMALL_STATE(2472)] = 51146, - [SMALL_STATE(2473)] = 51208, - [SMALL_STATE(2474)] = 51266, - [SMALL_STATE(2475)] = 51316, - [SMALL_STATE(2476)] = 51366, - [SMALL_STATE(2477)] = 51442, - [SMALL_STATE(2478)] = 51518, - [SMALL_STATE(2479)] = 51576, - [SMALL_STATE(2480)] = 51640, - [SMALL_STATE(2481)] = 51682, - [SMALL_STATE(2482)] = 51734, - [SMALL_STATE(2483)] = 51790, - [SMALL_STATE(2484)] = 51846, - [SMALL_STATE(2485)] = 51890, - [SMALL_STATE(2486)] = 51961, - [SMALL_STATE(2487)] = 52032, - [SMALL_STATE(2488)] = 52103, - [SMALL_STATE(2489)] = 52174, - [SMALL_STATE(2490)] = 52245, - [SMALL_STATE(2491)] = 52316, - [SMALL_STATE(2492)] = 52387, - [SMALL_STATE(2493)] = 52457, - [SMALL_STATE(2494)] = 52527, - [SMALL_STATE(2495)] = 52560, - [SMALL_STATE(2496)] = 52593, - [SMALL_STATE(2497)] = 52626, - [SMALL_STATE(2498)] = 52659, - [SMALL_STATE(2499)] = 52692, - [SMALL_STATE(2500)] = 52725, - [SMALL_STATE(2501)] = 52755, - [SMALL_STATE(2502)] = 52785, - [SMALL_STATE(2503)] = 52815, - [SMALL_STATE(2504)] = 52845, - [SMALL_STATE(2505)] = 52865, - [SMALL_STATE(2506)] = 52882, - [SMALL_STATE(2507)] = 52899, - [SMALL_STATE(2508)] = 52918, - [SMALL_STATE(2509)] = 52937, - [SMALL_STATE(2510)] = 52956, - [SMALL_STATE(2511)] = 52982, - [SMALL_STATE(2512)] = 53008, - [SMALL_STATE(2513)] = 53034, - [SMALL_STATE(2514)] = 53060, - [SMALL_STATE(2515)] = 53082, - [SMALL_STATE(2516)] = 53104, - [SMALL_STATE(2517)] = 53130, - [SMALL_STATE(2518)] = 53156, - [SMALL_STATE(2519)] = 53182, - [SMALL_STATE(2520)] = 53204, - [SMALL_STATE(2521)] = 53226, - [SMALL_STATE(2522)] = 53242, - [SMALL_STATE(2523)] = 53264, - [SMALL_STATE(2524)] = 53290, - [SMALL_STATE(2525)] = 53316, - [SMALL_STATE(2526)] = 53338, - [SMALL_STATE(2527)] = 53360, - [SMALL_STATE(2528)] = 53382, - [SMALL_STATE(2529)] = 53404, - [SMALL_STATE(2530)] = 53426, - [SMALL_STATE(2531)] = 53448, - [SMALL_STATE(2532)] = 53470, - [SMALL_STATE(2533)] = 53496, - [SMALL_STATE(2534)] = 53522, - [SMALL_STATE(2535)] = 53548, - [SMALL_STATE(2536)] = 53574, - [SMALL_STATE(2537)] = 53596, - [SMALL_STATE(2538)] = 53622, - [SMALL_STATE(2539)] = 53638, - [SMALL_STATE(2540)] = 53663, - [SMALL_STATE(2541)] = 53686, - [SMALL_STATE(2542)] = 53709, - [SMALL_STATE(2543)] = 53732, - [SMALL_STATE(2544)] = 53755, - [SMALL_STATE(2545)] = 53769, - [SMALL_STATE(2546)] = 53783, - [SMALL_STATE(2547)] = 53797, - [SMALL_STATE(2548)] = 53811, - [SMALL_STATE(2549)] = 53825, - [SMALL_STATE(2550)] = 53839, - [SMALL_STATE(2551)] = 53853, - [SMALL_STATE(2552)] = 53867, - [SMALL_STATE(2553)] = 53881, - [SMALL_STATE(2554)] = 53895, - [SMALL_STATE(2555)] = 53917, - [SMALL_STATE(2556)] = 53931, - [SMALL_STATE(2557)] = 53945, - [SMALL_STATE(2558)] = 53959, - [SMALL_STATE(2559)] = 53973, - [SMALL_STATE(2560)] = 53987, - [SMALL_STATE(2561)] = 54001, - [SMALL_STATE(2562)] = 54015, - [SMALL_STATE(2563)] = 54029, - [SMALL_STATE(2564)] = 54043, - [SMALL_STATE(2565)] = 54057, - [SMALL_STATE(2566)] = 54071, - [SMALL_STATE(2567)] = 54085, - [SMALL_STATE(2568)] = 54105, - [SMALL_STATE(2569)] = 54119, - [SMALL_STATE(2570)] = 54133, - [SMALL_STATE(2571)] = 54147, - [SMALL_STATE(2572)] = 54161, - [SMALL_STATE(2573)] = 54175, - [SMALL_STATE(2574)] = 54189, - [SMALL_STATE(2575)] = 54203, - [SMALL_STATE(2576)] = 54217, - [SMALL_STATE(2577)] = 54231, - [SMALL_STATE(2578)] = 54245, - [SMALL_STATE(2579)] = 54259, - [SMALL_STATE(2580)] = 54273, - [SMALL_STATE(2581)] = 54287, - [SMALL_STATE(2582)] = 54301, - [SMALL_STATE(2583)] = 54315, - [SMALL_STATE(2584)] = 54329, - [SMALL_STATE(2585)] = 54343, - [SMALL_STATE(2586)] = 54357, - [SMALL_STATE(2587)] = 54371, - [SMALL_STATE(2588)] = 54385, - [SMALL_STATE(2589)] = 54399, - [SMALL_STATE(2590)] = 54413, - [SMALL_STATE(2591)] = 54427, - [SMALL_STATE(2592)] = 54441, - [SMALL_STATE(2593)] = 54455, - [SMALL_STATE(2594)] = 54469, - [SMALL_STATE(2595)] = 54483, - [SMALL_STATE(2596)] = 54497, - [SMALL_STATE(2597)] = 54511, - [SMALL_STATE(2598)] = 54530, - [SMALL_STATE(2599)] = 54549, - [SMALL_STATE(2600)] = 54568, - [SMALL_STATE(2601)] = 54587, - [SMALL_STATE(2602)] = 54606, - [SMALL_STATE(2603)] = 54625, - [SMALL_STATE(2604)] = 54644, - [SMALL_STATE(2605)] = 54663, - [SMALL_STATE(2606)] = 54682, - [SMALL_STATE(2607)] = 54701, - [SMALL_STATE(2608)] = 54720, - [SMALL_STATE(2609)] = 54739, - [SMALL_STATE(2610)] = 54758, - [SMALL_STATE(2611)] = 54777, - [SMALL_STATE(2612)] = 54796, - [SMALL_STATE(2613)] = 54815, - [SMALL_STATE(2614)] = 54834, - [SMALL_STATE(2615)] = 54853, - [SMALL_STATE(2616)] = 54872, - [SMALL_STATE(2617)] = 54891, - [SMALL_STATE(2618)] = 54910, - [SMALL_STATE(2619)] = 54929, - [SMALL_STATE(2620)] = 54948, - [SMALL_STATE(2621)] = 54967, - [SMALL_STATE(2622)] = 54986, - [SMALL_STATE(2623)] = 55005, - [SMALL_STATE(2624)] = 55024, - [SMALL_STATE(2625)] = 55043, - [SMALL_STATE(2626)] = 55062, - [SMALL_STATE(2627)] = 55081, - [SMALL_STATE(2628)] = 55100, - [SMALL_STATE(2629)] = 55119, - [SMALL_STATE(2630)] = 55138, - [SMALL_STATE(2631)] = 55157, - [SMALL_STATE(2632)] = 55176, - [SMALL_STATE(2633)] = 55195, - [SMALL_STATE(2634)] = 55214, - [SMALL_STATE(2635)] = 55233, - [SMALL_STATE(2636)] = 55252, - [SMALL_STATE(2637)] = 55271, - [SMALL_STATE(2638)] = 55290, - [SMALL_STATE(2639)] = 55309, - [SMALL_STATE(2640)] = 55328, - [SMALL_STATE(2641)] = 55347, - [SMALL_STATE(2642)] = 55366, - [SMALL_STATE(2643)] = 55385, - [SMALL_STATE(2644)] = 55404, - [SMALL_STATE(2645)] = 55423, - [SMALL_STATE(2646)] = 55442, - [SMALL_STATE(2647)] = 55461, - [SMALL_STATE(2648)] = 55480, - [SMALL_STATE(2649)] = 55499, - [SMALL_STATE(2650)] = 55518, - [SMALL_STATE(2651)] = 55537, - [SMALL_STATE(2652)] = 55556, - [SMALL_STATE(2653)] = 55575, - [SMALL_STATE(2654)] = 55594, - [SMALL_STATE(2655)] = 55613, - [SMALL_STATE(2656)] = 55632, - [SMALL_STATE(2657)] = 55651, - [SMALL_STATE(2658)] = 55670, - [SMALL_STATE(2659)] = 55689, - [SMALL_STATE(2660)] = 55708, - [SMALL_STATE(2661)] = 55727, - [SMALL_STATE(2662)] = 55746, - [SMALL_STATE(2663)] = 55765, - [SMALL_STATE(2664)] = 55784, - [SMALL_STATE(2665)] = 55803, - [SMALL_STATE(2666)] = 55822, - [SMALL_STATE(2667)] = 55841, - [SMALL_STATE(2668)] = 55860, - [SMALL_STATE(2669)] = 55879, - [SMALL_STATE(2670)] = 55898, - [SMALL_STATE(2671)] = 55917, - [SMALL_STATE(2672)] = 55936, - [SMALL_STATE(2673)] = 55955, - [SMALL_STATE(2674)] = 55974, - [SMALL_STATE(2675)] = 55993, - [SMALL_STATE(2676)] = 56012, - [SMALL_STATE(2677)] = 56031, - [SMALL_STATE(2678)] = 56050, - [SMALL_STATE(2679)] = 56069, - [SMALL_STATE(2680)] = 56082, - [SMALL_STATE(2681)] = 56101, - [SMALL_STATE(2682)] = 56120, - [SMALL_STATE(2683)] = 56139, - [SMALL_STATE(2684)] = 56158, - [SMALL_STATE(2685)] = 56177, - [SMALL_STATE(2686)] = 56196, - [SMALL_STATE(2687)] = 56215, - [SMALL_STATE(2688)] = 56234, - [SMALL_STATE(2689)] = 56253, - [SMALL_STATE(2690)] = 56272, - [SMALL_STATE(2691)] = 56291, - [SMALL_STATE(2692)] = 56310, - [SMALL_STATE(2693)] = 56329, - [SMALL_STATE(2694)] = 56348, - [SMALL_STATE(2695)] = 56367, - [SMALL_STATE(2696)] = 56386, - [SMALL_STATE(2697)] = 56405, - [SMALL_STATE(2698)] = 56424, - [SMALL_STATE(2699)] = 56443, - [SMALL_STATE(2700)] = 56462, - [SMALL_STATE(2701)] = 56481, - [SMALL_STATE(2702)] = 56500, - [SMALL_STATE(2703)] = 56519, - [SMALL_STATE(2704)] = 56538, - [SMALL_STATE(2705)] = 56557, - [SMALL_STATE(2706)] = 56576, - [SMALL_STATE(2707)] = 56595, - [SMALL_STATE(2708)] = 56614, - [SMALL_STATE(2709)] = 56633, - [SMALL_STATE(2710)] = 56652, - [SMALL_STATE(2711)] = 56671, - [SMALL_STATE(2712)] = 56690, - [SMALL_STATE(2713)] = 56709, - [SMALL_STATE(2714)] = 56728, - [SMALL_STATE(2715)] = 56747, - [SMALL_STATE(2716)] = 56766, - [SMALL_STATE(2717)] = 56785, - [SMALL_STATE(2718)] = 56804, - [SMALL_STATE(2719)] = 56823, - [SMALL_STATE(2720)] = 56842, - [SMALL_STATE(2721)] = 56861, - [SMALL_STATE(2722)] = 56880, - [SMALL_STATE(2723)] = 56899, - [SMALL_STATE(2724)] = 56918, - [SMALL_STATE(2725)] = 56937, - [SMALL_STATE(2726)] = 56956, - [SMALL_STATE(2727)] = 56975, - [SMALL_STATE(2728)] = 56994, - [SMALL_STATE(2729)] = 57013, - [SMALL_STATE(2730)] = 57032, - [SMALL_STATE(2731)] = 57051, - [SMALL_STATE(2732)] = 57070, - [SMALL_STATE(2733)] = 57089, - [SMALL_STATE(2734)] = 57108, - [SMALL_STATE(2735)] = 57127, - [SMALL_STATE(2736)] = 57146, - [SMALL_STATE(2737)] = 57165, - [SMALL_STATE(2738)] = 57184, - [SMALL_STATE(2739)] = 57203, - [SMALL_STATE(2740)] = 57222, - [SMALL_STATE(2741)] = 57241, - [SMALL_STATE(2742)] = 57260, - [SMALL_STATE(2743)] = 57279, - [SMALL_STATE(2744)] = 57298, - [SMALL_STATE(2745)] = 57317, - [SMALL_STATE(2746)] = 57336, - [SMALL_STATE(2747)] = 57355, - [SMALL_STATE(2748)] = 57374, - [SMALL_STATE(2749)] = 57393, - [SMALL_STATE(2750)] = 57412, - [SMALL_STATE(2751)] = 57431, - [SMALL_STATE(2752)] = 57450, - [SMALL_STATE(2753)] = 57469, - [SMALL_STATE(2754)] = 57488, - [SMALL_STATE(2755)] = 57507, - [SMALL_STATE(2756)] = 57526, - [SMALL_STATE(2757)] = 57545, - [SMALL_STATE(2758)] = 57564, - [SMALL_STATE(2759)] = 57583, - [SMALL_STATE(2760)] = 57602, - [SMALL_STATE(2761)] = 57621, - [SMALL_STATE(2762)] = 57640, - [SMALL_STATE(2763)] = 57659, - [SMALL_STATE(2764)] = 57678, - [SMALL_STATE(2765)] = 57697, - [SMALL_STATE(2766)] = 57716, - [SMALL_STATE(2767)] = 57735, - [SMALL_STATE(2768)] = 57754, - [SMALL_STATE(2769)] = 57773, - [SMALL_STATE(2770)] = 57792, - [SMALL_STATE(2771)] = 57811, - [SMALL_STATE(2772)] = 57830, - [SMALL_STATE(2773)] = 57849, - [SMALL_STATE(2774)] = 57868, - [SMALL_STATE(2775)] = 57887, - [SMALL_STATE(2776)] = 57906, - [SMALL_STATE(2777)] = 57925, - [SMALL_STATE(2778)] = 57944, - [SMALL_STATE(2779)] = 57963, - [SMALL_STATE(2780)] = 57982, - [SMALL_STATE(2781)] = 58001, - [SMALL_STATE(2782)] = 58020, - [SMALL_STATE(2783)] = 58039, - [SMALL_STATE(2784)] = 58058, - [SMALL_STATE(2785)] = 58077, - [SMALL_STATE(2786)] = 58093, - [SMALL_STATE(2787)] = 58109, - [SMALL_STATE(2788)] = 58125, - [SMALL_STATE(2789)] = 58141, - [SMALL_STATE(2790)] = 58155, - [SMALL_STATE(2791)] = 58171, - [SMALL_STATE(2792)] = 58187, - [SMALL_STATE(2793)] = 58203, - [SMALL_STATE(2794)] = 58219, - [SMALL_STATE(2795)] = 58235, - [SMALL_STATE(2796)] = 58251, - [SMALL_STATE(2797)] = 58267, - [SMALL_STATE(2798)] = 58283, - [SMALL_STATE(2799)] = 58299, - [SMALL_STATE(2800)] = 58315, - [SMALL_STATE(2801)] = 58331, - [SMALL_STATE(2802)] = 58347, - [SMALL_STATE(2803)] = 58363, - [SMALL_STATE(2804)] = 58379, - [SMALL_STATE(2805)] = 58395, - [SMALL_STATE(2806)] = 58411, - [SMALL_STATE(2807)] = 58427, - [SMALL_STATE(2808)] = 58443, - [SMALL_STATE(2809)] = 58459, - [SMALL_STATE(2810)] = 58475, - [SMALL_STATE(2811)] = 58491, - [SMALL_STATE(2812)] = 58507, - [SMALL_STATE(2813)] = 58523, - [SMALL_STATE(2814)] = 58539, - [SMALL_STATE(2815)] = 58555, - [SMALL_STATE(2816)] = 58571, - [SMALL_STATE(2817)] = 58587, - [SMALL_STATE(2818)] = 58603, - [SMALL_STATE(2819)] = 58619, - [SMALL_STATE(2820)] = 58635, - [SMALL_STATE(2821)] = 58651, - [SMALL_STATE(2822)] = 58667, - [SMALL_STATE(2823)] = 58683, - [SMALL_STATE(2824)] = 58699, - [SMALL_STATE(2825)] = 58715, - [SMALL_STATE(2826)] = 58731, - [SMALL_STATE(2827)] = 58747, - [SMALL_STATE(2828)] = 58763, - [SMALL_STATE(2829)] = 58779, - [SMALL_STATE(2830)] = 58795, - [SMALL_STATE(2831)] = 58811, - [SMALL_STATE(2832)] = 58827, - [SMALL_STATE(2833)] = 58843, - [SMALL_STATE(2834)] = 58859, - [SMALL_STATE(2835)] = 58875, - [SMALL_STATE(2836)] = 58891, - [SMALL_STATE(2837)] = 58907, - [SMALL_STATE(2838)] = 58923, - [SMALL_STATE(2839)] = 58939, - [SMALL_STATE(2840)] = 58955, - [SMALL_STATE(2841)] = 58971, - [SMALL_STATE(2842)] = 58985, - [SMALL_STATE(2843)] = 59001, - [SMALL_STATE(2844)] = 59017, - [SMALL_STATE(2845)] = 59033, - [SMALL_STATE(2846)] = 59049, - [SMALL_STATE(2847)] = 59065, - [SMALL_STATE(2848)] = 59081, - [SMALL_STATE(2849)] = 59097, - [SMALL_STATE(2850)] = 59113, - [SMALL_STATE(2851)] = 59129, - [SMALL_STATE(2852)] = 59145, - [SMALL_STATE(2853)] = 59161, - [SMALL_STATE(2854)] = 59177, - [SMALL_STATE(2855)] = 59193, - [SMALL_STATE(2856)] = 59207, - [SMALL_STATE(2857)] = 59223, - [SMALL_STATE(2858)] = 59239, - [SMALL_STATE(2859)] = 59253, - [SMALL_STATE(2860)] = 59269, - [SMALL_STATE(2861)] = 59285, - [SMALL_STATE(2862)] = 59301, - [SMALL_STATE(2863)] = 59317, - [SMALL_STATE(2864)] = 59333, - [SMALL_STATE(2865)] = 59349, - [SMALL_STATE(2866)] = 59365, - [SMALL_STATE(2867)] = 59381, - [SMALL_STATE(2868)] = 59397, - [SMALL_STATE(2869)] = 59413, - [SMALL_STATE(2870)] = 59429, - [SMALL_STATE(2871)] = 59445, - [SMALL_STATE(2872)] = 59461, - [SMALL_STATE(2873)] = 59477, - [SMALL_STATE(2874)] = 59493, - [SMALL_STATE(2875)] = 59509, - [SMALL_STATE(2876)] = 59525, - [SMALL_STATE(2877)] = 59541, - [SMALL_STATE(2878)] = 59555, - [SMALL_STATE(2879)] = 59571, - [SMALL_STATE(2880)] = 59585, - [SMALL_STATE(2881)] = 59601, - [SMALL_STATE(2882)] = 59617, - [SMALL_STATE(2883)] = 59633, - [SMALL_STATE(2884)] = 59649, - [SMALL_STATE(2885)] = 59665, - [SMALL_STATE(2886)] = 59681, - [SMALL_STATE(2887)] = 59697, - [SMALL_STATE(2888)] = 59713, - [SMALL_STATE(2889)] = 59729, - [SMALL_STATE(2890)] = 59745, - [SMALL_STATE(2891)] = 59761, - [SMALL_STATE(2892)] = 59777, - [SMALL_STATE(2893)] = 59793, - [SMALL_STATE(2894)] = 59809, - [SMALL_STATE(2895)] = 59825, - [SMALL_STATE(2896)] = 59841, - [SMALL_STATE(2897)] = 59857, - [SMALL_STATE(2898)] = 59873, - [SMALL_STATE(2899)] = 59889, - [SMALL_STATE(2900)] = 59905, - [SMALL_STATE(2901)] = 59921, - [SMALL_STATE(2902)] = 59937, - [SMALL_STATE(2903)] = 59953, - [SMALL_STATE(2904)] = 59969, - [SMALL_STATE(2905)] = 59985, - [SMALL_STATE(2906)] = 60001, - [SMALL_STATE(2907)] = 60017, - [SMALL_STATE(2908)] = 60033, - [SMALL_STATE(2909)] = 60049, - [SMALL_STATE(2910)] = 60065, - [SMALL_STATE(2911)] = 60081, - [SMALL_STATE(2912)] = 60097, - [SMALL_STATE(2913)] = 60113, - [SMALL_STATE(2914)] = 60129, - [SMALL_STATE(2915)] = 60145, - [SMALL_STATE(2916)] = 60161, - [SMALL_STATE(2917)] = 60177, - [SMALL_STATE(2918)] = 60193, - [SMALL_STATE(2919)] = 60209, - [SMALL_STATE(2920)] = 60225, - [SMALL_STATE(2921)] = 60241, - [SMALL_STATE(2922)] = 60257, - [SMALL_STATE(2923)] = 60273, - [SMALL_STATE(2924)] = 60289, - [SMALL_STATE(2925)] = 60305, - [SMALL_STATE(2926)] = 60321, - [SMALL_STATE(2927)] = 60335, - [SMALL_STATE(2928)] = 60349, - [SMALL_STATE(2929)] = 60365, - [SMALL_STATE(2930)] = 60381, - [SMALL_STATE(2931)] = 60397, - [SMALL_STATE(2932)] = 60413, - [SMALL_STATE(2933)] = 60429, - [SMALL_STATE(2934)] = 60445, - [SMALL_STATE(2935)] = 60461, - [SMALL_STATE(2936)] = 60475, - [SMALL_STATE(2937)] = 60489, - [SMALL_STATE(2938)] = 60505, - [SMALL_STATE(2939)] = 60521, - [SMALL_STATE(2940)] = 60535, - [SMALL_STATE(2941)] = 60549, - [SMALL_STATE(2942)] = 60565, - [SMALL_STATE(2943)] = 60581, - [SMALL_STATE(2944)] = 60597, - [SMALL_STATE(2945)] = 60613, - [SMALL_STATE(2946)] = 60629, - [SMALL_STATE(2947)] = 60645, - [SMALL_STATE(2948)] = 60661, - [SMALL_STATE(2949)] = 60677, - [SMALL_STATE(2950)] = 60693, - [SMALL_STATE(2951)] = 60709, - [SMALL_STATE(2952)] = 60719, - [SMALL_STATE(2953)] = 60735, - [SMALL_STATE(2954)] = 60751, - [SMALL_STATE(2955)] = 60767, - [SMALL_STATE(2956)] = 60783, - [SMALL_STATE(2957)] = 60799, - [SMALL_STATE(2958)] = 60815, - [SMALL_STATE(2959)] = 60831, - [SMALL_STATE(2960)] = 60847, - [SMALL_STATE(2961)] = 60863, - [SMALL_STATE(2962)] = 60879, - [SMALL_STATE(2963)] = 60895, - [SMALL_STATE(2964)] = 60911, - [SMALL_STATE(2965)] = 60927, - [SMALL_STATE(2966)] = 60943, - [SMALL_STATE(2967)] = 60959, - [SMALL_STATE(2968)] = 60975, - [SMALL_STATE(2969)] = 60991, - [SMALL_STATE(2970)] = 61007, - [SMALL_STATE(2971)] = 61023, - [SMALL_STATE(2972)] = 61039, - [SMALL_STATE(2973)] = 61049, - [SMALL_STATE(2974)] = 61065, - [SMALL_STATE(2975)] = 61081, - [SMALL_STATE(2976)] = 61097, - [SMALL_STATE(2977)] = 61113, - [SMALL_STATE(2978)] = 61129, - [SMALL_STATE(2979)] = 61145, - [SMALL_STATE(2980)] = 61155, - [SMALL_STATE(2981)] = 61171, - [SMALL_STATE(2982)] = 61187, - [SMALL_STATE(2983)] = 61203, - [SMALL_STATE(2984)] = 61219, - [SMALL_STATE(2985)] = 61235, - [SMALL_STATE(2986)] = 61251, - [SMALL_STATE(2987)] = 61267, - [SMALL_STATE(2988)] = 61283, - [SMALL_STATE(2989)] = 61299, - [SMALL_STATE(2990)] = 61315, - [SMALL_STATE(2991)] = 61331, - [SMALL_STATE(2992)] = 61347, - [SMALL_STATE(2993)] = 61361, - [SMALL_STATE(2994)] = 61373, - [SMALL_STATE(2995)] = 61389, - [SMALL_STATE(2996)] = 61405, - [SMALL_STATE(2997)] = 61421, - [SMALL_STATE(2998)] = 61435, - [SMALL_STATE(2999)] = 61451, - [SMALL_STATE(3000)] = 61467, - [SMALL_STATE(3001)] = 61477, - [SMALL_STATE(3002)] = 61491, - [SMALL_STATE(3003)] = 61507, - [SMALL_STATE(3004)] = 61523, - [SMALL_STATE(3005)] = 61537, - [SMALL_STATE(3006)] = 61553, - [SMALL_STATE(3007)] = 61569, - [SMALL_STATE(3008)] = 61585, - [SMALL_STATE(3009)] = 61601, - [SMALL_STATE(3010)] = 61617, - [SMALL_STATE(3011)] = 61633, - [SMALL_STATE(3012)] = 61649, - [SMALL_STATE(3013)] = 61665, - [SMALL_STATE(3014)] = 61681, - [SMALL_STATE(3015)] = 61697, - [SMALL_STATE(3016)] = 61713, - [SMALL_STATE(3017)] = 61729, - [SMALL_STATE(3018)] = 61745, - [SMALL_STATE(3019)] = 61761, - [SMALL_STATE(3020)] = 61777, - [SMALL_STATE(3021)] = 61793, - [SMALL_STATE(3022)] = 61809, - [SMALL_STATE(3023)] = 61825, - [SMALL_STATE(3024)] = 61841, - [SMALL_STATE(3025)] = 61857, - [SMALL_STATE(3026)] = 61873, - [SMALL_STATE(3027)] = 61889, - [SMALL_STATE(3028)] = 61905, - [SMALL_STATE(3029)] = 61921, - [SMALL_STATE(3030)] = 61937, - [SMALL_STATE(3031)] = 61953, - [SMALL_STATE(3032)] = 61969, - [SMALL_STATE(3033)] = 61985, - [SMALL_STATE(3034)] = 62001, - [SMALL_STATE(3035)] = 62017, - [SMALL_STATE(3036)] = 62033, - [SMALL_STATE(3037)] = 62049, - [SMALL_STATE(3038)] = 62065, - [SMALL_STATE(3039)] = 62081, - [SMALL_STATE(3040)] = 62097, - [SMALL_STATE(3041)] = 62113, - [SMALL_STATE(3042)] = 62129, - [SMALL_STATE(3043)] = 62145, - [SMALL_STATE(3044)] = 62161, - [SMALL_STATE(3045)] = 62177, - [SMALL_STATE(3046)] = 62193, - [SMALL_STATE(3047)] = 62209, - [SMALL_STATE(3048)] = 62225, - [SMALL_STATE(3049)] = 62241, - [SMALL_STATE(3050)] = 62257, - [SMALL_STATE(3051)] = 62273, - [SMALL_STATE(3052)] = 62289, - [SMALL_STATE(3053)] = 62305, - [SMALL_STATE(3054)] = 62321, - [SMALL_STATE(3055)] = 62337, - [SMALL_STATE(3056)] = 62351, - [SMALL_STATE(3057)] = 62367, - [SMALL_STATE(3058)] = 62383, - [SMALL_STATE(3059)] = 62397, - [SMALL_STATE(3060)] = 62411, - [SMALL_STATE(3061)] = 62427, - [SMALL_STATE(3062)] = 62443, - [SMALL_STATE(3063)] = 62457, - [SMALL_STATE(3064)] = 62471, - [SMALL_STATE(3065)] = 62485, - [SMALL_STATE(3066)] = 62499, - [SMALL_STATE(3067)] = 62515, - [SMALL_STATE(3068)] = 62531, - [SMALL_STATE(3069)] = 62545, - [SMALL_STATE(3070)] = 62559, - [SMALL_STATE(3071)] = 62573, - [SMALL_STATE(3072)] = 62589, - [SMALL_STATE(3073)] = 62603, - [SMALL_STATE(3074)] = 62619, - [SMALL_STATE(3075)] = 62633, - [SMALL_STATE(3076)] = 62649, - [SMALL_STATE(3077)] = 62663, - [SMALL_STATE(3078)] = 62679, - [SMALL_STATE(3079)] = 62695, - [SMALL_STATE(3080)] = 62711, - [SMALL_STATE(3081)] = 62727, - [SMALL_STATE(3082)] = 62743, - [SMALL_STATE(3083)] = 62759, - [SMALL_STATE(3084)] = 62773, - [SMALL_STATE(3085)] = 62789, - [SMALL_STATE(3086)] = 62805, - [SMALL_STATE(3087)] = 62821, - [SMALL_STATE(3088)] = 62837, - [SMALL_STATE(3089)] = 62853, - [SMALL_STATE(3090)] = 62869, - [SMALL_STATE(3091)] = 62885, - [SMALL_STATE(3092)] = 62901, - [SMALL_STATE(3093)] = 62917, - [SMALL_STATE(3094)] = 62933, - [SMALL_STATE(3095)] = 62949, - [SMALL_STATE(3096)] = 62963, - [SMALL_STATE(3097)] = 62979, - [SMALL_STATE(3098)] = 62993, - [SMALL_STATE(3099)] = 63007, - [SMALL_STATE(3100)] = 63021, - [SMALL_STATE(3101)] = 63035, - [SMALL_STATE(3102)] = 63049, - [SMALL_STATE(3103)] = 63063, - [SMALL_STATE(3104)] = 63077, - [SMALL_STATE(3105)] = 63091, - [SMALL_STATE(3106)] = 63105, - [SMALL_STATE(3107)] = 63121, - [SMALL_STATE(3108)] = 63137, - [SMALL_STATE(3109)] = 63153, - [SMALL_STATE(3110)] = 63169, - [SMALL_STATE(3111)] = 63185, - [SMALL_STATE(3112)] = 63201, - [SMALL_STATE(3113)] = 63217, - [SMALL_STATE(3114)] = 63233, - [SMALL_STATE(3115)] = 63249, - [SMALL_STATE(3116)] = 63265, - [SMALL_STATE(3117)] = 63281, - [SMALL_STATE(3118)] = 63297, - [SMALL_STATE(3119)] = 63313, - [SMALL_STATE(3120)] = 63329, - [SMALL_STATE(3121)] = 63345, - [SMALL_STATE(3122)] = 63361, - [SMALL_STATE(3123)] = 63371, - [SMALL_STATE(3124)] = 63387, - [SMALL_STATE(3125)] = 63403, - [SMALL_STATE(3126)] = 63419, - [SMALL_STATE(3127)] = 63435, - [SMALL_STATE(3128)] = 63451, - [SMALL_STATE(3129)] = 63467, - [SMALL_STATE(3130)] = 63483, - [SMALL_STATE(3131)] = 63499, - [SMALL_STATE(3132)] = 63515, - [SMALL_STATE(3133)] = 63528, - [SMALL_STATE(3134)] = 63541, - [SMALL_STATE(3135)] = 63554, - [SMALL_STATE(3136)] = 63567, - [SMALL_STATE(3137)] = 63580, - [SMALL_STATE(3138)] = 63593, - [SMALL_STATE(3139)] = 63606, - [SMALL_STATE(3140)] = 63619, - [SMALL_STATE(3141)] = 63628, - [SMALL_STATE(3142)] = 63641, - [SMALL_STATE(3143)] = 63650, - [SMALL_STATE(3144)] = 63663, - [SMALL_STATE(3145)] = 63676, - [SMALL_STATE(3146)] = 63689, - [SMALL_STATE(3147)] = 63702, - [SMALL_STATE(3148)] = 63715, - [SMALL_STATE(3149)] = 63724, - [SMALL_STATE(3150)] = 63737, - [SMALL_STATE(3151)] = 63750, - [SMALL_STATE(3152)] = 63763, - [SMALL_STATE(3153)] = 63776, - [SMALL_STATE(3154)] = 63789, - [SMALL_STATE(3155)] = 63802, - [SMALL_STATE(3156)] = 63815, - [SMALL_STATE(3157)] = 63828, - [SMALL_STATE(3158)] = 63841, - [SMALL_STATE(3159)] = 63854, - [SMALL_STATE(3160)] = 63863, - [SMALL_STATE(3161)] = 63876, - [SMALL_STATE(3162)] = 63889, - [SMALL_STATE(3163)] = 63902, - [SMALL_STATE(3164)] = 63915, - [SMALL_STATE(3165)] = 63928, - [SMALL_STATE(3166)] = 63941, - [SMALL_STATE(3167)] = 63954, - [SMALL_STATE(3168)] = 63967, - [SMALL_STATE(3169)] = 63980, - [SMALL_STATE(3170)] = 63993, - [SMALL_STATE(3171)] = 64006, - [SMALL_STATE(3172)] = 64019, - [SMALL_STATE(3173)] = 64032, - [SMALL_STATE(3174)] = 64045, - [SMALL_STATE(3175)] = 64058, - [SMALL_STATE(3176)] = 64071, - [SMALL_STATE(3177)] = 64084, - [SMALL_STATE(3178)] = 64097, - [SMALL_STATE(3179)] = 64110, - [SMALL_STATE(3180)] = 64123, - [SMALL_STATE(3181)] = 64136, - [SMALL_STATE(3182)] = 64149, - [SMALL_STATE(3183)] = 64162, - [SMALL_STATE(3184)] = 64175, - [SMALL_STATE(3185)] = 64184, - [SMALL_STATE(3186)] = 64197, - [SMALL_STATE(3187)] = 64206, - [SMALL_STATE(3188)] = 64219, - [SMALL_STATE(3189)] = 64232, - [SMALL_STATE(3190)] = 64245, - [SMALL_STATE(3191)] = 64258, - [SMALL_STATE(3192)] = 64271, - [SMALL_STATE(3193)] = 64284, - [SMALL_STATE(3194)] = 64297, - [SMALL_STATE(3195)] = 64310, - [SMALL_STATE(3196)] = 64323, - [SMALL_STATE(3197)] = 64336, - [SMALL_STATE(3198)] = 64349, - [SMALL_STATE(3199)] = 64362, - [SMALL_STATE(3200)] = 64371, - [SMALL_STATE(3201)] = 64384, - [SMALL_STATE(3202)] = 64397, - [SMALL_STATE(3203)] = 64410, - [SMALL_STATE(3204)] = 64423, - [SMALL_STATE(3205)] = 64436, - [SMALL_STATE(3206)] = 64449, - [SMALL_STATE(3207)] = 64462, - [SMALL_STATE(3208)] = 64475, - [SMALL_STATE(3209)] = 64488, - [SMALL_STATE(3210)] = 64501, - [SMALL_STATE(3211)] = 64514, - [SMALL_STATE(3212)] = 64527, - [SMALL_STATE(3213)] = 64540, - [SMALL_STATE(3214)] = 64553, - [SMALL_STATE(3215)] = 64566, - [SMALL_STATE(3216)] = 64579, - [SMALL_STATE(3217)] = 64592, - [SMALL_STATE(3218)] = 64605, - [SMALL_STATE(3219)] = 64618, - [SMALL_STATE(3220)] = 64631, - [SMALL_STATE(3221)] = 64644, - [SMALL_STATE(3222)] = 64657, - [SMALL_STATE(3223)] = 64670, - [SMALL_STATE(3224)] = 64683, - [SMALL_STATE(3225)] = 64696, - [SMALL_STATE(3226)] = 64709, - [SMALL_STATE(3227)] = 64722, - [SMALL_STATE(3228)] = 64735, - [SMALL_STATE(3229)] = 64746, - [SMALL_STATE(3230)] = 64759, - [SMALL_STATE(3231)] = 64772, - [SMALL_STATE(3232)] = 64785, - [SMALL_STATE(3233)] = 64798, - [SMALL_STATE(3234)] = 64807, - [SMALL_STATE(3235)] = 64820, - [SMALL_STATE(3236)] = 64833, - [SMALL_STATE(3237)] = 64846, - [SMALL_STATE(3238)] = 64859, - [SMALL_STATE(3239)] = 64872, - [SMALL_STATE(3240)] = 64885, - [SMALL_STATE(3241)] = 64898, - [SMALL_STATE(3242)] = 64911, - [SMALL_STATE(3243)] = 64924, - [SMALL_STATE(3244)] = 64937, - [SMALL_STATE(3245)] = 64950, - [SMALL_STATE(3246)] = 64963, - [SMALL_STATE(3247)] = 64976, - [SMALL_STATE(3248)] = 64989, - [SMALL_STATE(3249)] = 65002, - [SMALL_STATE(3250)] = 65015, - [SMALL_STATE(3251)] = 65028, - [SMALL_STATE(3252)] = 65041, - [SMALL_STATE(3253)] = 65054, - [SMALL_STATE(3254)] = 65067, - [SMALL_STATE(3255)] = 65080, - [SMALL_STATE(3256)] = 65093, - [SMALL_STATE(3257)] = 65106, - [SMALL_STATE(3258)] = 65119, - [SMALL_STATE(3259)] = 65132, - [SMALL_STATE(3260)] = 65145, - [SMALL_STATE(3261)] = 65158, - [SMALL_STATE(3262)] = 65171, - [SMALL_STATE(3263)] = 65184, - [SMALL_STATE(3264)] = 65197, - [SMALL_STATE(3265)] = 65206, - [SMALL_STATE(3266)] = 65219, - [SMALL_STATE(3267)] = 65232, - [SMALL_STATE(3268)] = 65245, - [SMALL_STATE(3269)] = 65254, - [SMALL_STATE(3270)] = 65267, - [SMALL_STATE(3271)] = 65280, - [SMALL_STATE(3272)] = 65293, - [SMALL_STATE(3273)] = 65306, - [SMALL_STATE(3274)] = 65319, - [SMALL_STATE(3275)] = 65332, - [SMALL_STATE(3276)] = 65345, - [SMALL_STATE(3277)] = 65358, - [SMALL_STATE(3278)] = 65371, - [SMALL_STATE(3279)] = 65384, - [SMALL_STATE(3280)] = 65393, - [SMALL_STATE(3281)] = 65406, - [SMALL_STATE(3282)] = 65419, - [SMALL_STATE(3283)] = 65432, - [SMALL_STATE(3284)] = 65445, - [SMALL_STATE(3285)] = 65458, - [SMALL_STATE(3286)] = 65471, - [SMALL_STATE(3287)] = 65484, - [SMALL_STATE(3288)] = 65497, - [SMALL_STATE(3289)] = 65510, - [SMALL_STATE(3290)] = 65523, - [SMALL_STATE(3291)] = 65532, - [SMALL_STATE(3292)] = 65543, - [SMALL_STATE(3293)] = 65556, - [SMALL_STATE(3294)] = 65569, - [SMALL_STATE(3295)] = 65582, - [SMALL_STATE(3296)] = 65595, - [SMALL_STATE(3297)] = 65608, - [SMALL_STATE(3298)] = 65621, - [SMALL_STATE(3299)] = 65634, - [SMALL_STATE(3300)] = 65643, - [SMALL_STATE(3301)] = 65656, - [SMALL_STATE(3302)] = 65669, - [SMALL_STATE(3303)] = 65682, - [SMALL_STATE(3304)] = 65695, - [SMALL_STATE(3305)] = 65708, - [SMALL_STATE(3306)] = 65721, - [SMALL_STATE(3307)] = 65734, - [SMALL_STATE(3308)] = 65747, - [SMALL_STATE(3309)] = 65760, - [SMALL_STATE(3310)] = 65773, - [SMALL_STATE(3311)] = 65786, - [SMALL_STATE(3312)] = 65799, - [SMALL_STATE(3313)] = 65812, - [SMALL_STATE(3314)] = 65825, - [SMALL_STATE(3315)] = 65838, - [SMALL_STATE(3316)] = 65851, - [SMALL_STATE(3317)] = 65864, - [SMALL_STATE(3318)] = 65877, - [SMALL_STATE(3319)] = 65890, - [SMALL_STATE(3320)] = 65903, - [SMALL_STATE(3321)] = 65912, - [SMALL_STATE(3322)] = 65925, - [SMALL_STATE(3323)] = 65938, - [SMALL_STATE(3324)] = 65951, - [SMALL_STATE(3325)] = 65964, - [SMALL_STATE(3326)] = 65977, - [SMALL_STATE(3327)] = 65990, - [SMALL_STATE(3328)] = 66003, - [SMALL_STATE(3329)] = 66016, - [SMALL_STATE(3330)] = 66029, - [SMALL_STATE(3331)] = 66042, - [SMALL_STATE(3332)] = 66055, - [SMALL_STATE(3333)] = 66068, - [SMALL_STATE(3334)] = 66081, - [SMALL_STATE(3335)] = 66094, - [SMALL_STATE(3336)] = 66107, - [SMALL_STATE(3337)] = 66120, - [SMALL_STATE(3338)] = 66130, - [SMALL_STATE(3339)] = 66140, - [SMALL_STATE(3340)] = 66150, - [SMALL_STATE(3341)] = 66158, - [SMALL_STATE(3342)] = 66168, - [SMALL_STATE(3343)] = 66178, - [SMALL_STATE(3344)] = 66188, - [SMALL_STATE(3345)] = 66198, - [SMALL_STATE(3346)] = 66206, - [SMALL_STATE(3347)] = 66216, - [SMALL_STATE(3348)] = 66226, - [SMALL_STATE(3349)] = 66236, - [SMALL_STATE(3350)] = 66246, - [SMALL_STATE(3351)] = 66256, - [SMALL_STATE(3352)] = 66266, - [SMALL_STATE(3353)] = 66276, - [SMALL_STATE(3354)] = 66284, - [SMALL_STATE(3355)] = 66294, - [SMALL_STATE(3356)] = 66304, - [SMALL_STATE(3357)] = 66314, - [SMALL_STATE(3358)] = 66322, - [SMALL_STATE(3359)] = 66332, - [SMALL_STATE(3360)] = 66340, - [SMALL_STATE(3361)] = 66350, - [SMALL_STATE(3362)] = 66360, - [SMALL_STATE(3363)] = 66370, - [SMALL_STATE(3364)] = 66380, - [SMALL_STATE(3365)] = 66388, - [SMALL_STATE(3366)] = 66398, - [SMALL_STATE(3367)] = 66408, - [SMALL_STATE(3368)] = 66418, - [SMALL_STATE(3369)] = 66428, - [SMALL_STATE(3370)] = 66438, - [SMALL_STATE(3371)] = 66448, - [SMALL_STATE(3372)] = 66456, - [SMALL_STATE(3373)] = 66466, - [SMALL_STATE(3374)] = 66476, - [SMALL_STATE(3375)] = 66484, - [SMALL_STATE(3376)] = 66494, - [SMALL_STATE(3377)] = 66504, - [SMALL_STATE(3378)] = 66514, - [SMALL_STATE(3379)] = 66522, - [SMALL_STATE(3380)] = 66532, - [SMALL_STATE(3381)] = 66540, - [SMALL_STATE(3382)] = 66550, - [SMALL_STATE(3383)] = 66560, - [SMALL_STATE(3384)] = 66570, - [SMALL_STATE(3385)] = 66578, - [SMALL_STATE(3386)] = 66588, - [SMALL_STATE(3387)] = 66598, - [SMALL_STATE(3388)] = 66606, - [SMALL_STATE(3389)] = 66616, - [SMALL_STATE(3390)] = 66624, - [SMALL_STATE(3391)] = 66634, - [SMALL_STATE(3392)] = 66642, - [SMALL_STATE(3393)] = 66652, - [SMALL_STATE(3394)] = 66659, - [SMALL_STATE(3395)] = 66666, - [SMALL_STATE(3396)] = 66673, - [SMALL_STATE(3397)] = 66680, - [SMALL_STATE(3398)] = 66687, - [SMALL_STATE(3399)] = 66694, - [SMALL_STATE(3400)] = 66701, - [SMALL_STATE(3401)] = 66708, - [SMALL_STATE(3402)] = 66715, - [SMALL_STATE(3403)] = 66722, - [SMALL_STATE(3404)] = 66729, - [SMALL_STATE(3405)] = 66736, - [SMALL_STATE(3406)] = 66743, - [SMALL_STATE(3407)] = 66750, - [SMALL_STATE(3408)] = 66757, - [SMALL_STATE(3409)] = 66764, - [SMALL_STATE(3410)] = 66771, - [SMALL_STATE(3411)] = 66778, - [SMALL_STATE(3412)] = 66785, - [SMALL_STATE(3413)] = 66792, - [SMALL_STATE(3414)] = 66799, - [SMALL_STATE(3415)] = 66806, - [SMALL_STATE(3416)] = 66813, - [SMALL_STATE(3417)] = 66820, - [SMALL_STATE(3418)] = 66827, - [SMALL_STATE(3419)] = 66834, - [SMALL_STATE(3420)] = 66841, - [SMALL_STATE(3421)] = 66848, - [SMALL_STATE(3422)] = 66855, - [SMALL_STATE(3423)] = 66862, - [SMALL_STATE(3424)] = 66869, - [SMALL_STATE(3425)] = 66876, - [SMALL_STATE(3426)] = 66883, - [SMALL_STATE(3427)] = 66890, - [SMALL_STATE(3428)] = 66897, - [SMALL_STATE(3429)] = 66904, - [SMALL_STATE(3430)] = 66911, - [SMALL_STATE(3431)] = 66918, - [SMALL_STATE(3432)] = 66925, - [SMALL_STATE(3433)] = 66932, - [SMALL_STATE(3434)] = 66939, - [SMALL_STATE(3435)] = 66946, - [SMALL_STATE(3436)] = 66953, - [SMALL_STATE(3437)] = 66960, - [SMALL_STATE(3438)] = 66967, - [SMALL_STATE(3439)] = 66974, - [SMALL_STATE(3440)] = 66981, - [SMALL_STATE(3441)] = 66988, - [SMALL_STATE(3442)] = 66995, - [SMALL_STATE(3443)] = 67002, - [SMALL_STATE(3444)] = 67009, - [SMALL_STATE(3445)] = 67016, - [SMALL_STATE(3446)] = 67023, - [SMALL_STATE(3447)] = 67030, - [SMALL_STATE(3448)] = 67037, - [SMALL_STATE(3449)] = 67044, - [SMALL_STATE(3450)] = 67051, - [SMALL_STATE(3451)] = 67058, - [SMALL_STATE(3452)] = 67065, - [SMALL_STATE(3453)] = 67072, - [SMALL_STATE(3454)] = 67079, - [SMALL_STATE(3455)] = 67086, - [SMALL_STATE(3456)] = 67093, - [SMALL_STATE(3457)] = 67100, - [SMALL_STATE(3458)] = 67107, - [SMALL_STATE(3459)] = 67114, - [SMALL_STATE(3460)] = 67121, - [SMALL_STATE(3461)] = 67128, - [SMALL_STATE(3462)] = 67135, - [SMALL_STATE(3463)] = 67142, - [SMALL_STATE(3464)] = 67149, - [SMALL_STATE(3465)] = 67156, - [SMALL_STATE(3466)] = 67163, - [SMALL_STATE(3467)] = 67170, - [SMALL_STATE(3468)] = 67177, - [SMALL_STATE(3469)] = 67184, - [SMALL_STATE(3470)] = 67191, - [SMALL_STATE(3471)] = 67198, - [SMALL_STATE(3472)] = 67205, - [SMALL_STATE(3473)] = 67212, - [SMALL_STATE(3474)] = 67219, - [SMALL_STATE(3475)] = 67226, - [SMALL_STATE(3476)] = 67233, - [SMALL_STATE(3477)] = 67240, - [SMALL_STATE(3478)] = 67247, - [SMALL_STATE(3479)] = 67254, - [SMALL_STATE(3480)] = 67261, - [SMALL_STATE(3481)] = 67268, - [SMALL_STATE(3482)] = 67275, - [SMALL_STATE(3483)] = 67282, - [SMALL_STATE(3484)] = 67289, - [SMALL_STATE(3485)] = 67296, - [SMALL_STATE(3486)] = 67303, - [SMALL_STATE(3487)] = 67310, - [SMALL_STATE(3488)] = 67317, - [SMALL_STATE(3489)] = 67324, - [SMALL_STATE(3490)] = 67331, - [SMALL_STATE(3491)] = 67338, - [SMALL_STATE(3492)] = 67345, - [SMALL_STATE(3493)] = 67352, - [SMALL_STATE(3494)] = 67359, - [SMALL_STATE(3495)] = 67366, - [SMALL_STATE(3496)] = 67373, - [SMALL_STATE(3497)] = 67380, - [SMALL_STATE(3498)] = 67387, - [SMALL_STATE(3499)] = 67394, - [SMALL_STATE(3500)] = 67401, - [SMALL_STATE(3501)] = 67408, - [SMALL_STATE(3502)] = 67415, - [SMALL_STATE(3503)] = 67422, - [SMALL_STATE(3504)] = 67429, - [SMALL_STATE(3505)] = 67436, - [SMALL_STATE(3506)] = 67443, - [SMALL_STATE(3507)] = 67450, - [SMALL_STATE(3508)] = 67457, - [SMALL_STATE(3509)] = 67464, - [SMALL_STATE(3510)] = 67471, - [SMALL_STATE(3511)] = 67478, - [SMALL_STATE(3512)] = 67485, - [SMALL_STATE(3513)] = 67492, - [SMALL_STATE(3514)] = 67499, - [SMALL_STATE(3515)] = 67506, - [SMALL_STATE(3516)] = 67513, - [SMALL_STATE(3517)] = 67520, - [SMALL_STATE(3518)] = 67527, - [SMALL_STATE(3519)] = 67534, - [SMALL_STATE(3520)] = 67541, - [SMALL_STATE(3521)] = 67548, - [SMALL_STATE(3522)] = 67555, - [SMALL_STATE(3523)] = 67562, - [SMALL_STATE(3524)] = 67569, - [SMALL_STATE(3525)] = 67576, - [SMALL_STATE(3526)] = 67583, - [SMALL_STATE(3527)] = 67590, - [SMALL_STATE(3528)] = 67597, - [SMALL_STATE(3529)] = 67604, - [SMALL_STATE(3530)] = 67611, - [SMALL_STATE(3531)] = 67618, - [SMALL_STATE(3532)] = 67625, - [SMALL_STATE(3533)] = 67632, - [SMALL_STATE(3534)] = 67639, - [SMALL_STATE(3535)] = 67646, - [SMALL_STATE(3536)] = 67653, - [SMALL_STATE(3537)] = 67660, - [SMALL_STATE(3538)] = 67667, - [SMALL_STATE(3539)] = 67674, - [SMALL_STATE(3540)] = 67681, - [SMALL_STATE(3541)] = 67688, - [SMALL_STATE(3542)] = 67695, - [SMALL_STATE(3543)] = 67702, - [SMALL_STATE(3544)] = 67709, - [SMALL_STATE(3545)] = 67716, - [SMALL_STATE(3546)] = 67723, - [SMALL_STATE(3547)] = 67730, - [SMALL_STATE(3548)] = 67737, - [SMALL_STATE(3549)] = 67744, - [SMALL_STATE(3550)] = 67751, - [SMALL_STATE(3551)] = 67758, + [SMALL_STATE(1878)] = 0, + [SMALL_STATE(1879)] = 77, + [SMALL_STATE(1880)] = 154, + [SMALL_STATE(1881)] = 230, + [SMALL_STATE(1882)] = 306, + [SMALL_STATE(1883)] = 382, + [SMALL_STATE(1884)] = 458, + [SMALL_STATE(1885)] = 534, + [SMALL_STATE(1886)] = 610, + [SMALL_STATE(1887)] = 686, + [SMALL_STATE(1888)] = 762, + [SMALL_STATE(1889)] = 838, + [SMALL_STATE(1890)] = 914, + [SMALL_STATE(1891)] = 990, + [SMALL_STATE(1892)] = 1066, + [SMALL_STATE(1893)] = 1135, + [SMALL_STATE(1894)] = 1204, + [SMALL_STATE(1895)] = 1273, + [SMALL_STATE(1896)] = 1342, + [SMALL_STATE(1897)] = 1411, + [SMALL_STATE(1898)] = 1480, + [SMALL_STATE(1899)] = 1549, + [SMALL_STATE(1900)] = 1618, + [SMALL_STATE(1901)] = 1692, + [SMALL_STATE(1902)] = 1766, + [SMALL_STATE(1903)] = 1838, + [SMALL_STATE(1904)] = 1912, + [SMALL_STATE(1905)] = 1986, + [SMALL_STATE(1906)] = 2060, + [SMALL_STATE(1907)] = 2134, + [SMALL_STATE(1908)] = 2208, + [SMALL_STATE(1909)] = 2280, + [SMALL_STATE(1910)] = 2354, + [SMALL_STATE(1911)] = 2443, + [SMALL_STATE(1912)] = 2535, + [SMALL_STATE(1913)] = 2627, + [SMALL_STATE(1914)] = 2719, + [SMALL_STATE(1915)] = 2811, + [SMALL_STATE(1916)] = 2903, + [SMALL_STATE(1917)] = 2995, + [SMALL_STATE(1918)] = 3087, + [SMALL_STATE(1919)] = 3179, + [SMALL_STATE(1920)] = 3271, + [SMALL_STATE(1921)] = 3363, + [SMALL_STATE(1922)] = 3455, + [SMALL_STATE(1923)] = 3540, + [SMALL_STATE(1924)] = 3625, + [SMALL_STATE(1925)] = 3710, + [SMALL_STATE(1926)] = 3795, + [SMALL_STATE(1927)] = 3880, + [SMALL_STATE(1928)] = 3965, + [SMALL_STATE(1929)] = 4050, + [SMALL_STATE(1930)] = 4135, + [SMALL_STATE(1931)] = 4220, + [SMALL_STATE(1932)] = 4287, + [SMALL_STATE(1933)] = 4372, + [SMALL_STATE(1934)] = 4457, + [SMALL_STATE(1935)] = 4542, + [SMALL_STATE(1936)] = 4627, + [SMALL_STATE(1937)] = 4712, + [SMALL_STATE(1938)] = 4797, + [SMALL_STATE(1939)] = 4882, + [SMALL_STATE(1940)] = 4967, + [SMALL_STATE(1941)] = 5052, + [SMALL_STATE(1942)] = 5137, + [SMALL_STATE(1943)] = 5222, + [SMALL_STATE(1944)] = 5307, + [SMALL_STATE(1945)] = 5392, + [SMALL_STATE(1946)] = 5477, + [SMALL_STATE(1947)] = 5562, + [SMALL_STATE(1948)] = 5626, + [SMALL_STATE(1949)] = 5690, + [SMALL_STATE(1950)] = 5754, + [SMALL_STATE(1951)] = 5818, + [SMALL_STATE(1952)] = 5882, + [SMALL_STATE(1953)] = 5946, + [SMALL_STATE(1954)] = 6010, + [SMALL_STATE(1955)] = 6074, + [SMALL_STATE(1956)] = 6138, + [SMALL_STATE(1957)] = 6202, + [SMALL_STATE(1958)] = 6266, + [SMALL_STATE(1959)] = 6330, + [SMALL_STATE(1960)] = 6394, + [SMALL_STATE(1961)] = 6458, + [SMALL_STATE(1962)] = 6524, + [SMALL_STATE(1963)] = 6588, + [SMALL_STATE(1964)] = 6652, + [SMALL_STATE(1965)] = 6716, + [SMALL_STATE(1966)] = 6780, + [SMALL_STATE(1967)] = 6846, + [SMALL_STATE(1968)] = 6914, + [SMALL_STATE(1969)] = 6982, + [SMALL_STATE(1970)] = 7046, + [SMALL_STATE(1971)] = 7110, + [SMALL_STATE(1972)] = 7174, + [SMALL_STATE(1973)] = 7237, + [SMALL_STATE(1974)] = 7322, + [SMALL_STATE(1975)] = 7385, + [SMALL_STATE(1976)] = 7448, + [SMALL_STATE(1977)] = 7511, + [SMALL_STATE(1978)] = 7574, + [SMALL_STATE(1979)] = 7637, + [SMALL_STATE(1980)] = 7700, + [SMALL_STATE(1981)] = 7763, + [SMALL_STATE(1982)] = 7826, + [SMALL_STATE(1983)] = 7889, + [SMALL_STATE(1984)] = 7952, + [SMALL_STATE(1985)] = 8015, + [SMALL_STATE(1986)] = 8078, + [SMALL_STATE(1987)] = 8141, + [SMALL_STATE(1988)] = 8204, + [SMALL_STATE(1989)] = 8269, + [SMALL_STATE(1990)] = 8332, + [SMALL_STATE(1991)] = 8395, + [SMALL_STATE(1992)] = 8458, + [SMALL_STATE(1993)] = 8521, + [SMALL_STATE(1994)] = 8584, + [SMALL_STATE(1995)] = 8649, + [SMALL_STATE(1996)] = 8712, + [SMALL_STATE(1997)] = 8775, + [SMALL_STATE(1998)] = 8838, + [SMALL_STATE(1999)] = 8901, + [SMALL_STATE(2000)] = 8964, + [SMALL_STATE(2001)] = 9027, + [SMALL_STATE(2002)] = 9090, + [SMALL_STATE(2003)] = 9153, + [SMALL_STATE(2004)] = 9216, + [SMALL_STATE(2005)] = 9279, + [SMALL_STATE(2006)] = 9342, + [SMALL_STATE(2007)] = 9405, + [SMALL_STATE(2008)] = 9468, + [SMALL_STATE(2009)] = 9531, + [SMALL_STATE(2010)] = 9594, + [SMALL_STATE(2011)] = 9676, + [SMALL_STATE(2012)] = 9758, + [SMALL_STATE(2013)] = 9840, + [SMALL_STATE(2014)] = 9922, + [SMALL_STATE(2015)] = 10004, + [SMALL_STATE(2016)] = 10086, + [SMALL_STATE(2017)] = 10168, + [SMALL_STATE(2018)] = 10250, + [SMALL_STATE(2019)] = 10332, + [SMALL_STATE(2020)] = 10414, + [SMALL_STATE(2021)] = 10496, + [SMALL_STATE(2022)] = 10578, + [SMALL_STATE(2023)] = 10660, + [SMALL_STATE(2024)] = 10742, + [SMALL_STATE(2025)] = 10824, + [SMALL_STATE(2026)] = 10906, + [SMALL_STATE(2027)] = 10988, + [SMALL_STATE(2028)] = 11070, + [SMALL_STATE(2029)] = 11152, + [SMALL_STATE(2030)] = 11234, + [SMALL_STATE(2031)] = 11316, + [SMALL_STATE(2032)] = 11398, + [SMALL_STATE(2033)] = 11480, + [SMALL_STATE(2034)] = 11562, + [SMALL_STATE(2035)] = 11644, + [SMALL_STATE(2036)] = 11726, + [SMALL_STATE(2037)] = 11808, + [SMALL_STATE(2038)] = 11890, + [SMALL_STATE(2039)] = 11972, + [SMALL_STATE(2040)] = 12054, + [SMALL_STATE(2041)] = 12136, + [SMALL_STATE(2042)] = 12218, + [SMALL_STATE(2043)] = 12300, + [SMALL_STATE(2044)] = 12382, + [SMALL_STATE(2045)] = 12464, + [SMALL_STATE(2046)] = 12546, + [SMALL_STATE(2047)] = 12628, + [SMALL_STATE(2048)] = 12710, + [SMALL_STATE(2049)] = 12792, + [SMALL_STATE(2050)] = 12871, + [SMALL_STATE(2051)] = 12950, + [SMALL_STATE(2052)] = 13029, + [SMALL_STATE(2053)] = 13108, + [SMALL_STATE(2054)] = 13187, + [SMALL_STATE(2055)] = 13266, + [SMALL_STATE(2056)] = 13345, + [SMALL_STATE(2057)] = 13424, + [SMALL_STATE(2058)] = 13503, + [SMALL_STATE(2059)] = 13582, + [SMALL_STATE(2060)] = 13661, + [SMALL_STATE(2061)] = 13740, + [SMALL_STATE(2062)] = 13819, + [SMALL_STATE(2063)] = 13898, + [SMALL_STATE(2064)] = 13977, + [SMALL_STATE(2065)] = 14056, + [SMALL_STATE(2066)] = 14135, + [SMALL_STATE(2067)] = 14214, + [SMALL_STATE(2068)] = 14293, + [SMALL_STATE(2069)] = 14372, + [SMALL_STATE(2070)] = 14437, + [SMALL_STATE(2071)] = 14516, + [SMALL_STATE(2072)] = 14595, + [SMALL_STATE(2073)] = 14674, + [SMALL_STATE(2074)] = 14753, + [SMALL_STATE(2075)] = 14832, + [SMALL_STATE(2076)] = 14911, + [SMALL_STATE(2077)] = 14990, + [SMALL_STATE(2078)] = 15069, + [SMALL_STATE(2079)] = 15148, + [SMALL_STATE(2080)] = 15227, + [SMALL_STATE(2081)] = 15306, + [SMALL_STATE(2082)] = 15385, + [SMALL_STATE(2083)] = 15464, + [SMALL_STATE(2084)] = 15543, + [SMALL_STATE(2085)] = 15622, + [SMALL_STATE(2086)] = 15701, + [SMALL_STATE(2087)] = 15780, + [SMALL_STATE(2088)] = 15859, + [SMALL_STATE(2089)] = 15938, + [SMALL_STATE(2090)] = 16017, + [SMALL_STATE(2091)] = 16096, + [SMALL_STATE(2092)] = 16175, + [SMALL_STATE(2093)] = 16254, + [SMALL_STATE(2094)] = 16333, + [SMALL_STATE(2095)] = 16398, + [SMALL_STATE(2096)] = 16477, + [SMALL_STATE(2097)] = 16556, + [SMALL_STATE(2098)] = 16635, + [SMALL_STATE(2099)] = 16714, + [SMALL_STATE(2100)] = 16793, + [SMALL_STATE(2101)] = 16872, + [SMALL_STATE(2102)] = 16951, + [SMALL_STATE(2103)] = 17030, + [SMALL_STATE(2104)] = 17109, + [SMALL_STATE(2105)] = 17188, + [SMALL_STATE(2106)] = 17267, + [SMALL_STATE(2107)] = 17346, + [SMALL_STATE(2108)] = 17425, + [SMALL_STATE(2109)] = 17504, + [SMALL_STATE(2110)] = 17583, + [SMALL_STATE(2111)] = 17662, + [SMALL_STATE(2112)] = 17741, + [SMALL_STATE(2113)] = 17820, + [SMALL_STATE(2114)] = 17899, + [SMALL_STATE(2115)] = 17978, + [SMALL_STATE(2116)] = 18057, + [SMALL_STATE(2117)] = 18136, + [SMALL_STATE(2118)] = 18215, + [SMALL_STATE(2119)] = 18294, + [SMALL_STATE(2120)] = 18373, + [SMALL_STATE(2121)] = 18452, + [SMALL_STATE(2122)] = 18531, + [SMALL_STATE(2123)] = 18610, + [SMALL_STATE(2124)] = 18689, + [SMALL_STATE(2125)] = 18768, + [SMALL_STATE(2126)] = 18847, + [SMALL_STATE(2127)] = 18926, + [SMALL_STATE(2128)] = 19005, + [SMALL_STATE(2129)] = 19084, + [SMALL_STATE(2130)] = 19163, + [SMALL_STATE(2131)] = 19242, + [SMALL_STATE(2132)] = 19321, + [SMALL_STATE(2133)] = 19400, + [SMALL_STATE(2134)] = 19479, + [SMALL_STATE(2135)] = 19558, + [SMALL_STATE(2136)] = 19637, + [SMALL_STATE(2137)] = 19716, + [SMALL_STATE(2138)] = 19795, + [SMALL_STATE(2139)] = 19874, + [SMALL_STATE(2140)] = 19953, + [SMALL_STATE(2141)] = 20032, + [SMALL_STATE(2142)] = 20111, + [SMALL_STATE(2143)] = 20190, + [SMALL_STATE(2144)] = 20269, + [SMALL_STATE(2145)] = 20348, + [SMALL_STATE(2146)] = 20427, + [SMALL_STATE(2147)] = 20506, + [SMALL_STATE(2148)] = 20585, + [SMALL_STATE(2149)] = 20664, + [SMALL_STATE(2150)] = 20743, + [SMALL_STATE(2151)] = 20822, + [SMALL_STATE(2152)] = 20901, + [SMALL_STATE(2153)] = 20980, + [SMALL_STATE(2154)] = 21059, + [SMALL_STATE(2155)] = 21138, + [SMALL_STATE(2156)] = 21217, + [SMALL_STATE(2157)] = 21296, + [SMALL_STATE(2158)] = 21375, + [SMALL_STATE(2159)] = 21454, + [SMALL_STATE(2160)] = 21533, + [SMALL_STATE(2161)] = 21612, + [SMALL_STATE(2162)] = 21691, + [SMALL_STATE(2163)] = 21770, + [SMALL_STATE(2164)] = 21849, + [SMALL_STATE(2165)] = 21928, + [SMALL_STATE(2166)] = 22004, + [SMALL_STATE(2167)] = 22080, + [SMALL_STATE(2168)] = 22156, + [SMALL_STATE(2169)] = 22232, + [SMALL_STATE(2170)] = 22308, + [SMALL_STATE(2171)] = 22384, + [SMALL_STATE(2172)] = 22460, + [SMALL_STATE(2173)] = 22536, + [SMALL_STATE(2174)] = 22612, + [SMALL_STATE(2175)] = 22688, + [SMALL_STATE(2176)] = 22764, + [SMALL_STATE(2177)] = 22840, + [SMALL_STATE(2178)] = 22916, + [SMALL_STATE(2179)] = 22992, + [SMALL_STATE(2180)] = 23068, + [SMALL_STATE(2181)] = 23144, + [SMALL_STATE(2182)] = 23220, + [SMALL_STATE(2183)] = 23296, + [SMALL_STATE(2184)] = 23372, + [SMALL_STATE(2185)] = 23448, + [SMALL_STATE(2186)] = 23524, + [SMALL_STATE(2187)] = 23600, + [SMALL_STATE(2188)] = 23676, + [SMALL_STATE(2189)] = 23752, + [SMALL_STATE(2190)] = 23828, + [SMALL_STATE(2191)] = 23904, + [SMALL_STATE(2192)] = 23980, + [SMALL_STATE(2193)] = 24056, + [SMALL_STATE(2194)] = 24132, + [SMALL_STATE(2195)] = 24208, + [SMALL_STATE(2196)] = 24284, + [SMALL_STATE(2197)] = 24360, + [SMALL_STATE(2198)] = 24436, + [SMALL_STATE(2199)] = 24512, + [SMALL_STATE(2200)] = 24588, + [SMALL_STATE(2201)] = 24664, + [SMALL_STATE(2202)] = 24740, + [SMALL_STATE(2203)] = 24816, + [SMALL_STATE(2204)] = 24892, + [SMALL_STATE(2205)] = 24968, + [SMALL_STATE(2206)] = 25044, + [SMALL_STATE(2207)] = 25120, + [SMALL_STATE(2208)] = 25196, + [SMALL_STATE(2209)] = 25272, + [SMALL_STATE(2210)] = 25348, + [SMALL_STATE(2211)] = 25424, + [SMALL_STATE(2212)] = 25500, + [SMALL_STATE(2213)] = 25576, + [SMALL_STATE(2214)] = 25652, + [SMALL_STATE(2215)] = 25728, + [SMALL_STATE(2216)] = 25804, + [SMALL_STATE(2217)] = 25880, + [SMALL_STATE(2218)] = 25956, + [SMALL_STATE(2219)] = 26032, + [SMALL_STATE(2220)] = 26108, + [SMALL_STATE(2221)] = 26184, + [SMALL_STATE(2222)] = 26260, + [SMALL_STATE(2223)] = 26336, + [SMALL_STATE(2224)] = 26412, + [SMALL_STATE(2225)] = 26488, + [SMALL_STATE(2226)] = 26564, + [SMALL_STATE(2227)] = 26640, + [SMALL_STATE(2228)] = 26716, + [SMALL_STATE(2229)] = 26792, + [SMALL_STATE(2230)] = 26868, + [SMALL_STATE(2231)] = 26944, + [SMALL_STATE(2232)] = 27020, + [SMALL_STATE(2233)] = 27096, + [SMALL_STATE(2234)] = 27172, + [SMALL_STATE(2235)] = 27248, + [SMALL_STATE(2236)] = 27324, + [SMALL_STATE(2237)] = 27400, + [SMALL_STATE(2238)] = 27476, + [SMALL_STATE(2239)] = 27552, + [SMALL_STATE(2240)] = 27628, + [SMALL_STATE(2241)] = 27704, + [SMALL_STATE(2242)] = 27780, + [SMALL_STATE(2243)] = 27856, + [SMALL_STATE(2244)] = 27932, + [SMALL_STATE(2245)] = 28008, + [SMALL_STATE(2246)] = 28084, + [SMALL_STATE(2247)] = 28160, + [SMALL_STATE(2248)] = 28236, + [SMALL_STATE(2249)] = 28312, + [SMALL_STATE(2250)] = 28388, + [SMALL_STATE(2251)] = 28464, + [SMALL_STATE(2252)] = 28540, + [SMALL_STATE(2253)] = 28616, + [SMALL_STATE(2254)] = 28692, + [SMALL_STATE(2255)] = 28768, + [SMALL_STATE(2256)] = 28844, + [SMALL_STATE(2257)] = 28920, + [SMALL_STATE(2258)] = 28996, + [SMALL_STATE(2259)] = 29072, + [SMALL_STATE(2260)] = 29148, + [SMALL_STATE(2261)] = 29224, + [SMALL_STATE(2262)] = 29300, + [SMALL_STATE(2263)] = 29376, + [SMALL_STATE(2264)] = 29452, + [SMALL_STATE(2265)] = 29528, + [SMALL_STATE(2266)] = 29604, + [SMALL_STATE(2267)] = 29680, + [SMALL_STATE(2268)] = 29756, + [SMALL_STATE(2269)] = 29832, + [SMALL_STATE(2270)] = 29908, + [SMALL_STATE(2271)] = 29984, + [SMALL_STATE(2272)] = 30060, + [SMALL_STATE(2273)] = 30136, + [SMALL_STATE(2274)] = 30212, + [SMALL_STATE(2275)] = 30288, + [SMALL_STATE(2276)] = 30364, + [SMALL_STATE(2277)] = 30440, + [SMALL_STATE(2278)] = 30516, + [SMALL_STATE(2279)] = 30592, + [SMALL_STATE(2280)] = 30668, + [SMALL_STATE(2281)] = 30744, + [SMALL_STATE(2282)] = 30820, + [SMALL_STATE(2283)] = 30896, + [SMALL_STATE(2284)] = 30972, + [SMALL_STATE(2285)] = 31048, + [SMALL_STATE(2286)] = 31124, + [SMALL_STATE(2287)] = 31197, + [SMALL_STATE(2288)] = 31270, + [SMALL_STATE(2289)] = 31343, + [SMALL_STATE(2290)] = 31416, + [SMALL_STATE(2291)] = 31489, + [SMALL_STATE(2292)] = 31562, + [SMALL_STATE(2293)] = 31623, + [SMALL_STATE(2294)] = 31682, + [SMALL_STATE(2295)] = 31743, + [SMALL_STATE(2296)] = 31802, + [SMALL_STATE(2297)] = 31858, + [SMALL_STATE(2298)] = 31922, + [SMALL_STATE(2299)] = 31988, + [SMALL_STATE(2300)] = 32048, + [SMALL_STATE(2301)] = 32114, + [SMALL_STATE(2302)] = 32180, + [SMALL_STATE(2303)] = 32246, + [SMALL_STATE(2304)] = 32302, + [SMALL_STATE(2305)] = 32360, + [SMALL_STATE(2306)] = 32416, + [SMALL_STATE(2307)] = 32472, + [SMALL_STATE(2308)] = 32528, + [SMALL_STATE(2309)] = 32584, + [SMALL_STATE(2310)] = 32640, + [SMALL_STATE(2311)] = 32696, + [SMALL_STATE(2312)] = 32752, + [SMALL_STATE(2313)] = 32808, + [SMALL_STATE(2314)] = 32864, + [SMALL_STATE(2315)] = 32920, + [SMALL_STATE(2316)] = 32976, + [SMALL_STATE(2317)] = 33032, + [SMALL_STATE(2318)] = 33088, + [SMALL_STATE(2319)] = 33144, + [SMALL_STATE(2320)] = 33200, + [SMALL_STATE(2321)] = 33256, + [SMALL_STATE(2322)] = 33312, + [SMALL_STATE(2323)] = 33368, + [SMALL_STATE(2324)] = 33424, + [SMALL_STATE(2325)] = 33480, + [SMALL_STATE(2326)] = 33536, + [SMALL_STATE(2327)] = 33592, + [SMALL_STATE(2328)] = 33648, + [SMALL_STATE(2329)] = 33704, + [SMALL_STATE(2330)] = 33760, + [SMALL_STATE(2331)] = 33816, + [SMALL_STATE(2332)] = 33872, + [SMALL_STATE(2333)] = 33928, + [SMALL_STATE(2334)] = 33984, + [SMALL_STATE(2335)] = 34040, + [SMALL_STATE(2336)] = 34096, + [SMALL_STATE(2337)] = 34154, + [SMALL_STATE(2338)] = 34210, + [SMALL_STATE(2339)] = 34266, + [SMALL_STATE(2340)] = 34322, + [SMALL_STATE(2341)] = 34378, + [SMALL_STATE(2342)] = 34434, + [SMALL_STATE(2343)] = 34490, + [SMALL_STATE(2344)] = 34546, + [SMALL_STATE(2345)] = 34602, + [SMALL_STATE(2346)] = 34658, + [SMALL_STATE(2347)] = 34714, + [SMALL_STATE(2348)] = 34770, + [SMALL_STATE(2349)] = 34826, + [SMALL_STATE(2350)] = 34882, + [SMALL_STATE(2351)] = 34938, + [SMALL_STATE(2352)] = 34994, + [SMALL_STATE(2353)] = 35050, + [SMALL_STATE(2354)] = 35106, + [SMALL_STATE(2355)] = 35164, + [SMALL_STATE(2356)] = 35220, + [SMALL_STATE(2357)] = 35276, + [SMALL_STATE(2358)] = 35332, + [SMALL_STATE(2359)] = 35388, + [SMALL_STATE(2360)] = 35444, + [SMALL_STATE(2361)] = 35500, + [SMALL_STATE(2362)] = 35555, + [SMALL_STATE(2363)] = 35610, + [SMALL_STATE(2364)] = 35667, + [SMALL_STATE(2365)] = 35722, + [SMALL_STATE(2366)] = 35777, + [SMALL_STATE(2367)] = 35832, + [SMALL_STATE(2368)] = 35887, + [SMALL_STATE(2369)] = 35942, + [SMALL_STATE(2370)] = 35997, + [SMALL_STATE(2371)] = 36052, + [SMALL_STATE(2372)] = 36107, + [SMALL_STATE(2373)] = 36162, + [SMALL_STATE(2374)] = 36217, + [SMALL_STATE(2375)] = 36272, + [SMALL_STATE(2376)] = 36327, + [SMALL_STATE(2377)] = 36382, + [SMALL_STATE(2378)] = 36437, + [SMALL_STATE(2379)] = 36492, + [SMALL_STATE(2380)] = 36547, + [SMALL_STATE(2381)] = 36602, + [SMALL_STATE(2382)] = 36657, + [SMALL_STATE(2383)] = 36712, + [SMALL_STATE(2384)] = 36767, + [SMALL_STATE(2385)] = 36822, + [SMALL_STATE(2386)] = 36877, + [SMALL_STATE(2387)] = 36932, + [SMALL_STATE(2388)] = 36987, + [SMALL_STATE(2389)] = 37042, + [SMALL_STATE(2390)] = 37097, + [SMALL_STATE(2391)] = 37152, + [SMALL_STATE(2392)] = 37207, + [SMALL_STATE(2393)] = 37262, + [SMALL_STATE(2394)] = 37317, + [SMALL_STATE(2395)] = 37372, + [SMALL_STATE(2396)] = 37427, + [SMALL_STATE(2397)] = 37482, + [SMALL_STATE(2398)] = 37537, + [SMALL_STATE(2399)] = 37592, + [SMALL_STATE(2400)] = 37647, + [SMALL_STATE(2401)] = 37702, + [SMALL_STATE(2402)] = 37757, + [SMALL_STATE(2403)] = 37812, + [SMALL_STATE(2404)] = 37867, + [SMALL_STATE(2405)] = 37922, + [SMALL_STATE(2406)] = 37977, + [SMALL_STATE(2407)] = 38032, + [SMALL_STATE(2408)] = 38087, + [SMALL_STATE(2409)] = 38142, + [SMALL_STATE(2410)] = 38197, + [SMALL_STATE(2411)] = 38252, + [SMALL_STATE(2412)] = 38307, + [SMALL_STATE(2413)] = 38362, + [SMALL_STATE(2414)] = 38417, + [SMALL_STATE(2415)] = 38472, + [SMALL_STATE(2416)] = 38527, + [SMALL_STATE(2417)] = 38582, + [SMALL_STATE(2418)] = 38637, + [SMALL_STATE(2419)] = 38692, + [SMALL_STATE(2420)] = 38747, + [SMALL_STATE(2421)] = 38802, + [SMALL_STATE(2422)] = 38857, + [SMALL_STATE(2423)] = 38912, + [SMALL_STATE(2424)] = 38967, + [SMALL_STATE(2425)] = 39022, + [SMALL_STATE(2426)] = 39077, + [SMALL_STATE(2427)] = 39132, + [SMALL_STATE(2428)] = 39187, + [SMALL_STATE(2429)] = 39242, + [SMALL_STATE(2430)] = 39297, + [SMALL_STATE(2431)] = 39352, + [SMALL_STATE(2432)] = 39407, + [SMALL_STATE(2433)] = 39462, + [SMALL_STATE(2434)] = 39517, + [SMALL_STATE(2435)] = 39572, + [SMALL_STATE(2436)] = 39635, + [SMALL_STATE(2437)] = 39690, + [SMALL_STATE(2438)] = 39745, + [SMALL_STATE(2439)] = 39800, + [SMALL_STATE(2440)] = 39859, + [SMALL_STATE(2441)] = 39914, + [SMALL_STATE(2442)] = 39969, + [SMALL_STATE(2443)] = 40024, + [SMALL_STATE(2444)] = 40080, + [SMALL_STATE(2445)] = 40160, + [SMALL_STATE(2446)] = 40252, + [SMALL_STATE(2447)] = 40318, + [SMALL_STATE(2448)] = 40396, + [SMALL_STATE(2449)] = 40466, + [SMALL_STATE(2450)] = 40550, + [SMALL_STATE(2451)] = 40626, + [SMALL_STATE(2452)] = 40698, + [SMALL_STATE(2453)] = 40766, + [SMALL_STATE(2454)] = 40832, + [SMALL_STATE(2455)] = 40902, + [SMALL_STATE(2456)] = 40986, + [SMALL_STATE(2457)] = 41066, + [SMALL_STATE(2458)] = 41144, + [SMALL_STATE(2459)] = 41220, + [SMALL_STATE(2460)] = 41292, + [SMALL_STATE(2461)] = 41360, + [SMALL_STATE(2462)] = 41414, + [SMALL_STATE(2463)] = 41467, + [SMALL_STATE(2464)] = 41558, + [SMALL_STATE(2465)] = 41614, + [SMALL_STATE(2466)] = 41665, + [SMALL_STATE(2467)] = 41734, + [SMALL_STATE(2468)] = 41809, + [SMALL_STATE(2469)] = 41882, + [SMALL_STATE(2470)] = 41951, + [SMALL_STATE(2471)] = 42040, + [SMALL_STATE(2472)] = 42105, + [SMALL_STATE(2473)] = 42156, + [SMALL_STATE(2474)] = 42221, + [SMALL_STATE(2475)] = 42272, + [SMALL_STATE(2476)] = 42323, + [SMALL_STATE(2477)] = 42374, + [SMALL_STATE(2478)] = 42437, + [SMALL_STATE(2479)] = 42504, + [SMALL_STATE(2480)] = 42585, + [SMALL_STATE(2481)] = 42636, + [SMALL_STATE(2482)] = 42687, + [SMALL_STATE(2483)] = 42738, + [SMALL_STATE(2484)] = 42789, + [SMALL_STATE(2485)] = 42866, + [SMALL_STATE(2486)] = 42939, + [SMALL_STATE(2487)] = 43002, + [SMALL_STATE(2488)] = 43053, + [SMALL_STATE(2489)] = 43120, + [SMALL_STATE(2490)] = 43201, + [SMALL_STATE(2491)] = 43278, + [SMALL_STATE(2492)] = 43353, + [SMALL_STATE(2493)] = 43417, + [SMALL_STATE(2494)] = 43507, + [SMALL_STATE(2495)] = 43569, + [SMALL_STATE(2496)] = 43635, + [SMALL_STATE(2497)] = 43715, + [SMALL_STATE(2498)] = 43791, + [SMALL_STATE(2499)] = 43865, + [SMALL_STATE(2500)] = 43937, + [SMALL_STATE(2501)] = 44005, + [SMALL_STATE(2502)] = 44067, + [SMALL_STATE(2503)] = 44133, + [SMALL_STATE(2504)] = 44213, + [SMALL_STATE(2505)] = 44289, + [SMALL_STATE(2506)] = 44363, + [SMALL_STATE(2507)] = 44435, + [SMALL_STATE(2508)] = 44503, + [SMALL_STATE(2509)] = 44567, + [SMALL_STATE(2510)] = 44657, + [SMALL_STATE(2511)] = 44743, + [SMALL_STATE(2512)] = 44831, + [SMALL_STATE(2513)] = 44916, + [SMALL_STATE(2514)] = 44971, + [SMALL_STATE(2515)] = 45043, + [SMALL_STATE(2516)] = 45107, + [SMALL_STATE(2517)] = 45177, + [SMALL_STATE(2518)] = 45235, + [SMALL_STATE(2519)] = 45303, + [SMALL_STATE(2520)] = 45359, + [SMALL_STATE(2521)] = 45421, + [SMALL_STATE(2522)] = 45489, + [SMALL_STATE(2523)] = 45565, + [SMALL_STATE(2524)] = 45637, + [SMALL_STATE(2525)] = 45707, + [SMALL_STATE(2526)] = 45763, + [SMALL_STATE(2527)] = 45827, + [SMALL_STATE(2528)] = 45889, + [SMALL_STATE(2529)] = 45947, + [SMALL_STATE(2530)] = 46023, + [SMALL_STATE(2531)] = 46084, + [SMALL_STATE(2532)] = 46141, + [SMALL_STATE(2533)] = 46196, + [SMALL_STATE(2534)] = 46253, + [SMALL_STATE(2535)] = 46318, + [SMALL_STATE(2536)] = 46379, + [SMALL_STATE(2537)] = 46448, + [SMALL_STATE(2538)] = 46513, + [SMALL_STATE(2539)] = 46590, + [SMALL_STATE(2540)] = 46663, + [SMALL_STATE(2541)] = 46734, + [SMALL_STATE(2542)] = 46805, + [SMALL_STATE(2543)] = 46882, + [SMALL_STATE(2544)] = 46955, + [SMALL_STATE(2545)] = 47024, + [SMALL_STATE(2546)] = 47079, + [SMALL_STATE(2547)] = 47160, + [SMALL_STATE(2548)] = 47246, + [SMALL_STATE(2549)] = 47332, + [SMALL_STATE(2550)] = 47420, + [SMALL_STATE(2551)] = 47506, + [SMALL_STATE(2552)] = 47592, + [SMALL_STATE(2553)] = 47678, + [SMALL_STATE(2554)] = 47764, + [SMALL_STATE(2555)] = 47850, + [SMALL_STATE(2556)] = 47936, + [SMALL_STATE(2557)] = 48022, + [SMALL_STATE(2558)] = 48110, + [SMALL_STATE(2559)] = 48196, + [SMALL_STATE(2560)] = 48282, + [SMALL_STATE(2561)] = 48368, + [SMALL_STATE(2562)] = 48454, + [SMALL_STATE(2563)] = 48542, + [SMALL_STATE(2564)] = 48628, + [SMALL_STATE(2565)] = 48714, + [SMALL_STATE(2566)] = 48800, + [SMALL_STATE(2567)] = 48886, + [SMALL_STATE(2568)] = 48972, + [SMALL_STATE(2569)] = 49058, + [SMALL_STATE(2570)] = 49144, + [SMALL_STATE(2571)] = 49211, + [SMALL_STATE(2572)] = 49282, + [SMALL_STATE(2573)] = 49345, + [SMALL_STATE(2574)] = 49428, + [SMALL_STATE(2575)] = 49483, + [SMALL_STATE(2576)] = 49528, + [SMALL_STATE(2577)] = 49611, + [SMALL_STATE(2578)] = 49694, + [SMALL_STATE(2579)] = 49747, + [SMALL_STATE(2580)] = 49792, + [SMALL_STATE(2581)] = 49875, + [SMALL_STATE(2582)] = 49920, + [SMALL_STATE(2583)] = 50003, + [SMALL_STATE(2584)] = 50086, + [SMALL_STATE(2585)] = 50169, + [SMALL_STATE(2586)] = 50228, + [SMALL_STATE(2587)] = 50303, + [SMALL_STATE(2588)] = 50358, + [SMALL_STATE(2589)] = 50421, + [SMALL_STATE(2590)] = 50504, + [SMALL_STATE(2591)] = 50571, + [SMALL_STATE(2592)] = 50650, + [SMALL_STATE(2593)] = 50703, + [SMALL_STATE(2594)] = 50786, + [SMALL_STATE(2595)] = 50831, + [SMALL_STATE(2596)] = 50910, + [SMALL_STATE(2597)] = 50985, + [SMALL_STATE(2598)] = 51054, + [SMALL_STATE(2599)] = 51137, + [SMALL_STATE(2600)] = 51212, + [SMALL_STATE(2601)] = 51295, + [SMALL_STATE(2602)] = 51370, + [SMALL_STATE(2603)] = 51453, + [SMALL_STATE(2604)] = 51536, + [SMALL_STATE(2605)] = 51619, + [SMALL_STATE(2606)] = 51702, + [SMALL_STATE(2607)] = 51785, + [SMALL_STATE(2608)] = 51868, + [SMALL_STATE(2609)] = 51951, + [SMALL_STATE(2610)] = 52002, + [SMALL_STATE(2611)] = 52073, + [SMALL_STATE(2612)] = 52142, + [SMALL_STATE(2613)] = 52225, + [SMALL_STATE(2614)] = 52278, + [SMALL_STATE(2615)] = 52337, + [SMALL_STATE(2616)] = 52412, + [SMALL_STATE(2617)] = 52495, + [SMALL_STATE(2618)] = 52575, + [SMALL_STATE(2619)] = 52657, + [SMALL_STATE(2620)] = 52737, + [SMALL_STATE(2621)] = 52817, + [SMALL_STATE(2622)] = 52865, + [SMALL_STATE(2623)] = 52945, + [SMALL_STATE(2624)] = 53025, + [SMALL_STATE(2625)] = 53073, + [SMALL_STATE(2626)] = 53121, + [SMALL_STATE(2627)] = 53201, + [SMALL_STATE(2628)] = 53281, + [SMALL_STATE(2629)] = 53361, + [SMALL_STATE(2630)] = 53441, + [SMALL_STATE(2631)] = 53521, + [SMALL_STATE(2632)] = 53569, + [SMALL_STATE(2633)] = 53649, + [SMALL_STATE(2634)] = 53731, + [SMALL_STATE(2635)] = 53811, + [SMALL_STATE(2636)] = 53891, + [SMALL_STATE(2637)] = 53973, + [SMALL_STATE(2638)] = 54053, + [SMALL_STATE(2639)] = 54133, + [SMALL_STATE(2640)] = 54213, + [SMALL_STATE(2641)] = 54293, + [SMALL_STATE(2642)] = 54343, + [SMALL_STATE(2643)] = 54393, + [SMALL_STATE(2644)] = 54473, + [SMALL_STATE(2645)] = 54521, + [SMALL_STATE(2646)] = 54601, + [SMALL_STATE(2647)] = 54681, + [SMALL_STATE(2648)] = 54761, + [SMALL_STATE(2649)] = 54839, + [SMALL_STATE(2650)] = 54919, + [SMALL_STATE(2651)] = 54999, + [SMALL_STATE(2652)] = 55047, + [SMALL_STATE(2653)] = 55127, + [SMALL_STATE(2654)] = 55207, + [SMALL_STATE(2655)] = 55255, + [SMALL_STATE(2656)] = 55335, + [SMALL_STATE(2657)] = 55383, + [SMALL_STATE(2658)] = 55463, + [SMALL_STATE(2659)] = 55543, + [SMALL_STATE(2660)] = 55620, + [SMALL_STATE(2661)] = 55697, + [SMALL_STATE(2662)] = 55738, + [SMALL_STATE(2663)] = 55815, + [SMALL_STATE(2664)] = 55892, + [SMALL_STATE(2665)] = 55969, + [SMALL_STATE(2666)] = 56016, + [SMALL_STATE(2667)] = 56093, + [SMALL_STATE(2668)] = 56170, + [SMALL_STATE(2669)] = 56243, + [SMALL_STATE(2670)] = 56320, + [SMALL_STATE(2671)] = 56393, + [SMALL_STATE(2672)] = 56440, + [SMALL_STATE(2673)] = 56513, + [SMALL_STATE(2674)] = 56590, + [SMALL_STATE(2675)] = 56667, + [SMALL_STATE(2676)] = 56744, + [SMALL_STATE(2677)] = 56821, + [SMALL_STATE(2678)] = 56894, + [SMALL_STATE(2679)] = 56971, + [SMALL_STATE(2680)] = 57048, + [SMALL_STATE(2681)] = 57125, + [SMALL_STATE(2682)] = 57198, + [SMALL_STATE(2683)] = 57275, + [SMALL_STATE(2684)] = 57352, + [SMALL_STATE(2685)] = 57429, + [SMALL_STATE(2686)] = 57506, + [SMALL_STATE(2687)] = 57553, + [SMALL_STATE(2688)] = 57630, + [SMALL_STATE(2689)] = 57707, + [SMALL_STATE(2690)] = 57750, + [SMALL_STATE(2691)] = 57827, + [SMALL_STATE(2692)] = 57904, + [SMALL_STATE(2693)] = 57981, + [SMALL_STATE(2694)] = 58058, + [SMALL_STATE(2695)] = 58131, + [SMALL_STATE(2696)] = 58204, + [SMALL_STATE(2697)] = 58281, + [SMALL_STATE(2698)] = 58358, + [SMALL_STATE(2699)] = 58435, + [SMALL_STATE(2700)] = 58512, + [SMALL_STATE(2701)] = 58589, + [SMALL_STATE(2702)] = 58666, + [SMALL_STATE(2703)] = 58743, + [SMALL_STATE(2704)] = 58816, + [SMALL_STATE(2705)] = 58859, + [SMALL_STATE(2706)] = 58902, + [SMALL_STATE(2707)] = 58979, + [SMALL_STATE(2708)] = 59026, + [SMALL_STATE(2709)] = 59103, + [SMALL_STATE(2710)] = 59180, + [SMALL_STATE(2711)] = 59227, + [SMALL_STATE(2712)] = 59268, + [SMALL_STATE(2713)] = 59345, + [SMALL_STATE(2714)] = 59422, + [SMALL_STATE(2715)] = 59499, + [SMALL_STATE(2716)] = 59576, + [SMALL_STATE(2717)] = 59653, + [SMALL_STATE(2718)] = 59703, + [SMALL_STATE(2719)] = 59741, + [SMALL_STATE(2720)] = 59811, + [SMALL_STATE(2721)] = 59877, + [SMALL_STATE(2722)] = 59949, + [SMALL_STATE(2723)] = 59987, + [SMALL_STATE(2724)] = 60025, + [SMALL_STATE(2725)] = 60063, + [SMALL_STATE(2726)] = 60101, + [SMALL_STATE(2727)] = 60141, + [SMALL_STATE(2728)] = 60179, + [SMALL_STATE(2729)] = 60229, + [SMALL_STATE(2730)] = 60295, + [SMALL_STATE(2731)] = 60333, + [SMALL_STATE(2732)] = 60371, + [SMALL_STATE(2733)] = 60437, + [SMALL_STATE(2734)] = 60503, + [SMALL_STATE(2735)] = 60567, + [SMALL_STATE(2736)] = 60605, + [SMALL_STATE(2737)] = 60643, + [SMALL_STATE(2738)] = 60681, + [SMALL_STATE(2739)] = 60733, + [SMALL_STATE(2740)] = 60771, + [SMALL_STATE(2741)] = 60809, + [SMALL_STATE(2742)] = 60847, + [SMALL_STATE(2743)] = 60905, + [SMALL_STATE(2744)] = 60943, + [SMALL_STATE(2745)] = 61015, + [SMALL_STATE(2746)] = 61053, + [SMALL_STATE(2747)] = 61091, + [SMALL_STATE(2748)] = 61131, + [SMALL_STATE(2749)] = 61169, + [SMALL_STATE(2750)] = 61207, + [SMALL_STATE(2751)] = 61245, + [SMALL_STATE(2752)] = 61305, + [SMALL_STATE(2753)] = 61357, + [SMALL_STATE(2754)] = 61395, + [SMALL_STATE(2755)] = 61433, + [SMALL_STATE(2756)] = 61471, + [SMALL_STATE(2757)] = 61509, + [SMALL_STATE(2758)] = 61573, + [SMALL_STATE(2759)] = 61611, + [SMALL_STATE(2760)] = 61649, + [SMALL_STATE(2761)] = 61687, + [SMALL_STATE(2762)] = 61725, + [SMALL_STATE(2763)] = 61787, + [SMALL_STATE(2764)] = 61845, + [SMALL_STATE(2765)] = 61883, + [SMALL_STATE(2766)] = 61935, + [SMALL_STATE(2767)] = 61973, + [SMALL_STATE(2768)] = 62025, + [SMALL_STATE(2769)] = 62081, + [SMALL_STATE(2770)] = 62119, + [SMALL_STATE(2771)] = 62157, + [SMALL_STATE(2772)] = 62195, + [SMALL_STATE(2773)] = 62233, + [SMALL_STATE(2774)] = 62303, + [SMALL_STATE(2775)] = 62347, + [SMALL_STATE(2776)] = 62385, + [SMALL_STATE(2777)] = 62427, + [SMALL_STATE(2778)] = 62491, + [SMALL_STATE(2779)] = 62553, + [SMALL_STATE(2780)] = 62601, + [SMALL_STATE(2781)] = 62639, + [SMALL_STATE(2782)] = 62707, + [SMALL_STATE(2783)] = 62745, + [SMALL_STATE(2784)] = 62783, + [SMALL_STATE(2785)] = 62851, + [SMALL_STATE(2786)] = 62889, + [SMALL_STATE(2787)] = 62927, + [SMALL_STATE(2788)] = 62965, + [SMALL_STATE(2789)] = 63003, + [SMALL_STATE(2790)] = 63041, + [SMALL_STATE(2791)] = 63079, + [SMALL_STATE(2792)] = 63117, + [SMALL_STATE(2793)] = 63155, + [SMALL_STATE(2794)] = 63215, + [SMALL_STATE(2795)] = 63253, + [SMALL_STATE(2796)] = 63291, + [SMALL_STATE(2797)] = 63331, + [SMALL_STATE(2798)] = 63395, + [SMALL_STATE(2799)] = 63433, + [SMALL_STATE(2800)] = 63471, + [SMALL_STATE(2801)] = 63521, + [SMALL_STATE(2802)] = 63577, + [SMALL_STATE(2803)] = 63615, + [SMALL_STATE(2804)] = 63653, + [SMALL_STATE(2805)] = 63691, + [SMALL_STATE(2806)] = 63739, + [SMALL_STATE(2807)] = 63787, + [SMALL_STATE(2808)] = 63843, + [SMALL_STATE(2809)] = 63893, + [SMALL_STATE(2810)] = 63933, + [SMALL_STATE(2811)] = 63971, + [SMALL_STATE(2812)] = 64027, + [SMALL_STATE(2813)] = 64065, + [SMALL_STATE(2814)] = 64113, + [SMALL_STATE(2815)] = 64151, + [SMALL_STATE(2816)] = 64188, + [SMALL_STATE(2817)] = 64225, + [SMALL_STATE(2818)] = 64262, + [SMALL_STATE(2819)] = 64299, + [SMALL_STATE(2820)] = 64336, + [SMALL_STATE(2821)] = 64373, + [SMALL_STATE(2822)] = 64410, + [SMALL_STATE(2823)] = 64447, + [SMALL_STATE(2824)] = 64484, + [SMALL_STATE(2825)] = 64521, + [SMALL_STATE(2826)] = 64558, + [SMALL_STATE(2827)] = 64595, + [SMALL_STATE(2828)] = 64666, + [SMALL_STATE(2829)] = 64703, + [SMALL_STATE(2830)] = 64740, + [SMALL_STATE(2831)] = 64777, + [SMALL_STATE(2832)] = 64814, + [SMALL_STATE(2833)] = 64851, + [SMALL_STATE(2834)] = 64888, + [SMALL_STATE(2835)] = 64925, + [SMALL_STATE(2836)] = 64962, + [SMALL_STATE(2837)] = 64999, + [SMALL_STATE(2838)] = 65036, + [SMALL_STATE(2839)] = 65073, + [SMALL_STATE(2840)] = 65110, + [SMALL_STATE(2841)] = 65147, + [SMALL_STATE(2842)] = 65184, + [SMALL_STATE(2843)] = 65221, + [SMALL_STATE(2844)] = 65258, + [SMALL_STATE(2845)] = 65295, + [SMALL_STATE(2846)] = 65332, + [SMALL_STATE(2847)] = 65369, + [SMALL_STATE(2848)] = 65440, + [SMALL_STATE(2849)] = 65477, + [SMALL_STATE(2850)] = 65514, + [SMALL_STATE(2851)] = 65551, + [SMALL_STATE(2852)] = 65622, + [SMALL_STATE(2853)] = 65659, + [SMALL_STATE(2854)] = 65696, + [SMALL_STATE(2855)] = 65733, + [SMALL_STATE(2856)] = 65770, + [SMALL_STATE(2857)] = 65807, + [SMALL_STATE(2858)] = 65844, + [SMALL_STATE(2859)] = 65881, + [SMALL_STATE(2860)] = 65918, + [SMALL_STATE(2861)] = 65955, + [SMALL_STATE(2862)] = 65992, + [SMALL_STATE(2863)] = 66029, + [SMALL_STATE(2864)] = 66066, + [SMALL_STATE(2865)] = 66103, + [SMALL_STATE(2866)] = 66140, + [SMALL_STATE(2867)] = 66177, + [SMALL_STATE(2868)] = 66214, + [SMALL_STATE(2869)] = 66251, + [SMALL_STATE(2870)] = 66288, + [SMALL_STATE(2871)] = 66359, + [SMALL_STATE(2872)] = 66430, + [SMALL_STATE(2873)] = 66467, + [SMALL_STATE(2874)] = 66504, + [SMALL_STATE(2875)] = 66541, + [SMALL_STATE(2876)] = 66578, + [SMALL_STATE(2877)] = 66615, + [SMALL_STATE(2878)] = 66652, + [SMALL_STATE(2879)] = 66689, + [SMALL_STATE(2880)] = 66726, + [SMALL_STATE(2881)] = 66763, + [SMALL_STATE(2882)] = 66800, + [SMALL_STATE(2883)] = 66837, + [SMALL_STATE(2884)] = 66874, + [SMALL_STATE(2885)] = 66945, + [SMALL_STATE(2886)] = 67016, + [SMALL_STATE(2887)] = 67053, + [SMALL_STATE(2888)] = 67124, + [SMALL_STATE(2889)] = 67195, + [SMALL_STATE(2890)] = 67232, + [SMALL_STATE(2891)] = 67269, + [SMALL_STATE(2892)] = 67306, + [SMALL_STATE(2893)] = 67343, + [SMALL_STATE(2894)] = 67380, + [SMALL_STATE(2895)] = 67417, + [SMALL_STATE(2896)] = 67454, + [SMALL_STATE(2897)] = 67491, + [SMALL_STATE(2898)] = 67528, + [SMALL_STATE(2899)] = 67565, + [SMALL_STATE(2900)] = 67602, + [SMALL_STATE(2901)] = 67639, + [SMALL_STATE(2902)] = 67709, + [SMALL_STATE(2903)] = 67779, + [SMALL_STATE(2904)] = 67812, + [SMALL_STATE(2905)] = 67845, + [SMALL_STATE(2906)] = 67878, + [SMALL_STATE(2907)] = 67911, + [SMALL_STATE(2908)] = 67944, + [SMALL_STATE(2909)] = 67977, + [SMALL_STATE(2910)] = 68007, + [SMALL_STATE(2911)] = 68037, + [SMALL_STATE(2912)] = 68067, + [SMALL_STATE(2913)] = 68097, + [SMALL_STATE(2914)] = 68117, + [SMALL_STATE(2915)] = 68136, + [SMALL_STATE(2916)] = 68153, + [SMALL_STATE(2917)] = 68172, + [SMALL_STATE(2918)] = 68189, + [SMALL_STATE(2919)] = 68208, + [SMALL_STATE(2920)] = 68234, + [SMALL_STATE(2921)] = 68256, + [SMALL_STATE(2922)] = 68278, + [SMALL_STATE(2923)] = 68300, + [SMALL_STATE(2924)] = 68322, + [SMALL_STATE(2925)] = 68348, + [SMALL_STATE(2926)] = 68374, + [SMALL_STATE(2927)] = 68400, + [SMALL_STATE(2928)] = 68422, + [SMALL_STATE(2929)] = 68444, + [SMALL_STATE(2930)] = 68466, + [SMALL_STATE(2931)] = 68488, + [SMALL_STATE(2932)] = 68514, + [SMALL_STATE(2933)] = 68540, + [SMALL_STATE(2934)] = 68562, + [SMALL_STATE(2935)] = 68588, + [SMALL_STATE(2936)] = 68610, + [SMALL_STATE(2937)] = 68636, + [SMALL_STATE(2938)] = 68662, + [SMALL_STATE(2939)] = 68688, + [SMALL_STATE(2940)] = 68714, + [SMALL_STATE(2941)] = 68736, + [SMALL_STATE(2942)] = 68752, + [SMALL_STATE(2943)] = 68778, + [SMALL_STATE(2944)] = 68800, + [SMALL_STATE(2945)] = 68826, + [SMALL_STATE(2946)] = 68848, + [SMALL_STATE(2947)] = 68864, + [SMALL_STATE(2948)] = 68890, + [SMALL_STATE(2949)] = 68913, + [SMALL_STATE(2950)] = 68938, + [SMALL_STATE(2951)] = 68961, + [SMALL_STATE(2952)] = 68984, + [SMALL_STATE(2953)] = 69007, + [SMALL_STATE(2954)] = 69021, + [SMALL_STATE(2955)] = 69035, + [SMALL_STATE(2956)] = 69049, + [SMALL_STATE(2957)] = 69063, + [SMALL_STATE(2958)] = 69077, + [SMALL_STATE(2959)] = 69091, + [SMALL_STATE(2960)] = 69105, + [SMALL_STATE(2961)] = 69119, + [SMALL_STATE(2962)] = 69133, + [SMALL_STATE(2963)] = 69147, + [SMALL_STATE(2964)] = 69161, + [SMALL_STATE(2965)] = 69175, + [SMALL_STATE(2966)] = 69189, + [SMALL_STATE(2967)] = 69203, + [SMALL_STATE(2968)] = 69217, + [SMALL_STATE(2969)] = 69231, + [SMALL_STATE(2970)] = 69245, + [SMALL_STATE(2971)] = 69267, + [SMALL_STATE(2972)] = 69281, + [SMALL_STATE(2973)] = 69295, + [SMALL_STATE(2974)] = 69309, + [SMALL_STATE(2975)] = 69323, + [SMALL_STATE(2976)] = 69337, + [SMALL_STATE(2977)] = 69351, + [SMALL_STATE(2978)] = 69365, + [SMALL_STATE(2979)] = 69379, + [SMALL_STATE(2980)] = 69393, + [SMALL_STATE(2981)] = 69407, + [SMALL_STATE(2982)] = 69421, + [SMALL_STATE(2983)] = 69435, + [SMALL_STATE(2984)] = 69449, + [SMALL_STATE(2985)] = 69463, + [SMALL_STATE(2986)] = 69477, + [SMALL_STATE(2987)] = 69491, + [SMALL_STATE(2988)] = 69505, + [SMALL_STATE(2989)] = 69519, + [SMALL_STATE(2990)] = 69533, + [SMALL_STATE(2991)] = 69547, + [SMALL_STATE(2992)] = 69561, + [SMALL_STATE(2993)] = 69575, + [SMALL_STATE(2994)] = 69589, + [SMALL_STATE(2995)] = 69603, + [SMALL_STATE(2996)] = 69623, + [SMALL_STATE(2997)] = 69637, + [SMALL_STATE(2998)] = 69651, + [SMALL_STATE(2999)] = 69665, + [SMALL_STATE(3000)] = 69679, + [SMALL_STATE(3001)] = 69693, + [SMALL_STATE(3002)] = 69707, + [SMALL_STATE(3003)] = 69721, + [SMALL_STATE(3004)] = 69735, + [SMALL_STATE(3005)] = 69749, + [SMALL_STATE(3006)] = 69763, + [SMALL_STATE(3007)] = 69782, + [SMALL_STATE(3008)] = 69801, + [SMALL_STATE(3009)] = 69820, + [SMALL_STATE(3010)] = 69839, + [SMALL_STATE(3011)] = 69858, + [SMALL_STATE(3012)] = 69877, + [SMALL_STATE(3013)] = 69896, + [SMALL_STATE(3014)] = 69915, + [SMALL_STATE(3015)] = 69934, + [SMALL_STATE(3016)] = 69953, + [SMALL_STATE(3017)] = 69972, + [SMALL_STATE(3018)] = 69991, + [SMALL_STATE(3019)] = 70010, + [SMALL_STATE(3020)] = 70029, + [SMALL_STATE(3021)] = 70048, + [SMALL_STATE(3022)] = 70067, + [SMALL_STATE(3023)] = 70086, + [SMALL_STATE(3024)] = 70105, + [SMALL_STATE(3025)] = 70124, + [SMALL_STATE(3026)] = 70143, + [SMALL_STATE(3027)] = 70162, + [SMALL_STATE(3028)] = 70181, + [SMALL_STATE(3029)] = 70200, + [SMALL_STATE(3030)] = 70219, + [SMALL_STATE(3031)] = 70238, + [SMALL_STATE(3032)] = 70257, + [SMALL_STATE(3033)] = 70276, + [SMALL_STATE(3034)] = 70295, + [SMALL_STATE(3035)] = 70314, + [SMALL_STATE(3036)] = 70333, + [SMALL_STATE(3037)] = 70352, + [SMALL_STATE(3038)] = 70371, + [SMALL_STATE(3039)] = 70390, + [SMALL_STATE(3040)] = 70409, + [SMALL_STATE(3041)] = 70428, + [SMALL_STATE(3042)] = 70447, + [SMALL_STATE(3043)] = 70466, + [SMALL_STATE(3044)] = 70485, + [SMALL_STATE(3045)] = 70504, + [SMALL_STATE(3046)] = 70523, + [SMALL_STATE(3047)] = 70542, + [SMALL_STATE(3048)] = 70561, + [SMALL_STATE(3049)] = 70580, + [SMALL_STATE(3050)] = 70599, + [SMALL_STATE(3051)] = 70618, + [SMALL_STATE(3052)] = 70637, + [SMALL_STATE(3053)] = 70656, + [SMALL_STATE(3054)] = 70675, + [SMALL_STATE(3055)] = 70694, + [SMALL_STATE(3056)] = 70713, + [SMALL_STATE(3057)] = 70732, + [SMALL_STATE(3058)] = 70751, + [SMALL_STATE(3059)] = 70770, + [SMALL_STATE(3060)] = 70789, + [SMALL_STATE(3061)] = 70808, + [SMALL_STATE(3062)] = 70827, + [SMALL_STATE(3063)] = 70846, + [SMALL_STATE(3064)] = 70865, + [SMALL_STATE(3065)] = 70884, + [SMALL_STATE(3066)] = 70903, + [SMALL_STATE(3067)] = 70922, + [SMALL_STATE(3068)] = 70941, + [SMALL_STATE(3069)] = 70960, + [SMALL_STATE(3070)] = 70979, + [SMALL_STATE(3071)] = 70998, + [SMALL_STATE(3072)] = 71017, + [SMALL_STATE(3073)] = 71036, + [SMALL_STATE(3074)] = 71055, + [SMALL_STATE(3075)] = 71074, + [SMALL_STATE(3076)] = 71093, + [SMALL_STATE(3077)] = 71112, + [SMALL_STATE(3078)] = 71131, + [SMALL_STATE(3079)] = 71150, + [SMALL_STATE(3080)] = 71169, + [SMALL_STATE(3081)] = 71188, + [SMALL_STATE(3082)] = 71207, + [SMALL_STATE(3083)] = 71226, + [SMALL_STATE(3084)] = 71245, + [SMALL_STATE(3085)] = 71264, + [SMALL_STATE(3086)] = 71283, + [SMALL_STATE(3087)] = 71302, + [SMALL_STATE(3088)] = 71321, + [SMALL_STATE(3089)] = 71340, + [SMALL_STATE(3090)] = 71359, + [SMALL_STATE(3091)] = 71378, + [SMALL_STATE(3092)] = 71397, + [SMALL_STATE(3093)] = 71416, + [SMALL_STATE(3094)] = 71435, + [SMALL_STATE(3095)] = 71454, + [SMALL_STATE(3096)] = 71473, + [SMALL_STATE(3097)] = 71492, + [SMALL_STATE(3098)] = 71511, + [SMALL_STATE(3099)] = 71530, + [SMALL_STATE(3100)] = 71549, + [SMALL_STATE(3101)] = 71568, + [SMALL_STATE(3102)] = 71587, + [SMALL_STATE(3103)] = 71606, + [SMALL_STATE(3104)] = 71625, + [SMALL_STATE(3105)] = 71644, + [SMALL_STATE(3106)] = 71663, + [SMALL_STATE(3107)] = 71682, + [SMALL_STATE(3108)] = 71701, + [SMALL_STATE(3109)] = 71720, + [SMALL_STATE(3110)] = 71739, + [SMALL_STATE(3111)] = 71758, + [SMALL_STATE(3112)] = 71777, + [SMALL_STATE(3113)] = 71796, + [SMALL_STATE(3114)] = 71815, + [SMALL_STATE(3115)] = 71834, + [SMALL_STATE(3116)] = 71853, + [SMALL_STATE(3117)] = 71872, + [SMALL_STATE(3118)] = 71891, + [SMALL_STATE(3119)] = 71910, + [SMALL_STATE(3120)] = 71929, + [SMALL_STATE(3121)] = 71948, + [SMALL_STATE(3122)] = 71967, + [SMALL_STATE(3123)] = 71986, + [SMALL_STATE(3124)] = 72005, + [SMALL_STATE(3125)] = 72024, + [SMALL_STATE(3126)] = 72043, + [SMALL_STATE(3127)] = 72060, + [SMALL_STATE(3128)] = 72079, + [SMALL_STATE(3129)] = 72098, + [SMALL_STATE(3130)] = 72117, + [SMALL_STATE(3131)] = 72136, + [SMALL_STATE(3132)] = 72155, + [SMALL_STATE(3133)] = 72174, + [SMALL_STATE(3134)] = 72193, + [SMALL_STATE(3135)] = 72212, + [SMALL_STATE(3136)] = 72231, + [SMALL_STATE(3137)] = 72250, + [SMALL_STATE(3138)] = 72269, + [SMALL_STATE(3139)] = 72288, + [SMALL_STATE(3140)] = 72307, + [SMALL_STATE(3141)] = 72326, + [SMALL_STATE(3142)] = 72345, + [SMALL_STATE(3143)] = 72364, + [SMALL_STATE(3144)] = 72383, + [SMALL_STATE(3145)] = 72402, + [SMALL_STATE(3146)] = 72421, + [SMALL_STATE(3147)] = 72440, + [SMALL_STATE(3148)] = 72459, + [SMALL_STATE(3149)] = 72478, + [SMALL_STATE(3150)] = 72497, + [SMALL_STATE(3151)] = 72516, + [SMALL_STATE(3152)] = 72535, + [SMALL_STATE(3153)] = 72554, + [SMALL_STATE(3154)] = 72573, + [SMALL_STATE(3155)] = 72592, + [SMALL_STATE(3156)] = 72611, + [SMALL_STATE(3157)] = 72630, + [SMALL_STATE(3158)] = 72649, + [SMALL_STATE(3159)] = 72668, + [SMALL_STATE(3160)] = 72687, + [SMALL_STATE(3161)] = 72706, + [SMALL_STATE(3162)] = 72725, + [SMALL_STATE(3163)] = 72744, + [SMALL_STATE(3164)] = 72763, + [SMALL_STATE(3165)] = 72782, + [SMALL_STATE(3166)] = 72801, + [SMALL_STATE(3167)] = 72820, + [SMALL_STATE(3168)] = 72839, + [SMALL_STATE(3169)] = 72858, + [SMALL_STATE(3170)] = 72877, + [SMALL_STATE(3171)] = 72896, + [SMALL_STATE(3172)] = 72915, + [SMALL_STATE(3173)] = 72934, + [SMALL_STATE(3174)] = 72953, + [SMALL_STATE(3175)] = 72972, + [SMALL_STATE(3176)] = 72991, + [SMALL_STATE(3177)] = 73010, + [SMALL_STATE(3178)] = 73029, + [SMALL_STATE(3179)] = 73048, + [SMALL_STATE(3180)] = 73067, + [SMALL_STATE(3181)] = 73086, + [SMALL_STATE(3182)] = 73099, + [SMALL_STATE(3183)] = 73118, + [SMALL_STATE(3184)] = 73135, + [SMALL_STATE(3185)] = 73154, + [SMALL_STATE(3186)] = 73173, + [SMALL_STATE(3187)] = 73192, + [SMALL_STATE(3188)] = 73211, + [SMALL_STATE(3189)] = 73230, + [SMALL_STATE(3190)] = 73249, + [SMALL_STATE(3191)] = 73268, + [SMALL_STATE(3192)] = 73287, + [SMALL_STATE(3193)] = 73306, + [SMALL_STATE(3194)] = 73325, + [SMALL_STATE(3195)] = 73344, + [SMALL_STATE(3196)] = 73363, + [SMALL_STATE(3197)] = 73382, + [SMALL_STATE(3198)] = 73401, + [SMALL_STATE(3199)] = 73420, + [SMALL_STATE(3200)] = 73439, + [SMALL_STATE(3201)] = 73458, + [SMALL_STATE(3202)] = 73477, + [SMALL_STATE(3203)] = 73496, + [SMALL_STATE(3204)] = 73515, + [SMALL_STATE(3205)] = 73534, + [SMALL_STATE(3206)] = 73553, + [SMALL_STATE(3207)] = 73572, + [SMALL_STATE(3208)] = 73591, + [SMALL_STATE(3209)] = 73610, + [SMALL_STATE(3210)] = 73629, + [SMALL_STATE(3211)] = 73648, + [SMALL_STATE(3212)] = 73667, + [SMALL_STATE(3213)] = 73686, + [SMALL_STATE(3214)] = 73705, + [SMALL_STATE(3215)] = 73724, + [SMALL_STATE(3216)] = 73743, + [SMALL_STATE(3217)] = 73762, + [SMALL_STATE(3218)] = 73781, + [SMALL_STATE(3219)] = 73800, + [SMALL_STATE(3220)] = 73819, + [SMALL_STATE(3221)] = 73838, + [SMALL_STATE(3222)] = 73857, + [SMALL_STATE(3223)] = 73876, + [SMALL_STATE(3224)] = 73895, + [SMALL_STATE(3225)] = 73914, + [SMALL_STATE(3226)] = 73933, + [SMALL_STATE(3227)] = 73949, + [SMALL_STATE(3228)] = 73965, + [SMALL_STATE(3229)] = 73979, + [SMALL_STATE(3230)] = 73995, + [SMALL_STATE(3231)] = 74011, + [SMALL_STATE(3232)] = 74027, + [SMALL_STATE(3233)] = 74043, + [SMALL_STATE(3234)] = 74059, + [SMALL_STATE(3235)] = 74075, + [SMALL_STATE(3236)] = 74091, + [SMALL_STATE(3237)] = 74107, + [SMALL_STATE(3238)] = 74123, + [SMALL_STATE(3239)] = 74139, + [SMALL_STATE(3240)] = 74155, + [SMALL_STATE(3241)] = 74171, + [SMALL_STATE(3242)] = 74187, + [SMALL_STATE(3243)] = 74203, + [SMALL_STATE(3244)] = 74219, + [SMALL_STATE(3245)] = 74235, + [SMALL_STATE(3246)] = 74251, + [SMALL_STATE(3247)] = 74267, + [SMALL_STATE(3248)] = 74281, + [SMALL_STATE(3249)] = 74297, + [SMALL_STATE(3250)] = 74313, + [SMALL_STATE(3251)] = 74329, + [SMALL_STATE(3252)] = 74345, + [SMALL_STATE(3253)] = 74361, + [SMALL_STATE(3254)] = 74377, + [SMALL_STATE(3255)] = 74393, + [SMALL_STATE(3256)] = 74409, + [SMALL_STATE(3257)] = 74425, + [SMALL_STATE(3258)] = 74441, + [SMALL_STATE(3259)] = 74457, + [SMALL_STATE(3260)] = 74473, + [SMALL_STATE(3261)] = 74489, + [SMALL_STATE(3262)] = 74505, + [SMALL_STATE(3263)] = 74521, + [SMALL_STATE(3264)] = 74537, + [SMALL_STATE(3265)] = 74553, + [SMALL_STATE(3266)] = 74569, + [SMALL_STATE(3267)] = 74585, + [SMALL_STATE(3268)] = 74601, + [SMALL_STATE(3269)] = 74617, + [SMALL_STATE(3270)] = 74633, + [SMALL_STATE(3271)] = 74649, + [SMALL_STATE(3272)] = 74665, + [SMALL_STATE(3273)] = 74681, + [SMALL_STATE(3274)] = 74697, + [SMALL_STATE(3275)] = 74713, + [SMALL_STATE(3276)] = 74729, + [SMALL_STATE(3277)] = 74739, + [SMALL_STATE(3278)] = 74753, + [SMALL_STATE(3279)] = 74767, + [SMALL_STATE(3280)] = 74783, + [SMALL_STATE(3281)] = 74799, + [SMALL_STATE(3282)] = 74815, + [SMALL_STATE(3283)] = 74831, + [SMALL_STATE(3284)] = 74847, + [SMALL_STATE(3285)] = 74863, + [SMALL_STATE(3286)] = 74879, + [SMALL_STATE(3287)] = 74895, + [SMALL_STATE(3288)] = 74911, + [SMALL_STATE(3289)] = 74927, + [SMALL_STATE(3290)] = 74943, + [SMALL_STATE(3291)] = 74959, + [SMALL_STATE(3292)] = 74975, + [SMALL_STATE(3293)] = 74991, + [SMALL_STATE(3294)] = 75007, + [SMALL_STATE(3295)] = 75023, + [SMALL_STATE(3296)] = 75039, + [SMALL_STATE(3297)] = 75055, + [SMALL_STATE(3298)] = 75069, + [SMALL_STATE(3299)] = 75085, + [SMALL_STATE(3300)] = 75101, + [SMALL_STATE(3301)] = 75117, + [SMALL_STATE(3302)] = 75133, + [SMALL_STATE(3303)] = 75149, + [SMALL_STATE(3304)] = 75165, + [SMALL_STATE(3305)] = 75179, + [SMALL_STATE(3306)] = 75195, + [SMALL_STATE(3307)] = 75211, + [SMALL_STATE(3308)] = 75227, + [SMALL_STATE(3309)] = 75243, + [SMALL_STATE(3310)] = 75259, + [SMALL_STATE(3311)] = 75275, + [SMALL_STATE(3312)] = 75291, + [SMALL_STATE(3313)] = 75307, + [SMALL_STATE(3314)] = 75323, + [SMALL_STATE(3315)] = 75339, + [SMALL_STATE(3316)] = 75355, + [SMALL_STATE(3317)] = 75371, + [SMALL_STATE(3318)] = 75387, + [SMALL_STATE(3319)] = 75403, + [SMALL_STATE(3320)] = 75419, + [SMALL_STATE(3321)] = 75435, + [SMALL_STATE(3322)] = 75451, + [SMALL_STATE(3323)] = 75467, + [SMALL_STATE(3324)] = 75483, + [SMALL_STATE(3325)] = 75499, + [SMALL_STATE(3326)] = 75515, + [SMALL_STATE(3327)] = 75531, + [SMALL_STATE(3328)] = 75547, + [SMALL_STATE(3329)] = 75563, + [SMALL_STATE(3330)] = 75579, + [SMALL_STATE(3331)] = 75595, + [SMALL_STATE(3332)] = 75611, + [SMALL_STATE(3333)] = 75627, + [SMALL_STATE(3334)] = 75643, + [SMALL_STATE(3335)] = 75659, + [SMALL_STATE(3336)] = 75675, + [SMALL_STATE(3337)] = 75691, + [SMALL_STATE(3338)] = 75705, + [SMALL_STATE(3339)] = 75721, + [SMALL_STATE(3340)] = 75737, + [SMALL_STATE(3341)] = 75753, + [SMALL_STATE(3342)] = 75769, + [SMALL_STATE(3343)] = 75785, + [SMALL_STATE(3344)] = 75801, + [SMALL_STATE(3345)] = 75817, + [SMALL_STATE(3346)] = 75833, + [SMALL_STATE(3347)] = 75849, + [SMALL_STATE(3348)] = 75865, + [SMALL_STATE(3349)] = 75879, + [SMALL_STATE(3350)] = 75895, + [SMALL_STATE(3351)] = 75909, + [SMALL_STATE(3352)] = 75925, + [SMALL_STATE(3353)] = 75939, + [SMALL_STATE(3354)] = 75955, + [SMALL_STATE(3355)] = 75971, + [SMALL_STATE(3356)] = 75985, + [SMALL_STATE(3357)] = 76001, + [SMALL_STATE(3358)] = 76017, + [SMALL_STATE(3359)] = 76033, + [SMALL_STATE(3360)] = 76047, + [SMALL_STATE(3361)] = 76063, + [SMALL_STATE(3362)] = 76079, + [SMALL_STATE(3363)] = 76095, + [SMALL_STATE(3364)] = 76111, + [SMALL_STATE(3365)] = 76127, + [SMALL_STATE(3366)] = 76143, + [SMALL_STATE(3367)] = 76159, + [SMALL_STATE(3368)] = 76175, + [SMALL_STATE(3369)] = 76191, + [SMALL_STATE(3370)] = 76207, + [SMALL_STATE(3371)] = 76223, + [SMALL_STATE(3372)] = 76239, + [SMALL_STATE(3373)] = 76255, + [SMALL_STATE(3374)] = 76271, + [SMALL_STATE(3375)] = 76287, + [SMALL_STATE(3376)] = 76303, + [SMALL_STATE(3377)] = 76319, + [SMALL_STATE(3378)] = 76329, + [SMALL_STATE(3379)] = 76345, + [SMALL_STATE(3380)] = 76361, + [SMALL_STATE(3381)] = 76377, + [SMALL_STATE(3382)] = 76393, + [SMALL_STATE(3383)] = 76409, + [SMALL_STATE(3384)] = 76425, + [SMALL_STATE(3385)] = 76441, + [SMALL_STATE(3386)] = 76457, + [SMALL_STATE(3387)] = 76473, + [SMALL_STATE(3388)] = 76489, + [SMALL_STATE(3389)] = 76505, + [SMALL_STATE(3390)] = 76521, + [SMALL_STATE(3391)] = 76537, + [SMALL_STATE(3392)] = 76553, + [SMALL_STATE(3393)] = 76569, + [SMALL_STATE(3394)] = 76585, + [SMALL_STATE(3395)] = 76601, + [SMALL_STATE(3396)] = 76617, + [SMALL_STATE(3397)] = 76633, + [SMALL_STATE(3398)] = 76649, + [SMALL_STATE(3399)] = 76665, + [SMALL_STATE(3400)] = 76681, + [SMALL_STATE(3401)] = 76697, + [SMALL_STATE(3402)] = 76713, + [SMALL_STATE(3403)] = 76729, + [SMALL_STATE(3404)] = 76745, + [SMALL_STATE(3405)] = 76761, + [SMALL_STATE(3406)] = 76777, + [SMALL_STATE(3407)] = 76793, + [SMALL_STATE(3408)] = 76807, + [SMALL_STATE(3409)] = 76823, + [SMALL_STATE(3410)] = 76839, + [SMALL_STATE(3411)] = 76855, + [SMALL_STATE(3412)] = 76869, + [SMALL_STATE(3413)] = 76885, + [SMALL_STATE(3414)] = 76901, + [SMALL_STATE(3415)] = 76917, + [SMALL_STATE(3416)] = 76933, + [SMALL_STATE(3417)] = 76949, + [SMALL_STATE(3418)] = 76965, + [SMALL_STATE(3419)] = 76981, + [SMALL_STATE(3420)] = 76997, + [SMALL_STATE(3421)] = 77011, + [SMALL_STATE(3422)] = 77025, + [SMALL_STATE(3423)] = 77041, + [SMALL_STATE(3424)] = 77057, + [SMALL_STATE(3425)] = 77073, + [SMALL_STATE(3426)] = 77089, + [SMALL_STATE(3427)] = 77103, + [SMALL_STATE(3428)] = 77117, + [SMALL_STATE(3429)] = 77133, + [SMALL_STATE(3430)] = 77149, + [SMALL_STATE(3431)] = 77165, + [SMALL_STATE(3432)] = 77181, + [SMALL_STATE(3433)] = 77197, + [SMALL_STATE(3434)] = 77213, + [SMALL_STATE(3435)] = 77229, + [SMALL_STATE(3436)] = 77245, + [SMALL_STATE(3437)] = 77261, + [SMALL_STATE(3438)] = 77277, + [SMALL_STATE(3439)] = 77293, + [SMALL_STATE(3440)] = 77309, + [SMALL_STATE(3441)] = 77325, + [SMALL_STATE(3442)] = 77341, + [SMALL_STATE(3443)] = 77355, + [SMALL_STATE(3444)] = 77371, + [SMALL_STATE(3445)] = 77387, + [SMALL_STATE(3446)] = 77403, + [SMALL_STATE(3447)] = 77419, + [SMALL_STATE(3448)] = 77435, + [SMALL_STATE(3449)] = 77451, + [SMALL_STATE(3450)] = 77467, + [SMALL_STATE(3451)] = 77483, + [SMALL_STATE(3452)] = 77499, + [SMALL_STATE(3453)] = 77515, + [SMALL_STATE(3454)] = 77531, + [SMALL_STATE(3455)] = 77547, + [SMALL_STATE(3456)] = 77563, + [SMALL_STATE(3457)] = 77579, + [SMALL_STATE(3458)] = 77589, + [SMALL_STATE(3459)] = 77605, + [SMALL_STATE(3460)] = 77619, + [SMALL_STATE(3461)] = 77635, + [SMALL_STATE(3462)] = 77651, + [SMALL_STATE(3463)] = 77667, + [SMALL_STATE(3464)] = 77683, + [SMALL_STATE(3465)] = 77699, + [SMALL_STATE(3466)] = 77715, + [SMALL_STATE(3467)] = 77731, + [SMALL_STATE(3468)] = 77747, + [SMALL_STATE(3469)] = 77763, + [SMALL_STATE(3470)] = 77779, + [SMALL_STATE(3471)] = 77795, + [SMALL_STATE(3472)] = 77811, + [SMALL_STATE(3473)] = 77827, + [SMALL_STATE(3474)] = 77843, + [SMALL_STATE(3475)] = 77859, + [SMALL_STATE(3476)] = 77875, + [SMALL_STATE(3477)] = 77891, + [SMALL_STATE(3478)] = 77907, + [SMALL_STATE(3479)] = 77923, + [SMALL_STATE(3480)] = 77939, + [SMALL_STATE(3481)] = 77955, + [SMALL_STATE(3482)] = 77971, + [SMALL_STATE(3483)] = 77987, + [SMALL_STATE(3484)] = 78003, + [SMALL_STATE(3485)] = 78019, + [SMALL_STATE(3486)] = 78035, + [SMALL_STATE(3487)] = 78051, + [SMALL_STATE(3488)] = 78067, + [SMALL_STATE(3489)] = 78083, + [SMALL_STATE(3490)] = 78099, + [SMALL_STATE(3491)] = 78115, + [SMALL_STATE(3492)] = 78131, + [SMALL_STATE(3493)] = 78147, + [SMALL_STATE(3494)] = 78163, + [SMALL_STATE(3495)] = 78179, + [SMALL_STATE(3496)] = 78195, + [SMALL_STATE(3497)] = 78211, + [SMALL_STATE(3498)] = 78227, + [SMALL_STATE(3499)] = 78243, + [SMALL_STATE(3500)] = 78259, + [SMALL_STATE(3501)] = 78275, + [SMALL_STATE(3502)] = 78291, + [SMALL_STATE(3503)] = 78307, + [SMALL_STATE(3504)] = 78323, + [SMALL_STATE(3505)] = 78339, + [SMALL_STATE(3506)] = 78355, + [SMALL_STATE(3507)] = 78371, + [SMALL_STATE(3508)] = 78387, + [SMALL_STATE(3509)] = 78403, + [SMALL_STATE(3510)] = 78419, + [SMALL_STATE(3511)] = 78435, + [SMALL_STATE(3512)] = 78451, + [SMALL_STATE(3513)] = 78467, + [SMALL_STATE(3514)] = 78483, + [SMALL_STATE(3515)] = 78499, + [SMALL_STATE(3516)] = 78515, + [SMALL_STATE(3517)] = 78531, + [SMALL_STATE(3518)] = 78547, + [SMALL_STATE(3519)] = 78563, + [SMALL_STATE(3520)] = 78579, + [SMALL_STATE(3521)] = 78595, + [SMALL_STATE(3522)] = 78611, + [SMALL_STATE(3523)] = 78627, + [SMALL_STATE(3524)] = 78641, + [SMALL_STATE(3525)] = 78657, + [SMALL_STATE(3526)] = 78673, + [SMALL_STATE(3527)] = 78687, + [SMALL_STATE(3528)] = 78701, + [SMALL_STATE(3529)] = 78715, + [SMALL_STATE(3530)] = 78731, + [SMALL_STATE(3531)] = 78747, + [SMALL_STATE(3532)] = 78763, + [SMALL_STATE(3533)] = 78779, + [SMALL_STATE(3534)] = 78795, + [SMALL_STATE(3535)] = 78809, + [SMALL_STATE(3536)] = 78823, + [SMALL_STATE(3537)] = 78839, + [SMALL_STATE(3538)] = 78849, + [SMALL_STATE(3539)] = 78865, + [SMALL_STATE(3540)] = 78881, + [SMALL_STATE(3541)] = 78897, + [SMALL_STATE(3542)] = 78913, + [SMALL_STATE(3543)] = 78929, + [SMALL_STATE(3544)] = 78945, + [SMALL_STATE(3545)] = 78961, + [SMALL_STATE(3546)] = 78977, + [SMALL_STATE(3547)] = 78993, + [SMALL_STATE(3548)] = 79009, + [SMALL_STATE(3549)] = 79019, + [SMALL_STATE(3550)] = 79035, + [SMALL_STATE(3551)] = 79051, + [SMALL_STATE(3552)] = 79067, + [SMALL_STATE(3553)] = 79081, + [SMALL_STATE(3554)] = 79097, + [SMALL_STATE(3555)] = 79113, + [SMALL_STATE(3556)] = 79129, + [SMALL_STATE(3557)] = 79145, + [SMALL_STATE(3558)] = 79161, + [SMALL_STATE(3559)] = 79177, + [SMALL_STATE(3560)] = 79191, + [SMALL_STATE(3561)] = 79207, + [SMALL_STATE(3562)] = 79223, + [SMALL_STATE(3563)] = 79239, + [SMALL_STATE(3564)] = 79255, + [SMALL_STATE(3565)] = 79269, + [SMALL_STATE(3566)] = 79283, + [SMALL_STATE(3567)] = 79297, + [SMALL_STATE(3568)] = 79311, + [SMALL_STATE(3569)] = 79327, + [SMALL_STATE(3570)] = 79343, + [SMALL_STATE(3571)] = 79359, + [SMALL_STATE(3572)] = 79373, + [SMALL_STATE(3573)] = 79387, + [SMALL_STATE(3574)] = 79401, + [SMALL_STATE(3575)] = 79415, + [SMALL_STATE(3576)] = 79429, + [SMALL_STATE(3577)] = 79443, + [SMALL_STATE(3578)] = 79457, + [SMALL_STATE(3579)] = 79471, + [SMALL_STATE(3580)] = 79485, + [SMALL_STATE(3581)] = 79499, + [SMALL_STATE(3582)] = 79515, + [SMALL_STATE(3583)] = 79531, + [SMALL_STATE(3584)] = 79543, + [SMALL_STATE(3585)] = 79559, + [SMALL_STATE(3586)] = 79575, + [SMALL_STATE(3587)] = 79591, + [SMALL_STATE(3588)] = 79607, + [SMALL_STATE(3589)] = 79623, + [SMALL_STATE(3590)] = 79639, + [SMALL_STATE(3591)] = 79655, + [SMALL_STATE(3592)] = 79671, + [SMALL_STATE(3593)] = 79687, + [SMALL_STATE(3594)] = 79703, + [SMALL_STATE(3595)] = 79719, + [SMALL_STATE(3596)] = 79735, + [SMALL_STATE(3597)] = 79751, + [SMALL_STATE(3598)] = 79765, + [SMALL_STATE(3599)] = 79781, + [SMALL_STATE(3600)] = 79797, + [SMALL_STATE(3601)] = 79811, + [SMALL_STATE(3602)] = 79827, + [SMALL_STATE(3603)] = 79841, + [SMALL_STATE(3604)] = 79857, + [SMALL_STATE(3605)] = 79873, + [SMALL_STATE(3606)] = 79889, + [SMALL_STATE(3607)] = 79905, + [SMALL_STATE(3608)] = 79921, + [SMALL_STATE(3609)] = 79937, + [SMALL_STATE(3610)] = 79953, + [SMALL_STATE(3611)] = 79969, + [SMALL_STATE(3612)] = 79985, + [SMALL_STATE(3613)] = 80001, + [SMALL_STATE(3614)] = 80014, + [SMALL_STATE(3615)] = 80023, + [SMALL_STATE(3616)] = 80036, + [SMALL_STATE(3617)] = 80049, + [SMALL_STATE(3618)] = 80062, + [SMALL_STATE(3619)] = 80075, + [SMALL_STATE(3620)] = 80088, + [SMALL_STATE(3621)] = 80097, + [SMALL_STATE(3622)] = 80110, + [SMALL_STATE(3623)] = 80123, + [SMALL_STATE(3624)] = 80136, + [SMALL_STATE(3625)] = 80149, + [SMALL_STATE(3626)] = 80162, + [SMALL_STATE(3627)] = 80175, + [SMALL_STATE(3628)] = 80188, + [SMALL_STATE(3629)] = 80201, + [SMALL_STATE(3630)] = 80214, + [SMALL_STATE(3631)] = 80227, + [SMALL_STATE(3632)] = 80240, + [SMALL_STATE(3633)] = 80253, + [SMALL_STATE(3634)] = 80266, + [SMALL_STATE(3635)] = 80279, + [SMALL_STATE(3636)] = 80292, + [SMALL_STATE(3637)] = 80305, + [SMALL_STATE(3638)] = 80318, + [SMALL_STATE(3639)] = 80331, + [SMALL_STATE(3640)] = 80344, + [SMALL_STATE(3641)] = 80357, + [SMALL_STATE(3642)] = 80366, + [SMALL_STATE(3643)] = 80379, + [SMALL_STATE(3644)] = 80392, + [SMALL_STATE(3645)] = 80405, + [SMALL_STATE(3646)] = 80418, + [SMALL_STATE(3647)] = 80431, + [SMALL_STATE(3648)] = 80444, + [SMALL_STATE(3649)] = 80457, + [SMALL_STATE(3650)] = 80470, + [SMALL_STATE(3651)] = 80483, + [SMALL_STATE(3652)] = 80496, + [SMALL_STATE(3653)] = 80507, + [SMALL_STATE(3654)] = 80520, + [SMALL_STATE(3655)] = 80533, + [SMALL_STATE(3656)] = 80546, + [SMALL_STATE(3657)] = 80559, + [SMALL_STATE(3658)] = 80572, + [SMALL_STATE(3659)] = 80585, + [SMALL_STATE(3660)] = 80598, + [SMALL_STATE(3661)] = 80611, + [SMALL_STATE(3662)] = 80624, + [SMALL_STATE(3663)] = 80635, + [SMALL_STATE(3664)] = 80648, + [SMALL_STATE(3665)] = 80661, + [SMALL_STATE(3666)] = 80674, + [SMALL_STATE(3667)] = 80687, + [SMALL_STATE(3668)] = 80700, + [SMALL_STATE(3669)] = 80713, + [SMALL_STATE(3670)] = 80726, + [SMALL_STATE(3671)] = 80739, + [SMALL_STATE(3672)] = 80752, + [SMALL_STATE(3673)] = 80765, + [SMALL_STATE(3674)] = 80778, + [SMALL_STATE(3675)] = 80791, + [SMALL_STATE(3676)] = 80804, + [SMALL_STATE(3677)] = 80817, + [SMALL_STATE(3678)] = 80830, + [SMALL_STATE(3679)] = 80843, + [SMALL_STATE(3680)] = 80856, + [SMALL_STATE(3681)] = 80869, + [SMALL_STATE(3682)] = 80882, + [SMALL_STATE(3683)] = 80895, + [SMALL_STATE(3684)] = 80908, + [SMALL_STATE(3685)] = 80921, + [SMALL_STATE(3686)] = 80934, + [SMALL_STATE(3687)] = 80947, + [SMALL_STATE(3688)] = 80960, + [SMALL_STATE(3689)] = 80973, + [SMALL_STATE(3690)] = 80986, + [SMALL_STATE(3691)] = 80999, + [SMALL_STATE(3692)] = 81012, + [SMALL_STATE(3693)] = 81025, + [SMALL_STATE(3694)] = 81038, + [SMALL_STATE(3695)] = 81051, + [SMALL_STATE(3696)] = 81064, + [SMALL_STATE(3697)] = 81077, + [SMALL_STATE(3698)] = 81090, + [SMALL_STATE(3699)] = 81103, + [SMALL_STATE(3700)] = 81116, + [SMALL_STATE(3701)] = 81129, + [SMALL_STATE(3702)] = 81142, + [SMALL_STATE(3703)] = 81155, + [SMALL_STATE(3704)] = 81168, + [SMALL_STATE(3705)] = 81181, + [SMALL_STATE(3706)] = 81194, + [SMALL_STATE(3707)] = 81207, + [SMALL_STATE(3708)] = 81220, + [SMALL_STATE(3709)] = 81233, + [SMALL_STATE(3710)] = 81246, + [SMALL_STATE(3711)] = 81259, + [SMALL_STATE(3712)] = 81272, + [SMALL_STATE(3713)] = 81285, + [SMALL_STATE(3714)] = 81298, + [SMALL_STATE(3715)] = 81311, + [SMALL_STATE(3716)] = 81324, + [SMALL_STATE(3717)] = 81337, + [SMALL_STATE(3718)] = 81350, + [SMALL_STATE(3719)] = 81363, + [SMALL_STATE(3720)] = 81376, + [SMALL_STATE(3721)] = 81385, + [SMALL_STATE(3722)] = 81398, + [SMALL_STATE(3723)] = 81411, + [SMALL_STATE(3724)] = 81424, + [SMALL_STATE(3725)] = 81437, + [SMALL_STATE(3726)] = 81450, + [SMALL_STATE(3727)] = 81463, + [SMALL_STATE(3728)] = 81476, + [SMALL_STATE(3729)] = 81489, + [SMALL_STATE(3730)] = 81502, + [SMALL_STATE(3731)] = 81515, + [SMALL_STATE(3732)] = 81528, + [SMALL_STATE(3733)] = 81541, + [SMALL_STATE(3734)] = 81550, + [SMALL_STATE(3735)] = 81563, + [SMALL_STATE(3736)] = 81576, + [SMALL_STATE(3737)] = 81589, + [SMALL_STATE(3738)] = 81602, + [SMALL_STATE(3739)] = 81615, + [SMALL_STATE(3740)] = 81628, + [SMALL_STATE(3741)] = 81641, + [SMALL_STATE(3742)] = 81654, + [SMALL_STATE(3743)] = 81667, + [SMALL_STATE(3744)] = 81680, + [SMALL_STATE(3745)] = 81693, + [SMALL_STATE(3746)] = 81706, + [SMALL_STATE(3747)] = 81719, + [SMALL_STATE(3748)] = 81732, + [SMALL_STATE(3749)] = 81745, + [SMALL_STATE(3750)] = 81758, + [SMALL_STATE(3751)] = 81771, + [SMALL_STATE(3752)] = 81784, + [SMALL_STATE(3753)] = 81797, + [SMALL_STATE(3754)] = 81810, + [SMALL_STATE(3755)] = 81823, + [SMALL_STATE(3756)] = 81836, + [SMALL_STATE(3757)] = 81849, + [SMALL_STATE(3758)] = 81862, + [SMALL_STATE(3759)] = 81875, + [SMALL_STATE(3760)] = 81888, + [SMALL_STATE(3761)] = 81901, + [SMALL_STATE(3762)] = 81914, + [SMALL_STATE(3763)] = 81927, + [SMALL_STATE(3764)] = 81940, + [SMALL_STATE(3765)] = 81953, + [SMALL_STATE(3766)] = 81966, + [SMALL_STATE(3767)] = 81979, + [SMALL_STATE(3768)] = 81992, + [SMALL_STATE(3769)] = 82005, + [SMALL_STATE(3770)] = 82018, + [SMALL_STATE(3771)] = 82031, + [SMALL_STATE(3772)] = 82044, + [SMALL_STATE(3773)] = 82057, + [SMALL_STATE(3774)] = 82070, + [SMALL_STATE(3775)] = 82083, + [SMALL_STATE(3776)] = 82096, + [SMALL_STATE(3777)] = 82109, + [SMALL_STATE(3778)] = 82118, + [SMALL_STATE(3779)] = 82131, + [SMALL_STATE(3780)] = 82144, + [SMALL_STATE(3781)] = 82157, + [SMALL_STATE(3782)] = 82170, + [SMALL_STATE(3783)] = 82183, + [SMALL_STATE(3784)] = 82196, + [SMALL_STATE(3785)] = 82205, + [SMALL_STATE(3786)] = 82218, + [SMALL_STATE(3787)] = 82231, + [SMALL_STATE(3788)] = 82244, + [SMALL_STATE(3789)] = 82257, + [SMALL_STATE(3790)] = 82270, + [SMALL_STATE(3791)] = 82279, + [SMALL_STATE(3792)] = 82292, + [SMALL_STATE(3793)] = 82305, + [SMALL_STATE(3794)] = 82318, + [SMALL_STATE(3795)] = 82331, + [SMALL_STATE(3796)] = 82344, + [SMALL_STATE(3797)] = 82357, + [SMALL_STATE(3798)] = 82370, + [SMALL_STATE(3799)] = 82383, + [SMALL_STATE(3800)] = 82396, + [SMALL_STATE(3801)] = 82409, + [SMALL_STATE(3802)] = 82422, + [SMALL_STATE(3803)] = 82435, + [SMALL_STATE(3804)] = 82444, + [SMALL_STATE(3805)] = 82457, + [SMALL_STATE(3806)] = 82470, + [SMALL_STATE(3807)] = 82479, + [SMALL_STATE(3808)] = 82492, + [SMALL_STATE(3809)] = 82505, + [SMALL_STATE(3810)] = 82518, + [SMALL_STATE(3811)] = 82531, + [SMALL_STATE(3812)] = 82544, + [SMALL_STATE(3813)] = 82557, + [SMALL_STATE(3814)] = 82570, + [SMALL_STATE(3815)] = 82583, + [SMALL_STATE(3816)] = 82596, + [SMALL_STATE(3817)] = 82609, + [SMALL_STATE(3818)] = 82622, + [SMALL_STATE(3819)] = 82631, + [SMALL_STATE(3820)] = 82644, + [SMALL_STATE(3821)] = 82657, + [SMALL_STATE(3822)] = 82670, + [SMALL_STATE(3823)] = 82683, + [SMALL_STATE(3824)] = 82696, + [SMALL_STATE(3825)] = 82709, + [SMALL_STATE(3826)] = 82722, + [SMALL_STATE(3827)] = 82735, + [SMALL_STATE(3828)] = 82748, + [SMALL_STATE(3829)] = 82761, + [SMALL_STATE(3830)] = 82774, + [SMALL_STATE(3831)] = 82787, + [SMALL_STATE(3832)] = 82800, + [SMALL_STATE(3833)] = 82813, + [SMALL_STATE(3834)] = 82826, + [SMALL_STATE(3835)] = 82839, + [SMALL_STATE(3836)] = 82852, + [SMALL_STATE(3837)] = 82865, + [SMALL_STATE(3838)] = 82878, + [SMALL_STATE(3839)] = 82887, + [SMALL_STATE(3840)] = 82900, + [SMALL_STATE(3841)] = 82913, + [SMALL_STATE(3842)] = 82926, + [SMALL_STATE(3843)] = 82939, + [SMALL_STATE(3844)] = 82952, + [SMALL_STATE(3845)] = 82965, + [SMALL_STATE(3846)] = 82978, + [SMALL_STATE(3847)] = 82991, + [SMALL_STATE(3848)] = 83004, + [SMALL_STATE(3849)] = 83017, + [SMALL_STATE(3850)] = 83030, + [SMALL_STATE(3851)] = 83043, + [SMALL_STATE(3852)] = 83056, + [SMALL_STATE(3853)] = 83069, + [SMALL_STATE(3854)] = 83082, + [SMALL_STATE(3855)] = 83095, + [SMALL_STATE(3856)] = 83108, + [SMALL_STATE(3857)] = 83121, + [SMALL_STATE(3858)] = 83134, + [SMALL_STATE(3859)] = 83147, + [SMALL_STATE(3860)] = 83156, + [SMALL_STATE(3861)] = 83165, + [SMALL_STATE(3862)] = 83178, + [SMALL_STATE(3863)] = 83191, + [SMALL_STATE(3864)] = 83204, + [SMALL_STATE(3865)] = 83217, + [SMALL_STATE(3866)] = 83230, + [SMALL_STATE(3867)] = 83243, + [SMALL_STATE(3868)] = 83256, + [SMALL_STATE(3869)] = 83269, + [SMALL_STATE(3870)] = 83282, + [SMALL_STATE(3871)] = 83295, + [SMALL_STATE(3872)] = 83308, + [SMALL_STATE(3873)] = 83316, + [SMALL_STATE(3874)] = 83326, + [SMALL_STATE(3875)] = 83334, + [SMALL_STATE(3876)] = 83344, + [SMALL_STATE(3877)] = 83352, + [SMALL_STATE(3878)] = 83362, + [SMALL_STATE(3879)] = 83370, + [SMALL_STATE(3880)] = 83380, + [SMALL_STATE(3881)] = 83390, + [SMALL_STATE(3882)] = 83400, + [SMALL_STATE(3883)] = 83410, + [SMALL_STATE(3884)] = 83420, + [SMALL_STATE(3885)] = 83430, + [SMALL_STATE(3886)] = 83440, + [SMALL_STATE(3887)] = 83450, + [SMALL_STATE(3888)] = 83460, + [SMALL_STATE(3889)] = 83468, + [SMALL_STATE(3890)] = 83478, + [SMALL_STATE(3891)] = 83488, + [SMALL_STATE(3892)] = 83498, + [SMALL_STATE(3893)] = 83506, + [SMALL_STATE(3894)] = 83516, + [SMALL_STATE(3895)] = 83526, + [SMALL_STATE(3896)] = 83536, + [SMALL_STATE(3897)] = 83546, + [SMALL_STATE(3898)] = 83554, + [SMALL_STATE(3899)] = 83564, + [SMALL_STATE(3900)] = 83574, + [SMALL_STATE(3901)] = 83582, + [SMALL_STATE(3902)] = 83590, + [SMALL_STATE(3903)] = 83600, + [SMALL_STATE(3904)] = 83610, + [SMALL_STATE(3905)] = 83620, + [SMALL_STATE(3906)] = 83630, + [SMALL_STATE(3907)] = 83640, + [SMALL_STATE(3908)] = 83648, + [SMALL_STATE(3909)] = 83658, + [SMALL_STATE(3910)] = 83666, + [SMALL_STATE(3911)] = 83676, + [SMALL_STATE(3912)] = 83686, + [SMALL_STATE(3913)] = 83694, + [SMALL_STATE(3914)] = 83704, + [SMALL_STATE(3915)] = 83714, + [SMALL_STATE(3916)] = 83724, + [SMALL_STATE(3917)] = 83734, + [SMALL_STATE(3918)] = 83744, + [SMALL_STATE(3919)] = 83754, + [SMALL_STATE(3920)] = 83764, + [SMALL_STATE(3921)] = 83774, + [SMALL_STATE(3922)] = 83782, + [SMALL_STATE(3923)] = 83790, + [SMALL_STATE(3924)] = 83800, + [SMALL_STATE(3925)] = 83808, + [SMALL_STATE(3926)] = 83818, + [SMALL_STATE(3927)] = 83828, + [SMALL_STATE(3928)] = 83838, + [SMALL_STATE(3929)] = 83848, + [SMALL_STATE(3930)] = 83858, + [SMALL_STATE(3931)] = 83866, + [SMALL_STATE(3932)] = 83876, + [SMALL_STATE(3933)] = 83886, + [SMALL_STATE(3934)] = 83896, + [SMALL_STATE(3935)] = 83906, + [SMALL_STATE(3936)] = 83916, + [SMALL_STATE(3937)] = 83924, + [SMALL_STATE(3938)] = 83934, + [SMALL_STATE(3939)] = 83944, + [SMALL_STATE(3940)] = 83952, + [SMALL_STATE(3941)] = 83962, + [SMALL_STATE(3942)] = 83972, + [SMALL_STATE(3943)] = 83979, + [SMALL_STATE(3944)] = 83986, + [SMALL_STATE(3945)] = 83993, + [SMALL_STATE(3946)] = 84000, + [SMALL_STATE(3947)] = 84007, + [SMALL_STATE(3948)] = 84014, + [SMALL_STATE(3949)] = 84021, + [SMALL_STATE(3950)] = 84028, + [SMALL_STATE(3951)] = 84035, + [SMALL_STATE(3952)] = 84042, + [SMALL_STATE(3953)] = 84049, + [SMALL_STATE(3954)] = 84056, + [SMALL_STATE(3955)] = 84063, + [SMALL_STATE(3956)] = 84070, + [SMALL_STATE(3957)] = 84077, + [SMALL_STATE(3958)] = 84084, + [SMALL_STATE(3959)] = 84091, + [SMALL_STATE(3960)] = 84098, + [SMALL_STATE(3961)] = 84105, + [SMALL_STATE(3962)] = 84112, + [SMALL_STATE(3963)] = 84119, + [SMALL_STATE(3964)] = 84126, + [SMALL_STATE(3965)] = 84133, + [SMALL_STATE(3966)] = 84140, + [SMALL_STATE(3967)] = 84147, + [SMALL_STATE(3968)] = 84154, + [SMALL_STATE(3969)] = 84161, + [SMALL_STATE(3970)] = 84168, + [SMALL_STATE(3971)] = 84175, + [SMALL_STATE(3972)] = 84182, + [SMALL_STATE(3973)] = 84189, + [SMALL_STATE(3974)] = 84196, + [SMALL_STATE(3975)] = 84203, + [SMALL_STATE(3976)] = 84210, + [SMALL_STATE(3977)] = 84217, + [SMALL_STATE(3978)] = 84224, + [SMALL_STATE(3979)] = 84231, + [SMALL_STATE(3980)] = 84238, + [SMALL_STATE(3981)] = 84245, + [SMALL_STATE(3982)] = 84252, + [SMALL_STATE(3983)] = 84259, + [SMALL_STATE(3984)] = 84266, + [SMALL_STATE(3985)] = 84273, + [SMALL_STATE(3986)] = 84280, + [SMALL_STATE(3987)] = 84287, + [SMALL_STATE(3988)] = 84294, + [SMALL_STATE(3989)] = 84301, + [SMALL_STATE(3990)] = 84308, + [SMALL_STATE(3991)] = 84315, + [SMALL_STATE(3992)] = 84322, + [SMALL_STATE(3993)] = 84329, + [SMALL_STATE(3994)] = 84336, + [SMALL_STATE(3995)] = 84343, + [SMALL_STATE(3996)] = 84350, + [SMALL_STATE(3997)] = 84357, + [SMALL_STATE(3998)] = 84364, + [SMALL_STATE(3999)] = 84371, + [SMALL_STATE(4000)] = 84378, + [SMALL_STATE(4001)] = 84385, + [SMALL_STATE(4002)] = 84392, + [SMALL_STATE(4003)] = 84399, + [SMALL_STATE(4004)] = 84406, + [SMALL_STATE(4005)] = 84413, + [SMALL_STATE(4006)] = 84420, + [SMALL_STATE(4007)] = 84427, + [SMALL_STATE(4008)] = 84434, + [SMALL_STATE(4009)] = 84441, + [SMALL_STATE(4010)] = 84448, + [SMALL_STATE(4011)] = 84455, + [SMALL_STATE(4012)] = 84462, + [SMALL_STATE(4013)] = 84469, + [SMALL_STATE(4014)] = 84476, + [SMALL_STATE(4015)] = 84483, + [SMALL_STATE(4016)] = 84490, + [SMALL_STATE(4017)] = 84497, + [SMALL_STATE(4018)] = 84504, + [SMALL_STATE(4019)] = 84511, + [SMALL_STATE(4020)] = 84518, + [SMALL_STATE(4021)] = 84525, + [SMALL_STATE(4022)] = 84532, + [SMALL_STATE(4023)] = 84539, + [SMALL_STATE(4024)] = 84546, + [SMALL_STATE(4025)] = 84553, + [SMALL_STATE(4026)] = 84560, + [SMALL_STATE(4027)] = 84567, + [SMALL_STATE(4028)] = 84574, + [SMALL_STATE(4029)] = 84581, + [SMALL_STATE(4030)] = 84588, + [SMALL_STATE(4031)] = 84595, + [SMALL_STATE(4032)] = 84602, + [SMALL_STATE(4033)] = 84609, + [SMALL_STATE(4034)] = 84616, + [SMALL_STATE(4035)] = 84623, + [SMALL_STATE(4036)] = 84630, + [SMALL_STATE(4037)] = 84637, + [SMALL_STATE(4038)] = 84644, + [SMALL_STATE(4039)] = 84651, + [SMALL_STATE(4040)] = 84658, + [SMALL_STATE(4041)] = 84665, + [SMALL_STATE(4042)] = 84672, + [SMALL_STATE(4043)] = 84679, + [SMALL_STATE(4044)] = 84686, + [SMALL_STATE(4045)] = 84693, + [SMALL_STATE(4046)] = 84700, + [SMALL_STATE(4047)] = 84707, + [SMALL_STATE(4048)] = 84714, + [SMALL_STATE(4049)] = 84721, + [SMALL_STATE(4050)] = 84728, + [SMALL_STATE(4051)] = 84735, + [SMALL_STATE(4052)] = 84742, + [SMALL_STATE(4053)] = 84749, + [SMALL_STATE(4054)] = 84756, + [SMALL_STATE(4055)] = 84763, + [SMALL_STATE(4056)] = 84770, + [SMALL_STATE(4057)] = 84777, + [SMALL_STATE(4058)] = 84784, + [SMALL_STATE(4059)] = 84791, + [SMALL_STATE(4060)] = 84798, + [SMALL_STATE(4061)] = 84805, + [SMALL_STATE(4062)] = 84812, + [SMALL_STATE(4063)] = 84819, + [SMALL_STATE(4064)] = 84826, + [SMALL_STATE(4065)] = 84833, + [SMALL_STATE(4066)] = 84840, + [SMALL_STATE(4067)] = 84847, + [SMALL_STATE(4068)] = 84854, + [SMALL_STATE(4069)] = 84861, + [SMALL_STATE(4070)] = 84868, + [SMALL_STATE(4071)] = 84875, + [SMALL_STATE(4072)] = 84882, + [SMALL_STATE(4073)] = 84889, + [SMALL_STATE(4074)] = 84896, + [SMALL_STATE(4075)] = 84903, + [SMALL_STATE(4076)] = 84910, + [SMALL_STATE(4077)] = 84917, + [SMALL_STATE(4078)] = 84924, + [SMALL_STATE(4079)] = 84931, + [SMALL_STATE(4080)] = 84938, + [SMALL_STATE(4081)] = 84945, + [SMALL_STATE(4082)] = 84952, + [SMALL_STATE(4083)] = 84959, + [SMALL_STATE(4084)] = 84966, + [SMALL_STATE(4085)] = 84973, + [SMALL_STATE(4086)] = 84980, + [SMALL_STATE(4087)] = 84987, + [SMALL_STATE(4088)] = 84994, + [SMALL_STATE(4089)] = 85001, + [SMALL_STATE(4090)] = 85008, + [SMALL_STATE(4091)] = 85015, + [SMALL_STATE(4092)] = 85022, + [SMALL_STATE(4093)] = 85029, + [SMALL_STATE(4094)] = 85036, + [SMALL_STATE(4095)] = 85043, + [SMALL_STATE(4096)] = 85050, + [SMALL_STATE(4097)] = 85057, + [SMALL_STATE(4098)] = 85064, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -234331,3738 +265770,4181 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(224), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(279), [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3337), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2015), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1924), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(928), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(223), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(224), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3337), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2015), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1924), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(928), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(223), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(224), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3337), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2015), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1924), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(928), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(223), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(224), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3337), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2015), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1924), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(928), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(223), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 92), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 92), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 60), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 60), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 92), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 92), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 60), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 60), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1754), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3379), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2013), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1922), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(930), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(620), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3448), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 58), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 58), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 61), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 61), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 11), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(969), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 26), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 26), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2104), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 164), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 164), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 12), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 12), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 14), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 14), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3383), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3078), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 11), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 11), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 38), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 38), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 49), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 49), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 59), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 59), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 77), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 77), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 78), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 78), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 90), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 90), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 59), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 59), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 91), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 91), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 108), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 108), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 109), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 109), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 90), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 90), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 123), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 123), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 91), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 91), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 124), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 124), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 59), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 59), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 125), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 125), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 126), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 126), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 137), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 137), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 138), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 138), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 123), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 123), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 124), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 124), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 159), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 159), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 125), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 125), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 160), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 160), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 167), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 167), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 159), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 159), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 9, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 9, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 19), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 19), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 20), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 20), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 17), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 17), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 43), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 43), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 44), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 44), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 41), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 41), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 70), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 70), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 71), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 71), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 72), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 72), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 73), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 73), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 79), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 79), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 66), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 66), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 99), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 99), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 101), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 101), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 102), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 102), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 103), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 103), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 79), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 79), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 96), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 96), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 129), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 129), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 130), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 130), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 131), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 131), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 132), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 132), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 133), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 133), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 134), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 134), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 162), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 162), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 163), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 163), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 165), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 165), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 195), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 195), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 196), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 196), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(690), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3358), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2006), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1919), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(927), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(620), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(690), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3358), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2006), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1919), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(927), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(620), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(690), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3358), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2006), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1919), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(927), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(620), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(690), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3358), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2006), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1919), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(927), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(620), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1720), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3280), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(977), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 139), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 168), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2011), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1965), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(941), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2011), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1965), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(941), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2011), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1965), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(941), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2011), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1965), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(941), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1965), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1965), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1965), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1965), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), - [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3886), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2013), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2247), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2148), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(959), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(278), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(279), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3886), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2013), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2247), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2148), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(959), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(278), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(279), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3886), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2013), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2247), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2148), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(959), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(278), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(279), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3886), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2013), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2247), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2148), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(959), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(278), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 92), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 92), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 60), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 60), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 92), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 92), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 60), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 60), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1931), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3879), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [399] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), SHIFT(2031), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2265), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2132), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(934), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(632), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3962), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2031), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 58), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 58), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 61), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 61), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 11), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(997), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 26), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 26), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 12), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 12), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 14), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 14), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 11), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 11), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 38), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 38), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 49), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 49), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 59), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 59), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 77), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 77), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 78), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 78), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 90), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 90), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 59), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 59), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 91), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 91), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 108), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 108), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 109), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 109), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 90), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 90), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 124), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 124), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 91), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 91), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 125), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 125), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 59), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 59), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 126), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 126), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 127), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 127), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 139), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 139), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 140), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 140), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 124), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 124), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 125), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 125), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 162), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 162), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 126), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 126), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 163), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 163), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 170), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 170), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 162), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 162), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 9, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 9, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 79), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 79), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 79), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 79), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 19), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 19), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 20), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 20), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 17), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 17), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 4, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 4, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 43), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 43), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 44), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 44), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 41), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 41), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 5, 0, 0), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 5, 0, 0), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 70), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 70), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 71), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 71), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 72), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 72), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 73), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 73), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 66), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 66), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 99), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 99), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 101), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 101), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 102), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 102), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 103), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 103), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 96), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 96), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 131), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 131), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 132), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 132), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 134), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 134), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 135), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 135), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 136), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 136), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 165), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 165), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 166), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 166), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 167), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 167), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 168), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 168), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 198), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 198), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 199), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 199), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 133), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 133), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(721), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3903), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2039), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2230), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2141), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(951), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(632), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(721), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3903), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2039), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2230), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2141), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(951), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(632), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(721), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3903), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2039), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2230), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2141), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(951), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(632), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(721), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3903), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2039), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2230), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2141), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(951), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(632), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1874), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3759), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(996), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 142), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 171), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2023), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2233), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2066), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(942), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2023), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2233), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2066), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(942), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2023), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2233), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2066), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(942), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2023), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2233), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2066), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(942), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2066), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2066), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2066), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2066), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 280), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 280), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 281), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 281), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 282), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 282), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 283), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 283), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 57), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 57), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 89), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 89), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 112), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 112), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 32), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 32), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 284), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 284), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 231), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 231), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 232), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 232), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 314), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 314), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 315), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 315), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 316), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 316), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 317), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 317), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 318), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 318), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 115), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 115), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 319), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 319), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 34), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 34), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 86), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 86), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 21), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 21), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 228), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 228), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 87), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 87), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 333), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 333), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 334), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 334), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 335), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 335), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 234), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 234), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 336), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 336), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 245), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 245), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 29), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 29), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 246), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 246), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 88), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 88), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 118), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 118), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 29), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 29), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 337), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 337), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 229), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 229), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 338), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 338), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 110), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 110), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 247), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 247), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 45), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 45), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 45), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 45), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 50), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 50), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 50), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 50), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 51), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 51), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 52), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 52), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 30), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 30), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 142), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 142), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 143), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 143), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 344), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 344), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 144), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 144), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 145), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 145), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 146), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 146), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 147), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 147), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 148), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 148), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 149), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 149), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 345), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 345), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 150), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 150), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 151), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 151), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 153), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 153), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 299), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 299), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 300), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 300), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 301), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 301), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 119), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 119), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 302), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 302), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 346), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 346), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 35), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 35), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 279), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 279), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 303), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 303), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 304), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 304), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 347), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 347), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 348), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 348), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 349), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 349), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 89), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 89), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 58), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 58), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 214), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 214), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 263), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 263), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 120), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 120), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 264), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 264), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 359), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 359), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 360), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 360), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 361), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 361), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 57), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 57), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 265), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 265), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 362), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 362), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 363), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 363), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 364), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 364), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 365), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 365), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 366), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 366), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 34), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 34), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 367), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 367), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 169), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 169), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 368), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 368), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 369), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 369), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 266), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 266), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 170), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 170), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 267), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 267), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 268), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 268), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 373), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 373), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 374), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 374), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 375), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 375), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 376), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 376), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 248), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 248), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 171), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 171), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 172), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 172), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 249), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 249), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 173), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 173), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 174), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 174), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 175), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 175), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 176), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 176), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 177), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 177), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 179), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 179), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 185), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 185), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 186), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 186), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 187), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 187), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 188), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 188), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 189), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 189), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 250), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 250), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 377), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 377), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 378), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 378), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 215), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 215), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 89), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 89), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 111), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 111), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 230), - [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 230), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 121), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 121), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 80), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 80), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 81), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 81), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 82), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 82), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 218), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 218), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 15), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 15), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 197), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 197), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 198), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 198), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 199), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 199), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 21), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 21), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 200), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 200), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 201), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 201), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 202), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 202), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 203), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 203), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 219), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 219), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(401), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3242), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(409), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3245), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3183), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3202), - [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(417), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3246), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3149), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), - [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(404), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3243), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3239), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3181), - [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(400), - [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3241), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3155), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(407), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3244), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1895), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1936), - [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1942), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(459), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3293), - [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(465), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3295), - [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(467), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3296), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1876), - [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(458), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3292), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(475), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3297), - [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(462), - [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3294), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1959), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 194), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 194), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 157), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 157), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 156), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 156), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 193), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 193), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 227), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 227), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 191), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 191), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 158), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 158), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 122), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 122), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), SHIFT(897), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3350), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), - [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(938), - [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 27), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 27), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 39), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 39), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(104), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3319), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), SHIFT_REPEAT(2992), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(128), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3171), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 7), - [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 7), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_field_initializer, 1, 0, 28), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), - [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 22), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 22), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 15), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 15), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2936), - [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1933), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3201), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3428), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3064), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1872), - [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3315), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3103), - [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1889), - [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3250), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3070), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1935), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3267), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2940), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1941), - [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3161), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3105), - [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1894), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3265), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2742), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3059), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1954), - [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3282), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3100), - [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1875), - [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3195), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2879), - [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1906), - [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3220), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 15), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 15), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2753), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2630), - [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3098), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1963), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3175), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2019), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2250), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2112), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(954), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2019), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2250), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2112), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(954), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2019), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2250), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2112), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(954), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2019), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2250), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2112), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(954), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 263), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 263), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 280), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 280), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 281), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 281), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 214), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 214), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 215), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 215), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 216), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 216), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 218), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 218), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 219), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 219), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 314), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 314), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 315), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 315), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 316), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 316), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 317), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 317), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 282), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 282), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 318), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 318), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 319), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 319), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 86), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 86), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 32), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 32), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 87), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 87), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 333), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 333), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 334), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 334), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 335), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 335), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 88), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 88), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 336), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 336), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 337), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 337), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 226), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 226), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 227), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 227), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 228), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 228), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 338), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 338), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 89), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 89), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 34), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 34), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 344), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 344), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 345), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 345), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 346), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 346), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 347), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 347), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 348), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 348), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 231), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 231), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 232), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 232), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 283), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 283), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 234), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 234), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 200), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 200), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 349), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 349), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 201), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 201), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 202), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 202), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 203), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 203), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 284), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 284), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 359), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 359), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 360), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 360), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 361), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 361), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 362), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 362), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 363), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 363), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 364), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 364), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 365), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 365), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 366), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 366), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 367), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 367), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 368), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 368), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 369), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 369), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 111), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 111), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 45), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 45), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 45), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 45), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 264), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 264), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 373), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 373), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 374), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 374), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 375), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 375), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 376), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 376), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 377), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 377), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 378), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 378), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 379), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 379), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 380), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 380), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 381), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 381), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 80), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 80), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 81), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 81), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 82), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 82), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 266), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 266), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 15), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 15), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 21), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 21), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 21), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 21), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 267), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 267), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 112), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 112), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 115), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 115), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 118), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 118), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 119), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 119), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 58), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 58), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 120), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 120), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 121), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 121), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 122), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 122), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 245), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 245), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 50), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 50), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 268), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 268), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 50), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 50), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 51), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 51), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 57), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 57), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 89), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 89), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 246), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 246), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 247), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 247), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 52), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 52), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 299), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 299), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 300), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 300), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 301), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 301), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 302), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 302), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 35), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 35), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 248), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 248), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 249), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 249), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 250), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 250), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 143), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 143), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 144), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 144), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 145), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 145), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 146), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 146), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 147), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 147), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 279), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 279), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 148), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 148), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 149), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 149), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 150), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 150), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 151), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 151), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 153), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 153), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 154), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 154), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 155), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 155), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 156), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 156), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 157), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 157), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 158), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 158), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 57), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 57), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 303), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 303), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 89), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 89), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 34), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 34), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 304), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 304), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 172), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 172), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 173), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 173), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 29), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 29), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 174), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 174), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 29), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 29), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 175), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 175), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 30), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 30), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 176), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 176), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 177), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 177), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 179), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 179), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 184), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 184), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 185), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 185), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 186), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 186), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 187), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 187), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 188), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 188), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 189), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 189), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 191), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 191), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 192), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 192), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 193), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 193), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 262), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 262), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3858), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3716), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3804), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3836), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(414), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3735), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(415), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3738), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(418), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3739), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), + [4528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(421), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3740), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3787), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), + [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(423), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3741), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3809), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(431), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3742), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 4, 0, 110), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 110), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 5, 0, 141), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 141), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2082), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2087), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(472), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3794), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2068), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(468), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3792), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(469), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3793), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2095), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(475), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3795), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(477), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3796), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(485), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3797), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2078), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(2164), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 196), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 196), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 197), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 197), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 159), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 159), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 160), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 160), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 161), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 161), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 123), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 123), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 194), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 194), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 230), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 230), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), + [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), SHIFT(917), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [4758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 39), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 39), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 27), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 27), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), SHIFT_REPEAT(3126), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 128), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 4, 0, 128), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), + [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(180), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3801), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(168), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3800), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(1029), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), - [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), SHIFT(2933), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 23), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), SHIFT(2906), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), - [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), SHIFT(3129), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 18), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), SHIFT(3014), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), - [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 74), - [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), SHIFT(2964), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 106), - [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), SHIFT(2990), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 97), - [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), SHIFT(2971), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), - [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 67), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), SHIFT(2932), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3207), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3215), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(373), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3304), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3240), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(374), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3305), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3326), - [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(377), - [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3306), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3325), - [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(380), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3307), - [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(382), - [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3308), - [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(390), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3309), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3310), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), - [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 166), - [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 166), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), - [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), - [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), - [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 68), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), - [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), - [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 105), - [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 105), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), - [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 8), - [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 8), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 6), - [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 6), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 46), - [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 46), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), - [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), - [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), - [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 161), - [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 161), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3062), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), - [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), - [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), - [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), - [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), - [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), - [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), - [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 128), - [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 128), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), - [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), - [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 95), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 25), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 25), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 10), - [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 10), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 10), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 10), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), - [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 62), - [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 62), - [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), - [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), - [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), - [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 40), - [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 40), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 107), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 135), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 135), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 136), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 136), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 16), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 16), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 127), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 127), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), - [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(425), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3251), - [5904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(426), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3252), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(429), - [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3253), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3247), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3257), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3312), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3165), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 28), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(432), - [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3254), - [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(434), - [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3255), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3334), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(442), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3256), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3172), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3178), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2927), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3134), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3139), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3141), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3145), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3147), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3151), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 15), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(486), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3329), - [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(487), - [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3330), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(490), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3331), - [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(493), - [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3332), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(495), - [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3333), - [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(503), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3132), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 39), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 93), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 226), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 11), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 94), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 262), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [7651] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 29), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 192), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), + [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 15), + [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 15), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 7), + [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 7), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_field_initializer, 1, 0, 28), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 22), + [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 22), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3578), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2117), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3808), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3421), + [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2146), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3849), + [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3580), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2136), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3814), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3535), + [5718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2081), + [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3757), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3953), + [5761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3427), + [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2067), + [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3689), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3573), + [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2055), + [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3714), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3528), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2108), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3698), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3575), + [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2071), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3755), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3567), + [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2052), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3630), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 15), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3565), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2159), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3664), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 15), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3600), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2114), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3870), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3297), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2091), + [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3678), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(1066), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [6092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [6095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 23), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), SHIFT(3324), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 18), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), SHIFT(3262), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), SHIFT(3508), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), SHIFT(3226), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 74), + [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), SHIFT(3410), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), + [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 67), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), SHIFT(3428), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 106), + [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), SHIFT(3448), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 97), + [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), SHIFT(3430), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(407), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3828), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(390), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3823), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [6195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3663), + [6198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), + [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(391), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3824), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3672), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3815), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(394), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3825), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(397), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3826), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(399), + [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3827), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3654), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3677), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3839), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 8), + [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 8), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), + [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), + [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 25), + [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 25), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 10), + [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 10), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 10), + [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 10), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 105), + [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 105), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), + [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), + [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), + [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), + [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 6), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 6), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 40), + [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 40), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 16), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 16), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 164), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 164), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), + [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 95), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), + [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 107), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 169), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 169), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 62), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 62), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 129), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 129), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 130), + [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 130), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 46), + [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 46), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), + [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 68), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), + [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 137), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 137), + [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3759), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 138), + [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 138), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), + [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), + [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(455), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3754), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), + [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3703), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [6672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3710), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3785), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [6752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3786), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [6799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3844), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(438), + [6855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3749), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(439), + [6961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3750), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(445), + [6995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3752), + [6998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(447), + [7001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3753), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [7010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), + [7013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 28), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(442), + [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3751), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [7105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [7112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3624), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(492), + [7280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3861), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(493), + [7294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3862), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(496), + [7318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3863), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(499), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3864), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(501), + [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3865), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(509), + [7344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3866), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3632), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3640), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3642), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3644), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3645), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), SHIFT(3650), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 15), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 39), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 93), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 11), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [8442] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 94), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 29), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 195), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 265), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 229), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), }; #ifdef __cplusplus diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index 3f96797..a78c17f 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -643,3 +643,86 @@ ops func(value u8, count u8) u8 { (identifier)) (expression (integer))))))))))))) + +================== +Struct field defaults and grouped types +================== + +Config :: struct { + capacity usize = 8 +} + +work func() void ! (Config | errors.Full) {} + +clear func($K, $V type) void { + for 0..entries.len |i| { + entries[i].hash = 0 + } +} + +--- + +(source_file + (type_declaration + (identifier) + (struct_type + (record_body + (record_field + (identifier) + (type + (builtin_type)) + (expression + (integer)))))) + (function_declaration + (identifier) + (parameter_list) + (type + (builtin_type)) + (type + (parenthesized_type + (type + (named_type + (qualified_identifier + (identifier))) + (named_type + (qualified_identifier + (identifier) + (identifier)))))) + (block)) + (function_declaration + (identifier) + (parameter_list + (parameter + (identifier) + (identifier) + (type + (builtin_type)))) + (type + (builtin_type)) + (block + (statement + (for_statement + (expression + (binary_expression + (expression + (integer)) + (expression + (field_expression + (expression + (identifier)) + (identifier))))) + (identifier) + (block + (statement + (assignment_statement + (expression + (field_expression + (expression + (index_expression + (expression + (identifier)) + (expression + (identifier)))) + (identifier))) + (expression + (integer)))))))))) diff --git a/tree-sitter-brolang/test/highlight/types.bro b/tree-sitter-brolang/test/highlight/types.bro new file mode 100644 index 0000000..2dc3923 --- /dev/null +++ b/tree-sitter-brolang/test/highlight/types.bro @@ -0,0 +1,21 @@ +Config :: struct { +# ^^^^^^ type + capacity usize = 8 +# ^^^^^^^^ property +# ^ operator +} + +work func() void ! (Config | errors.Full) {} +# ^^^^ keyword +# ^ operator +# ^^^^^^ type +# ^ operator + +clear func($K, $V type) void { +# ^ variable.parameter +# ^ variable.parameter +# ^^^^ type.builtin + for 0..entries.len |i| {} +# ^^^ keyword +# ^ operator +}